├── .editorconfig
├── .github
├── dependabot.yml
└── workflows
│ └── docs.yml
├── .gitignore
├── .project
├── .travis.yml
├── LICENSE
├── README.md
├── build.gradle
├── config
└── detekt
│ └── detekt.yml
├── docs
├── index.html
├── lib
│ ├── alltypes
│ │ └── index.html
│ ├── com.kirkbushman.araw.adapters
│ │ ├── -poly-json-adapter-factory
│ │ │ ├── -init-.html
│ │ │ ├── create.html
│ │ │ └── index.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.clients
│ │ ├── -accounts-client
│ │ │ ├── -init-.html
│ │ │ ├── comments.html
│ │ │ ├── contributed-subreddits.html
│ │ │ ├── downvoted.html
│ │ │ ├── fetch-contributions.html
│ │ │ ├── fetch-subreddits.html
│ │ │ ├── get-current-user.html
│ │ │ ├── gilded.html
│ │ │ ├── hidden.html
│ │ │ ├── index.html
│ │ │ ├── me.html
│ │ │ ├── moderated-subreddits.html
│ │ │ ├── my-blocked.html
│ │ │ ├── my-friends.html
│ │ │ ├── my-karma.html
│ │ │ ├── my-prefs.html
│ │ │ ├── my-trophies.html
│ │ │ ├── overview.html
│ │ │ ├── saved.html
│ │ │ ├── submitted.html
│ │ │ ├── subscribed-subreddits.html
│ │ │ └── upvoted.html
│ │ ├── -base-reddit-client
│ │ │ ├── -init-.html
│ │ │ └── index.html
│ │ ├── -contributions-client
│ │ │ ├── -init-.html
│ │ │ ├── comment.html
│ │ │ ├── comments.html
│ │ │ ├── delete.html
│ │ │ ├── hide.html
│ │ │ ├── index.html
│ │ │ ├── lock.html
│ │ │ ├── mark-as-nsfw.html
│ │ │ ├── mark-as-spoiler.html
│ │ │ ├── more-children.html
│ │ │ ├── multireddit-submissions.html
│ │ │ ├── poll-vote.html
│ │ │ ├── reply.html
│ │ │ ├── save.html
│ │ │ ├── submission.html
│ │ │ ├── submissions-search.html
│ │ │ ├── submissions.html
│ │ │ ├── trending-subreddits.html
│ │ │ ├── unmark-as-nsfw.html
│ │ │ ├── unspoiler.html
│ │ │ ├── upload-media.html
│ │ │ └── vote.html
│ │ ├── -messages-client
│ │ │ ├── -init-.html
│ │ │ ├── comments-replies.html
│ │ │ ├── delete-message.html
│ │ │ ├── fetch-messages.html
│ │ │ ├── inbox.html
│ │ │ ├── index.html
│ │ │ ├── mark-all-as-read.html
│ │ │ ├── mark-as-read.html
│ │ │ ├── mentions.html
│ │ │ ├── messages.html
│ │ │ ├── self-replies.html
│ │ │ ├── sent.html
│ │ │ ├── unread.html
│ │ │ └── vote.html
│ │ ├── -multis-client
│ │ │ ├── -init-.html
│ │ │ ├── add-subreddit-to-multi.html
│ │ │ ├── delete-subreddit-to-multi.html
│ │ │ ├── get-multi-description.html
│ │ │ ├── get-multi-subreddit.html
│ │ │ ├── index.html
│ │ │ ├── multi-submissions.html
│ │ │ ├── my-multis.html
│ │ │ ├── redditor-multis.html
│ │ │ └── set-multi-description.html
│ │ ├── -redditors-client
│ │ │ ├── -init-.html
│ │ │ ├── comments.html
│ │ │ ├── fetch-contributions.html
│ │ │ ├── fetch-redditor-search.html
│ │ │ ├── gilded.html
│ │ │ ├── index.html
│ │ │ ├── moderated-subreddits.html
│ │ │ ├── overview.html
│ │ │ ├── redditor.html
│ │ │ ├── submitted.html
│ │ │ └── trophies.html
│ │ ├── -search-client
│ │ │ ├── -init-.html
│ │ │ ├── fetch-redditor-search.html
│ │ │ ├── fetch-subreddits-search.html
│ │ │ ├── index.html
│ │ │ ├── search-subreddits.html
│ │ │ └── submissions-search.html
│ │ ├── -subreddits-client
│ │ │ ├── -init-.html
│ │ │ ├── all.html
│ │ │ ├── fetch-subreddits-search.html
│ │ │ ├── friends.html
│ │ │ ├── frontpage.html
│ │ │ ├── index.html
│ │ │ ├── popular.html
│ │ │ ├── rules.html
│ │ │ ├── submit.html
│ │ │ ├── subreddit-banned.html
│ │ │ ├── subreddit-contributors.html
│ │ │ ├── subreddit-flairs.html
│ │ │ ├── subreddit-moderators.html
│ │ │ ├── subreddit-muted.html
│ │ │ ├── subreddit-wiki-banned.html
│ │ │ ├── subreddit-wiki-contributors.html
│ │ │ ├── subreddit.html
│ │ │ ├── subreddits.html
│ │ │ └── subscribe.html
│ │ ├── -wikis-client
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── wiki-page.html
│ │ │ ├── wiki-pages.html
│ │ │ ├── wiki-revision.html
│ │ │ ├── wiki-revisions.html
│ │ │ └── wiki.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.exceptions
│ │ ├── -upload-contract-field-missing-exception
│ │ │ ├── -init-.html
│ │ │ └── index.html
│ │ ├── -wiki-disabled-exception
│ │ │ ├── -init-.html
│ │ │ └── index.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.fetcher
│ │ ├── -comments-fetcher
│ │ │ ├── -d-e-f-a-u-l-t_-s-o-r-t-i-n-g.html
│ │ │ ├── -init-.html
│ │ │ ├── get-focused-comment-id.html
│ │ │ ├── get-sorting.html
│ │ │ ├── get-submission.html
│ │ │ ├── index.html
│ │ │ ├── on-fetching.html
│ │ │ ├── on-map-result.html
│ │ │ └── set-sorting.html
│ │ ├── -contributions-fetcher
│ │ │ ├── -d-e-f-a-u-l-t_-s-o-r-t-i-n-g.html
│ │ │ ├── -d-e-f-a-u-l-t_-t-i-m-e-p-e-r-i-o-d.html
│ │ │ ├── -init-.html
│ │ │ ├── get-sorting.html
│ │ │ ├── get-time-period.html
│ │ │ ├── index.html
│ │ │ ├── on-fetching.html
│ │ │ ├── on-map-result.html
│ │ │ ├── requires-time-period.html
│ │ │ ├── set-sorting.html
│ │ │ └── set-time-period.html
│ │ ├── -fetcher
│ │ │ ├── -d-e-f-a-u-l-t_-l-i-m-i-t.html
│ │ │ ├── -init-.html
│ │ │ ├── -m-a-x_-l-i-m-i-t.html
│ │ │ ├── -m-i-n_-l-i-m-i-t.html
│ │ │ ├── fetch-next.html
│ │ │ ├── fetch-previous.html
│ │ │ ├── get-count.html
│ │ │ ├── get-limit.html
│ │ │ ├── get-next-token.html
│ │ │ ├── get-page-num.html
│ │ │ ├── get-previous-token.html
│ │ │ ├── has-next.html
│ │ │ ├── has-previous.html
│ │ │ ├── has-started.html
│ │ │ ├── index.html
│ │ │ ├── on-fetching.html
│ │ │ ├── on-map-result.html
│ │ │ ├── reset.html
│ │ │ └── set-limit.html
│ │ ├── -inbox-fetcher
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── on-fetching.html
│ │ │ └── on-map-result.html
│ │ ├── -multi-submissions-fetcher
│ │ │ ├── -d-e-f-a-u-l-t_-s-o-r-t-i-n-g.html
│ │ │ ├── -d-e-f-a-u-l-t_-t-i-m-e-p-e-r-i-o-d.html
│ │ │ ├── -init-.html
│ │ │ ├── get-sorting.html
│ │ │ ├── get-time-period.html
│ │ │ ├── index.html
│ │ │ ├── on-fetching.html
│ │ │ ├── on-map-result.html
│ │ │ ├── requires-time-period.html
│ │ │ ├── set-sorting.html
│ │ │ └── set-time-period.html
│ │ ├── -redditor-search-fetcher
│ │ │ ├── -d-e-f-a-u-l-t_-s-o-r-t-i-n-g.html
│ │ │ ├── -d-e-f-a-u-l-t_-t-i-m-e-p-e-r-i-o-d.html
│ │ │ ├── -init-.html
│ │ │ ├── get-sorting.html
│ │ │ ├── get-time-period.html
│ │ │ ├── index.html
│ │ │ ├── on-fetching.html
│ │ │ ├── on-map-result.html
│ │ │ ├── set-sorting.html
│ │ │ └── set-time-period.html
│ │ ├── -submissions-fetcher
│ │ │ ├── -d-e-f-a-u-l-t_-s-o-r-t-i-n-g.html
│ │ │ ├── -d-e-f-a-u-l-t_-t-i-m-e-p-e-r-i-o-d.html
│ │ │ ├── -init-.html
│ │ │ ├── get-sorting.html
│ │ │ ├── get-time-period.html
│ │ │ ├── index.html
│ │ │ ├── on-fetching.html
│ │ │ ├── on-map-result.html
│ │ │ ├── requires-time-period.html
│ │ │ ├── set-sorting.html
│ │ │ └── set-time-period.html
│ │ ├── -submissions-search-fetcher
│ │ │ ├── -d-e-f-a-u-l-t_-s-o-r-t-i-n-g.html
│ │ │ ├── -d-e-f-a-u-l-t_-t-i-m-e-p-e-r-i-o-d.html
│ │ │ ├── -init-.html
│ │ │ ├── get-sorting.html
│ │ │ ├── get-time-period.html
│ │ │ ├── index.html
│ │ │ ├── on-fetching.html
│ │ │ ├── on-map-result.html
│ │ │ ├── requires-time-period.html
│ │ │ ├── set-sorting.html
│ │ │ └── set-time-period.html
│ │ ├── -subreddits-fetcher
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── on-fetching.html
│ │ │ └── on-map-result.html
│ │ ├── -subreddits-search-fetcher
│ │ │ ├── -d-e-f-a-u-l-t_-s-o-r-t-i-n-g.html
│ │ │ ├── -d-e-f-a-u-l-t_-t-i-m-e-p-e-r-i-o-d.html
│ │ │ ├── -init-.html
│ │ │ ├── get-sorting.html
│ │ │ ├── get-time-period.html
│ │ │ ├── index.html
│ │ │ ├── on-fetching.html
│ │ │ ├── on-map-result.html
│ │ │ ├── set-sorting.html
│ │ │ └── set-time-period.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.helpers
│ │ ├── -auth-app-helper
│ │ │ ├── -init-.html
│ │ │ ├── auth.html
│ │ │ ├── get-reddit-client.html
│ │ │ ├── index.html
│ │ │ ├── is-redirected-url.html
│ │ │ ├── provide-auth-url.html
│ │ │ ├── retrieve-token-bearer-from-url.html
│ │ │ └── start-web-view-authentication.html
│ │ ├── -auth-helper
│ │ │ ├── -init-.html
│ │ │ ├── auth.html
│ │ │ ├── bearer.html
│ │ │ ├── force-renew.html
│ │ │ ├── force-revoke.html
│ │ │ ├── get-reddit-client.html
│ │ │ ├── get-saved-bearer.html
│ │ │ ├── get-saved-reddit-client.html
│ │ │ ├── has-saved-bearer.html
│ │ │ ├── index.html
│ │ │ ├── logging.html
│ │ │ └── should-login.html
│ │ ├── -auth-userless-helper
│ │ │ ├── -init-.html
│ │ │ ├── auth.html
│ │ │ ├── get-reddit-client.html
│ │ │ └── index.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.http.base
│ │ ├── -envelope-kind
│ │ │ ├── -account.html
│ │ │ ├── -award.html
│ │ │ ├── -comment.html
│ │ │ ├── -karma-list.html
│ │ │ ├── -labeled-multi-description.html
│ │ │ ├── -labeled-multi.html
│ │ │ ├── -link.html
│ │ │ ├── -listing.html
│ │ │ ├── -message.html
│ │ │ ├── -moderated-list.html
│ │ │ ├── -more.html
│ │ │ ├── -subreddit.html
│ │ │ ├── -trophy-list.html
│ │ │ ├── -user-list.html
│ │ │ ├── -wikipage-listing.html
│ │ │ ├── -wikipage.html
│ │ │ ├── index.html
│ │ │ └── value.html
│ │ ├── -envelope
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -listing
│ │ │ ├── after.html
│ │ │ ├── before.html
│ │ │ ├── children.html
│ │ │ ├── dist.html
│ │ │ ├── index.html
│ │ │ └── modhash.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.http.listings
│ │ ├── -comment-data-listing
│ │ │ ├── -init-.html
│ │ │ ├── after.html
│ │ │ ├── before.html
│ │ │ ├── children.html
│ │ │ ├── dist.html
│ │ │ ├── index.html
│ │ │ └── modhash.html
│ │ ├── -comment-listing
│ │ │ ├── -init-.html
│ │ │ ├── after.html
│ │ │ ├── before.html
│ │ │ ├── children.html
│ │ │ ├── dist.html
│ │ │ ├── index.html
│ │ │ └── modhash.html
│ │ ├── -contribution-listing
│ │ │ ├── -init-.html
│ │ │ ├── after.html
│ │ │ ├── before.html
│ │ │ ├── children.html
│ │ │ ├── dist.html
│ │ │ ├── index.html
│ │ │ └── modhash.html
│ │ ├── -message-listing
│ │ │ ├── -init-.html
│ │ │ ├── after.html
│ │ │ ├── before.html
│ │ │ ├── children.html
│ │ │ ├── dist.html
│ │ │ ├── index.html
│ │ │ └── modhash.html
│ │ ├── -redditor-listing
│ │ │ ├── -init-.html
│ │ │ ├── after.html
│ │ │ ├── before.html
│ │ │ ├── children.html
│ │ │ ├── dist.html
│ │ │ ├── index.html
│ │ │ └── modhash.html
│ │ ├── -submission-listing
│ │ │ ├── -init-.html
│ │ │ ├── after.html
│ │ │ ├── before.html
│ │ │ ├── children.html
│ │ │ ├── dist.html
│ │ │ ├── index.html
│ │ │ └── modhash.html
│ │ ├── -subreddit-data-listing
│ │ │ ├── -init-.html
│ │ │ ├── after.html
│ │ │ ├── before.html
│ │ │ ├── children.html
│ │ │ ├── dist.html
│ │ │ ├── index.html
│ │ │ └── modhash.html
│ │ ├── -subreddit-listing
│ │ │ ├── -init-.html
│ │ │ ├── after.html
│ │ │ ├── before.html
│ │ │ ├── children.html
│ │ │ ├── dist.html
│ │ │ ├── index.html
│ │ │ └── modhash.html
│ │ ├── -wiki-revision-listing
│ │ │ ├── -init-.html
│ │ │ ├── after.html
│ │ │ ├── before.html
│ │ │ ├── children.html
│ │ │ ├── dist.html
│ │ │ ├── index.html
│ │ │ └── modhash.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.http
│ │ ├── -enveloped-comment-data-listing
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-comment-data
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-comment-listing
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-comment
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-contribution-listing
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-contribution
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-data
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-message-listing
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-message
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-more-comment
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-multi-description
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-multi
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-redditor-data
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-redditor-listing
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-redditor
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-submission-listing
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-submission
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-subreddit-data-listing
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-subreddit-data
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-subreddit-listing
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-subreddit
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-trophy-list
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-trophy
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -enveloped-wiki-page
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ ├── kind.html
│ │ │ ├── message.html
│ │ │ └── reason.html
│ │ ├── -enveloped-wiki-revision-listing
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.models.base
│ │ ├── -comment-data
│ │ │ ├── depth.html
│ │ │ ├── has-replies.html
│ │ │ ├── index.html
│ │ │ ├── parent-fullname.html
│ │ │ ├── replies-size.html
│ │ │ └── replies.html
│ │ ├── -contribution
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ └── index.html
│ │ ├── -created
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ └── index.html
│ │ ├── -distinguishable
│ │ │ ├── distinguished-raw.html
│ │ │ └── index.html
│ │ ├── -editable
│ │ │ ├── edited-raw.html
│ │ │ └── index.html
│ │ ├── -gildable
│ │ │ ├── can-gild.html
│ │ │ ├── fullname.html
│ │ │ ├── gildings.html
│ │ │ ├── id.html
│ │ │ └── index.html
│ │ ├── -redditor-data
│ │ │ ├── fullname.html
│ │ │ └── index.html
│ │ ├── -replyable
│ │ │ ├── fullname.html
│ │ │ └── index.html
│ │ ├── -saveable
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ └── is-saved.html
│ │ ├── -sorting
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -subreddit-data
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── display-name-prefixed.html
│ │ │ ├── display-name.html
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── subreddit-type.html
│ │ │ ├── title.html
│ │ │ └── url.html
│ │ ├── -thing
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ └── index.html
│ │ ├── -votable
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── likes.html
│ │ │ └── score.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.models.commons
│ │ ├── -gildings
│ │ │ ├── -init-.html
│ │ │ ├── gold-count.html
│ │ │ ├── has-gildings.html
│ │ │ ├── index.html
│ │ │ ├── platinum-count.html
│ │ │ └── silver-count.html
│ │ ├── -image-detail
│ │ │ ├── -init-.html
│ │ │ ├── height.html
│ │ │ ├── index.html
│ │ │ ├── url.html
│ │ │ └── width.html
│ │ ├── -image-variants
│ │ │ ├── -init-.html
│ │ │ ├── gif.html
│ │ │ ├── index.html
│ │ │ ├── mp4.html
│ │ │ ├── nsfw.html
│ │ │ └── obfuscated.html
│ │ ├── -images
│ │ │ ├── -init-.html
│ │ │ ├── equals.html
│ │ │ ├── hash-code.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── resolutions.html
│ │ │ ├── source.html
│ │ │ └── variants.html
│ │ ├── -media-embed
│ │ │ ├── -init-.html
│ │ │ ├── content.html
│ │ │ ├── height.html
│ │ │ ├── index.html
│ │ │ └── width.html
│ │ ├── -media
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── o-embed.html
│ │ │ └── type.html
│ │ ├── -o-embed
│ │ │ ├── -init-.html
│ │ │ ├── author-name.html
│ │ │ ├── author-url.html
│ │ │ ├── height.html
│ │ │ ├── html.html
│ │ │ ├── index.html
│ │ │ ├── provider-name.html
│ │ │ ├── provider-url.html
│ │ │ ├── thumbnail-height.html
│ │ │ ├── thumbnail-url.html
│ │ │ ├── thumbnail-width.html
│ │ │ ├── title.html
│ │ │ ├── type.html
│ │ │ └── width.html
│ │ ├── -reddit-media
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── reddit-video.html
│ │ ├── -reddit-video
│ │ │ ├── -init-.html
│ │ │ ├── dash-url.html
│ │ │ ├── duration.html
│ │ │ ├── fallback-url.html
│ │ │ ├── height.html
│ │ │ ├── hls-url.html
│ │ │ ├── index.html
│ │ │ ├── scrubber-media-url.html
│ │ │ └── width.html
│ │ ├── -submission-kind
│ │ │ ├── -i-m-a-g-e.html
│ │ │ ├── -l-i-n-k.html
│ │ │ ├── -s-e-l-f.html
│ │ │ ├── -v-i-d-e-o-g-i-f.html
│ │ │ ├── -v-i-d-e-o.html
│ │ │ ├── index.html
│ │ │ └── kind-str.html
│ │ ├── -submission-preview
│ │ │ ├── -init-.html
│ │ │ ├── higher-res.html
│ │ │ ├── id.html
│ │ │ ├── images.html
│ │ │ ├── index.html
│ │ │ ├── is-enabled.html
│ │ │ ├── lower-res.html
│ │ │ ├── reddit-video-preview.html
│ │ │ ├── source.html
│ │ │ └── variants.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.models.enums
│ │ ├── -comments-sorting
│ │ │ ├── -b-e-s-t.html
│ │ │ ├── -c-o-n-f-i-d-e-n-c-e.html
│ │ │ ├── -c-o-n-t-r-o-v-e-r-s-i-a-l.html
│ │ │ ├── -l-i-v-e.html
│ │ │ ├── -n-e-w.html
│ │ │ ├── -o-l-d.html
│ │ │ ├── -q-a.html
│ │ │ ├── -r-a-n-d-o-m.html
│ │ │ ├── -t-o-p.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -contributions-sorting
│ │ │ ├── -c-o-n-t-r-o-v-e-r-s-i-a-l.html
│ │ │ ├── -h-o-t.html
│ │ │ ├── -n-e-w.html
│ │ │ ├── -t-o-p.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -distinguished
│ │ │ ├── -a-d-m-i-n.html
│ │ │ ├── -m-o-d-e-r-a-t-o-r.html
│ │ │ ├── -n-o-t_-d-i-s-t-i-n-g-u-i-s-h-e-d.html
│ │ │ ├── -s-p-e-c-i-a-l.html
│ │ │ └── index.html
│ │ ├── -redditor-search-sorting
│ │ │ ├── -a-l-l.html
│ │ │ ├── -r-e-l-e-v-a-n-c-e.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -search-sorting
│ │ │ ├── -c-o-m-m-e-n-t-s.html
│ │ │ ├── -h-o-t.html
│ │ │ ├── -n-e-w.html
│ │ │ ├── -r-e-l-e-v-a-n-c-e.html
│ │ │ ├── -t-o-p.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -submissions-sorting
│ │ │ ├── -b-e-s-t.html
│ │ │ ├── -c-o-n-t-r-o-v-e-r-s-i-a-l.html
│ │ │ ├── -h-o-t.html
│ │ │ ├── -n-e-w.html
│ │ │ ├── -r-i-s-i-n-g.html
│ │ │ ├── -t-o-p.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -subreddit-search-sorting
│ │ │ ├── -a-l-l.html
│ │ │ ├── -r-e-l-e-v-a-n-c-e.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -time-period
│ │ │ ├── -a-l-l_-t-i-m-e.html
│ │ │ ├── -l-a-s-t_-d-a-y.html
│ │ │ ├── -l-a-s-t_-h-o-u-r.html
│ │ │ ├── -l-a-s-t_-m-o-n-t-h.html
│ │ │ ├── -l-a-s-t_-w-e-e-k.html
│ │ │ ├── -l-a-s-t_-y-e-a-r.html
│ │ │ ├── index.html
│ │ │ └── time-period-str.html
│ │ ├── -vote
│ │ │ ├── -d-o-w-n-v-o-t-e.html
│ │ │ ├── -n-o-n-e.html
│ │ │ ├── -u-p-v-o-t-e.html
│ │ │ ├── dir.html
│ │ │ └── index.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.models.general
│ │ ├── -comments-sorting
│ │ │ ├── -b-e-s-t.html
│ │ │ ├── -c-o-n-f-i-d-e-n-c-e.html
│ │ │ ├── -c-o-n-t-r-o-v-e-r-s-i-a-l.html
│ │ │ ├── -l-i-v-e.html
│ │ │ ├── -n-e-w.html
│ │ │ ├── -o-l-d.html
│ │ │ ├── -q-a.html
│ │ │ ├── -r-a-n-d-o-m.html
│ │ │ ├── -t-o-p.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -contributions-sorting
│ │ │ ├── -c-o-n-t-r-o-v-e-r-s-i-a-l.html
│ │ │ ├── -h-o-t.html
│ │ │ ├── -n-e-w.html
│ │ │ ├── -t-o-p.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -distinguished
│ │ │ ├── -a-d-m-i-n.html
│ │ │ ├── -m-o-d-e-r-a-t-o-r.html
│ │ │ ├── -n-o-t_-d-i-s-t-i-n-g-u-i-s-h-e-d.html
│ │ │ ├── -s-p-e-c-i-a-l.html
│ │ │ └── index.html
│ │ ├── -gallery-data
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── items.html
│ │ ├── -gallery-image-data
│ │ │ ├── -init-.html
│ │ │ ├── gif.html
│ │ │ ├── index.html
│ │ │ ├── mp4.html
│ │ │ ├── u.html
│ │ │ ├── x.html
│ │ │ └── y.html
│ │ ├── -gallery-image
│ │ │ ├── -init-.html
│ │ │ ├── e.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── m.html
│ │ │ ├── s.html
│ │ │ └── status.html
│ │ ├── -gallery-media-item
│ │ │ ├── -init-.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ └── media-id.html
│ │ ├── -gallery-media
│ │ │ ├── -init-.html
│ │ │ ├── dash-url.html
│ │ │ ├── e.html
│ │ │ ├── hls-url.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── m.html
│ │ │ ├── p.html
│ │ │ ├── s.html
│ │ │ └── status.html
│ │ ├── -gildings
│ │ │ ├── -init-.html
│ │ │ ├── gold-count.html
│ │ │ ├── has-gildings.html
│ │ │ ├── index.html
│ │ │ ├── platinum-count.html
│ │ │ └── silver-count.html
│ │ ├── -image-detail
│ │ │ ├── -init-.html
│ │ │ ├── height.html
│ │ │ ├── index.html
│ │ │ ├── url.html
│ │ │ └── width.html
│ │ ├── -image-variants
│ │ │ ├── -init-.html
│ │ │ ├── gif.html
│ │ │ ├── index.html
│ │ │ ├── mp4.html
│ │ │ ├── nsfw.html
│ │ │ └── obfuscated.html
│ │ ├── -images
│ │ │ ├── -init-.html
│ │ │ ├── equals.html
│ │ │ ├── hash-code.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── resolutions.html
│ │ │ ├── source.html
│ │ │ └── variants.html
│ │ ├── -media-embed
│ │ │ ├── -init-.html
│ │ │ ├── content.html
│ │ │ ├── height.html
│ │ │ ├── index.html
│ │ │ └── width.html
│ │ ├── -media
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── o-embed.html
│ │ │ └── type.html
│ │ ├── -o-embed
│ │ │ ├── -init-.html
│ │ │ ├── author-name.html
│ │ │ ├── author-url.html
│ │ │ ├── height.html
│ │ │ ├── html.html
│ │ │ ├── index.html
│ │ │ ├── provider-name.html
│ │ │ ├── provider-url.html
│ │ │ ├── thumbnail-height.html
│ │ │ ├── thumbnail-url.html
│ │ │ ├── thumbnail-width.html
│ │ │ ├── title.html
│ │ │ ├── type.html
│ │ │ └── width.html
│ │ ├── -poll-data
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── options.html
│ │ │ ├── total-vote-count.html
│ │ │ ├── user-selection.html
│ │ │ └── voting-end-timestamp.html
│ │ ├── -poll-option
│ │ │ ├── -init-.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── text.html
│ │ │ └── vote-count.html
│ │ ├── -reddit-media
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── reddit-video.html
│ │ ├── -reddit-video
│ │ │ ├── -init-.html
│ │ │ ├── dash-url.html
│ │ │ ├── duration.html
│ │ │ ├── fallback-url.html
│ │ │ ├── height.html
│ │ │ ├── hls-url.html
│ │ │ ├── index.html
│ │ │ ├── scrubber-media-url.html
│ │ │ └── width.html
│ │ ├── -redditor-search-sorting
│ │ │ ├── -a-l-l.html
│ │ │ ├── -r-e-l-e-v-a-n-c-e.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -search-sorting
│ │ │ ├── -c-o-m-m-e-n-t-s.html
│ │ │ ├── -h-o-t.html
│ │ │ ├── -n-e-w.html
│ │ │ ├── -r-e-l-e-v-a-n-c-e.html
│ │ │ ├── -t-o-p.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -sorting
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -submission-kind
│ │ │ ├── image.html
│ │ │ ├── index.html
│ │ │ ├── link.html
│ │ │ ├── self.html
│ │ │ ├── video.html
│ │ │ └── videogif.html
│ │ ├── -submission-preview
│ │ │ ├── -init-.html
│ │ │ ├── higher-res.html
│ │ │ ├── id.html
│ │ │ ├── images.html
│ │ │ ├── index.html
│ │ │ ├── is-enabled.html
│ │ │ ├── lower-res.html
│ │ │ ├── reddit-video-preview.html
│ │ │ ├── source.html
│ │ │ └── variants.html
│ │ ├── -submissions-sorting
│ │ │ ├── -b-e-s-t.html
│ │ │ ├── -c-o-n-t-r-o-v-e-r-s-i-a-l.html
│ │ │ ├── -h-o-t.html
│ │ │ ├── -n-e-w.html
│ │ │ ├── -r-i-s-i-n-g.html
│ │ │ ├── -t-o-p.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -subreddit-search-sorting
│ │ │ ├── -a-l-l.html
│ │ │ ├── -r-e-l-e-v-a-n-c-e.html
│ │ │ ├── index.html
│ │ │ ├── requires-time-period.html
│ │ │ └── sorting-str.html
│ │ ├── -time-period
│ │ │ ├── -a-l-l_-t-i-m-e.html
│ │ │ ├── -l-a-s-t_-d-a-y.html
│ │ │ ├── -l-a-s-t_-h-o-u-r.html
│ │ │ ├── -l-a-s-t_-m-o-n-t-h.html
│ │ │ ├── -l-a-s-t_-w-e-e-k.html
│ │ │ ├── -l-a-s-t_-y-e-a-r.html
│ │ │ ├── index.html
│ │ │ └── time-period-str.html
│ │ ├── -vote
│ │ │ ├── -d-o-w-n-v-o-t-e.html
│ │ │ ├── -n-o-n-e.html
│ │ │ ├── -u-p-v-o-t-e.html
│ │ │ ├── dir.html
│ │ │ └── index.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.models.mixins
│ │ ├── -comment-data
│ │ │ ├── depth.html
│ │ │ ├── has-replies.html
│ │ │ ├── index.html
│ │ │ ├── parent-fullname.html
│ │ │ ├── replies-size.html
│ │ │ └── replies.html
│ │ ├── -contribution
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ └── index.html
│ │ ├── -created
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ └── index.html
│ │ ├── -distinguishable
│ │ │ ├── distinguished-raw.html
│ │ │ └── index.html
│ │ ├── -editable
│ │ │ ├── edited-raw.html
│ │ │ └── index.html
│ │ ├── -gildable
│ │ │ ├── can-gild.html
│ │ │ ├── fullname.html
│ │ │ ├── gildings.html
│ │ │ ├── id.html
│ │ │ └── index.html
│ │ ├── -replyable
│ │ │ ├── fullname.html
│ │ │ └── index.html
│ │ ├── -saveable
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ └── is-saved.html
│ │ ├── -subreddit-data
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── display-name-prefixed.html
│ │ │ ├── display-name.html
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── subreddit-type.html
│ │ │ ├── title.html
│ │ │ └── url.html
│ │ ├── -thing
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ └── index.html
│ │ ├── -votable
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── likes.html
│ │ │ └── score.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.models.requests
│ │ ├── -add-multi-sub-req
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── model.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.models.responses
│ │ ├── -more-children-response-j-s-o-n
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ └── index.html
│ │ ├── -more-children-response-things
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── things.html
│ │ ├── -more-children-response
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── json.html
│ │ ├── -poll-vote-data
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── update-post-poll-vote-state.html
│ │ ├── -poll-vote-input
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── option-id.html
│ │ │ └── post-id.html
│ │ ├── -poll-vote-req
│ │ │ ├── -init-.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ └── variables.html
│ │ ├── -poll-vote-res
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ └── index.html
│ │ ├── -poll-vote-state-option
│ │ │ ├── -init-.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ └── vote-count.html
│ │ ├── -poll-vote-state-poll
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── options.html
│ │ ├── -poll-vote-state
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── ok.html
│ │ │ └── poll.html
│ │ ├── -poll-vote-variables
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── input.html
│ │ ├── -submit-response-data
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── user-submitted-page.html
│ │ │ └── web-socket-url.html
│ │ ├── -submit-response-json
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── errors.html
│ │ │ └── index.html
│ │ ├── -submit-response
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── json.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.models
│ │ ├── -account
│ │ │ ├── comment-karma.html
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── fullname.html
│ │ │ ├── has-verified-email.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── is-employee.html
│ │ │ ├── is-gold.html
│ │ │ ├── is-hiding-from-robots.html
│ │ │ ├── is-mod.html
│ │ │ ├── link-karma.html
│ │ │ └── subreddit.html
│ │ ├── -awarding
│ │ │ ├── -init-.html
│ │ │ ├── award-type.html
│ │ │ ├── coin-price.html
│ │ │ ├── coin-reward.html
│ │ │ ├── count.html
│ │ │ ├── description.html
│ │ │ ├── fullname.html
│ │ │ ├── icon-height.html
│ │ │ ├── icon-url.html
│ │ │ ├── icon-width.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── is-enabled.html
│ │ │ ├── resized-icons.html
│ │ │ ├── resized-static-icons.html
│ │ │ ├── static-icon-height.html
│ │ │ ├── static-icon-url.html
│ │ │ └── static-icon-width.html
│ │ ├── -comment
│ │ │ ├── -init-.html
│ │ │ ├── all-awarding.html
│ │ │ ├── author.html
│ │ │ ├── body-html.html
│ │ │ ├── body.html
│ │ │ ├── can-gild.html
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── depth.html
│ │ │ ├── distinguished-raw.html
│ │ │ ├── edited-raw.html
│ │ │ ├── fullname.html
│ │ │ ├── gildings.html
│ │ │ ├── has-replies.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── is-archived.html
│ │ │ ├── is-locked.html
│ │ │ ├── is-saved.html
│ │ │ ├── is-score-hidden.html
│ │ │ ├── is-stickied.html
│ │ │ ├── is-submitter.html
│ │ │ ├── likes.html
│ │ │ ├── link-author.html
│ │ │ ├── link-id.html
│ │ │ ├── link-permalink.html
│ │ │ ├── link-title.html
│ │ │ ├── link-url.html
│ │ │ ├── parent-fullname.html
│ │ │ ├── parent-id.html
│ │ │ ├── permalink.html
│ │ │ ├── replies-raw.html
│ │ │ ├── replies-size.html
│ │ │ ├── replies.html
│ │ │ ├── score.html
│ │ │ ├── subreddit-id.html
│ │ │ ├── subreddit-name-prefixed.html
│ │ │ └── subreddit.html
│ │ ├── -flair
│ │ │ ├── -init-.html
│ │ │ ├── allowable-content.html
│ │ │ ├── background-color.html
│ │ │ ├── css-class.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── text-color.html
│ │ │ ├── text-editable.html
│ │ │ ├── text.html
│ │ │ └── type.html
│ │ ├── -friend-list-data
│ │ │ ├── -init-.html
│ │ │ ├── children.html
│ │ │ └── index.html
│ │ ├── -friend-list
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -friend
│ │ │ ├── -init-.html
│ │ │ ├── added.html
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ └── rel-id.html
│ │ ├── -gallery-data
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── items.html
│ │ ├── -gallery-image-data
│ │ │ ├── -init-.html
│ │ │ ├── gif.html
│ │ │ ├── index.html
│ │ │ ├── mp4.html
│ │ │ ├── u.html
│ │ │ ├── x.html
│ │ │ └── y.html
│ │ ├── -gallery-media-item
│ │ │ ├── -init-.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ └── media-id.html
│ │ ├── -gallery-media
│ │ │ ├── -init-.html
│ │ │ ├── dash-url.html
│ │ │ ├── e.html
│ │ │ ├── hls-url.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── m.html
│ │ │ ├── p.html
│ │ │ ├── s.html
│ │ │ └── status.html
│ │ ├── -karma-list
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -karma
│ │ │ ├── -init-.html
│ │ │ ├── comment-karma.html
│ │ │ ├── index.html
│ │ │ ├── link-karma.html
│ │ │ └── subreddit.html
│ │ ├── -me
│ │ │ ├── -init-.html
│ │ │ ├── coins.html
│ │ │ ├── comment-karma.html
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── fullname.html
│ │ │ ├── has-mail.html
│ │ │ ├── has-mod-mail.html
│ │ │ ├── has-verified-email.html
│ │ │ ├── id.html
│ │ │ ├── inbox-count.html
│ │ │ ├── index.html
│ │ │ ├── is-employee.html
│ │ │ ├── is-gold.html
│ │ │ ├── is-hiding-from-robots.html
│ │ │ ├── is-mod.html
│ │ │ ├── is-sponsor.html
│ │ │ ├── is-suspended.html
│ │ │ ├── link-karma.html
│ │ │ ├── num-friends.html
│ │ │ ├── over18.html
│ │ │ ├── subreddit.html
│ │ │ └── verified.html
│ │ ├── -message
│ │ │ ├── -init-.html
│ │ │ ├── author.html
│ │ │ ├── body-html.html
│ │ │ ├── body.html
│ │ │ ├── context.html
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── dest.html
│ │ │ ├── distinguished-raw.html
│ │ │ ├── first-message-name.html
│ │ │ ├── first-message.html
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── is-comment.html
│ │ │ ├── is-unread.html
│ │ │ ├── likes.html
│ │ │ ├── num-comments.html
│ │ │ ├── parent-id.html
│ │ │ ├── score.html
│ │ │ ├── subject.html
│ │ │ ├── subreddit-name-prefixed.html
│ │ │ ├── subreddit.html
│ │ │ └── type.html
│ │ ├── -moderated-list
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -moderated-sub
│ │ │ ├── -init-.html
│ │ │ ├── banner-img-size.html
│ │ │ ├── banner-img.html
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── display-name-prefixed.html
│ │ │ ├── display-name.html
│ │ │ ├── fullname.html
│ │ │ ├── icon-img-size.html
│ │ │ ├── icon-img.html
│ │ │ ├── index.html
│ │ │ ├── is-subscriber.html
│ │ │ ├── over18.html
│ │ │ ├── subreddit-type.html
│ │ │ ├── subscribers.html
│ │ │ ├── title.html
│ │ │ └── url.html
│ │ ├── -more-children-response-j-s-o-n
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ └── index.html
│ │ ├── -more-children-response-things
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── things.html
│ │ ├── -more-children-response
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── json.html
│ │ ├── -more-comments
│ │ │ ├── -init-.html
│ │ │ ├── children.html
│ │ │ ├── count.html
│ │ │ ├── depth.html
│ │ │ ├── fullname.html
│ │ │ ├── has-replies.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── parent-fullname.html
│ │ │ ├── parent-id.html
│ │ │ ├── replies-size.html
│ │ │ └── replies.html
│ │ ├── -multi-description
│ │ │ ├── -init-.html
│ │ │ ├── body-html.html
│ │ │ ├── body-mkdn.html
│ │ │ └── index.html
│ │ ├── -multi-sub
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── name.html
│ │ ├── -multi
│ │ │ ├── -init-.html
│ │ │ ├── can-edit.html
│ │ │ ├── copied-from.html
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── description-html.html
│ │ │ ├── description-mkdn.html
│ │ │ ├── display-name.html
│ │ │ ├── icon-url.html
│ │ │ ├── index.html
│ │ │ ├── is-favorited.html
│ │ │ ├── is-subscriber.html
│ │ │ ├── name.html
│ │ │ ├── num-subscribers.html
│ │ │ ├── over18.html
│ │ │ ├── owner-id.html
│ │ │ ├── owner-name.html
│ │ │ ├── path.html
│ │ │ ├── subreddits.html
│ │ │ └── visibility.html
│ │ ├── -poll-data
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── options.html
│ │ │ ├── total-vote-count.html
│ │ │ ├── user-selection.html
│ │ │ └── voting-end-timestamp.html
│ │ ├── -poll-option
│ │ │ ├── -init-.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── text.html
│ │ │ └── vote-count.html
│ │ ├── -poll-vote-data
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── update-post-poll-vote-state.html
│ │ ├── -poll-vote-input
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── option-id.html
│ │ │ └── post-id.html
│ │ ├── -poll-vote-req
│ │ │ ├── -init-.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ └── variables.html
│ │ ├── -poll-vote-res
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ └── index.html
│ │ ├── -poll-vote-state-option
│ │ │ ├── -init-.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ └── vote-count.html
│ │ ├── -poll-vote-state-poll
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── options.html
│ │ ├── -poll-vote-state
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── ok.html
│ │ │ └── poll.html
│ │ ├── -poll-vote-variables
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── input.html
│ │ ├── -prefs
│ │ │ ├── -init-.html
│ │ │ ├── accept-pms.html
│ │ │ ├── activity-relevant-ads.html
│ │ │ ├── allow-click-tracking.html
│ │ │ ├── beta.html
│ │ │ ├── click-gadget.html
│ │ │ ├── collapse-left-bar.html
│ │ │ ├── collapse-read-messages.html
│ │ │ ├── compress.html
│ │ │ ├── default-comment-sort.html
│ │ │ ├── design-beta.html
│ │ │ ├── domain-details.html
│ │ │ ├── email-digests.html
│ │ │ ├── email-messages.html
│ │ │ ├── email-unsubscribe-all.html
│ │ │ ├── enable-default-themes.html
│ │ │ ├── hide-ads.html
│ │ │ ├── hide-downs.html
│ │ │ ├── hide-from-robots.html
│ │ │ ├── hide-ups.html
│ │ │ ├── highlight-controversial.html
│ │ │ ├── highlight-new-comments.html
│ │ │ ├── ignore-suggested-sort.html
│ │ │ ├── index.html
│ │ │ ├── label-nsfw.html
│ │ │ ├── lang.html
│ │ │ ├── legacy-search.html
│ │ │ ├── live-orange-reds.html
│ │ │ ├── mark-messages-read.html
│ │ │ ├── media-preview.html
│ │ │ ├── media.html
│ │ │ ├── min-comment-score.html
│ │ │ ├── min-link-score.html
│ │ │ ├── monitor-mentions.html
│ │ │ ├── new-window.html
│ │ │ ├── nightmode.html
│ │ │ ├── no-profanity.html
│ │ │ ├── num-comments.html
│ │ │ ├── num-sites.html
│ │ │ ├── over18.html
│ │ │ ├── private-feeds.html
│ │ │ ├── profile-opt-out.html
│ │ │ ├── public-server-seconds.html
│ │ │ ├── public-votes.html
│ │ │ ├── research.html
│ │ │ ├── search-include-over18.html
│ │ │ ├── show-flair.html
│ │ │ ├── show-gold-expiration.html
│ │ │ ├── show-link-flair.html
│ │ │ ├── show-snoovatar.html
│ │ │ ├── show-stylesheets.html
│ │ │ ├── show-trending.html
│ │ │ ├── show-twitter.html
│ │ │ ├── store-visits.html
│ │ │ ├── third-party-data-personalized-ads.html
│ │ │ ├── third-party-site-data-personalized-ads.html
│ │ │ ├── third-party-site-data-personalized-content.html
│ │ │ ├── threaded-messages.html
│ │ │ ├── threaded-modmail.html
│ │ │ ├── top-karma-subreddits.html
│ │ │ ├── use-global-defaults.html
│ │ │ └── video-autoplay.html
│ │ ├── -private-subreddit
│ │ │ ├── -init-.html
│ │ │ ├── community-icon.html
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── display-name-prefixed.html
│ │ │ ├── display-name.html
│ │ │ ├── fullname.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── public-description-html.html
│ │ │ ├── public-description.html
│ │ │ ├── subreddit-type.html
│ │ │ ├── title.html
│ │ │ └── url.html
│ │ ├── -redditor-subreddit
│ │ │ ├── -init-.html
│ │ │ ├── banner-img-size.html
│ │ │ ├── banner-img.html
│ │ │ ├── community-icon.html
│ │ │ ├── description.html
│ │ │ ├── display-name-prefixed.html
│ │ │ ├── display-name.html
│ │ │ ├── fullname.html
│ │ │ ├── has-default-banner.html
│ │ │ ├── has-default-icon.html
│ │ │ ├── header-img-size.html
│ │ │ ├── header-img.html
│ │ │ ├── icon-img-size.html
│ │ │ ├── icon-img.html
│ │ │ ├── index.html
│ │ │ ├── is-banned.html
│ │ │ ├── is-contributor.html
│ │ │ ├── is-moderator.html
│ │ │ ├── is-muted.html
│ │ │ ├── is-subscriber.html
│ │ │ ├── over18.html
│ │ │ ├── public-description.html
│ │ │ ├── subreddit-type.html
│ │ │ ├── subscribers.html
│ │ │ ├── title.html
│ │ │ └── url.html
│ │ ├── -redditor
│ │ │ ├── -init-.html
│ │ │ ├── awardee-karma.html
│ │ │ ├── awarder-karma.html
│ │ │ ├── comment-karma.html
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── fullname.html
│ │ │ ├── has-verified-email.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── is-employee.html
│ │ │ ├── is-friend.html
│ │ │ ├── is-gold.html
│ │ │ ├── is-hiding-from-robots.html
│ │ │ ├── is-mod.html
│ │ │ ├── link-karma.html
│ │ │ └── subreddit.html
│ │ ├── -reply-data
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── things.html
│ │ ├── -reply-json
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── errors.html
│ │ │ └── index.html
│ │ ├── -reply
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── json.html
│ │ ├── -submission
│ │ │ ├── -init-.html
│ │ │ ├── all-awarding.html
│ │ │ ├── author-flair-background-color.html
│ │ │ ├── author-flair-css-class.html
│ │ │ ├── author-flair-template-id.html
│ │ │ ├── author-flair-text-color.html
│ │ │ ├── author-flair-text.html
│ │ │ ├── author-flair-type.html
│ │ │ ├── author-fullname.html
│ │ │ ├── author.html
│ │ │ ├── can-gild.html
│ │ │ ├── clicked.html
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── crosspost-parent-fullname.html
│ │ │ ├── crosspost-parent-list.html
│ │ │ ├── distinguished-raw.html
│ │ │ ├── domain.html
│ │ │ ├── edited-raw.html
│ │ │ ├── fullname.html
│ │ │ ├── gallery-data.html
│ │ │ ├── gildings.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── is-archived.html
│ │ │ ├── is-crosspostable.html
│ │ │ ├── is-gallery.html
│ │ │ ├── is-hidden.html
│ │ │ ├── is-locked.html
│ │ │ ├── is-media-only.html
│ │ │ ├── is-meta.html
│ │ │ ├── is-pinned.html
│ │ │ ├── is-quarantined.html
│ │ │ ├── is-reddit-media-domain.html
│ │ │ ├── is-robot-indexable.html
│ │ │ ├── is-saved.html
│ │ │ ├── is-self.html
│ │ │ ├── is-spoiler.html
│ │ │ ├── is-stickied.html
│ │ │ ├── is-video.html
│ │ │ ├── likes.html
│ │ │ ├── link-flair-background-color.html
│ │ │ ├── link-flair-css-class.html
│ │ │ ├── link-flair-template-id.html
│ │ │ ├── link-flair-text-color.html
│ │ │ ├── link-flair-text.html
│ │ │ ├── link-flair-type.html
│ │ │ ├── media-embed.html
│ │ │ ├── media-metadata.html
│ │ │ ├── media.html
│ │ │ ├── num-comments.html
│ │ │ ├── num-crossposts.html
│ │ │ ├── over18.html
│ │ │ ├── permalink.html
│ │ │ ├── poll-data.html
│ │ │ ├── preview.html
│ │ │ ├── reddit-media.html
│ │ │ ├── removed-by-category.html
│ │ │ ├── score.html
│ │ │ ├── self-text-html.html
│ │ │ ├── self-text.html
│ │ │ ├── subreddit-id.html
│ │ │ ├── subreddit-name-prefixed.html
│ │ │ ├── subreddit-subscribers.html
│ │ │ ├── subreddit.html
│ │ │ ├── thumbnail-height.html
│ │ │ ├── thumbnail-url.html
│ │ │ ├── thumbnail-width.html
│ │ │ ├── title.html
│ │ │ ├── upvote-ratio.html
│ │ │ └── url.html
│ │ ├── -submit-response-data
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── user-submitted-page.html
│ │ │ └── web-socket-url.html
│ │ ├── -submit-response-json
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── errors.html
│ │ │ └── index.html
│ │ ├── -submit-response
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── json.html
│ │ ├── -subreddit-rule
│ │ │ ├── -init-.html
│ │ │ ├── created-date.html
│ │ │ ├── created-utc.html
│ │ │ ├── description-html.html
│ │ │ ├── description.html
│ │ │ ├── index.html
│ │ │ ├── kind.html
│ │ │ ├── priority.html
│ │ │ ├── short-name.html
│ │ │ └── violation-reason.html
│ │ ├── -subreddit-rules
│ │ │ ├── -init-.html
│ │ │ ├── equals.html
│ │ │ ├── hash-code.html
│ │ │ ├── index.html
│ │ │ ├── rules.html
│ │ │ └── site-rules.html
│ │ ├── -subreddit-search-item
│ │ │ ├── -init-.html
│ │ │ ├── active-user-count.html
│ │ │ ├── allow-chat-post-creation.html
│ │ │ ├── allow-images.html
│ │ │ ├── icon-img.html
│ │ │ ├── index.html
│ │ │ ├── key-color.html
│ │ │ ├── name.html
│ │ │ └── subscriber-count.html
│ │ ├── -subreddit-search-result
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── subreddits.html
│ │ ├── -subreddit
│ │ │ ├── -init-.html
│ │ │ ├── accounts-active-is-fuzzed.html
│ │ │ ├── accounts-active.html
│ │ │ ├── allow-images.html
│ │ │ ├── are-emojis-enabled.html
│ │ │ ├── are-polls-allowed.html
│ │ │ ├── are-spoilers-enabled.html
│ │ │ ├── are-video-allowed.html
│ │ │ ├── are-videogifs-allowed.html
│ │ │ ├── community-icon.html
│ │ │ ├── created-utc.html
│ │ │ ├── created.html
│ │ │ ├── description-html.html
│ │ │ ├── description.html
│ │ │ ├── display-name-prefixed.html
│ │ │ ├── display-name.html
│ │ │ ├── fullname.html
│ │ │ ├── header-img-size.html
│ │ │ ├── header-img.html
│ │ │ ├── header-title.html
│ │ │ ├── icon-img-size.html
│ │ │ ├── icon-img.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── is-banned.html
│ │ │ ├── is-contributor.html
│ │ │ ├── is-moderator.html
│ │ │ ├── is-muted.html
│ │ │ ├── is-quarantined.html
│ │ │ ├── is-subreddit-crosspostable.html
│ │ │ ├── is-subscriber.html
│ │ │ ├── is-wiki-enabled.html
│ │ │ ├── lang.html
│ │ │ ├── over18.html
│ │ │ ├── public-description-html.html
│ │ │ ├── public-description.html
│ │ │ ├── subreddit-type.html
│ │ │ ├── subscribers.html
│ │ │ ├── title.html
│ │ │ └── url.html
│ │ ├── -suspended-redditor
│ │ │ ├── -init-.html
│ │ │ ├── awardee-karma.html
│ │ │ ├── awarder-karma.html
│ │ │ ├── fullname.html
│ │ │ ├── index.html
│ │ │ ├── is-suspended.html
│ │ │ └── total-karma.html
│ │ ├── -trending-subreddits
│ │ │ ├── -init-.html
│ │ │ ├── comment-count.html
│ │ │ ├── comment-url.html
│ │ │ ├── index.html
│ │ │ └── subreddit-names.html
│ │ ├── -trophy-children
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── trophies.html
│ │ ├── -trophy-list
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -trophy
│ │ │ ├── -init-.html
│ │ │ ├── description.html
│ │ │ ├── fullname.html
│ │ │ ├── icon40.html
│ │ │ ├── icon70.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ └── url.html
│ │ ├── -upload-contract-args
│ │ │ ├── -init-.html
│ │ │ ├── action.html
│ │ │ ├── fields.html
│ │ │ └── index.html
│ │ ├── -upload-contract-assets
│ │ │ ├── -init-.html
│ │ │ ├── asset-id.html
│ │ │ ├── index.html
│ │ │ ├── payload.html
│ │ │ ├── processing-state.html
│ │ │ └── websocket-url.html
│ │ ├── -upload-contract-fields
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ ├── name.html
│ │ │ └── value.html
│ │ ├── -upload-contract-payload
│ │ │ ├── -init-.html
│ │ │ ├── filepath.html
│ │ │ └── index.html
│ │ ├── -upload-contract
│ │ │ ├── -init-.html
│ │ │ ├── args.html
│ │ │ ├── assets.html
│ │ │ ├── index.html
│ │ │ └── to-upload-data.html
│ │ ├── -upload-data
│ │ │ ├── -init-.html
│ │ │ ├── acl.html
│ │ │ ├── content-type.html
│ │ │ ├── index.html
│ │ │ ├── key.html
│ │ │ ├── policy.html
│ │ │ ├── success-action-status.html
│ │ │ ├── x-amz-algorithm.html
│ │ │ ├── x-amz-credential.html
│ │ │ ├── x-amz-date.html
│ │ │ ├── x-amz-meta-ext.html
│ │ │ ├── x-amz-security-token.html
│ │ │ ├── x-amz-signature.html
│ │ │ └── x-amz-storage-class.html
│ │ ├── -upload-file
│ │ │ ├── -init-.html
│ │ │ ├── file.html
│ │ │ └── index.html
│ │ ├── -user-children
│ │ │ ├── -init-.html
│ │ │ ├── children.html
│ │ │ └── index.html
│ │ ├── -user-list
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -user
│ │ │ ├── -init-.html
│ │ │ ├── author-flair-css-class.html
│ │ │ ├── author-flair-text.html
│ │ │ ├── date.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── mod-permissions.html
│ │ │ ├── name.html
│ │ │ └── rel-id.html
│ │ ├── -wiki-page-list
│ │ │ ├── -init-.html
│ │ │ ├── data.html
│ │ │ ├── index.html
│ │ │ └── kind.html
│ │ ├── -wiki-page
│ │ │ ├── -init-.html
│ │ │ ├── content-html.html
│ │ │ ├── content-mkdn.html
│ │ │ ├── index.html
│ │ │ ├── revision-date.html
│ │ │ └── revision-raw.html
│ │ ├── -wiki-revision
│ │ │ ├── -init-.html
│ │ │ ├── author-raw.html
│ │ │ ├── author.html
│ │ │ ├── id.html
│ │ │ ├── index.html
│ │ │ ├── page.html
│ │ │ ├── reason.html
│ │ │ ├── revision-hidden.html
│ │ │ └── timestamp.html
│ │ └── index.html
│ ├── com.kirkbushman.araw.utils
│ │ ├── -comment-data-iterable
│ │ │ ├── -init-.html
│ │ │ ├── index.html
│ │ │ └── iterator.html
│ │ ├── -comment-data-iterator
│ │ │ ├── -init-.html
│ │ │ ├── has-next.html
│ │ │ ├── index.html
│ │ │ └── next.html
│ │ ├── -endpoints
│ │ │ ├── -u-r-l_-c-o-m-m-e-n-t-s.html
│ │ │ ├── -u-r-l_-c-o-m-m-e-n-t.html
│ │ │ ├── -u-r-l_-d-e-l-e-t-e.html
│ │ │ ├── -u-r-l_-d-e-l_-m-e-s-s-a-g-e.html
│ │ │ ├── -u-r-l_-f-e-t-c-h_-m-e-s-s-a-g-e-s.html
│ │ │ ├── -u-r-l_-f-r-i-e-n-d.html
│ │ │ ├── -u-r-l_-h-i-d-e.html
│ │ │ ├── -u-r-l_-l-o-c-k.html
│ │ │ ├── -u-r-l_-m-a-r-k_-n-s-f-w.html
│ │ │ ├── -u-r-l_-m-a-r-k_-s-p-o-i-l-e-r.html
│ │ │ ├── -u-r-l_-m-e.html
│ │ │ ├── -u-r-l_-m-o-r-e-c-h-i-l-d-r-e-n.html
│ │ │ ├── -u-r-l_-m-u-l-t-i-s_-m-i-n-e.html
│ │ │ ├── -u-r-l_-m-u-l-t-i-s_-r-e-d-d-i-t-o-r.html
│ │ │ ├── -u-r-l_-m-u-l-t-i.html
│ │ │ ├── -u-r-l_-m-u-l-t-i_-d-e-s-c.html
│ │ │ ├── -u-r-l_-m-u-l-t-i_-s-u-b.html
│ │ │ ├── -u-r-l_-m-y_-b-l-o-c-k-e-d.html
│ │ │ ├── -u-r-l_-m-y_-f-r-i-e-n-d-s.html
│ │ │ ├── -u-r-l_-m-y_-k-a-r-m-a.html
│ │ │ ├── -u-r-l_-m-y_-p-r-e-f-s.html
│ │ │ ├── -u-r-l_-m-y_-t-r-o-p-h-i-e-s.html
│ │ │ ├── -u-r-l_-r-e-a-d_-a-l-l_-m-e-s-s-a-g-e-s.html
│ │ │ ├── -u-r-l_-r-e-a-d_-m-e-s-s-a-g-e.html
│ │ │ ├── -u-r-l_-r-e-d-d-i-t-o-r.html
│ │ │ ├── -u-r-l_-r-e-d-d-i-t-o-r_-m-o-d-e-r-a-t-e-d.html
│ │ │ ├── -u-r-l_-r-e-d-d-i-t-o-r_-o-v-e-r-v-i-e-w.html
│ │ │ ├── -u-r-l_-r-e-d-d-i-t-o-r_-s-u-b-r-e-d-d-i-t-s.html
│ │ │ ├── -u-r-l_-r-e-d-d-i-t-o-r_-t-r-o-p-h-i-e-s.html
│ │ │ ├── -u-r-l_-r-e-d-d-i-t-o-r_-w-h-e-r-e.html
│ │ │ ├── -u-r-l_-r-e-p-l-y.html
│ │ │ ├── -u-r-l_-s-a-v-e.html
│ │ │ ├── -u-r-l_-s-e-a-r-c-h.html
│ │ │ ├── -u-r-l_-s-e-a-r-c-h_-s-u-b-r-e-d-d-i-t.html
│ │ │ ├── -u-r-l_-s-u-b-m-i-s-s-i-o-n-s.html
│ │ │ ├── -u-r-l_-s-u-b-m-i-s-s-i-o-n-s_-f-r-o-n-t-p-a-g-e.html
│ │ │ ├── -u-r-l_-s-u-b-m-i-s-s-i-o-n.html
│ │ │ ├── -u-r-l_-s-u-b-m-i-t.html
│ │ │ ├── -u-r-l_-s-u-b-r-e-d-d-i-t-s.html
│ │ │ ├── -u-r-l_-s-u-b-r-e-d-d-i-t.html
│ │ │ ├── -u-r-l_-s-u-b-r-e-d-d-i-t_-f-l-a-i-r-s.html
│ │ │ ├── -u-r-l_-s-u-b-r-e-d-d-i-t_-i-n-f-o.html
│ │ │ ├── -u-r-l_-s-u-b-r-e-d-d-i-t_-r-u-l-e-s.html
│ │ │ ├── -u-r-l_-s-u-b-s-c-r-i-b-e.html
│ │ │ ├── -u-r-l_-u-n-f-r-i-e-n-d.html
│ │ │ ├── -u-r-l_-u-n-h-i-d-e.html
│ │ │ ├── -u-r-l_-u-n-l-o-c-k.html
│ │ │ ├── -u-r-l_-u-n-m-a-r-k_-n-s-f-w.html
│ │ │ ├── -u-r-l_-u-n-m-a-r-k_-s-p-o-i-l-e-r.html
│ │ │ ├── -u-r-l_-u-n-r-e-a-d_-m-e-s-s-a-g-e.html
│ │ │ ├── -u-r-l_-u-n-s-a-v-e.html
│ │ │ ├── -u-r-l_-u-p-l-o-a-d_-a-s-s-e-t.html
│ │ │ ├── -u-r-l_-v-o-t-e.html
│ │ │ ├── -u-r-l_-w-i-k-i.html
│ │ │ ├── -u-r-l_-w-i-k-i_-p-a-g-e-s.html
│ │ │ ├── -u-r-l_-w-i-k-i_-p-a-g-e.html
│ │ │ ├── -u-r-l_-w-i-k-i_-r-e-v-i-s-i-o-n-s.html
│ │ │ ├── -u-r-l_-w-i-k-i_-r-e-v-i-s-i-o-n.html
│ │ │ └── index.html
│ │ ├── -null-replies-interceptor
│ │ │ ├── index.html
│ │ │ └── intercept.html
│ │ ├── -utils
│ │ │ ├── -b-a-s-e_-u-r-l.html
│ │ │ ├── build-retrofit.html
│ │ │ └── index.html
│ │ ├── added-date.html
│ │ ├── created-date.html
│ │ ├── created-utc-date.html
│ │ ├── distinguished.html
│ │ ├── edited.html
│ │ ├── has-edited.html
│ │ ├── index.html
│ │ ├── kotlin.-array
│ │ │ ├── index.html
│ │ │ ├── tree-iterable.html
│ │ │ └── tree-iterator.html
│ │ ├── kotlin.collections.-collection
│ │ │ ├── index.html
│ │ │ ├── tree-iterable.html
│ │ │ └── tree-iterator.html
│ │ ├── kotlin.collections.-list
│ │ │ ├── index.html
│ │ │ └── to-linear-list.html
│ │ ├── timestamp-date.html
│ │ ├── user-date.html
│ │ └── vote.html
│ ├── com.kirkbushman.araw
│ │ ├── -reddit-api
│ │ │ ├── add-subreddit-to-multi.html
│ │ │ ├── comment.html
│ │ │ ├── delete-message.html
│ │ │ ├── delete-subreddit-to-multi.html
│ │ │ ├── delete.html
│ │ │ ├── fetch-comments.html
│ │ │ ├── fetch-frontpage-submissions-search.html
│ │ │ ├── fetch-messages.html
│ │ │ ├── fetch-multi-submissions.html
│ │ │ ├── fetch-redditor-info.html
│ │ │ ├── fetch-redditor-overview.html
│ │ │ ├── fetch-redditor-search.html
│ │ │ ├── fetch-redditor-subreddits.html
│ │ │ ├── fetch-submissions-search-general.html
│ │ │ ├── fetch-submissions-search.html
│ │ │ ├── fetch-submissions.html
│ │ │ ├── fetch-subreddits-search.html
│ │ │ ├── friend.html
│ │ │ ├── get-multi-description.html
│ │ │ ├── get-multi-subreddit.html
│ │ │ ├── hide.html
│ │ │ ├── index.html
│ │ │ ├── lock.html
│ │ │ ├── mark-as-nsfw.html
│ │ │ ├── mark-as-spoiler.html
│ │ │ ├── me.html
│ │ │ ├── more-children.html
│ │ │ ├── my-blocked.html
│ │ │ ├── my-friends.html
│ │ │ ├── my-karma.html
│ │ │ ├── my-multis.html
│ │ │ ├── my-prefs.html
│ │ │ ├── my-trophies.html
│ │ │ ├── obtain-upload-contract.html
│ │ │ ├── poll-vote.html
│ │ │ ├── read-all-messages.html
│ │ │ ├── read-message.html
│ │ │ ├── redditor-moderated-subreddits.html
│ │ │ ├── redditor-multis.html
│ │ │ ├── redditor-trophies.html
│ │ │ ├── redditor.html
│ │ │ ├── reply.html
│ │ │ ├── rules.html
│ │ │ ├── save.html
│ │ │ ├── search-subreddits.html
│ │ │ ├── search.html
│ │ │ ├── set-multi-description.html
│ │ │ ├── submission.html
│ │ │ ├── submit.html
│ │ │ ├── subreddit-flairs.html
│ │ │ ├── subreddit-info.html
│ │ │ ├── subreddit.html
│ │ │ ├── subreddits.html
│ │ │ ├── subscribe.html
│ │ │ ├── trending-subreddits.html
│ │ │ ├── unfriend.html
│ │ │ ├── unhide.html
│ │ │ ├── unlock.html
│ │ │ ├── unmarknsfw.html
│ │ │ ├── unread-message.html
│ │ │ ├── unsave.html
│ │ │ ├── unspoiler.html
│ │ │ ├── upload-media.html
│ │ │ ├── vote.html
│ │ │ ├── wiki-page.html
│ │ │ ├── wiki-pages.html
│ │ │ ├── wiki-revision.html
│ │ │ ├── wiki-revisions.html
│ │ │ └── wiki.html
│ │ ├── -reddit-client
│ │ │ ├── -init-.html
│ │ │ ├── accounts-client.html
│ │ │ ├── contributions-client.html
│ │ │ ├── get-api.html
│ │ │ ├── get-current-user.html
│ │ │ ├── get-retrofit.html
│ │ │ ├── index.html
│ │ │ ├── messages-client.html
│ │ │ ├── multis-client.html
│ │ │ ├── redditors-client.html
│ │ │ ├── search-client.html
│ │ │ ├── search-subreddits.html
│ │ │ ├── subreddits-client.html
│ │ │ └── wikis-client.html
│ │ └── index.html
│ ├── index-outline.html
│ ├── index.html
│ └── package-list
└── style.css
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── jitpack.yml
├── ktlint.gradle
├── lib
├── .classpath
├── .gitignore
├── .project
├── .settings
│ └── org.eclipse.buildship.core.prefs
├── build.gradle
├── proguard-rules.pro
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ └── kirkbushman
│ │ └── araw
│ │ ├── RedditApi.kt
│ │ ├── RedditClient.kt
│ │ ├── adapters
│ │ └── PolyJsonAdapterFactory.kt
│ │ ├── clients
│ │ ├── AccountsClient.kt
│ │ ├── ContributionsClient.kt
│ │ ├── MessagesClient.kt
│ │ ├── MultisClient.kt
│ │ ├── RedditorsClient.kt
│ │ ├── SearchClient.kt
│ │ ├── SubredditsClient.kt
│ │ └── WikisClient.kt
│ │ ├── exceptions
│ │ ├── UploadContractFieldMissingException.kt
│ │ └── WikiDisabledException.kt
│ │ ├── fetcher
│ │ ├── CommentsFetcher.kt
│ │ ├── ContributionsFetcher.kt
│ │ ├── Fetcher.kt
│ │ ├── InboxFetcher.kt
│ │ ├── MultiSubmissionsFetcher.kt
│ │ ├── RedditorsSearchFetcher.kt
│ │ ├── SubmissionsFetcher.kt
│ │ ├── SubmissionsSearchFetcher.kt
│ │ ├── SubredditsFetcher.kt
│ │ └── SubredditsSearchFetcher.kt
│ │ ├── helpers
│ │ ├── AuthAppHelper.kt
│ │ ├── AuthHelper.kt
│ │ ├── AuthScriptHelper.kt
│ │ └── AuthUserlessHelper.kt
│ │ ├── http
│ │ ├── EnvelopedComment.kt
│ │ ├── EnvelopedCommentData.kt
│ │ ├── EnvelopedCommentDataListing.kt
│ │ ├── EnvelopedCommentListing.kt
│ │ ├── EnvelopedContribution.kt
│ │ ├── EnvelopedContributionListing.kt
│ │ ├── EnvelopedData.kt
│ │ ├── EnvelopedMessage.kt
│ │ ├── EnvelopedMessageListing.kt
│ │ ├── EnvelopedMoreComment.kt
│ │ ├── EnvelopedMulti.kt
│ │ ├── EnvelopedMultiDescription.kt
│ │ ├── EnvelopedRedditor.kt
│ │ ├── EnvelopedRedditorData.kt
│ │ ├── EnvelopedRedditorDataListing.kt
│ │ ├── EnvelopedRedditorListing.kt
│ │ ├── EnvelopedSubmission.kt
│ │ ├── EnvelopedSubmissionListing.kt
│ │ ├── EnvelopedSubreddit.kt
│ │ ├── EnvelopedSubredditData.kt
│ │ ├── EnvelopedSubredditDataListing.kt
│ │ ├── EnvelopedSubredditListing.kt
│ │ ├── EnvelopedTrophy.kt
│ │ ├── EnvelopedTrophyList.kt
│ │ ├── EnvelopedWikiPage.kt
│ │ ├── EnvelopedWikiRevisionListing.kt
│ │ ├── base
│ │ │ ├── Envelope.kt
│ │ │ ├── EnvelopeKind.kt
│ │ │ └── Listing.kt
│ │ └── listings
│ │ │ ├── CommentDataListing.kt
│ │ │ ├── CommentListing.kt
│ │ │ ├── ContributionListing.kt
│ │ │ ├── MessageListing.kt
│ │ │ ├── RedditorDataListing.kt
│ │ │ ├── RedditorListing.kt
│ │ │ ├── SubmissionListing.kt
│ │ │ ├── SubredditDataListing.kt
│ │ │ ├── SubredditListing.kt
│ │ │ └── WikiRevisionListing.kt
│ │ ├── models
│ │ ├── Account.kt
│ │ ├── Awarding.kt
│ │ ├── Comment.kt
│ │ ├── Flair.kt
│ │ ├── Friend.kt
│ │ ├── GalleryData.kt
│ │ ├── Karma.kt
│ │ ├── Me.kt
│ │ ├── Message.kt
│ │ ├── ModeratedList.kt
│ │ ├── MoreComments.kt
│ │ ├── Multi.kt
│ │ ├── PollData.kt
│ │ ├── Prefs.kt
│ │ ├── PremiumSubreddit.kt
│ │ ├── PrivateSubreddit.kt
│ │ ├── Redditor.kt
│ │ ├── RedditorSubreddit.kt
│ │ ├── Reply.kt
│ │ ├── Submission.kt
│ │ ├── Subreddit.kt
│ │ ├── SubredditRule.kt
│ │ ├── SubredditRules.kt
│ │ ├── SubredditSearchResult.kt
│ │ ├── SuspendedRedditor.kt
│ │ ├── TrendingSubreddits.kt
│ │ ├── Trophy.kt
│ │ ├── UploadContract.kt
│ │ ├── UploadData.kt
│ │ ├── UploadFile.kt
│ │ ├── User.kt
│ │ ├── UserlessSelf.kt
│ │ ├── WikiPage.kt
│ │ ├── WikiRevision.kt
│ │ ├── base
│ │ │ ├── CommentData.kt
│ │ │ ├── Contribution.kt
│ │ │ ├── Created.kt
│ │ │ ├── Distinguishable.kt
│ │ │ ├── Editable.kt
│ │ │ ├── Gildable.kt
│ │ │ ├── RedditorData.kt
│ │ │ ├── Replyable.kt
│ │ │ ├── Saveable.kt
│ │ │ ├── Sorting.kt
│ │ │ ├── SubredditData.kt
│ │ │ ├── Thing.kt
│ │ │ └── Votable.kt
│ │ ├── commons
│ │ │ ├── FlairRichtext.kt
│ │ │ ├── Gildings.kt
│ │ │ ├── Images.kt
│ │ │ ├── Media.kt
│ │ │ ├── MediaEmbed.kt
│ │ │ ├── RedditMedia.kt
│ │ │ ├── SubmissionKind.kt
│ │ │ └── SubmissionPreview.kt
│ │ ├── enums
│ │ │ ├── CommentsSorting.kt
│ │ │ ├── ContributionsSorting.kt
│ │ │ ├── Distinguished.kt
│ │ │ ├── RedditorSearchSorting.kt
│ │ │ ├── SearchSorting.kt
│ │ │ ├── SubmissionsSorting.kt
│ │ │ ├── SubredditSearchSorting.kt
│ │ │ ├── TimePeriod.kt
│ │ │ └── Vote.kt
│ │ └── responses
│ │ │ ├── MoreChildrenRes.kt
│ │ │ ├── PollVoteReq.kt
│ │ │ ├── PollVoteRes.kt
│ │ │ └── SubmitRes.kt
│ │ └── utils
│ │ ├── CommentDataIterable.kt
│ │ ├── CommentDataIterator.kt
│ │ ├── Endpoints.kt
│ │ ├── Extensions.kt
│ │ ├── NullRepliesInterceptor.kt
│ │ └── Utils.kt
│ └── res
│ └── values
│ └── strings.xml
├── sampleapp
├── .classpath
├── .gitignore
├── .project
├── .settings
│ └── org.eclipse.buildship.core.prefs
├── build.gradle
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── kirkbushman
│ │ └── sampleapp
│ │ └── instrumented
│ │ ├── BasicTestIntegration.kt
│ │ ├── TestCredentials.kt
│ │ ├── TestUtils.kt
│ │ ├── doAsync.kt
│ │ └── tests
│ │ ├── AccountClientTests.kt
│ │ ├── CommentDataTest.kt
│ │ ├── FetcherTest.kt
│ │ ├── ModelsFetchTest.kt
│ │ ├── SearchDataTesting.kt
│ │ ├── SubredditFetchTests.kt
│ │ └── UserlessFetchTest.kt
│ ├── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── com
│ │ │ └── kirkbushman
│ │ │ └── sampleapp
│ │ │ ├── LoginActivity.kt
│ │ │ ├── MainActivity.kt
│ │ │ ├── TestApplication.kt
│ │ │ ├── TestCredentials.kt
│ │ │ ├── activities
│ │ │ ├── ApiDetailActivity.kt
│ │ │ ├── ApisActivity.kt
│ │ │ ├── CommentActivity.kt
│ │ │ ├── CommentsActivity.kt
│ │ │ ├── CommonSubmissionsActivity.kt
│ │ │ ├── InboxActivity.kt
│ │ │ ├── MultiSearchActivity.kt
│ │ │ ├── MultiSubmissionsActivity.kt
│ │ │ ├── PollVoteActivity.kt
│ │ │ ├── RedditorActivity.kt
│ │ │ ├── RedditorInfoActivity.kt
│ │ │ ├── RedditorModeratedSubs.kt
│ │ │ ├── RulesActivity.kt
│ │ │ ├── SelfAccountActivity.kt
│ │ │ ├── SelfAccountInfoActivity.kt
│ │ │ ├── SelfTrophiesActivity.kt
│ │ │ ├── SettingsActivity.kt
│ │ │ ├── SubmissionActivity.kt
│ │ │ ├── SubmissionsActivity.kt
│ │ │ ├── SubmissionsFlairFilterActivity.kt
│ │ │ ├── SubmissionsSearchActivity.kt
│ │ │ ├── SubmitActivity.kt
│ │ │ ├── SubmitMediaActivity.kt
│ │ │ ├── SubredditActivity.kt
│ │ │ ├── SubredditsSearchActivity.kt
│ │ │ ├── SubscribedSubredditsActivity.kt
│ │ │ ├── UploadImagesActivity.kt
│ │ │ ├── UserSearchActivity.kt
│ │ │ ├── UserTrophiesActivity.kt
│ │ │ ├── WikiPageActivity.kt
│ │ │ ├── WikiPagesActivity.kt
│ │ │ └── base
│ │ │ │ ├── BaseActivity.kt
│ │ │ │ ├── BaseAdapterActivity.kt
│ │ │ │ ├── BaseControllerActivity.kt
│ │ │ │ ├── BasePrintActivity.kt
│ │ │ │ ├── BaseSearchAdapterActivity.kt
│ │ │ │ ├── BaseSearchControllerActivity.kt
│ │ │ │ ├── BaseSearchPrint2Activity.kt
│ │ │ │ └── BaseSearchPrintActivity.kt
│ │ │ ├── adapters
│ │ │ ├── ContributionsAdapter.kt
│ │ │ ├── InboxAdapter.kt
│ │ │ ├── SelfContributionsAdapter.kt
│ │ │ └── SubmissionsAdapter.kt
│ │ │ ├── controllers
│ │ │ ├── CommentController.kt
│ │ │ ├── ContributionController.kt
│ │ │ ├── InboxController.kt
│ │ │ ├── ModeratedSubsController.kt
│ │ │ ├── RedditorController.kt
│ │ │ ├── RulesController.kt
│ │ │ ├── SubmissionController.kt
│ │ │ ├── SubredditController.kt
│ │ │ ├── SubredditSearchController.kt
│ │ │ ├── TrophiesController.kt
│ │ │ ├── WikiPagesController.kt
│ │ │ └── base
│ │ │ │ ├── BaseCallback.kt
│ │ │ │ └── BaseController.kt
│ │ │ ├── di
│ │ │ └── Provider.kt
│ │ │ ├── fragments
│ │ │ ├── ContributionFragment.kt
│ │ │ ├── InboxFragment.kt
│ │ │ ├── ReplyBottomFragment.kt
│ │ │ ├── SelfContributionFragment.kt
│ │ │ ├── SubmissionFragment.kt
│ │ │ └── base
│ │ │ │ └── BaseControllerFragment.kt
│ │ │ ├── models
│ │ │ ├── CommentModel.kt
│ │ │ ├── EmptyModel.kt
│ │ │ ├── MessageModel.kt
│ │ │ ├── MoreCommentModel.kt
│ │ │ ├── RedditorModel.kt
│ │ │ ├── RuleModel.kt
│ │ │ ├── SubmissionModel.kt
│ │ │ ├── SubredditModel.kt
│ │ │ ├── SuspendedRedditorModel.kt
│ │ │ ├── TrophyModel.kt
│ │ │ ├── WikiPageModel.kt
│ │ │ └── base
│ │ │ │ ├── ViewBindingEpoxyModelWithHolder.kt
│ │ │ │ └── ViewBindingKotlinModel.kt
│ │ │ └── utils
│ │ │ ├── DoAsync.kt
│ │ │ ├── StorageUtil.kt
│ │ │ └── Utils.kt
│ └── res
│ │ ├── drawable-v24
│ │ └── ic_launcher_foreground.xml
│ │ ├── drawable
│ │ └── ic_launcher_background.xml
│ │ ├── layout-v21
│ │ └── activity_main.xml
│ │ ├── layout
│ │ ├── activity_adapter.xml
│ │ ├── activity_api_detail.xml
│ │ ├── activity_apis.xml
│ │ ├── activity_comments.xml
│ │ ├── activity_controller.xml
│ │ ├── activity_login.xml
│ │ ├── activity_main.xml
│ │ ├── activity_multi_search.xml
│ │ ├── activity_print.xml
│ │ ├── activity_search_adapter.xml
│ │ ├── activity_search_controller.xml
│ │ ├── activity_search_print.xml
│ │ ├── activity_search_print_2.xml
│ │ ├── activity_settings.xml
│ │ ├── activity_submissions_search.xml
│ │ ├── activity_submit.xml
│ │ ├── activity_submit_media.xml
│ │ ├── activity_subreddits_search.xml
│ │ ├── activity_upload_images.xml
│ │ ├── activity_wiki.xml
│ │ ├── fragment_bottom_reply.xml
│ │ ├── fragment_epoxy.xml
│ │ ├── item_comment.xml
│ │ ├── item_empty.xml
│ │ ├── item_message.xml
│ │ ├── item_more_comments.xml
│ │ ├── item_redditor.xml
│ │ ├── item_rule.xml
│ │ ├── item_submission.xml
│ │ ├── item_subreddit.xml
│ │ ├── item_suspended_redditor.xml
│ │ └── item_trophy.xml
│ │ ├── menu
│ │ ├── menu_sorting_comments.xml
│ │ ├── menu_sorting_time.xml
│ │ └── menu_sorting_time_contrib.xml
│ │ ├── mipmap-anydpi-v26
│ │ ├── ic_launcher.xml
│ │ └── ic_launcher_round.xml
│ │ ├── mipmap-hdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-mdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xhdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxhdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxxhdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ └── values
│ │ ├── colors.xml
│ │ ├── ids.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── com
│ └── kirkbushman
│ └── sampleapp
│ └── local
│ ├── BasicTest.kt
│ ├── RandomUtil.kt
│ ├── integration
│ └── PolyJsonAdapterTests.kt
│ └── unit
│ ├── AccountsClientTests.kt
│ ├── ApiUnitTest.kt
│ ├── ContributionsClientTests.kt
│ ├── FetcherTest.kt
│ ├── MessagesClientTests.kt
│ ├── MultisClientTests.kt
│ ├── RedditorsClientTests.kt
│ └── SubredditsClientTests.kt
└── settings.gradle
/.editorconfig:
--------------------------------------------------------------------------------
1 | [*.{kt,kts}]
2 | # allow wild cards input
3 | ktlint_disabled_rules=no-wildcard-imports,import-ordering,spacing-between-declarations-with-annotations,no-empty-first-line-in-method-block
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | # To get started with Dependabot version updates, you'll need to specify which
2 | # package ecosystems to update and where the package manifests are located.
3 | # Please see the documentation for all configuration options:
4 | # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5 |
6 | version: 2
7 | updates:
8 | - package-ecosystem: "gradle"
9 | directory: "/"
10 | schedule:
11 | interval: "daily"
12 | - package-ecosystem: "gradle"
13 | directory: "lib/"
14 | schedule:
15 | interval: "daily"
16 | - package-ecosystem: "gradle"
17 | directory: "sampleapp/"
18 | schedule:
19 | interval: "daily"
20 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 |
3 | #built applications
4 | *.apk
5 | *.ap_
6 |
7 | #Files for the VM
8 | *.dex
9 |
10 | #credentials
11 | /lib/src/debug/res/xml/credentials.xml
12 | /lib/detekt-report.html
13 | /sampleapp/src/main/res/xml/credentials.xml
14 | /sampleapp/detekt-report.html
15 |
16 | /bin
17 | /gen
18 | /out
19 |
20 | .gradle
21 | !gradle-wrapper.jar
22 | /build
23 | /lib/build
24 | /sampleapp/build
25 |
26 | /local.properties
27 |
28 | /.idea
29 | /.settings
30 | .DS_Store
31 | /captures
32 | .externalNativeBuild
33 |
--------------------------------------------------------------------------------
/.project:
--------------------------------------------------------------------------------
1 |
2 |
WikiDisabledException()
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.helpers/-auth-app-helper/auth.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | protected val auth: RedditAuth
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.helpers/-auth-helper/auth.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | protected abstract val auth: RedditAuth
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.helpers/-auth-helper/bearer.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | protected var bearer: TokenBearer?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.helpers/-auth-userless-helper/auth.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | protected val auth: RedditAuth
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-account.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Account
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-award.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Award
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-comment.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Comment
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-karma-list.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | KarmaList
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-labeled-multi-description.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LabeledMultiDescription
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-labeled-multi.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LabeledMulti
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-link.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Link
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-listing.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Listing
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-message.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Message
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-moderated-list.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ModeratedList
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-more.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | More
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-subreddit.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Subreddit
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-trophy-list.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TrophyList
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-user-list.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | UserList
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-wikipage-listing.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | WikipageListing
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope-kind/-wikipage.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Wikipage
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http.base/-envelope/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | abstract val data: T?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http/-enveloped-comment/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: Comment
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http/-enveloped-message/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: Message
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http/-enveloped-multi/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: Multi
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http/-enveloped-multi/kind.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val kind: EnvelopeKind
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http/-enveloped-redditor/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: Redditor
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http/-enveloped-subreddit/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: Subreddit
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http/-enveloped-trophy/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: Trophy
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.http/-enveloped-trophy/kind.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val kind: EnvelopeKind
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.commons/-image-variants/gif.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val gif: Images?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.commons/-image-variants/mp4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val mp4: Images?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.commons/-images/source.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val source: ImageDetail
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.commons/-media/o-embed.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val oEmbed: OEmbed?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.commons/-submission-kind/-i-m-a-g-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | IMAGE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.commons/-submission-kind/-l-i-n-k.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LINK
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.commons/-submission-kind/-s-e-l-f.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | SELF
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.commons/-submission-kind/-v-i-d-e-o-g-i-f.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | VIDEOGIF
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.commons/-submission-kind/-v-i-d-e-o.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | VIDEO
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-comments-sorting/-b-e-s-t.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | BEST
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-comments-sorting/-c-o-n-f-i-d-e-n-c-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CONFIDENCE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-comments-sorting/-c-o-n-t-r-o-v-e-r-s-i-a-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CONTROVERSIAL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-comments-sorting/-l-i-v-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LIVE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-comments-sorting/-n-e-w.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NEW
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-comments-sorting/-o-l-d.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | OLD
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-comments-sorting/-q-a.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | QA
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-comments-sorting/-r-a-n-d-o-m.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | RANDOM
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-comments-sorting/-t-o-p.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TOP
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-contributions-sorting/-c-o-n-t-r-o-v-e-r-s-i-a-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CONTROVERSIAL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-contributions-sorting/-h-o-t.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | HOT
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-contributions-sorting/-n-e-w.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NEW
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-contributions-sorting/-t-o-p.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TOP
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-distinguished/-a-d-m-i-n.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ADMIN
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-distinguished/-m-o-d-e-r-a-t-o-r.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MODERATOR
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-distinguished/-n-o-t_-d-i-s-t-i-n-g-u-i-s-h-e-d.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NOT_DISTINGUISHED
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-distinguished/-s-p-e-c-i-a-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | SPECIAL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-redditor-search-sorting/-a-l-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ALL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-redditor-search-sorting/-r-e-l-e-v-a-n-c-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | RELEVANCE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-search-sorting/-c-o-m-m-e-n-t-s.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | COMMENTS
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-search-sorting/-h-o-t.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | HOT
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-search-sorting/-n-e-w.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NEW
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-search-sorting/-r-e-l-e-v-a-n-c-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | RELEVANCE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-search-sorting/-t-o-p.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TOP
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-submissions-sorting/-b-e-s-t.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | BEST
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-submissions-sorting/-c-o-n-t-r-o-v-e-r-s-i-a-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CONTROVERSIAL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-submissions-sorting/-h-o-t.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | HOT
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-submissions-sorting/-n-e-w.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NEW
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-submissions-sorting/-r-i-s-i-n-g.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | RISING
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-submissions-sorting/-t-o-p.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TOP
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-subreddit-search-sorting/-a-l-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ALL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-subreddit-search-sorting/-r-e-l-e-v-a-n-c-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | RELEVANCE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-time-period/-a-l-l_-t-i-m-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ALL_TIME
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-time-period/-l-a-s-t_-d-a-y.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LAST_DAY
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-time-period/-l-a-s-t_-h-o-u-r.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LAST_HOUR
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-time-period/-l-a-s-t_-m-o-n-t-h.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LAST_MONTH
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-time-period/-l-a-s-t_-w-e-e-k.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LAST_WEEK
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-time-period/-l-a-s-t_-y-e-a-r.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LAST_YEAR
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-vote/-d-o-w-n-v-o-t-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | DOWNVOTE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-vote/-n-o-n-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NONE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.enums/-vote/-u-p-v-o-t-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | UPVOTE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-comments-sorting/-b-e-s-t.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | BEST
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-comments-sorting/-c-o-n-f-i-d-e-n-c-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CONFIDENCE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-comments-sorting/-c-o-n-t-r-o-v-e-r-s-i-a-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CONTROVERSIAL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-comments-sorting/-l-i-v-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LIVE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-comments-sorting/-n-e-w.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NEW
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-comments-sorting/-o-l-d.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | OLD
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-comments-sorting/-q-a.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | QA
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-comments-sorting/-r-a-n-d-o-m.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | RANDOM
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-comments-sorting/-t-o-p.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TOP
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-contributions-sorting/-c-o-n-t-r-o-v-e-r-s-i-a-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CONTROVERSIAL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-contributions-sorting/-h-o-t.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | HOT
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-contributions-sorting/-n-e-w.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NEW
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-contributions-sorting/-t-o-p.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TOP
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-distinguished/-a-d-m-i-n.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ADMIN
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-distinguished/-m-o-d-e-r-a-t-o-r.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MODERATOR
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-distinguished/-n-o-t_-d-i-s-t-i-n-g-u-i-s-h-e-d.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NOT_DISTINGUISHED
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-distinguished/-s-p-e-c-i-a-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | SPECIAL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-gallery-image-data/x.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val x: Int
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-gallery-image/s.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val s: GalleryImageData
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-gallery-media/e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val e: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-gallery-media/s.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val s: GalleryImageData?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-image-variants/gif.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val gif: Images?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-image-variants/mp4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val mp4: Images?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-images/source.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val source: ImageDetail
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-media/o-embed.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val oEmbed: OEmbed?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-poll-option/id.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val id: Long
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-redditor-search-sorting/-a-l-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ALL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-redditor-search-sorting/-r-e-l-e-v-a-n-c-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | RELEVANCE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-search-sorting/-c-o-m-m-e-n-t-s.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | COMMENTS
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-search-sorting/-h-o-t.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | HOT
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-search-sorting/-n-e-w.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NEW
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-search-sorting/-r-e-l-e-v-a-n-c-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | RELEVANCE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-search-sorting/-t-o-p.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TOP
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submission-kind/image.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | image
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submission-kind/link.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | link
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submission-kind/self.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | self
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submission-kind/video.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | video
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submission-kind/videogif.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | videogif
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submissions-sorting/-b-e-s-t.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | BEST
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submissions-sorting/-c-o-n-t-r-o-v-e-r-s-i-a-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CONTROVERSIAL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submissions-sorting/-h-o-t.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | HOT
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submissions-sorting/-n-e-w.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NEW
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submissions-sorting/-r-i-s-i-n-g.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | RISING
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-submissions-sorting/-t-o-p.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TOP
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-subreddit-search-sorting/-a-l-l.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ALL
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-subreddit-search-sorting/-r-e-l-e-v-a-n-c-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | RELEVANCE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-time-period/-a-l-l_-t-i-m-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ALL_TIME
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-time-period/-l-a-s-t_-d-a-y.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LAST_DAY
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-time-period/-l-a-s-t_-h-o-u-r.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LAST_HOUR
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-time-period/-l-a-s-t_-m-o-n-t-h.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LAST_MONTH
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-time-period/-l-a-s-t_-w-e-e-k.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LAST_WEEK
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-time-period/-l-a-s-t_-y-e-a-r.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | LAST_YEAR
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-vote/-d-o-w-n-v-o-t-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | DOWNVOTE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-vote/-n-o-n-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NONE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.general/-vote/-u-p-v-o-t-e.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | UPVOTE
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models.responses/-poll-vote-res/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: PollVoteData
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-awarding/count.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val count: Int
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-flair/css-class.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val cssClass: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-flair/id.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val id: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-flair/text.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val text: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-flair/type.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val type: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-friend-list/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: FriendListData
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-friend-list/kind.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val kind: EnvelopeKind
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-friend/added.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val added: Long
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-friend/rel-id.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val relId: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-gallery-media-item/id.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val id: Long
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-gallery-media/s.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val s: GalleryImageData?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-karma-list/kind.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val kind: EnvelopeKind
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-me/coins.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val coins: Int
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-me/is-sponsor.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val isSponsor: Boolean
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-me/num-friends.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val numFriends: Int
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-me/subreddit.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val subreddit: RedditorSubreddit?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-me/verified.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val verified: Boolean
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-moderated-sub/url.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val url: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-multi-sub/name.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val name: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-multi/can-edit.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val canEdit: Boolean
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-multi/icon-url.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val iconUrl: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-multi/name.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val name: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-multi/over18.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val over18: Boolean
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-multi/owner-id.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val ownerId: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-multi/path.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val path: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-poll-option/id.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val id: Long
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-poll-option/text.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val text: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-poll-vote-req/id.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val id: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-poll-vote-res/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: PollVoteData
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-poll-vote-state/poll.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val poll: PollVoteStatePoll
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-prefs/beta.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val beta: Boolean
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-prefs/compress.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val compress: Boolean
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-prefs/hide-ads.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val hideAds: Boolean
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-prefs/hide-ups.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val hideUps: Boolean
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-prefs/lang.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val lang: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-prefs/media.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val media: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-prefs/num-sites.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val numSites: Int
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-prefs/over18.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val over18: Boolean
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-prefs/research.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val research: Boolean
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-reply-json/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: ReplyData
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-reply/json.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val json: ReplyJson
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-submission/url.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val url: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-submit-response/json.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val json: SubmitResponseJson
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-subreddit/lang.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val lang: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-subreddit/title.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val title: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-subreddit/url.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val url: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-trophy-list/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: TrophyChildren
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-trophy-list/kind.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val kind: EnvelopeKind
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-upload-contract/args.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val args: UploadContractArgs
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-upload-data/acl.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val acl: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-upload-data/key.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val key: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-upload-file/file.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val file: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-user-list/data.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val data: UserChildren
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-user-list/kind.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val kind: EnvelopeKind
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-user/date.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val date: Long
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-user/id.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val id: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-user/name.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val name: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-user/rel-id.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val relId: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-wiki-page-list/kind.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val kind: EnvelopeKind
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-wiki-revision/author.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val author: Redditor?
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-wiki-revision/id.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val id: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/docs/lib/com.kirkbushman.araw.models/-wiki-revision/page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | val page: String
13 |
14 |
15 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | GROUP=com.kirkbushman.araw
2 |
3 | org.gradle.jvmargs=-Xmx3G
4 |
5 | org.gradle.daemon=true
6 | org.gradle.parallel=true
7 | org.gradle.caching=true
8 | org.gradle.configureondemand=true
9 |
10 | org.gradle.vfs.watch=true
11 |
12 | android.useAndroidX=true
13 |
14 | kapt.incremental.apt=true
15 |
16 | kotlin.code.style=official
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KirkBushman/ARAW/aeae071fa8d2a4e378de4a71420dc2a9792591f3/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sun Apr 21 14:41:42 CEST 2019
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
7 |
--------------------------------------------------------------------------------
/jitpack.yml:
--------------------------------------------------------------------------------
1 | jdk:
2 | - openjdk11
3 | install:
4 | - ./gradlew build :lib:publishToMavenLocal
--------------------------------------------------------------------------------
/lib/.classpath:
--------------------------------------------------------------------------------
1 |
2 |