File size: 30,851 Bytes
06508e7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
{
    "post": {
        "STR_FIELD": "id",
        "add_fetch_param": "<bound method Submission.add_fetch_param of Submission(id='1gi8j78')>",
        "all_awardings": [],
        "allow_live_comments": false,
        "approved_at_utc": null,
        "approved_by": null,
        "archived": false,
        "author": "CranEXE",
        "author_flair_background_color": "transparent",
        "author_flair_css_class": null,
        "author_flair_richtext": [
            {
                "a": ":john_marston:",
                "e": "emoji",
                "u": "https://emoji.redditmedia.com/0zuykkevq5t11_t5_2rn7o/john_marston"
            },
            {
                "e": "text",
                "t": " John Marston"
            }
        ],
        "author_flair_template_id": "1631783c-b523-11e8-93fe-0ecde4b36d2c",
        "author_flair_text": ":john_marston: John Marston",
        "author_flair_text_color": "dark",
        "author_flair_type": "richtext",
        "author_fullname": "t2_7za5dl9p",
        "author_is_blocked": false,
        "author_patreon_flair": false,
        "author_premium": false,
        "award": "<bound method GildableMixin.award of Submission(id='1gi8j78')>",
        "awarders": [],
        "banned_at_utc": null,
        "banned_by": null,
        "can_gild": false,
        "can_mod_post": false,
        "category": null,
        "clear_vote": "<bound method VotableMixin.clear_vote of Submission(id='1gi8j78')>",
        "clicked": false,
        "comment_limit": 2048,
        "comment_sort": "confidence",
        "comments": "<praw.models.comment_forest.CommentForest object at 0x769a89e6f460>",
        "content_categories": null,
        "contest_mode": false,
        "created": 1730587465.0,
        "created_utc": 1730587465.0,
        "crosspost": "<bound method Submission.crosspost of Submission(id='1gi8j78')>",
        "delete": "<bound method EditableMixin.delete of Submission(id='1gi8j78')>",
        "disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Submission(id='1gi8j78')>",
        "discussion_type": null,
        "distinguished": null,
        "domain": "self.reddeadredemption",
        "downs": 0,
        "downvote": "<bound method VotableMixin.downvote of Submission(id='1gi8j78')>",
        "duplicates": "<bound method SubmissionListingMixin.duplicates of Submission(id='1gi8j78')>",
        "edit": "<bound method EditableMixin.edit of Submission(id='1gi8j78')>",
        "edited": false,
        "enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Submission(id='1gi8j78')>",
        "flair": "<praw.models.reddit.submission.SubmissionFlair object at 0x769a89afc580>",
        "fullname": "t3_1gi8j78",
        "gild": "<bound method GildableMixin.gild of Submission(id='1gi8j78')>",
        "gilded": 0,
        "gildings": {},
        "hidden": false,
        "hide": "<bound method Submission.hide of Submission(id='1gi8j78')>",
        "hide_score": false,
        "id": "1gi8j78",
        "id_from_url": "<function Submission.id_from_url at 0x769a8d396680>",
        "is_created_from_ads_ui": false,
        "is_crosspostable": true,
        "is_meta": false,
        "is_original_content": false,
        "is_reddit_media_domain": false,
        "is_robot_indexable": true,
        "is_self": true,
        "is_video": false,
        "likes": null,
        "link_flair_background_color": "#ccac00",
        "link_flair_css_class": "one",
        "link_flair_richtext": [
            {
                "e": "text",
                "t": "Discussion"
            }
        ],
        "link_flair_template_id": "8fd72a22-c100-11e8-9512-0ec3e2dde770",
        "link_flair_text": "Discussion",
        "link_flair_text_color": "light",
        "link_flair_type": "richtext",
        "locked": false,
        "mark_visited": "<bound method Submission.mark_visited of Submission(id='1gi8j78')>",
        "media": null,
        "media_embed": {},
        "media_metadata": {
            "jf2g5ohvekyd1": {
                "status": "valid",
                "e": "Image",
                "m": "image/png",
                "p": [
                    {
                        "y": 108,
                        "x": 108,
                        "u": "https://preview.redd.it/jf2g5ohvekyd1.png?width=108&crop=smart&auto=webp&s=047243d5f01c044a75620f20a521a9f0b3de3881"
                    },
                    {
                        "y": 216,
                        "x": 216,
                        "u": "https://preview.redd.it/jf2g5ohvekyd1.png?width=216&crop=smart&auto=webp&s=e03b71dea0bc9e354d2e3a750896aeb1c305dc00"
                    },
                    {
                        "y": 320,
                        "x": 320,
                        "u": "https://preview.redd.it/jf2g5ohvekyd1.png?width=320&crop=smart&auto=webp&s=9463567bc35368f6dee9de63f54fcc7ea4cc30e5"
                    },
                    {
                        "y": 640,
                        "x": 640,
                        "u": "https://preview.redd.it/jf2g5ohvekyd1.png?width=640&crop=smart&auto=webp&s=435479f965cf2a92336cb50b990916448ec71e1a"
                    },
                    {
                        "y": 960,
                        "x": 960,
                        "u": "https://preview.redd.it/jf2g5ohvekyd1.png?width=960&crop=smart&auto=webp&s=090a1505a2b751513c9e7a5b54840e663effe820"
                    },
                    {
                        "y": 1080,
                        "x": 1080,
                        "u": "https://preview.redd.it/jf2g5ohvekyd1.png?width=1080&crop=smart&auto=webp&s=8a06ff824fe0e0e6a514f7f4f7c321bd39262ea5"
                    }
                ],
                "s": {
                    "y": 1080,
                    "x": 1080,
                    "u": "https://preview.redd.it/jf2g5ohvekyd1.png?width=1080&format=png&auto=webp&s=50244362904e3a76d6ebbcebb06b750b0279f150"
                },
                "id": "jf2g5ohvekyd1"
            }
        },
        "media_only": false,
        "mod": "<praw.models.reddit.submission.SubmissionModeration object at 0x769a89e97730>",
        "mod_note": null,
        "mod_reason_by": null,
        "mod_reason_title": null,
        "mod_reports": [],
        "name": "t3_1gi8j78",
        "no_follow": true,
        "num_comments": 3,
        "num_crossposts": 0,
        "num_reports": null,
        "over_18": false,
        "parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.submission.Submission'>>",
        "permalink": "/r/reddeadredemption/comments/1gi8j78/theory_the_wolf_arthur_see_doesnt_represent_him/",
        "pinned": false,
        "pwls": 6,
        "quarantine": false,
        "removal_reason": null,
        "removed_by": null,
        "removed_by_category": null,
        "reply": "<bound method ReplyableMixin.reply of Submission(id='1gi8j78')>",
        "report": "<bound method ReportableMixin.report of Submission(id='1gi8j78')>",
        "report_reasons": null,
        "save": "<bound method SavableMixin.save of Submission(id='1gi8j78')>",
        "saved": false,
        "score": 0,
        "secure_media": null,
        "secure_media_embed": {},
        "selftext": "i saw a lot of people thinking the wolf and the deer represented low honor and high honor arthur while i personaly think arthur is always the deer... and the wolf....represent micah\n\nhttps://preview.redd.it/jf2g5ohvekyd1.png?width=1080&format=png&auto=webp&s=50244362904e3a76d6ebbcebb06b750b0279f150\n\nwell i say a wolf but it could be more a coyote If you look at the feet of the coyote there's a dead deer....and in some cinematic the low honor animal seem to have a scar on the right eye same as micah both where actually telling the fate of arthur the wolf/coyote never was about arthur it was warning us about what micah was doing \n\ni also think while we are at it the high honor deer isn't arthur either the only deer arthur is represented by is the dead one in low honor the deer in high honor...it's john fleeing toward the sun away from the wolf and the storm\n\nto sum it up arthur never dreamed about his own peace he either dreamed of saving john (high honor) or dying fighting micah the scavenger who end up \"eating\" what's left of arthur\n\nwell it's my theory tell me what you think and what's your own interpretation of it",
        "selftext_html": "<!-- SC_OFF --><div class=\"md\"><p>i saw a lot of people thinking the wolf and the deer represented low honor and high honor arthur while i personaly think arthur is always the deer... and the wolf....represent micah</p>\n\n<p><a href=\"https://preview.redd.it/jf2g5ohvekyd1.png?width=1080&amp;format=png&amp;auto=webp&amp;s=50244362904e3a76d6ebbcebb06b750b0279f150\">https://preview.redd.it/jf2g5ohvekyd1.png?width=1080&amp;format=png&amp;auto=webp&amp;s=50244362904e3a76d6ebbcebb06b750b0279f150</a></p>\n\n<p>well i say a wolf but it could be more a coyote If you look at the feet of the coyote there&#39;s a dead deer....and in some cinematic the low honor animal seem to have a scar on the right eye same as micah both where actually telling the fate of arthur the wolf/coyote never was about arthur it was warning us about what micah was doing </p>\n\n<p>i also think while we are at it the high honor deer isn&#39;t arthur either the only deer arthur is represented by is the dead one in low honor the deer in high honor...it&#39;s john fleeing toward the sun away from the wolf and the storm</p>\n\n<p>to sum it up arthur never dreamed about his own peace he either dreamed of saving john (high honor) or dying fighting micah the scavenger who end up &quot;eating&quot; what&#39;s left of arthur</p>\n\n<p>well it&#39;s my theory tell me what you think and what&#39;s your own interpretation of it</p>\n</div><!-- SC_ON -->",
        "send_replies": true,
        "shortlink": "https://redd.it/1gi8j78",
        "spoiler": false,
        "stickied": false,
        "subreddit": "reddeadredemption",
        "subreddit_id": "t5_2rn7o",
        "subreddit_name_prefixed": "r/reddeadredemption",
        "subreddit_subscribers": 2009785,
        "subreddit_type": "public",
        "suggested_sort": "top",
        "thumbnail": "https://b.thumbs.redditmedia.com/B9lWWlUjxqm8vcyBNOItbK2Z-qLuoygogMXmZPDjrbo.jpg",
        "thumbnail_height": 140,
        "thumbnail_width": 140,
        "title": "[theory] the wolf arthur see doesn't represent him ",
        "top_awarded_type": null,
        "total_awards_received": 0,
        "treatment_tags": [],
        "unhide": "<bound method Submission.unhide of Submission(id='1gi8j78')>",
        "unsave": "<bound method SavableMixin.unsave of Submission(id='1gi8j78')>",
        "ups": 0,
        "upvote": "<bound method VotableMixin.upvote of Submission(id='1gi8j78')>",
        "upvote_ratio": 0.5,
        "url": "https://www.reddit.com/r/reddeadredemption/comments/1gi8j78/theory_the_wolf_arthur_see_doesnt_represent_him/",
        "user_reports": [],
        "view_count": null,
        "visited": false,
        "wls": 6,
        "created_date": "2024-11-02",
        "full_link": "https://www.reddit.com/r/reddeadredemption/comments/1gi8j78/theory_the_wolf_arthur_see_doesnt_represent_him/"
    },
    "comments": [
        {
            "MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
            "STR_FIELD": "id",
            "all_awardings": [],
            "approved_at_utc": null,
            "approved_by": null,
            "archived": false,
            "associated_award": null,
            "author": "erikaironer11",
            "author_flair_background_color": null,
            "author_flair_css_class": null,
            "author_flair_richtext": [],
            "author_flair_template_id": null,
            "author_flair_text": null,
            "author_flair_text_color": null,
            "author_flair_type": "text",
            "author_fullname": "t2_k6xab5iy",
            "author_is_blocked": false,
            "author_patreon_flair": false,
            "author_premium": false,
            "award": "<bound method GildableMixin.award of Comment(id='lv3bsto')>",
            "awarders": [],
            "banned_at_utc": null,
            "banned_by": null,
            "block": "<bound method InboxableMixin.block of Comment(id='lv3bsto')>",
            "body": "That\u2019s an interesting way of seeing it.\n\nI personally like to believe that these aren\u2019t just visions Arthur sees, but actual spiritual beings represented by these animals.\n\nSupernatural things like \u201cDeath\u201d exist in this world as seen with the Strange Man, and thus I like to believe these two spirits are an extension of that. Where they are the ones judging Arthur for his actions and taking him to the afterlife",
            "body_html": "<div class=\"md\"><p>That\u2019s an interesting way of seeing it.</p>\n\n<p>I personally like to believe that these aren\u2019t just visions Arthur sees, but actual spiritual beings represented by these animals.</p>\n\n<p>Supernatural things like \u201cDeath\u201d exist in this world as seen with the Strange Man, and thus I like to believe these two spirits are an extension of that. Where they are the ones judging Arthur for his actions and taking him to the afterlife</p>\n</div>",
            "can_gild": false,
            "can_mod_post": false,
            "clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lv3bsto')>",
            "collapse": "<bound method InboxableMixin.collapse of Comment(id='lv3bsto')>",
            "collapsed": false,
            "collapsed_because_crowd_control": null,
            "collapsed_reason": null,
            "collapsed_reason_code": null,
            "comment_type": null,
            "controversiality": 0,
            "created": 1730587864.0,
            "created_utc": 1730587864.0,
            "delete": "<bound method EditableMixin.delete of Comment(id='lv3bsto')>",
            "depth": 0,
            "disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lv3bsto')>",
            "distinguished": null,
            "downs": 0,
            "downvote": "<bound method VotableMixin.downvote of Comment(id='lv3bsto')>",
            "edit": "<bound method EditableMixin.edit of Comment(id='lv3bsto')>",
            "edited": false,
            "enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lv3bsto')>",
            "fullname": "t1_lv3bsto",
            "gild": "<bound method GildableMixin.gild of Comment(id='lv3bsto')>",
            "gilded": 0,
            "gildings": {},
            "id": "lv3bsto",
            "id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
            "is_root": true,
            "is_submitter": false,
            "likes": null,
            "link_id": "t3_1gi8j78",
            "locked": false,
            "mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lv3bsto')>",
            "mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lv3bsto')>",
            "mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89e943a0>",
            "mod_note": null,
            "mod_reason_by": null,
            "mod_reason_title": null,
            "mod_reports": [],
            "name": "t1_lv3bsto",
            "no_follow": true,
            "num_reports": null,
            "parent": "<bound method Comment.parent of Comment(id='lv3bsto')>",
            "parent_id": "t3_1gi8j78",
            "parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
            "permalink": "/r/reddeadredemption/comments/1gi8j78/theory_the_wolf_arthur_see_doesnt_represent_him/lv3bsto/",
            "refresh": "<bound method Comment.refresh of Comment(id='lv3bsto')>",
            "removal_reason": null,
            "replies": "<praw.models.comment_forest.CommentForest object at 0x769a89e6e350>",
            "reply": "<bound method ReplyableMixin.reply of Comment(id='lv3bsto')>",
            "report": "<bound method ReportableMixin.report of Comment(id='lv3bsto')>",
            "report_reasons": null,
            "save": "<bound method SavableMixin.save of Comment(id='lv3bsto')>",
            "saved": false,
            "score": 3,
            "score_hidden": false,
            "send_replies": true,
            "stickied": false,
            "submission": "1gi8j78",
            "subreddit": "reddeadredemption",
            "subreddit_id": "t5_2rn7o",
            "subreddit_name_prefixed": "r/reddeadredemption",
            "subreddit_type": "public",
            "top_awarded_type": null,
            "total_awards_received": 0,
            "treatment_tags": [],
            "unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lv3bsto')>",
            "uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lv3bsto')>",
            "unrepliable_reason": null,
            "unsave": "<bound method SavableMixin.unsave of Comment(id='lv3bsto')>",
            "ups": 3,
            "upvote": "<bound method VotableMixin.upvote of Comment(id='lv3bsto')>",
            "user_reports": []
        },
        {
            "MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
            "STR_FIELD": "id",
            "all_awardings": [],
            "approved_at_utc": null,
            "approved_by": null,
            "archived": false,
            "associated_award": null,
            "author": "CranEXE",
            "author_flair_background_color": "transparent",
            "author_flair_css_class": null,
            "author_flair_richtext": [
                {
                    "a": ":john_marston:",
                    "u": "https://emoji.redditmedia.com/0zuykkevq5t11_t5_2rn7o/john_marston",
                    "e": "emoji"
                },
                {
                    "e": "text",
                    "t": " John Marston"
                }
            ],
            "author_flair_template_id": "1631783c-b523-11e8-93fe-0ecde4b36d2c",
            "author_flair_text": ":john_marston: John Marston",
            "author_flair_text_color": "dark",
            "author_flair_type": "richtext",
            "author_fullname": "t2_7za5dl9p",
            "author_is_blocked": false,
            "author_patreon_flair": false,
            "author_premium": false,
            "award": "<bound method GildableMixin.award of Comment(id='lv3e9cp')>",
            "awarders": [],
            "banned_at_utc": null,
            "banned_by": null,
            "block": "<bound method InboxableMixin.block of Comment(id='lv3e9cp')>",
            "body": "it's true rdr universe allow paranormal and spiritual stuff after all there's alien, zombie apocalypse, the strange man, ghosts and bigfoot who eat babies (lol)\n\n but if it was just spirit why the wolf eat the deer in the end ? (also to further my theory the fact the dead deer have no antlers representing the fact arthur was defensless by the end of the game)\n\n but i like your theory of the spirit thought especialy with how by the end arthur was getting close to the indian tribes i just think the similarity between the wolf appearance, the detail of the dead deer, and all it really feel like symbolic of the story\n\n i think if your theory is correct it shows an interesting difference between arthur and john. arthur represent death by something more balanced from the cycle of life hence why he see two animals and....well arthur is a dreamer john is more \"pragmatic\" and lived more thinking he was just a man hence why he represent death by the strange man a familliar face but with no name (john presented himself under many fake name by the years)",
            "body_html": "<div class=\"md\"><p>it&#39;s true rdr universe allow paranormal and spiritual stuff after all there&#39;s alien, zombie apocalypse, the strange man, ghosts and bigfoot who eat babies (lol)</p>\n\n<p>but if it was just spirit why the wolf eat the deer in the end ? (also to further my theory the fact the dead deer have no antlers representing the fact arthur was defensless by the end of the game)</p>\n\n<p>but i like your theory of the spirit thought especialy with how by the end arthur was getting close to the indian tribes i just think the similarity between the wolf appearance, the detail of the dead deer, and all it really feel like symbolic of the story</p>\n\n<p>i think if your theory is correct it shows an interesting difference between arthur and john. arthur represent death by something more balanced from the cycle of life hence why he see two animals and....well arthur is a dreamer john is more &quot;pragmatic&quot; and lived more thinking he was just a man hence why he represent death by the strange man a familliar face but with no name (john presented himself under many fake name by the years)</p>\n</div>",
            "can_gild": false,
            "can_mod_post": false,
            "clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lv3e9cp')>",
            "collapse": "<bound method InboxableMixin.collapse of Comment(id='lv3e9cp')>",
            "collapsed": false,
            "collapsed_because_crowd_control": null,
            "collapsed_reason": null,
            "collapsed_reason_code": null,
            "comment_type": null,
            "controversiality": 0,
            "created": 1730588724.0,
            "created_utc": 1730588724.0,
            "delete": "<bound method EditableMixin.delete of Comment(id='lv3e9cp')>",
            "depth": 1,
            "disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lv3e9cp')>",
            "distinguished": null,
            "downs": 0,
            "downvote": "<bound method VotableMixin.downvote of Comment(id='lv3e9cp')>",
            "edit": "<bound method EditableMixin.edit of Comment(id='lv3e9cp')>",
            "edited": false,
            "enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lv3e9cp')>",
            "fullname": "t1_lv3e9cp",
            "gild": "<bound method GildableMixin.gild of Comment(id='lv3e9cp')>",
            "gilded": 0,
            "gildings": {},
            "id": "lv3e9cp",
            "id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
            "is_root": false,
            "is_submitter": true,
            "likes": null,
            "link_id": "t3_1gi8j78",
            "locked": false,
            "mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lv3e9cp')>",
            "mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lv3e9cp')>",
            "mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89e6d840>",
            "mod_note": null,
            "mod_reason_by": null,
            "mod_reason_title": null,
            "mod_reports": [],
            "name": "t1_lv3e9cp",
            "no_follow": true,
            "num_reports": null,
            "parent": "<bound method Comment.parent of Comment(id='lv3e9cp')>",
            "parent_id": "t1_lv3bsto",
            "parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
            "permalink": "/r/reddeadredemption/comments/1gi8j78/theory_the_wolf_arthur_see_doesnt_represent_him/lv3e9cp/",
            "refresh": "<bound method Comment.refresh of Comment(id='lv3e9cp')>",
            "removal_reason": null,
            "replies": "<praw.models.comment_forest.CommentForest object at 0x769a89e6f400>",
            "reply": "<bound method ReplyableMixin.reply of Comment(id='lv3e9cp')>",
            "report": "<bound method ReportableMixin.report of Comment(id='lv3e9cp')>",
            "report_reasons": null,
            "save": "<bound method SavableMixin.save of Comment(id='lv3e9cp')>",
            "saved": false,
            "score": 1,
            "score_hidden": false,
            "send_replies": true,
            "stickied": false,
            "submission": "1gi8j78",
            "subreddit": "reddeadredemption",
            "subreddit_id": "t5_2rn7o",
            "subreddit_name_prefixed": "r/reddeadredemption",
            "subreddit_type": "public",
            "top_awarded_type": null,
            "total_awards_received": 0,
            "treatment_tags": [],
            "unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lv3e9cp')>",
            "uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lv3e9cp')>",
            "unrepliable_reason": null,
            "unsave": "<bound method SavableMixin.unsave of Comment(id='lv3e9cp')>",
            "ups": 1,
            "upvote": "<bound method VotableMixin.upvote of Comment(id='lv3e9cp')>",
            "user_reports": []
        },
        {
            "MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
            "STR_FIELD": "id",
            "all_awardings": [],
            "approved_at_utc": null,
            "approved_by": null,
            "archived": false,
            "associated_award": null,
            "author": "erikaironer11",
            "author_flair_background_color": null,
            "author_flair_css_class": null,
            "author_flair_richtext": [],
            "author_flair_template_id": null,
            "author_flair_text": null,
            "author_flair_text_color": null,
            "author_flair_type": "text",
            "author_fullname": "t2_k6xab5iy",
            "author_is_blocked": false,
            "author_patreon_flair": false,
            "author_premium": false,
            "award": "<bound method GildableMixin.award of Comment(id='lv3f4a7')>",
            "awarders": [],
            "banned_at_utc": null,
            "banned_by": null,
            "block": "<bound method InboxableMixin.block of Comment(id='lv3f4a7')>",
            "body": "(Btw it\u2019s a coyote, you can see it\u2019s the case when comparing it to the coyote in the game). \n\nI feel the coyote was eating the dead animal as a symbolism of it being a \u201cbottom feeder\u201d something that prowls on the weak. Something Low honor Arthur does with no remorse. \n\nI really like your last paragraph, really good way of putting it",
            "body_html": "<div class=\"md\"><p>(Btw it\u2019s a coyote, you can see it\u2019s the case when comparing it to the coyote in the game). </p>\n\n<p>I feel the coyote was eating the dead animal as a symbolism of it being a \u201cbottom feeder\u201d something that prowls on the weak. Something Low honor Arthur does with no remorse. </p>\n\n<p>I really like your last paragraph, really good way of putting it</p>\n</div>",
            "can_gild": false,
            "can_mod_post": false,
            "clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lv3f4a7')>",
            "collapse": "<bound method InboxableMixin.collapse of Comment(id='lv3f4a7')>",
            "collapsed": false,
            "collapsed_because_crowd_control": null,
            "collapsed_reason": null,
            "collapsed_reason_code": null,
            "comment_type": null,
            "controversiality": 0,
            "created": 1730589023.0,
            "created_utc": 1730589023.0,
            "delete": "<bound method EditableMixin.delete of Comment(id='lv3f4a7')>",
            "depth": 2,
            "disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lv3f4a7')>",
            "distinguished": null,
            "downs": 0,
            "downvote": "<bound method VotableMixin.downvote of Comment(id='lv3f4a7')>",
            "edit": "<bound method EditableMixin.edit of Comment(id='lv3f4a7')>",
            "edited": false,
            "enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lv3f4a7')>",
            "fullname": "t1_lv3f4a7",
            "gild": "<bound method GildableMixin.gild of Comment(id='lv3f4a7')>",
            "gilded": 0,
            "gildings": {},
            "id": "lv3f4a7",
            "id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
            "is_root": false,
            "is_submitter": false,
            "likes": null,
            "link_id": "t3_1gi8j78",
            "locked": false,
            "mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lv3f4a7')>",
            "mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lv3f4a7')>",
            "mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89e6fe80>",
            "mod_note": null,
            "mod_reason_by": null,
            "mod_reason_title": null,
            "mod_reports": [],
            "name": "t1_lv3f4a7",
            "no_follow": true,
            "num_reports": null,
            "parent": "<bound method Comment.parent of Comment(id='lv3f4a7')>",
            "parent_id": "t1_lv3e9cp",
            "parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
            "permalink": "/r/reddeadredemption/comments/1gi8j78/theory_the_wolf_arthur_see_doesnt_represent_him/lv3f4a7/",
            "refresh": "<bound method Comment.refresh of Comment(id='lv3f4a7')>",
            "removal_reason": null,
            "replies": "<praw.models.comment_forest.CommentForest object at 0x769a89e6fe20>",
            "reply": "<bound method ReplyableMixin.reply of Comment(id='lv3f4a7')>",
            "report": "<bound method ReportableMixin.report of Comment(id='lv3f4a7')>",
            "report_reasons": null,
            "save": "<bound method SavableMixin.save of Comment(id='lv3f4a7')>",
            "saved": false,
            "score": 2,
            "score_hidden": false,
            "send_replies": true,
            "stickied": false,
            "submission": "1gi8j78",
            "subreddit": "reddeadredemption",
            "subreddit_id": "t5_2rn7o",
            "subreddit_name_prefixed": "r/reddeadredemption",
            "subreddit_type": "public",
            "top_awarded_type": null,
            "total_awards_received": 0,
            "treatment_tags": [],
            "unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lv3f4a7')>",
            "uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lv3f4a7')>",
            "unrepliable_reason": null,
            "unsave": "<bound method SavableMixin.unsave of Comment(id='lv3f4a7')>",
            "ups": 2,
            "upvote": "<bound method VotableMixin.upvote of Comment(id='lv3f4a7')>",
            "user_reports": []
        }
    ]
}