-
Notifications
You must be signed in to change notification settings - Fork 0
/
getid.html
344 lines (299 loc) · 108 KB
/
getid.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
<!DOCTYPE html>
<html lang="en" class="no-js not-logged-in client-root">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
▶SΛYΛNTΛП◀'s (@_._.bruh_ka_swag._._) Instagram profile • 13 photos and videos
</title>
<meta name="robots" content="noimageindex, noarchive">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#ffffff">
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, viewport-fit=cover">
<link rel="manifest" href="/data/manifest.json">
<link rel="preload" href="/static/bundles/metro/ConsumerUICommons.css/ef4097b841bb.css" as="style" type="text/css" crossorigin="anonymous" />
<link rel="preload" href="/static/bundles/metro/Consumer.css/78ef69d4d61f.css" as="style" type="text/css" crossorigin="anonymous" />
<link rel="preload" href="/static/bundles/metro/ProfilePageContainer.css/76e60cbb6385.css" as="style" type="text/css" crossorigin="anonymous" />
<link rel="preload" href="/static/bundles/metro/Vendor.js/5a56d51ae30f.js" as="script" type="text/javascript" crossorigin="anonymous" />
<link rel="preload" href="/static/bundles/metro/en_US.js/45ad846d6702.js" as="script" type="text/javascript" crossorigin="anonymous" />
<link rel="preload" href="/static/bundles/metro/ConsumerLibCommons.js/32794c0708be.js" as="script" type="text/javascript" crossorigin="anonymous" />
<link rel="preload" href="/static/bundles/metro/ConsumerUICommons.js/8958da704d20.js" as="script" type="text/javascript" crossorigin="anonymous" />
<link rel="preload" href="/static/bundles/metro/ConsumerAsyncCommons.js/c4ca4238a0b9.js" as="script" type="text/javascript" crossorigin="anonymous" />
<link rel="preload" href="/static/bundles/metro/Consumer.js/0c5c1ec14795.js" as="script" type="text/javascript" crossorigin="anonymous" />
<link rel="preload" href="/static/bundles/metro/ProfilePageContainer.js/00a288fdb044.js" as="script" type="text/javascript" crossorigin="anonymous" />
<script type="text/javascript">
(function() {
var docElement = document.documentElement;
var classRE = new RegExp('(^|\\s)no-js(\\s|$)');
var className = docElement.className;
docElement.className = className.replace(classRE, '$1js$2');
})();
</script>
<script type="text/javascript">
(function() {
if ('PerformanceObserver' in window && 'PerformancePaintTiming' in window) {
window.__bufferedPerformance = [];
var ob = new PerformanceObserver(function(e) {
window.__bufferedPerformance.push.apply(window.__bufferedPerformance,e.getEntries());
});
ob.observe({entryTypes:['paint']});
}
window.__bufferedErrors = [];
window.onerror = function(message, url, line, column, error) {
window.__bufferedErrors.push({
message: message,
url: url,
line: line,
column: column,
error: error
});
return false;
};
window.__initialData = {
pending: true,
waiting: []
};
function asyncFetchSharedData(extra) {
var sharedDataReq = new XMLHttpRequest();
sharedDataReq.onreadystatechange = function() {
if (sharedDataReq.readyState === 4) {
if(sharedDataReq.status === 200){
var sharedData = JSON.parse(sharedDataReq.responseText);
window.__initialDataLoaded(sharedData, extra);
}
}
}
sharedDataReq.open('GET', '/data/shared_data/', true);
sharedDataReq.send(null);
}
function notifyLoaded(item, data) {
item.pending = false;
item.data = data;
for (var i = 0;i < item.waiting.length; ++i) {
item.waiting[i].resolve(item.data);
}
item.waiting = [];
}
function notifyError(item, msg) {
item.pending = false;
item.error = new Error(msg);
for (var i = 0;i < item.waiting.length; ++i) {
item.waiting[i].reject(item.error);
}
item.waiting = [];
}
window.__initialDataLoaded = function(initialData, extraData) {
if (extraData) {
for (var key in extraData) {
initialData[key] = extraData[key];
}
}
notifyLoaded(window.__initialData, initialData);
};
window.__initialDataError = function(msg) {
notifyError(window.__initialData, msg);
};
window.__additionalData = {};
window.__pendingAdditionalData = function(paths) {
for (var i = 0;i < paths.length; ++i) {
window.__additionalData[paths[i]] = {
pending: true,
waiting: []
};
}
};
window.__additionalDataLoaded = function(path, data) {
if (path in window.__additionalData) {
notifyLoaded(window.__additionalData[path], data);
} else {
console.error('Unexpected additional data loaded "' + path + '"');
}
};
window.__additionalDataError = function(path, msg) {
if (path in window.__additionalData) {
notifyError(window.__additionalData[path], msg);
} else {
console.error('Unexpected additional data encountered an error "' + path + '": ' + msg);
}
};
})();
</script><script type="text/javascript">
/*
Copyright 2018 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
(function(){function g(a,c){b||(b=a,f=c,h.forEach(function(a){removeEventListener(a,l,e)}),m())}function m(){b&&f&&0<d.length&&(d.forEach(function(a){a(b,f)}),d=[])}function n(a,c){function k(){g(a,c);d()}function b(){d()}function d(){removeEventListener("pointerup",k,e);removeEventListener("pointercancel",b,e)}addEventListener("pointerup",k,e);addEventListener("pointercancel",b,e)}function l(a){if(a.cancelable){var c=performance.now(),b=a.timeStamp;b>c&&(c=+new Date);c-=b;"pointerdown"==a.type?n(c,
a):g(c,a)}}var e={passive:!0,capture:!0},h=["click","mousedown","keydown","touchstart","pointerdown"],b,f,d=[];h.forEach(function(a){addEventListener(a,l,e)});window.perfMetrics=window.perfMetrics||{};window.perfMetrics.onFirstInputDelay=function(a){d.push(a);m()}})();
</script>
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/static/images/ico/apple-touch-icon-76x76-precomposed.png/666282be8229.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/static/images/ico/apple-touch-icon-120x120-precomposed.png/8a5bd3f267b1.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/static/images/ico/apple-touch-icon-152x152-precomposed.png/68193576ffc5.png">
<link rel="apple-touch-icon-precomposed" sizes="167x167" href="/static/images/ico/apple-touch-icon-167x167-precomposed.png/4985e31c9100.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="/static/images/ico/apple-touch-icon-180x180-precomposed.png/c06fdb2357bd.png">
<link rel="icon" sizes="192x192" href="/static/images/ico/favicon-192.png/68d99ba29cc8.png">
<link rel="mask-icon" href="/static/images/ico/favicon.svg/fc72dd4bfde8.svg" color="#262626">
<link rel="shortcut icon" type="image/x-icon" href="/static/images/ico/favicon.ico/36b3ee2d91ed.ico">
<link rel="alternate" href="android-app://com.instagram.android/https/instagram.com/_u/_._.bruh_ka_swag._._/" />
<meta property="al:ios:app_name" content="Instagram" />
<meta property="al:ios:app_store_id" content="389801252" />
<meta property="al:ios:url" content="instagram://user?username=_._.bruh_ka_swag._._" />
<meta property="al:android:app_name" content="Instagram" />
<meta property="al:android:package" content="com.instagram.android" />
<meta property="al:android:url" content="https://www.instagram.com/_u/_._.bruh_ka_swag._._/" />
<link rel="canonical" href="https://www.instagram.com/_._.bruh_ka_swag._._/" />
<meta content="319 Followers, 143 Following, 13 Posts - See Instagram photos and videos from ▶SΛYΛNTΛП◀ (@_._.bruh_ka_swag._._)" name="description" />
<meta property="og:type" content="profile" />
<meta property="og:image" content="https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/95131062_1113834748985669_5245890802139267072_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com&_nc_ohc=OgheDkvUlMAAX_w4Fp3&oh=e54fe96743b4fb58addee6d748296ed3&oe=5F8020AD" />
<meta property="og:title" content="▶SΛYΛNTΛП◀'s (@_._.bruh_ka_swag._._) Instagram profile • 13 photos and videos" />
<meta property="og:description" content="319 Followers, 143 Following, 13 Posts - See Instagram photos and videos from ▶SΛYΛNTΛП◀ (@_._.bruh_ka_swag._._)" />
<meta property="og:url" content="https://www.instagram.com/_._.bruh_ka_swag._._/" />
<script type="application/ld+json">
{"@context":"http:\/\/schema.org","@type":"Person","name":"\u25b6S\u039bY\u039bNT\u039b\u041f\u25c0","alternateName":"@_._.bruh_ka_swag._._","description":"VFX artist \n\u03dc\ua34f\u266b \u2299\u03dc \ud835\udf61\u01a6. \u01a6\u047a\ud835\udec3\u047a\ud835\udebb\ud83d\udc68\u200d\ud83d\udcbb\n\ud83c\udd7f\ud83c\udd81\ud83c\udd7e \ud83c\udd78\ud83c\udd7d \ud83c\udd73\ud83c\udd78\ud83c\udd76\ud83c\udd78\ud83c\udd83\ud83c\udd70\ud83c\udd7b \ud83c\udd86\ud83c\udd7e\ud83c\udd81\ud83c\udd7b\ud83c\udd73\n\ud83c\udf82 28\ud835\udcfd\ud835\udcf1 \ud835\udcde\ud835\udcd2\ud835\udce3\ud835\udcde\ud835\udcd1\ud835\udcd4\ud835\udce1\n\ud835\udc12\ud835\udc22\ud835\udc26\ud835\udc29\ud835\udc25\ud835\udc1e \ud835\udc1b\ud835\udc2e\ud835\udc2d \ud835\udd98\ud835\udd8e\ud835\udd8c\ud835\udd93\ud835\udd8e\ud835\udd8b\ud835\udd8e\ud835\udd88\ud835\udd86\ud835\udd93\ud835\udd99\ud83d\udc51\n\ud83e\udd2b\ud835\udd4a\ud835\udd5a\ud835\udd5d\ud835\udd56\ud835\udd5f\ud835\udd65 \u03c1\u03b5\u03c3\u03c1\u2113\u03b5 \u0442\u03b5\u03b7\u2202 \u0442\u03c3 \u043d\u03b1v\u03b5 \u0442\u043d\u03b5 \ud835\udcf5\ud835\udcf8\ud835\udcfe\ud835\udced\ud835\udcee\ud835\udcfc\ud835\udcfd \ud835\udcf6\ud835\udcf2\ud835\udcf7\ud835\udced\ud835\udcfc\ud83d\ude09","url":"https:\/\/youtu.be\/VOReZ-QH06k","mainEntityofPage":{"@type":"ProfilePage","@id":"https:\/\/www.instagram.com\/_._.bruh_ka_swag._._\/","interactionStatistic":{"@type":"InteractionCounter","interactionType":"http:\/\/schema.org\/FollowAction","userInteractionCount":"319"}},"image":"https:\/\/www.instagram.com\/static\/images\/ico\/favicon-200.png\/ab6eff595bb1.png"}
</script>
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/" hreflang="x-default" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=en" hreflang="en" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=fr" hreflang="fr" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=it" hreflang="it" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=de" hreflang="de" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es" hreflang="es" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=zh-cn" hreflang="zh-cn" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=zh-tw" hreflang="zh-tw" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=ja" hreflang="ja" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=ko" hreflang="ko" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=pt" hreflang="pt" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=pt-br" hreflang="pt-br" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=af" hreflang="af" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=cs" hreflang="cs" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=da" hreflang="da" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=el" hreflang="el" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=fi" hreflang="fi" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=hr" hreflang="hr" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=hu" hreflang="hu" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=id" hreflang="id" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=ms" hreflang="ms" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=nb" hreflang="nb" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=nl" hreflang="nl" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=pl" hreflang="pl" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=ru" hreflang="ru" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=sk" hreflang="sk" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=sv" hreflang="sv" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=th" hreflang="th" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=tl" hreflang="tl" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=tr" hreflang="tr" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=hi" hreflang="hi" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=bn" hreflang="bn" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=gu" hreflang="gu" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=kn" hreflang="kn" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=ml" hreflang="ml" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=mr" hreflang="mr" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=pa" hreflang="pa" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=ta" hreflang="ta" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=te" hreflang="te" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=ne" hreflang="ne" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=si" hreflang="si" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=ur" hreflang="ur" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=vi" hreflang="vi" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=bg" hreflang="bg" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=fr-ca" hreflang="fr-ca" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=ro" hreflang="ro" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=sr" hreflang="sr" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=uk" hreflang="uk" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=zh-hk" hreflang="zh-hk" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-gt" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-py" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-hn" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-sv" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-uy" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-cl" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-pr" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-pa" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-ec" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-ve" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-cr" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-co" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-do" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-ni" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-cu" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-ar" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-bo" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-pe" />
<link rel="alternate" href="https://www.instagram.com/_._.bruh_ka_swag._._/?hl=es-la" hreflang="es-mx" />
</head>
<body class="" style="
background: white;
">
<div id="react-root">
<span><svg width="50" height="50" viewBox="0 0 50 50" style="position:absolute;top:50%;left:50%;margin:-25px 0 0 -25px;fill:#c7c7c7"><path d="M25 1c-6.52 0-7.34.03-9.9.14-2.55.12-4.3.53-5.82 1.12a11.76 11.76 0 0 0-4.25 2.77 11.76 11.76 0 0 0-2.77 4.25c-.6 1.52-1 3.27-1.12 5.82C1.03 17.66 1 18.48 1 25c0 6.5.03 7.33.14 9.88.12 2.56.53 4.3 1.12 5.83a11.76 11.76 0 0 0 2.77 4.25 11.76 11.76 0 0 0 4.25 2.77c1.52.59 3.27 1 5.82 1.11 2.56.12 3.38.14 9.9.14 6.5 0 7.33-.02 9.88-.14 2.56-.12 4.3-.52 5.83-1.11a11.76 11.76 0 0 0 4.25-2.77 11.76 11.76 0 0 0 2.77-4.25c.59-1.53 1-3.27 1.11-5.83.12-2.55.14-3.37.14-9.89 0-6.51-.02-7.33-.14-9.89-.12-2.55-.52-4.3-1.11-5.82a11.76 11.76 0 0 0-2.77-4.25 11.76 11.76 0 0 0-4.25-2.77c-1.53-.6-3.27-1-5.83-1.12A170.2 170.2 0 0 0 25 1zm0 4.32c6.4 0 7.16.03 9.69.14 2.34.11 3.6.5 4.45.83 1.12.43 1.92.95 2.76 1.8a7.43 7.43 0 0 1 1.8 2.75c.32.85.72 2.12.82 4.46.12 2.53.14 3.29.14 9.7 0 6.4-.02 7.16-.14 9.69-.1 2.34-.5 3.6-.82 4.45a7.43 7.43 0 0 1-1.8 2.76 7.43 7.43 0 0 1-2.76 1.8c-.84.32-2.11.72-4.45.82-2.53.12-3.3.14-9.7.14-6.4 0-7.16-.02-9.7-.14-2.33-.1-3.6-.5-4.45-.82a7.43 7.43 0 0 1-2.76-1.8 7.43 7.43 0 0 1-1.8-2.76c-.32-.84-.71-2.11-.82-4.45a166.5 166.5 0 0 1-.14-9.7c0-6.4.03-7.16.14-9.7.11-2.33.5-3.6.83-4.45a7.43 7.43 0 0 1 1.8-2.76 7.43 7.43 0 0 1 2.75-1.8c.85-.32 2.12-.71 4.46-.82 2.53-.11 3.29-.14 9.7-.14zm0 7.35a12.32 12.32 0 1 0 0 24.64 12.32 12.32 0 0 0 0-24.64zM25 33a8 8 0 1 1 0-16 8 8 0 0 1 0 16zm15.68-20.8a2.88 2.88 0 1 0-5.76 0 2.88 2.88 0 0 0 5.76 0z"/></svg></span>
</div>
<link rel="stylesheet" href="/static/bundles/metro/ConsumerUICommons.css/ef4097b841bb.css" type="text/css" crossorigin="anonymous" />
<link rel="stylesheet" href="/static/bundles/metro/Consumer.css/78ef69d4d61f.css" type="text/css" crossorigin="anonymous" />
<script type="text/javascript">window._sharedData = {"config":{"csrf_token":"SL2Ca14eCI3c8X4wYKUhoBRxZJpVmY2D","viewer":null,"viewerId":null},"country_code":"unknown","language_code":"en","locale":"en_US","entry_data":{"ProfilePage":[{"logging_page_id":"profilePage_8973318718","show_suggested_profiles":false,"show_follow_dialog":false,"graphql":{"user":{"biography":"VFX artist \n\u03dc\ua34f\u266b \u2299\u03dc \ud835\udf61\u01a6. \u01a6\u047a\ud835\udec3\u047a\ud835\udebb\ud83d\udc68\u200d\ud83d\udcbb\n\ud83c\udd7f\ud83c\udd81\ud83c\udd7e \ud83c\udd78\ud83c\udd7d \ud83c\udd73\ud83c\udd78\ud83c\udd76\ud83c\udd78\ud83c\udd83\ud83c\udd70\ud83c\udd7b \ud83c\udd86\ud83c\udd7e\ud83c\udd81\ud83c\udd7b\ud83c\udd73\n\ud83c\udf82 28\ud835\udcfd\ud835\udcf1 \ud835\udcde\ud835\udcd2\ud835\udce3\ud835\udcde\ud835\udcd1\ud835\udcd4\ud835\udce1\n\ud835\udc12\ud835\udc22\ud835\udc26\ud835\udc29\ud835\udc25\ud835\udc1e \ud835\udc1b\ud835\udc2e\ud835\udc2d \ud835\udd98\ud835\udd8e\ud835\udd8c\ud835\udd93\ud835\udd8e\ud835\udd8b\ud835\udd8e\ud835\udd88\ud835\udd86\ud835\udd93\ud835\udd99\ud83d\udc51\n\ud83e\udd2b\ud835\udd4a\ud835\udd5a\ud835\udd5d\ud835\udd56\ud835\udd5f\ud835\udd65 \u03c1\u03b5\u03c3\u03c1\u2113\u03b5 \u0442\u03b5\u03b7\u2202 \u0442\u03c3 \u043d\u03b1v\u03b5 \u0442\u043d\u03b5 \ud835\udcf5\ud835\udcf8\ud835\udcfe\ud835\udced\ud835\udcee\ud835\udcfc\ud835\udcfd \ud835\udcf6\ud835\udcf2\ud835\udcf7\ud835\udced\ud835\udcfc\ud83d\ude09","blocked_by_viewer":false,"business_email":null,"restricted_by_viewer":null,"country_block":false,"external_url":"https://youtu.be/VOReZ-QH06k","external_url_linkshimmed":"https://l.instagram.com/?u=https%3A%2F%2Fyoutu.be%2FVOReZ-QH06k\u0026e=ATNEcGLpQUA__YZqiQn9kA7R61rMTRSQu1WT8x_HLC9dRRGUvq5ngzWR1D6SHJAzny1T7XlI0LTdnegC\u0026s=1","edge_followed_by":{"count":319},"followed_by_viewer":false,"edge_follow":{"count":143},"follows_viewer":false,"full_name":"\u25b6S\u039bY\u039bNT\u039b\u041f\u25c0","has_ar_effects":false,"has_clips":false,"has_guides":false,"has_channel":false,"has_blocked_viewer":false,"highlight_reel_count":7,"has_requested_viewer":false,"id":"8973318718","is_business_account":false,"is_joined_recently":false,"business_category_name":null,"overall_category_name":null,"category_enum":null,"is_private":false,"is_verified":false,"edge_mutual_followed_by":{"count":0,"edges":[]},"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/95131062_1113834748985669_5245890802139267072_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=OgheDkvUlMAAX_w4Fp3\u0026oh=e54fe96743b4fb58addee6d748296ed3\u0026oe=5F8020AD","profile_pic_url_hd":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s320x320/95131062_1113834748985669_5245890802139267072_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=OgheDkvUlMAAX_w4Fp3\u0026oh=8f36d36397be7ebc4a2a673e86ed156e\u0026oe=5F7F7DD5","requested_by_viewer":false,"username":"_._.bruh_ka_swag._._","connected_fb_page":null,"edge_felix_video_timeline":{"count":0,"page_info":{"has_next_page":false,"end_cursor":null},"edges":[]},"edge_owner_to_timeline_media":{"count":13,"page_info":{"has_next_page":true,"end_cursor":"QVFETFU5VkRxQXRxUmszTm83M0xNaHgxZWtVZHNac1owRHlFaFVWeW5YOGViVXBiUFdtUm9taU5SOGNLVkFtTm5OMUdXcm1rdGlkX0lUN2JnRWt1Q1Z1ZA=="},"edges":[{"node":{"__typename":"GraphImage","id":"2390635725178491425","shortcode":"CEtPoain1Ih","dimensions":{"height":677,"width":1080},"display_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/118617210_181762903474389_3103357637930589621_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=RsxeEhWpKXkAX_uX9fA\u0026oh=24020cd35835fc0f6f2e0d2cc0e9537a\u0026oe=5F81058E","edge_media_to_tagged_user":{"edges":[{"node":{"user":{"full_name":"photography.com","id":"6223461975","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/103376957_2571417286507155_7211993328804139979_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=DO9r99bCEN8AX-h3qXx\u0026oh=b7cb61dbf89463dda01ccb4a23e6667d\u0026oe=5F7FD142","username":"_the_talented_photographer_"},"x":0.055555556,"y":0.7290671}}]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoaUxyYJ3fJtzj8K5rsa6G4uPJh55LDC9c/r6Vzx4qUXIkVUI5PP+fanbY845/z+FIkZGGFSgMck45x69qlvzOiMbpXivuvpb1IWVMfKeff/wDVUNWZI2OWJHSq1UjGorPa36+e7JnkaU5clj0Ge1Bxiox1p9UZ3GkelMqQVHQDCiiigR//2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 in Illusion with @_the_talented_photographer_. Image may contain: one or more people, text and closeup.","edge_media_to_caption":{"edges":[{"node":{"text":"LIFE IS \ud835\udd4c\u2115\u2119\u211d\ud835\udd3c\ud835\udd3b\ud835\udd40\u2102\ud835\udd4b\ud835\udd38\ud835\udd39\ud835\udd43\ud835\udd3c\nAnd CONTROL is just an \u026a\u029f\u029f\u1d1cs\u026a\u1d0f\u0274"}}]},"edge_media_to_comment":{"count":0},"comments_disabled":true,"taken_at_timestamp":1599206008,"edge_liked_by":{"count":141},"edge_media_preview_like":{"count":141},"location":{"id":"101566858243178","has_public_page":true,"name":"Illusion","slug":"illusion"},"thumbnail_src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c178.0.600.600a/118617210_181762903474389_3103357637930589621_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=RsxeEhWpKXkAX_uX9fA\u0026oh=df92949043f317eaed4b5d9cb141bf43\u0026oe=5F81327E","thumbnail_resources":[{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c178.0.600.600a/s150x150/118617210_181762903474389_3103357637930589621_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=RsxeEhWpKXkAX_uX9fA\u0026oh=da30a079592526bfdc4cc9d0772fd58f\u0026oe=5F817FD0","config_width":150,"config_height":150},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c178.0.600.600a/s240x240/118617210_181762903474389_3103357637930589621_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=RsxeEhWpKXkAX_uX9fA\u0026oh=d961536d9d561f33093326cfcca620cf\u0026oe=5F7F064A","config_width":240,"config_height":240},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c178.0.600.600a/s320x320/118617210_181762903474389_3103357637930589621_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=RsxeEhWpKXkAX_uX9fA\u0026oh=292877e465f257efd24fe6718f6863a6\u0026oe=5F7E9CB8","config_width":320,"config_height":320},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c178.0.600.600a/s480x480/118617210_181762903474389_3103357637930589621_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=RsxeEhWpKXkAX_uX9fA\u0026oh=492bc026aceed36f8b2725f647bc4c14\u0026oe=5F8097F1","config_width":480,"config_height":480},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c178.0.600.600a/118617210_181762903474389_3103357637930589621_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=RsxeEhWpKXkAX_uX9fA\u0026oh=df92949043f317eaed4b5d9cb141bf43\u0026oe=5F81327E","config_width":640,"config_height":640}]}},{"node":{"__typename":"GraphImage","id":"2377113487263230164","shortcode":"CD9NB9HHWjU","dimensions":{"height":421,"width":750},"display_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/117593530_673348096605441_5549895974220340497_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=tLHg31NDs9wAX-RGDbj\u0026oh=207bea39dc796751b236b26e883ddc6f\u0026oe=5F82212E","edge_media_to_tagged_user":{"edges":[{"node":{"user":{"full_name":"","id":"2336830757","is_verified":true,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/12523670_1548249962164559_199075503_a.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=hpydco9AKpgAX-FlMxM\u0026oh=72f0da7d9a83a96a45fe9f0a21777c61\u0026oe=5F8188E9","username":"ramimalek"},"x":0.8242368,"y":0.16459419}},{"node":{"user":{"full_name":"Mr. Robot","id":"1733818194","is_verified":true,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/69815606_402220887356729_2090062074146193408_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=91o7TMVojnIAX_hB68t\u0026oh=64709fc8810580b40a67d1a7c3da391e\u0026oe=5F81FD7B","username":"whoismrrobot"},"x":0.74622375,"y":0.9752475}},{"node":{"user":{"full_name":"photography.com","id":"6223461975","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/103376957_2571417286507155_7211993328804139979_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=DO9r99bCEN8AX-h3qXx\u0026oh=b7cb61dbf89463dda01ccb4a23e6667d\u0026oe=5F7FD142","username":"_the_talented_photographer_"},"x":0.27757218,"y":0.9752475}}]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoX5vI9P1rQuLFIMbmcAkclPlPGflOeT27VVyf7qfp/jT5ZHlJLBecdx9PWgCS0tfOBbcFx0BGcmnQ23nhihXK7eNo43Zzn/dx2zmnWl59mBB5IBCgdyfX/ABqFHljRlUqA+05yARtJI7+p5zQBC+QTgAqOhKgfpUfmH0H5D/CnujMSflGfRl/xpvlH1X/vpf8AGgBMp6H8x/hV034Ofl5ZQDz1IDDkYxt5+6McgGiigBft/wA4baf4eM9MZ4HHA5464/GkW7PHoHLYJPIIAx0x68+9FFICq+HOcjJ69eT3PSmbPcfr/hRRQM//2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 in \ud835\udc05\ud835\udc14\ud835\udc02\ud835\udc0a \ud835\udc13\ud835\udc07\ud835\udc04 \ud835\udc12\ud835\udc18\ud835\udc12\ud835\udc13\ud835\udc04\ud835\udc0c with @whoismrrobot, @ramimalek, and @_the_talented_photographer_. Image may contain: 1 person, text.","edge_media_to_caption":{"edges":[{"node":{"text":"Me: The quieter you become, the more you are able to hear. \ud83e\udd2b"}}]},"edge_media_to_comment":{"count":24},"comments_disabled":false,"taken_at_timestamp":1597594031,"edge_liked_by":{"count":120},"edge_media_preview_like":{"count":120},"location":{"id":"107783850658398","has_public_page":true,"name":"\ud835\udc05\ud835\udc14\ud835\udc02\ud835\udc0a \ud835\udc13\ud835\udc07\ud835\udc04 \ud835\udc12\ud835\udc18\ud835\udc12\ud835\udc13\ud835\udc04\ud835\udc0c","slug":"fuck-the-system"},"thumbnail_src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c153.0.393.393a/117593530_673348096605441_5549895974220340497_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=tLHg31NDs9wAX-RGDbj\u0026oh=51669f6aeb308fbc0e9cb40d0692f349\u0026oe=5F807200","thumbnail_resources":[{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c153.0.393.393a/s150x150/117593530_673348096605441_5549895974220340497_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=tLHg31NDs9wAX-RGDbj\u0026oh=f15fa825a34505718052efd0b68101d0\u0026oe=5F8193CB","config_width":150,"config_height":150},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c153.0.393.393a/s240x240/117593530_673348096605441_5549895974220340497_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=tLHg31NDs9wAX-RGDbj\u0026oh=f66f06ac3aefe62ffca440350b245744\u0026oe=5F82434D","config_width":240,"config_height":240},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c153.0.393.393a/s320x320/117593530_673348096605441_5549895974220340497_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=tLHg31NDs9wAX-RGDbj\u0026oh=621843aad30bd5f5ae5dba2b8c2ef68c\u0026oe=5F8257B3","config_width":320,"config_height":320},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c153.0.393.393a/117593530_673348096605441_5549895974220340497_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=tLHg31NDs9wAX-RGDbj\u0026oh=51669f6aeb308fbc0e9cb40d0692f349\u0026oe=5F807200","config_width":480,"config_height":480},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c153.0.393.393a/117593530_673348096605441_5549895974220340497_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=tLHg31NDs9wAX-RGDbj\u0026oh=51669f6aeb308fbc0e9cb40d0692f349\u0026oe=5F807200","config_width":640,"config_height":640}]}},{"node":{"__typename":"GraphImage","id":"2265957867001358434","shortcode":"B9yTKyqnihi","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/89860769_2300463483581222_6880477646483662204_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=102\u0026_nc_ohc=pauJ5QdWAswAX83xYoj\u0026oh=937b8363878f962b04c9fbd594fcc0ab\u0026oe=5F806C87","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqSFS+M+lSlcHHpTYCc49KS7QyIyDrx+h6UEk0MsDthWDN6Z/l6/hTmj55qs1nGVAULE6YOd2WyOmfYj8qt5ycnvSTuNqxXdOoqLYatP8ATrUeKZI2D71LK4QknvnFJbsM5PQfj+g5pdSnR2RUIIUH8OR1BwQeKBssJA5XYTkMOw9enPp+GfeoosfdyDjioxdMIFjHBYkZ/wBn0/E8Zz0qzp8aCJmbG5iQM4/h9Px/lSSsNy5regjdKhp5bIqrupkiwPhh+FNmgkuJTJwOgGTg8elVQSMEcdK14fmX5ufrzUN2ZtFXRQNpN02k49wf8/54NWljEEBDgbm9Rzk9vw9qYjsCeTwfWkumJ25NLmuHKo3Y3zM1GW96E7VE3U1oYn//2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 in \u0141\u00f6D\u00ee\u00f1G\u2581\u2582\u2583\u2584\u2585\u2586\u2587\u0141\u00f6D\u00ee\u00f1G\u2581\u2582\u2583\u2584\u2585\u2586\u2587. Image may contain: 1 person.","edge_media_to_caption":{"edges":[{"node":{"text":"Just fit in is not my style. I was born to STAND OUT.\n#50cent savage #50cent sweetheart\n#giggling in my own style\ud83d\ude0e\ud83d\ude0e\ud83e\udd1f\ud83e\udd1f"}}]},"edge_media_to_comment":{"count":5},"comments_disabled":false,"taken_at_timestamp":1584343249,"edge_liked_by":{"count":122},"edge_media_preview_like":{"count":122},"location":{"id":"144755636210137","has_public_page":true,"name":"\u0141\u00f6D\u00ee\u00f1G\u2581\u2582\u2583\u2584\u2585\u2586\u2587\u0141\u00f6D\u00ee\u00f1G\u2581\u2582\u2583\u2584\u2585\u2586\u2587","slug":"odingoding"},"thumbnail_src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/89860769_2300463483581222_6880477646483662204_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=102\u0026_nc_ohc=pauJ5QdWAswAX83xYoj\u0026oh=136b3eb665a8b4d82704b937180ba209\u0026oe=5F7F8C3D","thumbnail_resources":[{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s150x150/89860769_2300463483581222_6880477646483662204_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=102\u0026_nc_ohc=pauJ5QdWAswAX83xYoj\u0026oh=2e6f7549d4bb6df627678ff84017e7eb\u0026oe=5F80A9BA","config_width":150,"config_height":150},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s240x240/89860769_2300463483581222_6880477646483662204_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=102\u0026_nc_ohc=pauJ5QdWAswAX83xYoj\u0026oh=a5da0b9959a495b678d14f55368c2195\u0026oe=5F801140","config_width":240,"config_height":240},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s320x320/89860769_2300463483581222_6880477646483662204_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=102\u0026_nc_ohc=pauJ5QdWAswAX83xYoj\u0026oh=8747d5589bf89d879047f740d2ccaee7\u0026oe=5F7F8142","config_width":320,"config_height":320},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s480x480/89860769_2300463483581222_6880477646483662204_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=102\u0026_nc_ohc=pauJ5QdWAswAX83xYoj\u0026oh=4d2ed9dfb57dc1c96eaf8f3108c861de\u0026oe=5F819187","config_width":480,"config_height":480},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/89860769_2300463483581222_6880477646483662204_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=102\u0026_nc_ohc=pauJ5QdWAswAX83xYoj\u0026oh=136b3eb665a8b4d82704b937180ba209\u0026oe=5F7F8C3D","config_width":640,"config_height":640}]}},{"node":{"__typename":"GraphImage","id":"2224004621403967260","shortcode":"B7dQGt9nE8c","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/80464113_1753815778083320_1585188815206585920_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=108\u0026_nc_ohc=YdFTWx18drkAX8gP1Z8\u0026oh=9971abf74ae07490f10658a7e1ac781c\u0026oe=5F7E8766","edge_media_to_tagged_user":{"edges":[{"node":{"user":{"full_name":"Prosari N. Chanda","id":"2304103336","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/118852098_2697134013908255_3299912175910974067_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=hPPlSOTr4P8AX-Gl47V\u0026oh=7768830d1318f795c272a794951fe8d0\u0026oe=5F80F0C7","username":"_prosarichanda"},"x":0.7909343,"y":0.538547}},{"node":{"user":{"full_name":"\u0a2eve \u0a24\u0a42R","id":"2332605796","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/117060296_1443876159142499_1243723332011198413_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=_O0P8INTflYAX-1hCev\u0026oh=781f4de7dde1239a95eca5a4d9f7b36f\u0026oe=5F7FE09E","username":"veer_9797"},"x":0.253469,"y":0.5727904}},{"node":{"user":{"full_name":"\u25b6S\u039bY\u039bNT\u039b\u041f\u25c0","id":"8973318718","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/95131062_1113834748985669_5245890802139267072_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=OgheDkvUlMAAX_w4Fp3\u0026oh=e54fe96743b4fb58addee6d748296ed3\u0026oe=5F8020AD","username":"_._.bruh_ka_swag._._"},"x":0.52081406,"y":0.6857011}},{"node":{"user":{"full_name":"Its TD","id":"12285016272","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/118288965_3118839591727917_4723070658532305005_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=7CG9p1qk_AQAX-NEfjQ\u0026oh=378d7c6a33b0e1a70ffe6e304452949d\u0026oe=5F818662","username":"dot_zypher"},"x":0.28862163,"y":0.9161499}},{"node":{"user":{"full_name":"Shreash","id":"5698605988","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/73097200_1034337710387820_6978003253795487744_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=RZYh4QW-6d4AX8J8zgH\u0026oh=090dc6af7249e55bcaa18bb1bc054989\u0026oe=5F7F26DA","username":"me_shreash"},"x":0.1720629,"y":0.24608977}}]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqtXt09qQV+beTwckAYH65zirMbtOiyKcBhg59cnPH6E1nDU2c5CjGCAOvJ9eO/H09KtxXcjNsC7lAySB09uD3/CpuNJvUtBJVP3sj369foe3A/wAmmqkg6MD9ec/p/L9afHI80YdRt3c4J5/+tVRr8BtsSFtvU4OB60XCzew9LrEvlHlm6HBC8DkA4+v+TVwZ79fasCS6IEbuT8jbgoGMjPf3raW/hYA56jPSi/cEm9tTl9nksqsQcAMe3UA4Ge/4V0Fi6bW2+38u3/6hWJcyo7bxk9jn1HHH+cU6xumUepBz9R3H+H4VL7hHVNHRrI3U7j7fL/n6UyQiKJ3Ubc5OO+TxmpFjXghfp/nNS9uR09adwt3OQcM3y8sT/n/9dX4oWKKdpPA/lVu1h813cjDZIDeg9R2J7Gp/Nf0H/fQqLnRHRuxlW+nSNNtcfuw24t2I9Px71ty6fDLt427em3jr1BqxTxWljnQxnKcBSRxjHT/IqN2L8FWGPpz0+tWKKNwIELdAu3A79D+NVPsYPJPPfg9fzrSplTZMuMnHY//Z","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo shared by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 on January 18, 2020 tagging @_prosarichanda, @veer_9797, @me_shreash, @_._.bruh_ka_swag._._, and @dot_zypher. Image may contain: one or more people and shoes, text that says 'The Infectious... LOVE REVENGE BLOOD... hatred kills!'.","edge_media_to_caption":{"edges":[{"node":{"text":"What r u waiting for go and watch\nLink in bio\n#goodmovie #movie #videos #film #instaflicks #actor #dvd #films #instagood #photooftheday #video #cinema #flicks #hollywood #instaflick #star #flick #theatre #instamovies #movies #amc #actress#popugramsg"}}]},"edge_media_to_comment":{"count":3},"comments_disabled":false,"taken_at_timestamp":1579342032,"edge_liked_by":{"count":57},"edge_media_preview_like":{"count":57},"location":null,"thumbnail_src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/80464113_1753815778083320_1585188815206585920_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=108\u0026_nc_ohc=YdFTWx18drkAX8gP1Z8\u0026oh=fe0afea61a20cd20a3e0535629f7acd3\u0026oe=5F823BE0","thumbnail_resources":[{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s150x150/80464113_1753815778083320_1585188815206585920_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=108\u0026_nc_ohc=YdFTWx18drkAX8gP1Z8\u0026oh=00a1bdd9a7e2d8107d8e9746a4f232ee\u0026oe=5F80E25B","config_width":150,"config_height":150},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s240x240/80464113_1753815778083320_1585188815206585920_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=108\u0026_nc_ohc=YdFTWx18drkAX8gP1Z8\u0026oh=f7e5cdf61c39310a40b6d79366bc5351\u0026oe=5F81F05D","config_width":240,"config_height":240},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s320x320/80464113_1753815778083320_1585188815206585920_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=108\u0026_nc_ohc=YdFTWx18drkAX8gP1Z8\u0026oh=cc8a140ff76304b36b9a38b06d43b11a\u0026oe=5F7F89A3","config_width":320,"config_height":320},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s480x480/80464113_1753815778083320_1585188815206585920_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=108\u0026_nc_ohc=YdFTWx18drkAX8gP1Z8\u0026oh=de66972760701a3db94aa274d82f7148\u0026oe=5F7FA366","config_width":480,"config_height":480},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/80464113_1753815778083320_1585188815206585920_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=108\u0026_nc_ohc=YdFTWx18drkAX8gP1Z8\u0026oh=fe0afea61a20cd20a3e0535629f7acd3\u0026oe=5F823BE0","config_width":640,"config_height":640}]}},{"node":{"__typename":"GraphImage","id":"2211011161700967836","shortcode":"B6vFu_nnCWc","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/79997046_498428197467501_7295560653102074126_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=jYGUHMFpC8sAX_67low\u0026oh=4c481563d7199ef16d35541bd27d708f\u0026oe=5F7EF3A7","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqstiWPEbcAfxN2HoO/TIq5BtRcBwQQPlyBjOM4PUd6x7fT5GAbIIbnvz+n6Ve+y+X98gZ9qhSlsle/wDXy+RnyxXvPRL8P68ycuI5NisTgjauSef8PxqQv5kykdAp/M1nxx7Ztw4XJAPU9Ou3pjt1z3q+iKH3qwbAxjoatOT/ACZNktHpdprzXQll2jl9g/3v/r0gJPIK47cf/XqvdKswG4cDIzjOKg+3bPlx04/Kld312NPkNsDKBt6emMH6/QVYuY5IxvIDAen+BqWzyVDEbSe3t74q5JgjkZ/DNKneKurNv1sKUVPSV7eRzSXLnnYcnr1AI6fL6E1qLE3DKrevb/GpPJVQDzgdSf8AP860FIxxWkZNX0Su2929WE6cJW1d0ktktFsZkkB75Htn+f09qq/ZV9W/Ota4GR9Kz94rnnZM0SuRRXezCsPkYgKcHPPXkccH6HBGM0k81yhKtzH0yAMYPQeo9KW0YiVxk4x0/OsQyM05ySc56k9q2p68vyMp7MteaS2Cc49a0UvbjG1Vz2Hyn8P/ANdZknRPo3/oVaEkjiZFBIBC5GTj8q6Kj29X+ZnCO/oi/Jcop2Z3OeCAfu5GSfXGPrVWpZkVS7AAEkZIHJ4Heoa4Km6R1RP/2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 in HeaVen.....\u2665. Image may contain: one or more people, car and outdoor.","edge_media_to_caption":{"edges":[{"node":{"text":"#lastpost 2k19\n#happynewyear\n#2k19 \n#2k20#trending"}}]},"edge_media_to_comment":{"count":12},"comments_disabled":false,"taken_at_timestamp":1577793091,"edge_liked_by":{"count":89},"edge_media_preview_like":{"count":89},"location":{"id":"275348678","has_public_page":true,"name":"HeaVen.....\u2665","slug":"heaven"},"thumbnail_src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/79997046_498428197467501_7295560653102074126_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=jYGUHMFpC8sAX_67low\u0026oh=8cc85a52dd6e54aa002fd2537f21384c\u0026oe=5F81E7C4","thumbnail_resources":[{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s150x150/79997046_498428197467501_7295560653102074126_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=jYGUHMFpC8sAX_67low\u0026oh=888ef9dc6b1a3759aee4e14ecce26fc5\u0026oe=5F80E365","config_width":150,"config_height":150},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s240x240/79997046_498428197467501_7295560653102074126_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=jYGUHMFpC8sAX_67low\u0026oh=07eba3009068cdec455d5bca37082656\u0026oe=5F7F97AF","config_width":240,"config_height":240},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s320x320/79997046_498428197467501_7295560653102074126_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=jYGUHMFpC8sAX_67low\u0026oh=3c84757e22cd001c6ff69d7e68040962\u0026oe=5F7F9595","config_width":320,"config_height":320},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s480x480/79997046_498428197467501_7295560653102074126_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=jYGUHMFpC8sAX_67low\u0026oh=989e82c5871c1ae1b79fd1019a097b2f\u0026oe=5F80F1CF","config_width":480,"config_height":480},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/79997046_498428197467501_7295560653102074126_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=jYGUHMFpC8sAX_67low\u0026oh=8cc85a52dd6e54aa002fd2537f21384c\u0026oe=5F81E7C4","config_width":640,"config_height":640}]}},{"node":{"__typename":"GraphImage","id":"2139400135881128455","shortcode":"B2wrRarnfoH","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/69663552_183443522814567_5342787988739376578_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=ahcm_6gFE5MAX_Ut8w5\u0026oh=4dffbe7cb2b31f0bcbd9a1a2cf35706a\u0026oe=5F7FDB1F","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqmxTcVKRTcV1HMQuwQbmOAKzHv2J+QAD35NT6iCQqjuSfyqitvmsZytobQjfUvR3WRzgnv1qcXCeo/MVSFmyjcOR7DJ/KlCN/dH5VmpvuW4LsbpFJtqfbSba6bnMZF9gY5wwz+R//AFVRjYsCVGdvJrRv1wwPqMfkf/r06waJQytjc3GPUVy1HqddNaIWyuTIxzgf57VeMKE5wOagtYo1O9BjParRasGbFgJmmlcVE5IbipAa7LnHZFO9h8yPK/eXkf1/xrItX2sRnBI64/8Ar10p/rXPJxO4HTJ/nWU+5tT7F2KQ/wAWM98dKe00QJBAJz1yKypmO489KYOlEFbXuE3fTsf/2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 on September 23, 2019. Image may contain: one or more people, sky and closeup.","edge_media_to_caption":{"edges":[{"node":{"text":"Enjoying under the blue sky...\n#blue_sky #popugram#50followers#bruh_ka_world\nAnd also comment..."}}]},"edge_media_to_comment":{"count":3},"comments_disabled":false,"taken_at_timestamp":1569256391,"edge_liked_by":{"count":48},"edge_media_preview_like":{"count":48},"location":null,"thumbnail_src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/69663552_183443522814567_5342787988739376578_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=ahcm_6gFE5MAX_Ut8w5\u0026oh=cd69088660c5d23ef89255b484ec4000\u0026oe=5F8268FC","thumbnail_resources":[{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s150x150/69663552_183443522814567_5342787988739376578_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=ahcm_6gFE5MAX_Ut8w5\u0026oh=8339071e14afba8d728b870eee0167a0\u0026oe=5F7EA45D","config_width":150,"config_height":150},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s240x240/69663552_183443522814567_5342787988739376578_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=ahcm_6gFE5MAX_Ut8w5\u0026oh=9629239d68ef89f03c915e245c099163\u0026oe=5F80CD97","config_width":240,"config_height":240},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s320x320/69663552_183443522814567_5342787988739376578_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=ahcm_6gFE5MAX_Ut8w5\u0026oh=29700e96d57ee1f7b5c5de9491d78f5c\u0026oe=5F80BDAD","config_width":320,"config_height":320},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s480x480/69663552_183443522814567_5342787988739376578_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=ahcm_6gFE5MAX_Ut8w5\u0026oh=13c22f42b48b75d0595d857426e6f8e6\u0026oe=5F81D077","config_width":480,"config_height":480},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/69663552_183443522814567_5342787988739376578_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=ahcm_6gFE5MAX_Ut8w5\u0026oh=cd69088660c5d23ef89255b484ec4000\u0026oe=5F8268FC","config_width":640,"config_height":640}]}},{"node":{"__typename":"GraphImage","id":"2126037983292095885","shortcode":"B2BNEgVHP2N","dimensions":{"height":750,"width":750},"display_url":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/69149989_2096335294008567_6892861643762226194_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=2gO8-s0nWhkAX_Kj6Mc\u0026oh=b80a7acf33cdbb19412d86fceb46a68b\u0026oe=5F80A977","edge_media_to_tagged_user":{"edges":[{"node":{"user":{"full_name":"Rajdeep","id":"8321064330","is_verified":false,"profile_pic_url":"https://instagram.fcgh8-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fcgh8-1.fna.fbcdn.net\u0026_nc_ohc=zJ5i76jTHPwAX_gZGeO\u0026oh=a2b2528dd027963b57ff0b9fe7a65e70\u0026oe=5F826A8F\u0026ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2","username":"rajdeep_1090"},"x":0.3591135,"y":0.27740267}},{"node":{"user":{"full_name":"\u25b6S\u039bY\u039bNT\u039b\u041f\u25c0","id":"8973318718","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/95131062_1113834748985669_5245890802139267072_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=OgheDkvUlMAAX_w4Fp3\u0026oh=e54fe96743b4fb58addee6d748296ed3\u0026oe=5F8020AD","username":"_._.bruh_ka_swag._._"},"x":0.51419556,"y":0.28156602}},{"node":{"user":{"full_name":"Sahil Sarkar","id":"4080392236","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/118142659_750154432447897_3191255345147840903_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=vMPIyBck0oQAX9dJ4ZT\u0026oh=6989717de836d449842c53be2aceb245\u0026oe=5F802CEA","username":"s_square05"},"x":0.32732317,"y":0.40924406}},{"node":{"user":{"full_name":"Captain _Crunch","id":"15249528197","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/69712315_2452897524995324_9205999637171798016_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=Tz7pDnR8fKwAX99md8M\u0026oh=f372b97ebf40d3e1b676417bd2b810e9\u0026oe=5F82428E","username":"purab_jana"},"x":0.7503468,"y":0.42867333}},{"node":{"user":{"full_name":"hydra_faizer","id":"8379217665","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/69042277_470294823522834_4333113129643802624_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=q2bCCnLG3BwAX96M_Y0\u0026oh=1f8d2338b587928bf61bbac59478fe39\u0026oe=5F824AC1","username":"hydra_faizer"},"x":0.44130543,"y":0.5327587}},{"node":{"user":{"full_name":"ranjet#the fun lover","id":"17925804736","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/93764767_704060610337183_129041721177669632_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=9l9hpJa3DeYAX9QP0xu\u0026oh=1465d46a58fe05c28b9cea6eb6f06a26\u0026oe=5F8108B9","username":"rajendra_singh_5062"},"x":0.11789182,"y":0.27601483}}]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoq3ZZPKRnwTtGf8+lUv7QXsGH0IqG7HnNyxB24Cg4HftjnNV1t2LAHoOuDjtyAfb9alNCd+hpw3yOQvzZPrirfnLnHesKNdjBj7kdvoT9fepxIckscs3I28j3+mPrzTBX6msJVboev9KTJ9TWaxdFRl67j1/T/AOtSFfUjPfmmJt9EZlvbGchpGILc8DPXpzVhTLHJ5SFXHZjxkf49qmt5N2EzgZz0p5VpJSx+VTwB64HXH+etZX7m3L2M4b3U9Sufu46Af4U4uYyGA+XJAH4c0NMPNKA428f4/l/9eqss247ARtU+vUkckdsUJt9CZaK/U0FlL43MSAfyx6f55q4GQ84U/wCfpWHE47nAJrWDw4+9j2yK2j5nPr1LWE27kypB9Ocg9/8A63WiX5XLD0wB7k8U8/1FZd2Tvb/fFTOKt8zoottu/RfqY0xy5/XPqOv60wgqcHg1LIPnb8f5io25akJksqmPCHggZI9z/wDWxSCJyMgHB9jVvVv+Phvov/oIrrYQAigDjaP5UxH/2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 in KHARAGPUR-The City Of Joy with @s_square05, @rajdeep_1090, @hydra_faizer, @_._.bruh_ka_swag._._, @purab_jana, and @rajendra_singh_5062. Image may contain: one or more people.","edge_media_to_caption":{"edges":[{"node":{"text":"Teacher's day celebration \ud83c\udf89\ud83c\udf8a\ud83c\udf89\ud83c\udf8a"}}]},"edge_media_to_comment":{"count":4},"comments_disabled":false,"taken_at_timestamp":1567663499,"edge_liked_by":{"count":45},"edge_media_preview_like":{"count":45},"location":{"id":"378950885555001","has_public_page":true,"name":"KHARAGPUR-The City Of Joy","slug":"kharagpur-the-city-of-joy"},"thumbnail_src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/69149989_2096335294008567_6892861643762226194_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=2gO8-s0nWhkAX_Kj6Mc\u0026oh=2365a34a29952aa638691d4ab617715e\u0026oe=5F81234D","thumbnail_resources":[{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s150x150/69149989_2096335294008567_6892861643762226194_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=2gO8-s0nWhkAX_Kj6Mc\u0026oh=560e94848b4f6e6ad172d3b0c588bb54\u0026oe=5F81414A","config_width":150,"config_height":150},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s240x240/69149989_2096335294008567_6892861643762226194_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=2gO8-s0nWhkAX_Kj6Mc\u0026oh=b3d685e21622dfd46517a49e073ba4c7\u0026oe=5F80B350","config_width":240,"config_height":240},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s320x320/69149989_2096335294008567_6892861643762226194_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=2gO8-s0nWhkAX_Kj6Mc\u0026oh=ed9076f6fd37cd02910d135e4bd88ccb\u0026oe=5F805432","config_width":320,"config_height":320},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s480x480/69149989_2096335294008567_6892861643762226194_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=2gO8-s0nWhkAX_Kj6Mc\u0026oh=6b2905259f3da56ca024f6646c2e8deb\u0026oe=5F8096F7","config_width":480,"config_height":480},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/69149989_2096335294008567_6892861643762226194_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=2gO8-s0nWhkAX_Kj6Mc\u0026oh=2365a34a29952aa638691d4ab617715e\u0026oe=5F81234D","config_width":640,"config_height":640}]}},{"node":{"__typename":"GraphImage","id":"2083187004050201968","shortcode":"Bzo94sBH11w","dimensions":{"height":640,"width":640},"display_url":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/65312217_935462056816216_7598466761822070271_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=104\u0026_nc_ohc=kFSF0lJsikUAX8lJzkW\u0026oh=5c3fd6f475705f16855862a029dce3da\u0026oe=5F7F8EDC","edge_media_to_tagged_user":{"edges":[{"node":{"user":{"full_name":"\u25b6S\u039bY\u039bNT\u039b\u041f\u25c0","id":"8973318718","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/95131062_1113834748985669_5245890802139267072_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=OgheDkvUlMAAX_w4Fp3\u0026oh=e54fe96743b4fb58addee6d748296ed3\u0026oe=5F8020AD","username":"_._.bruh_ka_swag._._"},"x":0.85714287,"y":0.40508068}},{"node":{"user":{"full_name":"Shubham Patra","id":"6276957494","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/31028453_941445532688816_7573943323463778304_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=7KHh8Epn0ygAX-Kd_tW\u0026oh=aea51c563be4b6cb2bca4daef4b7dc41\u0026oe=5F7F2333","username":"shubham.patra.756"},"x":0.38002774,"y":0.34124166}}]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqsqBnIHUnJI6ED7ozjj0PrUO5UO1yFJ5yx5x6jnrx/kVWjmkkHzLhWwC2c4/2iD/MVDLGvm7jj5gCOOPTgfhUHZ009OppsuckchuRjPJPUDHtz6Z4zSlQOeoHQc/5PHviqvniBFCjd/sjOcnoM/XnHbpVhHLDBGCD3PTj9Rz+H1rSL1E+xHyRx/8Ar/w7n+VMJIqOKYyn5hgc45OfqR9PT9an3D/Ipt3Gkn0Ks0wjTGMOOB/n2rOErcnrnk555rqZIEmG1xkfr+dcvPH5MjIOQpwPpXNCSlp1Mm2aUWZ13kAtn8P/AK1Ts6xLlsc+nUducc/T2+tV7MgQknnnpTmHmbsDjHQ9/T+dUnZ3N7X18l+RKtuQS2cq3QU7Yx9KfCA0IxztXjPrisc3DE5AGKUZN3TMuZrQ6YGuc1EYnPuAf0/+tXQrWBqn+u/4CP5muel8Xy/yIYtq2Imz93v+lTgA4x1JGCPrVO3YhTg9x/SrbABWxxhv6Vu92bRehchOGKdcHI/HrWJJC4YgA4ycfTNa6ffQ9z/hVd2O48nqalOz9URLe/c//9k=","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 in Cuttack, Orissa with @shubham.patra.756, and @_._.bruh_ka_swag._._. Image may contain: one or more people, people standing and child.","edge_media_to_caption":{"edges":[{"node":{"text":"Celebrating..."}}]},"edge_media_to_comment":{"count":6},"comments_disabled":false,"taken_at_timestamp":1562555264,"edge_liked_by":{"count":41},"edge_media_preview_like":{"count":41},"location":{"id":"239138105","has_public_page":true,"name":"Cuttack, Orissa","slug":"cuttack-orissa"},"thumbnail_src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/65312217_935462056816216_7598466761822070271_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=104\u0026_nc_ohc=kFSF0lJsikUAX8lJzkW\u0026oh=5c3fd6f475705f16855862a029dce3da\u0026oe=5F7F8EDC","thumbnail_resources":[{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s150x150/65312217_935462056816216_7598466761822070271_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=104\u0026_nc_ohc=kFSF0lJsikUAX8lJzkW\u0026oh=dd24bd5c686df56d57ed8f232e5a2b20\u0026oe=5F82309A","config_width":150,"config_height":150},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s240x240/65312217_935462056816216_7598466761822070271_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=104\u0026_nc_ohc=kFSF0lJsikUAX8lJzkW\u0026oh=d6d80eb62c3d459b907862e800b761e0\u0026oe=5F8182D4","config_width":240,"config_height":240},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s320x320/65312217_935462056816216_7598466761822070271_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=104\u0026_nc_ohc=kFSF0lJsikUAX8lJzkW\u0026oh=87b0d145088fc0a0962e3eb7eaa93ab4\u0026oe=5F809CEA","config_width":320,"config_height":320},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/s480x480/65312217_935462056816216_7598466761822070271_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=104\u0026_nc_ohc=kFSF0lJsikUAX8lJzkW\u0026oh=2c077e2050c345145f6ded1fdfb4b18e\u0026oe=5F81E734","config_width":480,"config_height":480},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/65312217_935462056816216_7598466761822070271_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=104\u0026_nc_ohc=kFSF0lJsikUAX8lJzkW\u0026oh=5c3fd6f475705f16855862a029dce3da\u0026oe=5F7F8EDC","config_width":640,"config_height":640}]}},{"node":{"__typename":"GraphImage","id":"2082692403476467875","shortcode":"BznNbTVnpCj","dimensions":{"height":1350,"width":1080},"display_url":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/66433876_389011035293070_5805468601100760742_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=106\u0026_nc_ohc=pV_4seK2pUMAX9SN0D5\u0026oh=5cd8486b0041978eaf066807baf03d0c\u0026oe=5F7F97F8","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACEq6OSRYxubgVUkmdsAAqT2GCx9M9lHXJNO24+6cHOSTzgHqF7D6+lZ1zqKWbeXGu5uCx/xPUn+VKze+g79jYjJCjf97vznmqMFxI0pDABSSMdxjoc+/wD+qoLfUBcHaQVOM5PTj3q0XHr+XNVbzJv3LfmCiqe//e/I0VWgh2D3Y/gAKx5ogs7MTgkDBPJ+tbirmqV7b7xnO09m/ofY/pXLOolp9/kbQWpFag5OW3heMY7+ufpV2q8EK265B3FsH/6wqzuHb9atSSt5ikrt2CimecvrRVXFZkjuiMsfJZvTr9Saa9wiko/YZJ/zzk1OVHJwM4xnvj0+lQRxptzgfkK4Uk9X038/6Xr38gbexEZ4/wCE9Bnp2HFV57zhiwwVGVPqCOvNWbqNQvAA6dh61j3I+dB23Djt1FdaScV/WwoyfNqV/Ok/ut+RorpaKfKjX2j7H//Z","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 in Cuttack, Orissa. Image may contain: one or more people and text.","edge_media_to_caption":{"edges":[]},"edge_media_to_comment":{"count":7},"comments_disabled":false,"taken_at_timestamp":1562496303,"edge_liked_by":{"count":33},"edge_media_preview_like":{"count":33},"location":{"id":"239138105","has_public_page":true,"name":"Cuttack, Orissa","slug":"cuttack-orissa"},"thumbnail_src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/c0.135.1080.1080a/s640x640/66433876_389011035293070_5805468601100760742_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=106\u0026_nc_ohc=pV_4seK2pUMAX9SN0D5\u0026oh=2ee04a4a2db9746e868f5d8ea3032f05\u0026oe=5F809A7C","thumbnail_resources":[{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/c0.135.1080.1080a/s150x150/66433876_389011035293070_5805468601100760742_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=106\u0026_nc_ohc=pV_4seK2pUMAX9SN0D5\u0026oh=7e9dc1674802b8d7b5546439313974d8\u0026oe=5F808031","config_width":150,"config_height":150},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/c0.135.1080.1080a/s240x240/66433876_389011035293070_5805468601100760742_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=106\u0026_nc_ohc=pV_4seK2pUMAX9SN0D5\u0026oh=cf7fe8a6d95263845ecb743f72c36473\u0026oe=5F8099FB","config_width":240,"config_height":240},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/c0.135.1080.1080a/s320x320/66433876_389011035293070_5805468601100760742_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=106\u0026_nc_ohc=pV_4seK2pUMAX9SN0D5\u0026oh=5b386edd5c8af3b980b75880cb84d64a\u0026oe=5F7F36C1","config_width":320,"config_height":320},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/c0.135.1080.1080a/s480x480/66433876_389011035293070_5805468601100760742_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=106\u0026_nc_ohc=pV_4seK2pUMAX9SN0D5\u0026oh=d44b7f6d96be90579cf253ad54019e2c\u0026oe=5F80399B","config_width":480,"config_height":480},{"src":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/sh0.08/e35/c0.135.1080.1080a/s640x640/66433876_389011035293070_5805468601100760742_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=106\u0026_nc_ohc=pV_4seK2pUMAX9SN0D5\u0026oh=2ee04a4a2db9746e868f5d8ea3032f05\u0026oe=5F809A7C","config_width":640,"config_height":640}]}},{"node":{"__typename":"GraphImage","id":"2078557558565935131","shortcode":"BzYhRY7hpgb","dimensions":{"height":1350,"width":1080},"display_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/64831074_456217941612144_1827774597369376573_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=wFm-Mn3magAAX9R5feF\u0026oh=06e579260d4abb5bccfad4404b28c38d\u0026oe=5F7EF79C","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACEqwlXNSKnyk1NawGbjpUojIXBGKdyygR2phqwyc8VE1MCOiiimBr2ADADODuB/l/PkVu+WpBBHXmuf05cuD6Vvu+0cVi9wMi6tduSvSsdutb0mUjJlIBJ7VlFPNfagyT/nNUmBToqXy6KsCzaS7DjoP8K1lmLkdx16/wCeK59KvQnhvoP/AEIVDRSC8u/Nbb/dyOOlRwXXkE8BsjHv+f8AOqp/rSf4f1qrdCRd9FRUUwP/2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 on July 01, 2019.","edge_media_to_caption":{"edges":[{"node":{"text":"Common photo style but in a new swag.....\n#real_me #photography\n#50follow #50followme #followback #followforfollow #50follow4follow #followers #50followher #follower #followhim #50followbackteam #followall#follow #followme #followback #50followforfollow #follow4follow #50follow #followme #followback #50followforfollow"}}]},"edge_media_to_comment":{"count":2},"comments_disabled":false,"taken_at_timestamp":1562003391,"edge_liked_by":{"count":36},"edge_media_preview_like":{"count":36},"location":null,"thumbnail_src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/c0.135.1080.1080a/s640x640/64831074_456217941612144_1827774597369376573_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=wFm-Mn3magAAX9R5feF\u0026oh=3da3e58f5bb00430a06282adc8bbb868\u0026oe=5F826798","thumbnail_resources":[{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c0.135.1080.1080a/s150x150/64831074_456217941612144_1827774597369376573_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=wFm-Mn3magAAX9R5feF\u0026oh=5c5ee823d7a5e48df2f4e76e8c324e25\u0026oe=5F81DA5D","config_width":150,"config_height":150},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c0.135.1080.1080a/s240x240/64831074_456217941612144_1827774597369376573_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=wFm-Mn3magAAX9R5feF\u0026oh=40ac314ef5ae66f81ac12d445a61c55f\u0026oe=5F7EB797","config_width":240,"config_height":240},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c0.135.1080.1080a/s320x320/64831074_456217941612144_1827774597369376573_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=wFm-Mn3magAAX9R5feF\u0026oh=33b416714ccbbd2990046490c2f3cbe6\u0026oe=5F804BAD","config_width":320,"config_height":320},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/c0.135.1080.1080a/s480x480/64831074_456217941612144_1827774597369376573_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=wFm-Mn3magAAX9R5feF\u0026oh=8cbe7b4b000acce3c4e8cc5ab3eed5fd\u0026oe=5F8249F7","config_width":480,"config_height":480},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/c0.135.1080.1080a/s640x640/64831074_456217941612144_1827774597369376573_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=wFm-Mn3magAAX9R5feF\u0026oh=3da3e58f5bb00430a06282adc8bbb868\u0026oe=5F826798","config_width":640,"config_height":640}]}},{"node":{"__typename":"GraphSidecar","id":"2040775712730030862","shortcode":"BxSSrK_hKMO","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/60048766_157375335302976_5587879719002064951_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=o9cBxYBrJxEAX-GFTDG\u0026oh=7db664528ca39ac8cc4fbc0698de0ce6\u0026oe=5F7FACCC","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":null,"owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 on May 10, 2019. Image may contain: 1 person.","edge_media_to_caption":{"edges":[{"node":{"text":"Finally finally \"GTA V\"\n\ud83d\ude00\ud83d\ude00"}}]},"edge_media_to_comment":{"count":0},"comments_disabled":false,"taken_at_timestamp":1557499444,"edge_liked_by":{"count":23},"edge_media_preview_like":{"count":23},"location":null,"thumbnail_src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/60048766_157375335302976_5587879719002064951_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=o9cBxYBrJxEAX-GFTDG\u0026oh=f55b7ecc49bbc6e24b19ccd62282e73f\u0026oe=5F7FEF2F","thumbnail_resources":[{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s150x150/60048766_157375335302976_5587879719002064951_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=o9cBxYBrJxEAX-GFTDG\u0026oh=3265d5651231b533cfdeed05001bff72\u0026oe=5F80E10A","config_width":150,"config_height":150},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s240x240/60048766_157375335302976_5587879719002064951_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=o9cBxYBrJxEAX-GFTDG\u0026oh=1a9e83b439efefd8c486509d01b2276d\u0026oe=5F7FE7C4","config_width":240,"config_height":240},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s320x320/60048766_157375335302976_5587879719002064951_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=o9cBxYBrJxEAX-GFTDG\u0026oh=d45a99c1e150c2eccfe0aea0fe4d14ec\u0026oe=5F81A47A","config_width":320,"config_height":320},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s480x480/60048766_157375335302976_5587879719002064951_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=o9cBxYBrJxEAX-GFTDG\u0026oh=f47a0d0aa04c732ecc23ab7b6045203a\u0026oe=5F7FB5A4","config_width":480,"config_height":480},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/60048766_157375335302976_5587879719002064951_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=o9cBxYBrJxEAX-GFTDG\u0026oh=f55b7ecc49bbc6e24b19ccd62282e73f\u0026oe=5F7FEF2F","config_width":640,"config_height":640}],"edge_sidecar_to_children":{"edges":[{"node":{"__typename":"GraphImage","id":"2040775695248264386","shortcode":"BxSSq6thgzC","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/60048766_157375335302976_5587879719002064951_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=100\u0026_nc_ohc=o9cBxYBrJxEAX-GFTDG\u0026oh=7db664528ca39ac8cc4fbc0698de0ce6\u0026oe=5F7FACCC","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqz102Zv4lH+fpUo0mY/xp+v8AhTLySYTlIiegOBj0FIrXx7sB+FMNyUaPN/fT9f8ACj+yJv76fr/hSL9tfJV+BnkkDpTo0vJOfMwOx9fccdPfv2paFcrGHSph/Gv6/wCFJ/Zc395f1/wqVI7liVMpGK0kGFAJyQBk+vvQFrbmXexFpS47BeR2461BLdyAhQ2MKM+pOM5PFWr1XLkrnbtGcfj/AEqnIA0YAA35OSeTjtz7dBVElgTgBUfBQn5lX6dCenJ5Kg+2a2Y3DngYGAR9D7e1c9bxq8iQHOwtk4POccYNbkZCPgcDG38qmxSkMDKjDJAzn9f8+tTjkcVnXTKwBB6Vdjb5R9B/KnYTdys7OrkhWYED7oGBjPfPWs6S2lZmIQ4PTOOvfvVUMfU1GCdv5/0piLCWdwhDBcEcg5Xr+dTn7Z3A/Nf8azcnP40Ekr+P9KdhF4rcdwv5r/jWpHKoUAkZwM8jriuapKm4H//Z","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 on May 10, 2019. Image may contain: 1 person."}},{"node":{"__typename":"GraphImage","id":"2040775695231438204","shortcode":"BxSSq6shU18","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/59782296_2288332818155562_7089934171875414494_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=106\u0026_nc_ohc=GnNQ5lJsD-4AX8FbJ-x\u0026oh=83776d437a64d32a46d88fcba6ea825d\u0026oe=5F7EB1AE","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqhnuYraQoV5wDkKO/4inLqdt3U/8AfC/41Q1EqLkhhkDbn16Cpbe1ikY5wVwpGCe+f14qtyW7F8anad1/8hj/ABpx1GzP8I/79islYImDgZBTgHsTnHQ++P50+NIniyFHmYPUnAwcZ/rUp3KeheN7ZH+Ef9+//rU37VZf3V/74/8ArVgE9vT9aSncDcviHnKSgsit/DgN93oDjpnnFQ2oWKTam8hiG6chVJJyAevGAfQ1oPbmaV5QRgOwIGc5HHYcZ7fUVStJlWRhz0bIYcgAk4J+v8qTWj9BX1RNbbS8iuhJOX2kZ4yDg49v51myuZWZvuhs8DpjsPwq5ZymSZpP4hhh/ujgj8jUFyFSVgCMBuPoef5GoitX8i5XlbyKKxFvp60/yhV9sdqh4ro5TK5pGePJImZVJJ27FI5Ocdc96rrBbsS5mOXH9z+8cf3vbHt16Vh0VmWbtvBbxyBlnBJ4xscdenIqOayjk+cTIBhckhh2wD074rGpcnpniiyA0PsKjpNF/wB9EfzFJ9i/6axf99//AFqoUUAf/9k=","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 on May 10, 2019. Image may contain: 1 person."}},{"node":{"__typename":"GraphImage","id":"2040775695214594707","shortcode":"BxSSq6rhEqT","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/58468723_132919381134151_7616430597154185544_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=107\u0026_nc_ohc=PeHp7V2v9TcAX8cX7bk\u0026oh=92a052df2bb000060c38362291fa1b5c\u0026oe=5F80AB61","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":null,"owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 on May 10, 2019. Image may contain: 2 people."}},{"node":{"__typename":"GraphImage","id":"2040775695223125391","shortcode":"BxSSq6sBnWP","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/58410030_1071941929674040_4112892459632789346_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=104\u0026_nc_ohc=1uToKyFvukYAX-YlvZ_\u0026oh=be80db6aa3b8cffad31ce014288fb09c\u0026oe=5F80B009","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqS6ljt9rMN27PYdsepFRJqcHdT/3yv+NO1KHzGjXnox4/AVRhtI5HKHOR71TbElc0hqdoeq/+OD/Gnf2hZn+Ef9+xVWTT441LYLYGcZqNrRBGJAvXHByf61PMXyMtG8sj/Cv/AH7/APrU37TY+i/98f8A1qSzs1dNzIPy6+/X+gq19ij/ALo/Klz+Q+TzLU5VGG4jOOM4HeqUalHeRMSB3C4XHHH3jj9Pzqa8hNxMArKNiA7Tkk5J5AAPHQGshpZLGQopBzgnI6+nocelXYlOxtSNmPJ+668sD0z6epA6jv2qnFD5K7d271HYjGMjv/n3pLSTzEYSlQx2lNxxjrnnofpTRMIoyeCx+QD8xn39qxcdfJlXNyAAIBjgcflS4FYSao8a7QueSee2e1MOpyeoH4VfIwuWZLhJH3xzGLIAI2Bume5PvVOWCG5bcZuRx/qz6E+v1P6Vh0VVzM2/s8AUqZweBjKNx3/lSNYIwwsqdBnIYdBn09CKxqAxHQ4qrisaBsh/z2iP/Aj/AFFJ9j/6ax/99/8A1qoUUhn/2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 on May 10, 2019. Image may contain: 1 person."}},{"node":{"__typename":"GraphImage","id":"2040775695239750548","shortcode":"BxSSq6tBCOU","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/59087484_2210778262505353_3764098294183934508_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=101\u0026_nc_ohc=rUgnv5DvIOYAX-puXgw\u0026oh=1efd0ec273842af1e762fb8898288dbb\u0026oe=5F80105B","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqrf2YgPLsB+tSrpMR/wCWjfmKNRgWTy8nHJA9+lUW09VGdx6+36U3JLSwlroaH9jxf89G/Sg6RH/z0b9KqjTY8dST/n2qm0CqvIIbOOucc9D74qul7CTu+XrexpHS4x/y0b9KP7KX++/5CqLQIpQgd+fzrpTUp3KKt04QpuAIJOT6dORWdcNvy/IjXAUHglz349M464rRuUWXajHBO7H4AflWfJByYlPIw3J69v5k8fjTsr3f3giS0mZCA+WU57dPeiQAnOMAkk8dc/z7dalj3RrtYfe+XAOeeo9PSqhuEP8AEv5/41baltsK1teoK5lYAjAU4A9Pm5/z2rcJrnvPXcMEdR0PvW4WqbW2AxZNRjkwGU8ejEdfpTU1CNM4QnOByzHgZP8AP/PFZNFTcZrvqivwYxjOepz/ADqqbiHHEQz/ALzf/FVSoouBb+0IDkRqMe7f41Y/tST0X9f8azKWi4H/2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 on May 10, 2019. Image may contain: 1 person."}},{"node":{"__typename":"GraphImage","id":"2040775695264952596","shortcode":"BxSSq6uhLEU","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-1.cdninstagram.com/v/t51.2885-15/e35/58620613_556670514858111_2165426902304771687_n.jpg?_nc_ht=scontent-bom1-1.cdninstagram.com\u0026_nc_cat=103\u0026_nc_ohc=Ak_zhExuPOAAX8PeKFb\u0026oh=6c532659de30eb566ac067659b27e7a2\u0026oe=5F804547","edge_media_to_tagged_user":{"edges":[]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqpHTXxw4/EYpw0qU9HX9f8K1ZVJRgOpUgfXFYKRzBA5kYA54BPv7jvTdkG+hZOkT9mQ/if8KadLuB3Q/if8KlS3ucZ84j6k/41P8AZ7gf8tyfw/xNTzRAoHTrgdlP4037Dcf3R/30P8a0TFMP+WxP/ARTgsmOXJP0FCknsBec4Uk9AP6VgFG88I5O0sBxyMcev61tzMPLbJwCOT6VmtEtu6u7MRnOQMj6HoefXmrauA95WSXaq5wMYLYHH4YHNNlvJkGdigHgck0XMYlckMq5PG44OOv+fwqsbZsY3Ifo1NRWgM14HMinIGR37HPcU/FYeyZTkDp3B7fnWxGflGeuBn8qnlsFzLOqK6lWU4PocH8KjN9Ew2lWI9S5J9fSsqii4GhLPbyHJV84xww7fVajP2Xt5n5r/wDE1ToouBazB28wf98//WrQXU41AGG4GO3+NYtFFxH/2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 on May 10, 2019. Image may contain: 2 people."}}]}}},{"node":{"__typename":"GraphImage","id":"2016036366743686859","shortcode":"Bv6ZmTmBs7L","dimensions":{"height":1080,"width":1080},"display_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/56557022_332440194288885_5277686347411066310_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=wodx5J4cqkMAX_rMF2k\u0026oh=b0f8c28ce643e197bc972e4898f772a3\u0026oe=5F819B30","edge_media_to_tagged_user":{"edges":[{"node":{"user":{"full_name":"\u25b6S\u039bY\u039bNT\u039b\u041f\u25c0","id":"8973318718","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/95131062_1113834748985669_5245890802139267072_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=OgheDkvUlMAAX_w4Fp3\u0026oh=e54fe96743b4fb58addee6d748296ed3\u0026oe=5F8020AD","username":"_._.bruh_ka_swag._._"},"x":0.4895978,"y":0.41340747}},{"node":{"user":{"full_name":"$UN\u20b9IT J@N@","id":"11086791856","is_verified":false,"profile_pic_url":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-19/s150x150/75244471_615600445643247_1117114001482842112_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_ohc=nAUx22TAy-sAX-DmX6h\u0026oh=dec52cf989edf48581ff735ebeaa6fd9\u0026oe=5F80E5A9","username":"dare.me_bro"},"x":0.3231623,"y":0.44810262}}]},"fact_check_overall_rating":null,"fact_check_information":null,"gating_info":null,"media_overlay_info":null,"media_preview":"ACoqv+UOh459R0+lSFMkHjGMfr/hTih7sT+A/wAKrSuEK5coMHv1oAVbUgqSchQRjnnNKLXGef4tw46H+v1NZEl1K7EozKucDn+Z96SOaRGzIS685G7+XPX09aAOgC7RznpjtThkDH9RVOF0YEp0xzVoKuOlADd5z06f/XqtMd8ZKAHI28+nt9PSpeD+NUXmiJI2kgdfmwBjjjk5zQBR807TERgZz+X+fypkpUnKrtH0708kXErFRjzOg9OOakaPPVXP0xQBaseI2I7k/wAqvCVR/e/KqVmAqkAEc9/8iru0H0oAYxPbvXPY+bB9cH866A1iRAGUA8/N/WgBq7QQ2eN+D9OOfXHWrMk8eB5ZYHnOMjvx1PpUcgGxz38yttEUdAB+FAGfbF9x4JQ87jx/PrWhmn02gD//2Q==","owner":{"id":"8973318718","username":"_._.bruh_ka_swag._._"},"is_video":false,"accessibility_caption":"Photo by \u25b6S\u039bY\u039bNT\u039b\u041f\u25c0 in Omkareshwar Jotirling on the Narmada River Side. with @_._.bruh_ka_swag._._, and @dare.me_bro. Image may contain: 2 people.","edge_media_to_caption":{"edges":[]},"edge_media_to_comment":{"count":2},"comments_disabled":false,"taken_at_timestamp":1554550284,"edge_liked_by":{"count":32},"edge_media_preview_like":{"count":32},"location":{"id":"622326429","has_public_page":true,"name":"Omkareshwar Jotirling on the Narmada River Side.","slug":"omkareshwar-jotirling-on-the-narmada-river-side"},"thumbnail_src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/56557022_332440194288885_5277686347411066310_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=wodx5J4cqkMAX_rMF2k\u0026oh=bda7569d5c0f737d2d09b2562f07f2a6\u0026oe=5F805CCB","thumbnail_resources":[{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s150x150/56557022_332440194288885_5277686347411066310_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=wodx5J4cqkMAX_rMF2k\u0026oh=4849b2a4598bfe33941c4c64f976d3db\u0026oe=5F81856E","config_width":150,"config_height":150},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s240x240/56557022_332440194288885_5277686347411066310_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=wodx5J4cqkMAX_rMF2k\u0026oh=b8c72b856cdfbaf8f46db0e96349f450\u0026oe=5F7F4028","config_width":240,"config_height":240},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s320x320/56557022_332440194288885_5277686347411066310_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=wodx5J4cqkMAX_rMF2k\u0026oh=0e000b0bc9f221246aafb4e41350104f\u0026oe=5F80659E","config_width":320,"config_height":320},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/e35/s480x480/56557022_332440194288885_5277686347411066310_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=wodx5J4cqkMAX_rMF2k\u0026oh=2ea06ecf5044b65e1528a2bd4958d3c1\u0026oe=5F81F3C8","config_width":480,"config_height":480},{"src":"https://scontent-bom1-2.cdninstagram.com/v/t51.2885-15/sh0.08/e35/s640x640/56557022_332440194288885_5277686347411066310_n.jpg?_nc_ht=scontent-bom1-2.cdninstagram.com\u0026_nc_cat=109\u0026_nc_ohc=wodx5J4cqkMAX_rMF2k\u0026oh=bda7569d5c0f737d2d09b2562f07f2a6\u0026oe=5F805CCB","config_width":640,"config_height":640}]}}]},"edge_saved_media":{"count":0,"page_info":{"has_next_page":false,"end_cursor":null},"edges":[]},"edge_media_collections":{"count":0,"page_info":{"has_next_page":false,"end_cursor":null},"edges":[]},"edge_related_profiles":{"edges":[]}}},"toast_content_on_load":null,"show_view_shop":false}]},"hostname":"www.instagram.com","is_whitelisted_crawl_bot":false,"deployment_stage":"c2","platform":"web","nonce":"9wUrJ2/JJg2tUvR11A7plg==","mid_pct":40.41748,"zero_data":{},"cache_schema_version":3,"server_checks":{},"knobx":{"17":false,"20":true,"22":true,"23":true,"24":true,"25":true,"26":true,"27":true,"28":true,"29":true,"30":true,"31":true,"32":true,"34":true,"35":false,"36":false,"37":true,"4":false},"to_cache":{"gatekeepers":{"10":false,"100":false,"101":true,"102":true,"103":true,"104":true,"105":true,"106":true,"107":false,"108":true,"11":false,"112":true,"113":true,"114":true,"116":true,"119":false,"12":false,"120":true,"123":false,"126":false,"128":false,"13":true,"131":false,"132":false,"137":true,"14":true,"140":false,"142":false,"146":true,"147":false,"149":false,"15":true,"150":false,"151":true,"152":false,"153":false,"154":true,"156":false,"157":false,"159":false,"16":true,"18":true,"19":false,"23":false,"24":false,"26":true,"27":false,"28":false,"29":true,"31":false,"32":true,"34":false,"35":false,"38":true,"4":true,"40":true,"41":false,"43":true,"5":false,"59":true,"6":false,"61":false,"62":false,"63":false,"64":false,"65":false,"67":true,"68":false,"69":true,"7":false,"71":false,"73":false,"74":false,"75":true,"77":true,"78":true,"79":false,"8":false,"81":false,"82":true,"84":false,"86":false,"88":true,"9":false,"91":false,"95":true,"97":false,"99":false},"qe":{"app_upsell":{"g":"","p":{}},"igl_app_upsell":{"g":"","p":{}},"notif":{"g":"","p":{}},"onetaplogin":{"g":"","p":{}},"felix_clear_fb_cookie":{"g":"","p":{}},"felix_creation_duration_limits":{"g":"","p":{}},"felix_creation_fb_crossposting":{"g":"","p":{}},"felix_creation_fb_crossposting_v2":{"g":"","p":{}},"felix_creation_validation":{"g":"","p":{}},"post_options":{"g":"","p":{}},"sticker_tray":{"g":"","p":{}},"web_sentry":{"g":"","p":{}},"0":{"p":{"9":false},"l":{},"qex":true},"100":{"p":{"0":true},"l":{},"qex":true},"101":{"p":{"0":false,"1":false},"l":{},"qex":true},"102":{"p":{"0":true},"l":{},"qex":true},"103":{"p":{"1":false},"l":{},"qex":true},"104":{"p":{"0":true},"l":{},"qex":true},"108":{"p":{"0":false,"1":false},"l":{},"qex":true},"109":{"p":{},"l":{},"qex":true},"111":{"p":{"0":false,"1":false},"l":{},"qex":true},"113":{"p":{"0":true,"1":false,"2":true,"4":false,"5":false,"7":false,"8":false},"l":{},"qex":true},"116":{"p":{"1":true,"2":1},"l":{},"qex":true},"117":{"p":{"0":true},"l":{},"qex":true},"118":{"p":{"0":false,"1":true,"2":false},"l":{},"qex":true},"119":{"p":{"0":false},"l":{},"qex":true},"12":{"p":{"0":5},"l":{},"qex":true},"120":{"p":{"0":false},"l":{},"qex":true},"121":{"p":{},"l":{},"qex":true},"122":{"p":{"0":false},"l":{},"qex":true},"123":{"p":{"0":true,"1":true},"l":{},"qex":true},"124":{"p":{"0":false,"1":true,"2":false},"l":{},"qex":true},"125":{"p":{"0":true},"l":{},"qex":true},"126":{"p":{"0":true},"l":{},"qex":true},"127":{"p":{"0":true,"1":false,"2":true},"l":{},"qex":true},"128":{"p":{"0":false,"1":false},"l":{},"qex":true},"129":{"p":{"1":false,"2":true},"l":{"2":true},"qex":true},"13":{"p":{"0":true},"l":{},"qex":true},"131":{"p":{"2":false,"3":false,"4":false},"l":{},"qex":true},"132":{"p":{"0":false},"l":{"0":true},"qex":true},"135":{"p":{"0":false,"1":false,"2":false,"3":false},"l":{},"qex":true},"137":{"p":{},"l":{},"qex":true},"140":{"p":{"0":true,"1":false},"l":{"0":true,"1":true},"qex":true},"141":{"p":{"0":false,"1":false,"2":false},"l":{},"qex":true},"142":{"p":{"0":false},"l":{},"qex":true},"143":{"p":{"1":false,"2":false,"3":false,"4":false},"l":{},"qex":true},"16":{"p":{"0":false},"l":{},"qex":true},"21":{"p":{"2":false},"l":{},"qex":true},"22":{"p":{"1":false,"10":0.0,"11":15,"12":3,"13":false,"2":8.0,"3":0.85,"4":0.95},"l":{},"qex":true},"23":{"p":{"0":false,"1":false},"l":{},"qex":true},"25":{"p":{},"l":{},"qex":true},"26":{"p":{"0":""},"l":{},"qex":true},"28":{"p":{"0":false},"l":{},"qex":true},"29":{"p":{},"l":{},"qex":true},"31":{"p":{},"l":{},"qex":true},"33":{"p":{},"l":{},"qex":true},"34":{"p":{"0":false},"l":{},"qex":true},"36":{"p":{"0":true,"1":true,"2":false,"3":false,"4":false},"l":{},"qex":true},"37":{"p":{"0":false},"l":{},"qex":true},"39":{"p":{"0":false,"14":false,"8":false},"l":{},"qex":true},"41":{"p":{"3":true},"l":{},"qex":true},"42":{"p":{"0":true},"l":{},"qex":true},"43":{"p":{"0":false,"1":false,"2":false},"l":{},"qex":true},"44":{"p":{"1":"inside_media","2":0.2},"l":{},"qex":true},"45":{"p":{"13":false,"17":0,"26":"control","32":false,"33":false,"35":false,"36":"control","37":false,"38":false,"40":"control","45":"control"},"l":{},"qex":true},"46":{"p":{"0":false},"l":{},"qex":true},"47":{"p":{"0":true,"1":true,"10":false,"11":false,"2":false,"3":false,"9":false},"l":{},"qex":true},"49":{"p":{"0":false},"l":{},"qex":true},"50":{"p":{"0":false},"l":{},"qex":true},"54":{"p":{"0":false},"l":{},"qex":true},"58":{"p":{"0":0.25,"1":true},"l":{},"qex":true},"59":{"p":{"0":true},"l":{},"qex":true},"62":{"p":{"0":false},"l":{},"qex":true},"65":{"p":{"0":true},"l":{},"qex":true},"67":{"p":{"0":true,"1":true,"2":true,"3":true,"4":false,"5":true,"7":false},"l":{},"qex":true},"69":{"p":{"0":true},"l":{},"qex":true},"71":{"p":{"1":"^/explore/.*|^/accounts/activity/$"},"l":{},"qex":true},"72":{"p":{"1":false,"2":false},"l":{"1":true,"2":true},"qex":true},"73":{"p":{"0":false},"l":{},"qex":true},"74":{"p":{"1":true,"12":false,"13":false,"15":false,"2":false,"3":true,"4":false,"7":false,"9":true},"l":{},"qex":true},"75":{"p":{"0":true},"l":{},"qex":true},"77":{"p":{"1":false},"l":{},"qex":true},"78":{"p":{"0":true,"1":true,"2":true,"3":true,"5":true},"l":{},"qex":true},"80":{"p":{"3":true,"4":false},"l":{},"qex":true},"84":{"p":{"0":true,"1":true,"2":true,"3":true,"4":true,"5":true,"6":false,"8":false},"l":{},"qex":true},"85":{"p":{"0":false,"1":"Pictures and Videos"},"l":{},"qex":true},"87":{"p":{"0":true},"l":{},"qex":true},"93":{"p":{"0":true},"l":{},"qex":true},"95":{"p":{"0":false,"1":false},"l":{},"qex":true},"98":{"p":{"1":false},"l":{},"qex":true}},"probably_has_app":false,"cb":false},"device_id":"6236D24C-F92D-4B0B-9AA8-EA956E61894F","browser_push_pub_key":"BIBn3E_rWTci8Xn6P9Xj3btShT85Wdtne0LtwNUyRQ5XjFNkuTq9j4MPAVLvAFhXrUU1A9UxyxBA7YIOjqDIDHI","encryption":{"key_id":"190","public_key":"a57ea7ea761b507c2a84b5dd307ded0d0e2f16f31ec4ef3df4983ca12aed6203","version":"10"},"is_dev":false,"signal_collection_config":null,"rollout_hash":"921281b24b6a","bundle_variant":"metro","frontend_env":"prod"};</script>
<script type="text/javascript">window.__initialDataLoaded(window._sharedData);</script>
<script type="text/javascript">var __BUNDLE_START_TIME__=this.nativePerformanceNow?nativePerformanceNow():Date.now(),__DEV__=false,process=this.process||{};process.env=process.env||{};process.env.NODE_ENV=process.env.NODE_ENV||"production";!(function(r){"use strict";function e(){return c=Object.create(null)}function t(r){var e=r,t=c[e];return t&&t.isInitialized?t.publicModule.exports:o(e,t)}function n(r){var e=r;if(c[e]&&c[e].importedDefault!==f)return c[e].importedDefault;var n=t(e),i=n&&n.__esModule?n.default:n;return c[e].importedDefault=i}function i(r){var e=r;if(c[e]&&c[e].importedAll!==f)return c[e].importedAll;var n,i=t(e);if(i&&i.__esModule)n=i;else{if(n={},i)for(var o in i)p.call(i,o)&&(n[o]=i[o]);n.default=i}return c[e].importedAll=n}function o(e,t){if(!s&&r.ErrorUtils){s=!0;var n;try{n=u(e,t)}catch(e){r.ErrorUtils.reportFatalError(e)}return s=!1,n}return u(e,t)}function l(r){return{segmentId:r>>>v,localId:r&h}}function u(e,o){if(!o&&g.length>0){var u=l(e),f=u.segmentId,p=u.localId,s=g[f];null!=s&&(s(p),o=c[e])}var v=r.nativeRequire;if(!o&&v){var h=l(e),I=h.segmentId;v(h.localId,I),o=c[e]}if(!o)throw a(e);if(o.hasError)throw d(e,o.error);o.isInitialized=!0;var _=o,w=_.factory,y=_.dependencyMap;try{var M=o.publicModule;if(M.id=e,m.length>0)for(var b=0;b<m.length;++b)m[b].cb(e,M);return w(r,t,n,i,M,M.exports,y),o.factory=void 0,o.dependencyMap=void 0,M.exports}catch(r){throw o.hasError=!0,o.error=r,o.isInitialized=!1,o.publicModule.exports=void 0,r}}function a(r){var e='Requiring unknown module "'+r+'".';return Error(e)}function d(r,e){var t=r;return Error('Requiring module "'+t+'", which threw an exception: '+e)}r.__r=t,r.__d=function(r,e,t){null==c[e]&&(c[e]={dependencyMap:t,factory:r,hasError:!1,importedAll:f,importedDefault:f,isInitialized:!1,publicModule:{exports:{}}})},r.__c=e,r.__registerSegment=function(r,e){g[r]=e};var c=e(),f={},p={}.hasOwnProperty;t.importDefault=n,t.importAll=i;var s=!1,v=16,h=65535;t.unpackModuleId=l,t.packModuleId=function(r){return(r.segmentId<<v)+r.localId};var m=[];t.registerHook=function(r){var e={cb:r};return m.push(e),{release:function(){for(var r=0;r<m.length;++r)if(m[r]===e){m.splice(r,1);break}}}};var g=[]})('undefined'!=typeof global?global:'undefined'!=typeof window?window:this);
__s={"js":{"146":"/static/bundles/metro/PasswordEncryptionLogger.js/1b8a581a878c.js","147":"/static/bundles/metro/EncryptionUtils.js/4606f05f85cd.js","148":"/static/bundles/metro/MobileStoriesLoginPage.js/ad60ac8713f8.js","149":"/static/bundles/metro/DesktopStoriesLoginPage.js/8ba7e69797b0.js","150":"/static/bundles/metro/AvenyFont.js/a4de03cd349f.js","151":"/static/bundles/metro/StoriesDebugInfoNub.js/9348cbeca304.js","152":"/static/bundles/metro/MobileStoriesPage.js/6ab5343b0be4.js","153":"/static/bundles/metro/DesktopStoriesPage.js/c67726676124.js","154":"/static/bundles/metro/ActivityFeedPage.js/e687d4045e65.js","155":"/static/bundles/metro/AdsSettingsPage.js/39ba1b22d287.js","156":"/static/bundles/metro/DonateCheckoutPage.js/cc1ca1afc8cb.js","157":"/static/bundles/metro/FundraiserWebView.js/c053733ddcab.js","158":"/static/bundles/metro/FBPayConnectLearnMorePage.js/91c3c07d1898.js","159":"/static/bundles/metro/CameraPage.js/66d6a1a34d29.js","160":"/static/bundles/metro/SettingsModules.js/5d3bfbac4af5.js","161":"/static/bundles/metro/ContactHistoryPage.js/83567f1471db.js","162":"/static/bundles/metro/AccessToolPage.js/26c561a2c892.js","163":"/static/bundles/metro/AccessToolViewAllPage.js/6d12ee9ab611.js","164":"/static/bundles/metro/AccountPrivacyBugPage.js/efd37c063529.js","165":"/static/bundles/metro/FirstPartyPlaintextPasswordLandingPage.js/32fbbf888e1f.js","166":"/static/bundles/metro/ThirdPartyPlaintextPasswordLandingPage.js/9bfb8bb46797.js","167":"/static/bundles/metro/ShoppingBagLandingPage.js/5bf170405fdd.js","168":"/static/bundles/metro/PlaintextPasswordBugPage.js/1bbef24df095.js","169":"/static/bundles/metro/PrivateAccountMadePublicBugPage.js/19b80c78da74.js","170":"/static/bundles/metro/PublicAccountNotMadePrivateBugPage.js/ddafd4fbe6ac.js","171":"/static/bundles/metro/BlockedAccountsBugPage.js/55ab52608783.js","172":"/static/bundles/metro/AndroidBetaPrivacyBugPage.js/2630514a2a4a.js","173":"/static/bundles/metro/DataControlsSupportPage.js/3100aa388f07.js","174":"/static/bundles/metro/DataDownloadRequestPage.js/a152fd5c22a2.js","175":"/static/bundles/metro/DataDownloadRequestConfirmPage.js/bdba9354c34f.js","176":"/static/bundles/metro/CheckpointUnderageAppealPage.js/37b50c962810.js","177":"/static/bundles/metro/AccountRecoveryLandingPage.js/e3393d27b892.js","178":"/static/bundles/metro/ContactInvitesOptOutPage.js/64050da6b885.js","179":"/static/bundles/metro/ParentalConsentPage.js/9489df9ec758.js","180":"/static/bundles/metro/ParentalConsentNotParentPage.js/c2449f134dcb.js","181":"/static/bundles/metro/TermsAcceptPage.js/d5d04e2ccb22.js","182":"/static/bundles/metro/TermsUnblockPage.js/fc2bee1f2404.js","183":"/static/bundles/metro/NewTermsConfirmPage.js/33e849d65323.js","184":"/static/bundles/metro/ContactInvitesOptOutStatusPage.js/6cec31f684c6.js","185":"/static/bundles/metro/CreationModules.js/5a88bc2839d8.js","186":"/static/bundles/metro/StoryCreationPage.js/cba598788e52.js","187":"/static/bundles/metro/DynamicExploreMediaPage.js/204929a13431.js","188":"/static/bundles/metro/DiscoverMediaPageContainer.js/66050e131ca8.js","189":"/static/bundles/metro/DiscoverPeoplePageContainer.js/b06519db3d4f.js","190":"/static/bundles/metro/EmailConfirmationPage.js/6b0a56f147e7.js","191":"/static/bundles/metro/EmailReportBadPasswordResetPage.js/634be65f389d.js","192":"/static/bundles/metro/FBSignupPage.js/5968014bb0ee.js","193":"/static/bundles/metro/ReclaimAccountPage.js/4cd08492e591.js","194":"/static/bundles/metro/NewUserInterstitial.js/6e698bfeee26.js","195":"/static/bundles/metro/MultiStepSignupPage.js/156044b4a838.js","196":"/static/bundles/metro/EmptyFeedPage.js/09d1fd9bbbe5.js","197":"/static/bundles/metro/NewUserActivatorsUnit.js/57b591a582ba.js","198":"/static/bundles/metro/FeedEndSuggestedUserUnit.js/fbae1cee86c8.js","199":"/static/bundles/metro/FeedSidebarContainer.js/d89dcf09144e.js","200":"/static/bundles/metro/SuggestedUserFeedUnitContainer.js/c433fd779329.js","201":"/static/bundles/metro/InFeedStoryTray.js/acca08f39bf0.js","202":"/static/bundles/metro/FeedPageContainer.js/9d93253f7bdf.js","203":"/static/bundles/metro/FollowListModal.js/602e301ea6d7.js","204":"/static/bundles/metro/FollowListPage.js/a82f4677d4cf.js","205":"/static/bundles/metro/SimilarAccountsPage.js/0d15bcac6bd0.js","206":"/static/bundles/metro/LikedByListContainer.js/a0a61d3b1d9a.js","207":"/static/bundles/metro/oz-player.main.js/53b7e06e3434.js","208":"/static/bundles/metro/LiveBroadcastPage.js/4353edb2ee05.js","209":"/static/bundles/metro/VotingInformationCenterPage.js/c2f019396abc.js","210":"/static/bundles/metro/FalseInformationLandingPage.js/1171e722b0c6.js","211":"/static/bundles/metro/FalseInformationAppealsPage.js/00ee87e813d3.js","212":"/static/bundles/metro/CommentLikedByListContainer.js/7eaee20bd7e6.js","213":"/static/bundles/metro/LandingPage.js/9a1cc7c3f7bf.js","214":"/static/bundles/metro/LocationsDirectoryCountryPage.js/920da6137ced.js","215":"/static/bundles/metro/LocationsDirectoryCityPage.js/09e04bdaad2b.js","216":"/static/bundles/metro/LocationPageContainer.js/f0e796c5fd46.js","217":"/static/bundles/metro/LocationsDirectoryLandingPage.js/41ce9df61b8d.js","218":"/static/bundles/metro/LoginAndSignupPage.js/378c02fdc1fe.js","219":"/static/bundles/metro/FXCalLinkingAuthForm.js/3acfa3af7bf8.js","220":"/static/bundles/metro/FXCalReauthLoginForm.js/a73220756a7d.js","221":"/static/bundles/metro/UpdateIGAppForHelpPage.js/1173d5311c4f.js","222":"/static/bundles/metro/ResetPasswordPageContainer.js/58da3e17d059.js","223":"/static/bundles/metro/MobileAllCommentsPage.js/e6ae65c6fe5f.js","224":"/static/bundles/metro/MediaChainingPageContainer.js/3546eeaa3d24.js","225":"/static/bundles/metro/PostPageContainer.js/b663acbfc5aa.js","226":"/static/bundles/metro/ProfilesDirectoryLandingPage.js/833dcc841687.js","227":"/static/bundles/metro/HashtagsDirectoryLandingPage.js/b153f7ef556b.js","228":"/static/bundles/metro/SuggestedDirectoryLandingPage.js/cb79e9fbbba2.js","229":"/static/bundles/metro/ConsentWithdrawPage.js/10fa49cb622d.js","230":"/static/bundles/metro/ProductDetailsPage.js/826cf380b76a.js","231":"/static/bundles/metro/ShoppingBagPage.js/2df2560524d7.js","232":"/static/bundles/metro/ShoppingBagDetailsPage.js/aabb3c24dbbb.js","233":"/static/bundles/metro/ProfessionalConversionModal.js/e39db194d813.js","234":"/static/bundles/metro/TagPageContainer.js/cac85a5311e4.js","235":"/static/bundles/metro/PhoneConfirmPage.js/4f3ed44522e3.js","236":"/static/bundles/metro/SimilarAccountsModal.js/6e2a5915cc4f.js","237":"/static/bundles/metro/ProfilePageContainer.js/00a288fdb044.js","238":"/static/bundles/metro/HttpErrorPage.js/7239e043e332.js","239":"/static/bundles/metro/IGTVVideoDraftsPageContainer.js/15da89e10283.js","240":"/static/bundles/metro/IGTVVideoUploadPageContainer.js/4642e51b418f.js","241":"/static/bundles/metro/OAuthPermissionsPage.js/e97c0b8145eb.js","242":"/static/bundles/metro/MobileDirectPage.js/aa6215555d7c.js","243":"/static/bundles/metro/DesktopDirectPage.js/f6d3d8047072.js","244":"/static/bundles/metro/GuideModalEntrypoint.js/91c1ca72cb6e.js","245":"/static/bundles/metro/GuidePage.js/69ecc0ed22d0.js","246":"/static/bundles/metro/SavedCollectionPage.js/45e315321a78.js","247":"/static/bundles/metro/OneTapUpsell.js/4574ddfea62c.js","248":"/static/bundles/metro/AvenyMediumFont.js/3dd42931c70f.js","249":"/static/bundles/metro/NametagLandingPage.js/9a3b85f5c7b7.js","250":"/static/bundles/metro/LocalDevTransactionToolSelectorPage.js/84e6a9273d20.js","251":"/static/bundles/metro/FBEAppStoreErrorPage.js/f96fae87c04f.js","252":"/static/bundles/metro/BloksShellPage.js/a90f2d35cc2e.js","253":"/static/bundles/metro/BusinessCategoryPage.js/903d9fe5b36e.js","254":"/static/bundles/metro/BusinessProfileDirectoryPage.js/f727b1c5c0da.js","255":"/static/bundles/metro/BloksPage.js/5e8b02a721a4.js","258":"/static/bundles/metro/ActivityFeedBox.js/07f2fdf64a53.js","259":"/static/bundles/metro/DirectMQTT.js/d5e3ebc24e5c.js","263":"/static/bundles/metro/NewsworthyContentShareFrictionModal.js/59694ba9b3d3.js","264":"/static/bundles/metro/PostModalEntrypoint.js/78548e08febb.js","265":"/static/bundles/metro/PostComments.js/f1466ff2b811.js","266":"/static/bundles/metro/shaka-player.ui.js/32613cb564e6.js","267":"/static/bundles/metro/BDClientSignalCollectionTrigger.js/f52c051cb32a.js","268":"/static/bundles/metro/Consumer.js/0c5c1ec14795.js","269":"/static/bundles/metro/Challenge.js/196c2e968310.js","270":"/static/bundles/metro/NotificationLandingPage.js/6d50ac42c3f1.js","289":"/static/bundles/metro/EmbedRich.js/6a0935958dc5.js","290":"/static/bundles/metro/EmbedVideoWrapper.js/6cbc7bce5f4e.js","291":"/static/bundles/metro/EmbedSidecarEntrypoint.js/7ef1fccb70d3.js","292":"/static/bundles/metro/EmbedGuideEntrypoint.js/4f7b59c3dcbb.js","293":"/static/bundles/metro/EmbedAsyncLogger.js/91592c89c0c1.js"},"css":{"148":"/static/bundles/metro/MobileStoriesLoginPage.css/1d1e2c65dcb8.css","149":"/static/bundles/metro/DesktopStoriesLoginPage.css/a9b44db8f8b9.css","150":"/static/bundles/metro/AvenyFont.css/25fd69ff2266.css","151":"/static/bundles/metro/StoriesDebugInfoNub.css/4bc325bd3e84.css","152":"/static/bundles/metro/MobileStoriesPage.css/d7fad9ccb21d.css","153":"/static/bundles/metro/DesktopStoriesPage.css/f65b36cdc693.css","154":"/static/bundles/metro/ActivityFeedPage.css/2acf67cd0ca7.css","155":"/static/bundles/metro/AdsSettingsPage.css/5b29a3826adf.css","156":"/static/bundles/metro/DonateCheckoutPage.css/0dc9dea77d48.css","158":"/static/bundles/metro/FBPayConnectLearnMorePage.css/228327863000.css","159":"/static/bundles/metro/CameraPage.css/785b548ea3d8.css","160":"/static/bundles/metro/SettingsModules.css/8f2311289895.css","161":"/static/bundles/metro/ContactHistoryPage.css/6450a9697d3b.css","162":"/static/bundles/metro/AccessToolPage.css/77c8460b4d9b.css","163":"/static/bundles/metro/AccessToolViewAllPage.css/61f9d399977f.css","164":"/static/bundles/metro/AccountPrivacyBugPage.css/b084aece73a3.css","165":"/static/bundles/metro/FirstPartyPlaintextPasswordLandingPage.css/d4c180511b0e.css","166":"/static/bundles/metro/ThirdPartyPlaintextPasswordLandingPage.css/d4c180511b0e.css","167":"/static/bundles/metro/ShoppingBagLandingPage.css/9ea9da8878b6.css","168":"/static/bundles/metro/PlaintextPasswordBugPage.css/d4c180511b0e.css","169":"/static/bundles/metro/PrivateAccountMadePublicBugPage.css/d4c180511b0e.css","170":"/static/bundles/metro/PublicAccountNotMadePrivateBugPage.css/d4c180511b0e.css","171":"/static/bundles/metro/BlockedAccountsBugPage.css/d4c180511b0e.css","172":"/static/bundles/metro/AndroidBetaPrivacyBugPage.css/158f7ff45015.css","173":"/static/bundles/metro/DataControlsSupportPage.css/2c93110330b6.css","174":"/static/bundles/metro/DataDownloadRequestPage.css/526b60394de5.css","175":"/static/bundles/metro/DataDownloadRequestConfirmPage.css/5deaa1b33b08.css","176":"/static/bundles/metro/CheckpointUnderageAppealPage.css/0dfde7fcc39c.css","177":"/static/bundles/metro/AccountRecoveryLandingPage.css/c2fce7e557e0.css","178":"/static/bundles/metro/ContactInvitesOptOutPage.css/16fb0ada266f.css","179":"/static/bundles/metro/ParentalConsentPage.css/c5f1e68fdc65.css","180":"/static/bundles/metro/ParentalConsentNotParentPage.css/6308e4086754.css","181":"/static/bundles/metro/TermsAcceptPage.css/14b0bd420229.css","182":"/static/bundles/metro/TermsUnblockPage.css/58dc1cabc72b.css","183":"/static/bundles/metro/NewTermsConfirmPage.css/eefd956746e6.css","184":"/static/bundles/metro/ContactInvitesOptOutStatusPage.css/c71af4588c9c.css","185":"/static/bundles/metro/CreationModules.css/7b9c9a1f3d05.css","186":"/static/bundles/metro/StoryCreationPage.css/4679e6613df1.css","187":"/static/bundles/metro/DynamicExploreMediaPage.css/98d90f5c4d8d.css","188":"/static/bundles/metro/DiscoverMediaPageContainer.css/8200199e0b43.css","189":"/static/bundles/metro/DiscoverPeoplePageContainer.css/4c8a5990ffdc.css","190":"/static/bundles/metro/EmailConfirmationPage.css/d3ff48c961de.css","191":"/static/bundles/metro/EmailReportBadPasswordResetPage.css/e4462019534b.css","192":"/static/bundles/metro/FBSignupPage.css/69fe845008ba.css","193":"/static/bundles/metro/ReclaimAccountPage.css/d4c180511b0e.css","194":"/static/bundles/metro/NewUserInterstitial.css/ff3166381a45.css","195":"/static/bundles/metro/MultiStepSignupPage.css/5d38af6d00b4.css","196":"/static/bundles/metro/EmptyFeedPage.css/e1ccedbdafd4.css","198":"/static/bundles/metro/FeedEndSuggestedUserUnit.css/42e60023d1af.css","199":"/static/bundles/metro/FeedSidebarContainer.css/80d2dea43880.css","200":"/static/bundles/metro/SuggestedUserFeedUnitContainer.css/7daaa9d9b746.css","201":"/static/bundles/metro/InFeedStoryTray.css/f361def5799d.css","202":"/static/bundles/metro/FeedPageContainer.css/a4cb12bf3d83.css","203":"/static/bundles/metro/FollowListModal.css/c87bdb99287d.css","204":"/static/bundles/metro/FollowListPage.css/827eed5e9080.css","205":"/static/bundles/metro/SimilarAccountsPage.css/d5a63776c54b.css","206":"/static/bundles/metro/LikedByListContainer.css/afae07d29ddc.css","208":"/static/bundles/metro/LiveBroadcastPage.css/71b37f39ddb7.css","209":"/static/bundles/metro/VotingInformationCenterPage.css/82fb716b1ca0.css","211":"/static/bundles/metro/FalseInformationAppealsPage.css/f7561461b909.css","212":"/static/bundles/metro/CommentLikedByListContainer.css/afae07d29ddc.css","213":"/static/bundles/metro/LandingPage.css/6a2cd3554675.css","214":"/static/bundles/metro/LocationsDirectoryCountryPage.css/4dacfdb3fce0.css","215":"/static/bundles/metro/LocationsDirectoryCityPage.css/4dacfdb3fce0.css","216":"/static/bundles/metro/LocationPageContainer.css/83f0fb4dfde7.css","217":"/static/bundles/metro/LocationsDirectoryLandingPage.css/8d8beac67daf.css","218":"/static/bundles/metro/LoginAndSignupPage.css/7843fc980a59.css","219":"/static/bundles/metro/FXCalLinkingAuthForm.css/c228eff939ba.css","220":"/static/bundles/metro/FXCalReauthLoginForm.css/b10376b96a91.css","221":"/static/bundles/metro/UpdateIGAppForHelpPage.css/6fb2336f846b.css","222":"/static/bundles/metro/ResetPasswordPageContainer.css/d4c180511b0e.css","223":"/static/bundles/metro/MobileAllCommentsPage.css/745e87d16b8b.css","224":"/static/bundles/metro/MediaChainingPageContainer.css/b17a8ab7e639.css","225":"/static/bundles/metro/PostPageContainer.css/cea00d9b3885.css","226":"/static/bundles/metro/ProfilesDirectoryLandingPage.css/b406e80cc262.css","227":"/static/bundles/metro/HashtagsDirectoryLandingPage.css/b406e80cc262.css","228":"/static/bundles/metro/SuggestedDirectoryLandingPage.css/b406e80cc262.css","230":"/static/bundles/metro/ProductDetailsPage.css/bd392000139a.css","231":"/static/bundles/metro/ShoppingBagPage.css/1bae09706657.css","232":"/static/bundles/metro/ShoppingBagDetailsPage.css/f728f48efcdc.css","233":"/static/bundles/metro/ProfessionalConversionModal.css/73eb67ac933c.css","234":"/static/bundles/metro/TagPageContainer.css/1ea3fe1389f4.css","235":"/static/bundles/metro/PhoneConfirmPage.css/59398e0ab679.css","237":"/static/bundles/metro/ProfilePageContainer.css/76e60cbb6385.css","239":"/static/bundles/metro/IGTVVideoDraftsPageContainer.css/ec236f53db50.css","240":"/static/bundles/metro/IGTVVideoUploadPageContainer.css/8f1406ecfdde.css","241":"/static/bundles/metro/OAuthPermissionsPage.css/f127ac651626.css","242":"/static/bundles/metro/MobileDirectPage.css/f1254bb09016.css","243":"/static/bundles/metro/DesktopDirectPage.css/def303665ce4.css","245":"/static/bundles/metro/GuidePage.css/e48ef70240d1.css","246":"/static/bundles/metro/SavedCollectionPage.css/c9307f5c771b.css","247":"/static/bundles/metro/OneTapUpsell.css/c312b28c297e.css","248":"/static/bundles/metro/AvenyMediumFont.css/410fb2643dbe.css","249":"/static/bundles/metro/NametagLandingPage.css/0c3f6c69e197.css","250":"/static/bundles/metro/LocalDevTransactionToolSelectorPage.css/3f8f9bb4c8a7.css","251":"/static/bundles/metro/FBEAppStoreErrorPage.css/37c4f5efdab6.css","253":"/static/bundles/metro/BusinessCategoryPage.css/f28d39ecb44f.css","254":"/static/bundles/metro/BusinessProfileDirectoryPage.css/fb1beac7a18d.css","255":"/static/bundles/metro/BloksPage.css/ebd31d13c7cc.css","258":"/static/bundles/metro/ActivityFeedBox.css/0ca107771f73.css","265":"/static/bundles/metro/PostComments.css/205108e2268c.css","268":"/static/bundles/metro/Consumer.css/78ef69d4d61f.css","269":"/static/bundles/metro/Challenge.css/992fb1e15d5f.css","270":"/static/bundles/metro/NotificationLandingPage.css/c35e66b76f51.css","289":"/static/bundles/metro/EmbedRich.css/72ecf161f64d.css","290":"/static/bundles/metro/EmbedVideoWrapper.css/ad9e589aefef.css","291":"/static/bundles/metro/EmbedSidecarEntrypoint.css/a7e53e2ac53e.css","292":"/static/bundles/metro/EmbedGuideEntrypoint.css/755367020fef.css"}}</script>
<script type="text/javascript" src="/static/bundles/metro/Polyfills.js/d09385357158.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="/static/bundles/metro/Vendor.js/5a56d51ae30f.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="/static/bundles/metro/en_US.js/45ad846d6702.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="/static/bundles/metro/ConsumerLibCommons.js/32794c0708be.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="/static/bundles/metro/ConsumerUICommons.js/8958da704d20.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="/static/bundles/metro/ConsumerAsyncCommons.js/c4ca4238a0b9.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="/static/bundles/metro/Consumer.js/0c5c1ec14795.js" crossorigin="anonymous" charset="utf-8" async=""></script>
<script type="text/javascript" src="/static/bundles/metro/ProfilePageContainer.js/00a288fdb044.js" crossorigin="anonymous" charset="utf-8" async=""></script>
<script type="text/javascript">
(function(){
function normalizeError(err) {
var errorInfo = err.error || {};
var getConfigProp = function(propName, defaultValueIfNotTruthy) {
var propValue = window._sharedData && window._sharedData[propName];
return propValue ? propValue : defaultValueIfNotTruthy;
};
return {
line: err.line || errorInfo.message || 0,
column: err.column || 0,
name: 'InitError',
message: err.message || errorInfo.message || '',
script: errorInfo.script || '',
stack: errorInfo.stackTrace || errorInfo.stack || '',
timestamp: Date.now(),
ref: window.location.href,
deployment_stage: getConfigProp('deployment_stage', ''),
frontend_env: getConfigProp('frontend_env', 'prod'),
rollout_hash: getConfigProp('rollout_hash', ''),
is_prerelease: window.__PRERELEASE__ || false,
bundle_variant: getConfigProp('bundle_variant', null),
request_url: err.url || window.location.href,
response_status_code: errorInfo.statusCode || 0
}
}
window.addEventListener('load', function(){
if (window.__bufferedErrors && window.__bufferedErrors.length) {
if (window.caches && window.caches.keys && window.caches.delete) {
window.caches.keys().then(function(keys) {
keys.forEach(function(key) {
window.caches.delete(key)
})
})
}
window.__bufferedErrors.map(function(error) {
return normalizeError(error)
}).forEach(function(normalizedError) {
var request = new XMLHttpRequest();
request.open('POST', '/client_error/', true);
request.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
request.send(JSON.stringify(normalizedError));
})
}
})
}());
</script>
</body>
</html>