├── .gitignore ├── .gitlab-ci.yml ├── .woodpecker ├── .build.yml └── .test.yml ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── fediverser ├── apps │ ├── core │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── authentication.py │ │ ├── choices.py │ │ ├── factories.py │ │ ├── filters.py │ │ ├── forms.py │ │ ├── handlers.py │ │ ├── management │ │ │ └── commands │ │ │ │ └── pull_from_reddit.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_person_useraccount_lemmy_account.py │ │ │ ├── 0003_fediversedinstance_creates_reddit_mirror_bots_and_more.py │ │ │ ├── 0004_alter_fediversedinstance_instance_endorsement_and_more.py │ │ │ ├── 0005_rename_endorsemement_endorsemententry_endorsement_and_more.py │ │ │ ├── 0006_alter_fediversedinstance_portal_url.py │ │ │ ├── 0007_community_url_person_url_and_more.py │ │ │ ├── 0008_add_url.py │ │ │ ├── 0009_break_recommendation_changefeed.py │ │ │ ├── 0010_remove_reddittocommunityrecommendationentry_recommendation_and_more.py │ │ │ ├── 0011_alter_changefeedentry_options_alter_community_url_and_more.py │ │ │ ├── 0012_setinstancecountry_instanceextrainformation_and_more.py │ │ │ ├── 0013_useraccount_tracked_subreddits.py │ │ │ ├── 0014_connectedredditaccountentry_actor_and_more.py │ │ │ ├── 0015_mergedentry.py │ │ │ ├── 0016_connectedactivitypubaccount.py │ │ │ ├── 0017_remove_community_tags_remove_instance_category_and_more.py │ │ │ ├── 0018_communityannotation_instanceannotation_and_more.py │ │ │ ├── 0019_remove_useraccount_reddit_account.py │ │ │ ├── 0020_alter_entry_feed_redditapplicationkey_and_more.py │ │ │ ├── 0021_invitetemplate_redditaccountauthorizedscope_and_more.py │ │ │ ├── 0022_redditordeclinedinvite.py │ │ │ ├── 0023_alter_instance_software.py │ │ │ ├── 0024_setinstanceasclosed_setinstanceasabandoned.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── accounts.py │ │ │ ├── activitypub.py │ │ │ ├── cms.py │ │ │ ├── common.py │ │ │ ├── feeds.py │ │ │ ├── invites.py │ │ │ ├── mapping.py │ │ │ ├── mirroring.py │ │ │ ├── network.py │ │ │ └── reddit.py │ │ ├── serializers.py │ │ ├── settings.py │ │ ├── signals.py │ │ ├── static │ │ │ ├── fediverser │ │ │ │ ├── css │ │ │ │ │ └── site.css │ │ │ │ └── images │ │ │ │ │ ├── fediverse-logo.ico │ │ │ │ │ └── fediverse-logo.png │ │ │ └── flags │ │ │ │ ├── ad.svg │ │ │ │ ├── ae.svg │ │ │ │ ├── af.svg │ │ │ │ ├── ag.svg │ │ │ │ ├── ai.svg │ │ │ │ ├── al.svg │ │ │ │ ├── am.svg │ │ │ │ ├── ao.svg │ │ │ │ ├── aq.svg │ │ │ │ ├── ar.svg │ │ │ │ ├── arab.svg │ │ │ │ ├── as.svg │ │ │ │ ├── at.svg │ │ │ │ ├── au.svg │ │ │ │ ├── aw.svg │ │ │ │ ├── ax.svg │ │ │ │ ├── az.svg │ │ │ │ ├── ba.svg │ │ │ │ ├── bb.svg │ │ │ │ ├── bd.svg │ │ │ │ ├── be.svg │ │ │ │ ├── bf.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── bh.svg │ │ │ │ ├── bi.svg │ │ │ │ ├── bj.svg │ │ │ │ ├── bl.svg │ │ │ │ ├── bm.svg │ │ │ │ ├── bn.svg │ │ │ │ ├── bo.svg │ │ │ │ ├── bq.svg │ │ │ │ ├── br.svg │ │ │ │ ├── bs.svg │ │ │ │ ├── bt.svg │ │ │ │ ├── bv.svg │ │ │ │ ├── bw.svg │ │ │ │ ├── by.svg │ │ │ │ ├── bz.svg │ │ │ │ ├── ca.svg │ │ │ │ ├── cc.svg │ │ │ │ ├── cd.svg │ │ │ │ ├── cefta.svg │ │ │ │ ├── cf.svg │ │ │ │ ├── cg.svg │ │ │ │ ├── ch.svg │ │ │ │ ├── ci.svg │ │ │ │ ├── ck.svg │ │ │ │ ├── cl.svg │ │ │ │ ├── cm.svg │ │ │ │ ├── cn.svg │ │ │ │ ├── co.svg │ │ │ │ ├── cp.svg │ │ │ │ ├── cr.svg │ │ │ │ ├── cu.svg │ │ │ │ ├── cv.svg │ │ │ │ ├── cw.svg │ │ │ │ ├── cx.svg │ │ │ │ ├── cy.svg │ │ │ │ ├── cz.svg │ │ │ │ ├── de.svg │ │ │ │ ├── dg.svg │ │ │ │ ├── dj.svg │ │ │ │ ├── dk.svg │ │ │ │ ├── dm.svg │ │ │ │ ├── do.svg │ │ │ │ ├── dz.svg │ │ │ │ ├── eac.svg │ │ │ │ ├── ec.svg │ │ │ │ ├── ee.svg │ │ │ │ ├── eg.svg │ │ │ │ ├── eh.svg │ │ │ │ ├── er.svg │ │ │ │ ├── es-ct.svg │ │ │ │ ├── es-ga.svg │ │ │ │ ├── es-pv.svg │ │ │ │ ├── es.svg │ │ │ │ ├── et.svg │ │ │ │ ├── eu.svg │ │ │ │ ├── fi.svg │ │ │ │ ├── fj.svg │ │ │ │ ├── fk.svg │ │ │ │ ├── fm.svg │ │ │ │ ├── fo.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── ga.svg │ │ │ │ ├── gb-eng.svg │ │ │ │ ├── gb-nir.svg │ │ │ │ ├── gb-sct.svg │ │ │ │ ├── gb-wls.svg │ │ │ │ ├── gb.svg │ │ │ │ ├── gd.svg │ │ │ │ ├── ge.svg │ │ │ │ ├── gf.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── gh.svg │ │ │ │ ├── gi.svg │ │ │ │ ├── gl.svg │ │ │ │ ├── gm.svg │ │ │ │ ├── gn.svg │ │ │ │ ├── gp.svg │ │ │ │ ├── gq.svg │ │ │ │ ├── gr.svg │ │ │ │ ├── gs.svg │ │ │ │ ├── gt.svg │ │ │ │ ├── gu.svg │ │ │ │ ├── gw.svg │ │ │ │ ├── gy.svg │ │ │ │ ├── hk.svg │ │ │ │ ├── hm.svg │ │ │ │ ├── hn.svg │ │ │ │ ├── hr.svg │ │ │ │ ├── ht.svg │ │ │ │ ├── hu.svg │ │ │ │ ├── ic.svg │ │ │ │ ├── id.svg │ │ │ │ ├── ie.svg │ │ │ │ ├── il.svg │ │ │ │ ├── im.svg │ │ │ │ ├── in.svg │ │ │ │ ├── io.svg │ │ │ │ ├── iq.svg │ │ │ │ ├── ir.svg │ │ │ │ ├── is.svg │ │ │ │ ├── it.svg │ │ │ │ ├── je.svg │ │ │ │ ├── jm.svg │ │ │ │ ├── jo.svg │ │ │ │ ├── jp.svg │ │ │ │ ├── ke.svg │ │ │ │ ├── kg.svg │ │ │ │ ├── kh.svg │ │ │ │ ├── ki.svg │ │ │ │ ├── km.svg │ │ │ │ ├── kn.svg │ │ │ │ ├── kp.svg │ │ │ │ ├── kr.svg │ │ │ │ ├── kw.svg │ │ │ │ ├── ky.svg │ │ │ │ ├── kz.svg │ │ │ │ ├── la.svg │ │ │ │ ├── lb.svg │ │ │ │ ├── lc.svg │ │ │ │ ├── li.svg │ │ │ │ ├── lk.svg │ │ │ │ ├── lr.svg │ │ │ │ ├── ls.svg │ │ │ │ ├── lt.svg │ │ │ │ ├── lu.svg │ │ │ │ ├── lv.svg │ │ │ │ ├── ly.svg │ │ │ │ ├── ma.svg │ │ │ │ ├── mc.svg │ │ │ │ ├── md.svg │ │ │ │ ├── me.svg │ │ │ │ ├── mf.svg │ │ │ │ ├── mg.svg │ │ │ │ ├── mh.svg │ │ │ │ ├── mk.svg │ │ │ │ ├── ml.svg │ │ │ │ ├── mm.svg │ │ │ │ ├── mn.svg │ │ │ │ ├── mo.svg │ │ │ │ ├── mp.svg │ │ │ │ ├── mq.svg │ │ │ │ ├── mr.svg │ │ │ │ ├── ms.svg │ │ │ │ ├── mt.svg │ │ │ │ ├── mu.svg │ │ │ │ ├── mv.svg │ │ │ │ ├── mw.svg │ │ │ │ ├── mx.svg │ │ │ │ ├── my.svg │ │ │ │ ├── mz.svg │ │ │ │ ├── na.svg │ │ │ │ ├── nc.svg │ │ │ │ ├── ne.svg │ │ │ │ ├── nf.svg │ │ │ │ ├── ng.svg │ │ │ │ ├── ni.svg │ │ │ │ ├── nl.svg │ │ │ │ ├── no.svg │ │ │ │ ├── np.svg │ │ │ │ ├── nr.svg │ │ │ │ ├── nu.svg │ │ │ │ ├── nz.svg │ │ │ │ ├── om.svg │ │ │ │ ├── pa.svg │ │ │ │ ├── pc.svg │ │ │ │ ├── pe.svg │ │ │ │ ├── pf.svg │ │ │ │ ├── pg.svg │ │ │ │ ├── ph.svg │ │ │ │ ├── pk.svg │ │ │ │ ├── pl.svg │ │ │ │ ├── pm.svg │ │ │ │ ├── pn.svg │ │ │ │ ├── pr.svg │ │ │ │ ├── ps.svg │ │ │ │ ├── pt.svg │ │ │ │ ├── pw.svg │ │ │ │ ├── py.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── re.svg │ │ │ │ ├── ro.svg │ │ │ │ ├── rs.svg │ │ │ │ ├── ru.svg │ │ │ │ ├── rw.svg │ │ │ │ ├── sa.svg │ │ │ │ ├── sb.svg │ │ │ │ ├── sc.svg │ │ │ │ ├── sd.svg │ │ │ │ ├── se.svg │ │ │ │ ├── sg.svg │ │ │ │ ├── sh-ac.svg │ │ │ │ ├── sh-hl.svg │ │ │ │ ├── sh-ta.svg │ │ │ │ ├── sh.svg │ │ │ │ ├── si.svg │ │ │ │ ├── sj.svg │ │ │ │ ├── sk.svg │ │ │ │ ├── sl.svg │ │ │ │ ├── sm.svg │ │ │ │ ├── sn.svg │ │ │ │ ├── so.svg │ │ │ │ ├── sr.svg │ │ │ │ ├── ss.svg │ │ │ │ ├── st.svg │ │ │ │ ├── sv.svg │ │ │ │ ├── sx.svg │ │ │ │ ├── sy.svg │ │ │ │ ├── sz.svg │ │ │ │ ├── tc.svg │ │ │ │ ├── td.svg │ │ │ │ ├── tf.svg │ │ │ │ ├── tg.svg │ │ │ │ ├── th.svg │ │ │ │ ├── tj.svg │ │ │ │ ├── tk.svg │ │ │ │ ├── tl.svg │ │ │ │ ├── tm.svg │ │ │ │ ├── tn.svg │ │ │ │ ├── to.svg │ │ │ │ ├── tr.svg │ │ │ │ ├── tt.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── tw.svg │ │ │ │ ├── tz.svg │ │ │ │ ├── ua.svg │ │ │ │ ├── ug.svg │ │ │ │ ├── um.svg │ │ │ │ ├── un.svg │ │ │ │ ├── us.svg │ │ │ │ ├── uy.svg │ │ │ │ ├── uz.svg │ │ │ │ ├── va.svg │ │ │ │ ├── vc.svg │ │ │ │ ├── ve.svg │ │ │ │ ├── vg.svg │ │ │ │ ├── vi.svg │ │ │ │ ├── vn.svg │ │ │ │ ├── vu.svg │ │ │ │ ├── wf.svg │ │ │ │ ├── ws.svg │ │ │ │ ├── xk.svg │ │ │ │ ├── xx.svg │ │ │ │ ├── ye.svg │ │ │ │ ├── yt.svg │ │ │ │ ├── za.svg │ │ │ │ ├── zm.svg │ │ │ │ └── zw.svg │ │ ├── tasks.py │ │ ├── templates │ │ │ ├── account │ │ │ │ ├── login.html │ │ │ │ └── signup.html │ │ │ ├── admin │ │ │ │ ├── redditaccount_change_form.html │ │ │ │ ├── redditcommunity_change_form.html │ │ │ │ └── redditsubmission_change_form.html │ │ │ ├── fediverser │ │ │ │ └── messages │ │ │ │ │ └── mirrored_post_disclosure.tmpl.md │ │ │ ├── invites │ │ │ │ ├── already_accepted.tmpl.txt │ │ │ │ ├── direct_message.tmpl.md │ │ │ │ └── expired.tmpl.txt │ │ │ └── portal │ │ │ │ ├── base.tmpl.html │ │ │ │ ├── change_request │ │ │ │ └── list.tmpl.html │ │ │ │ ├── community │ │ │ │ ├── create.tmpl.html │ │ │ │ ├── detail.tmpl.html │ │ │ │ └── list.tmpl.html │ │ │ │ ├── community_proposal │ │ │ │ └── create.tmpl.html │ │ │ │ ├── generic │ │ │ │ ├── base.tmpl.html │ │ │ │ ├── create.tmpl.html │ │ │ │ ├── detail.tmpl.html │ │ │ │ ├── form.tmpl.html │ │ │ │ └── listing.tmpl.html │ │ │ │ ├── home │ │ │ │ ├── header.tmpl.html │ │ │ │ ├── instance_finder.tmpl.html │ │ │ │ ├── invite.tmpl.html │ │ │ │ └── page.tmpl.html │ │ │ │ ├── instance │ │ │ │ ├── create.tmpl.html │ │ │ │ ├── detail.tmpl.html │ │ │ │ ├── header.tmpl.html │ │ │ │ ├── list.tmpl.html │ │ │ │ └── signup.tmpl.html │ │ │ │ ├── pages │ │ │ │ └── about.tmpl.html │ │ │ │ ├── partials │ │ │ │ ├── header.tmpl.html │ │ │ │ └── home_header.tmpl.html │ │ │ │ ├── reddit_community │ │ │ │ ├── create.tmpl.html │ │ │ │ ├── detail.tmpl.html │ │ │ │ ├── header.tmpl.html │ │ │ │ └── list.tmpl.html │ │ │ │ ├── reddit_submission │ │ │ │ └── detail.tmpl.html │ │ │ │ └── redditor │ │ │ │ ├── decline_invite.tmpl.html │ │ │ │ ├── detail.tmpl.html │ │ │ │ ├── header.tmpl.html │ │ │ │ └── list.tmpl.html │ │ ├── templatetags │ │ │ └── fediverser.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── test_api.py │ │ │ ├── test_models.py │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── ambassadors.py │ │ │ ├── auth.py │ │ │ ├── common.py │ │ │ ├── mapping.py │ │ │ ├── network.py │ │ │ ├── onboarding.py │ │ │ └── reddit.py │ └── lemmy │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── authentication.py │ │ ├── choices.py │ │ ├── forms.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_upgrade_to_019.py │ │ ├── 0003_imagedetails_delete_imageupload.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── services.py │ │ └── settings.py └── services │ ├── admin │ └── urls.py │ ├── base │ ├── __init__.py │ ├── asgi.py │ ├── celery.py │ ├── database_router.py │ ├── settings.py │ └── wsgi.py │ └── portal │ └── urls.py ├── poetry.lock ├── pyproject.toml ├── pytest.ini └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.woodpecker/.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/.woodpecker/.build.yml -------------------------------------------------------------------------------- /.woodpecker/.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/.woodpecker/.test.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /fediverser/apps/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fediverser/apps/core/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/adapters.py -------------------------------------------------------------------------------- /fediverser/apps/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/admin.py -------------------------------------------------------------------------------- /fediverser/apps/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/apps.py -------------------------------------------------------------------------------- /fediverser/apps/core/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/authentication.py -------------------------------------------------------------------------------- /fediverser/apps/core/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/choices.py -------------------------------------------------------------------------------- /fediverser/apps/core/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/factories.py -------------------------------------------------------------------------------- /fediverser/apps/core/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/filters.py -------------------------------------------------------------------------------- /fediverser/apps/core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/forms.py -------------------------------------------------------------------------------- /fediverser/apps/core/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/handlers.py -------------------------------------------------------------------------------- /fediverser/apps/core/management/commands/pull_from_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/management/commands/pull_from_reddit.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0002_person_useraccount_lemmy_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0002_person_useraccount_lemmy_account.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0003_fediversedinstance_creates_reddit_mirror_bots_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0003_fediversedinstance_creates_reddit_mirror_bots_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0004_alter_fediversedinstance_instance_endorsement_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0004_alter_fediversedinstance_instance_endorsement_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0005_rename_endorsemement_endorsemententry_endorsement_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0005_rename_endorsemement_endorsemententry_endorsement_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0006_alter_fediversedinstance_portal_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0006_alter_fediversedinstance_portal_url.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0007_community_url_person_url_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0007_community_url_person_url_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0008_add_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0008_add_url.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0009_break_recommendation_changefeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0009_break_recommendation_changefeed.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0010_remove_reddittocommunityrecommendationentry_recommendation_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0010_remove_reddittocommunityrecommendationentry_recommendation_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0011_alter_changefeedentry_options_alter_community_url_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0011_alter_changefeedentry_options_alter_community_url_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0012_setinstancecountry_instanceextrainformation_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0012_setinstancecountry_instanceextrainformation_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0013_useraccount_tracked_subreddits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0013_useraccount_tracked_subreddits.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0014_connectedredditaccountentry_actor_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0014_connectedredditaccountentry_actor_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0015_mergedentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0015_mergedentry.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0016_connectedactivitypubaccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0016_connectedactivitypubaccount.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0017_remove_community_tags_remove_instance_category_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0017_remove_community_tags_remove_instance_category_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0018_communityannotation_instanceannotation_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0018_communityannotation_instanceannotation_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0019_remove_useraccount_reddit_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0019_remove_useraccount_reddit_account.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0020_alter_entry_feed_redditapplicationkey_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0020_alter_entry_feed_redditapplicationkey_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0021_invitetemplate_redditaccountauthorizedscope_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0021_invitetemplate_redditaccountauthorizedscope_and_more.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0022_redditordeclinedinvite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0022_redditordeclinedinvite.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0023_alter_instance_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0023_alter_instance_software.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/0024_setinstanceasclosed_setinstanceasabandoned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/migrations/0024_setinstanceasclosed_setinstanceasabandoned.py -------------------------------------------------------------------------------- /fediverser/apps/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fediverser/apps/core/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/__init__.py -------------------------------------------------------------------------------- /fediverser/apps/core/models/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/accounts.py -------------------------------------------------------------------------------- /fediverser/apps/core/models/activitypub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/activitypub.py -------------------------------------------------------------------------------- /fediverser/apps/core/models/cms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/cms.py -------------------------------------------------------------------------------- /fediverser/apps/core/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/common.py -------------------------------------------------------------------------------- /fediverser/apps/core/models/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/feeds.py -------------------------------------------------------------------------------- /fediverser/apps/core/models/invites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/invites.py -------------------------------------------------------------------------------- /fediverser/apps/core/models/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/mapping.py -------------------------------------------------------------------------------- /fediverser/apps/core/models/mirroring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/mirroring.py -------------------------------------------------------------------------------- /fediverser/apps/core/models/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/network.py -------------------------------------------------------------------------------- /fediverser/apps/core/models/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/models/reddit.py -------------------------------------------------------------------------------- /fediverser/apps/core/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/serializers.py -------------------------------------------------------------------------------- /fediverser/apps/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/settings.py -------------------------------------------------------------------------------- /fediverser/apps/core/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/signals.py -------------------------------------------------------------------------------- /fediverser/apps/core/static/fediverser/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/fediverser/css/site.css -------------------------------------------------------------------------------- /fediverser/apps/core/static/fediverser/images/fediverse-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/fediverser/images/fediverse-logo.ico -------------------------------------------------------------------------------- /fediverser/apps/core/static/fediverser/images/fediverse-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/fediverser/images/fediverse-logo.png -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ad.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ae.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/af.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ag.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ai.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/al.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/al.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/am.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/am.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ao.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/aq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/aq.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ar.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/arab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/arab.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/as.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/at.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/au.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/au.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/aw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/aw.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ax.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/az.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/az.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ba.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bb.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bd.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/be.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/be.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bf.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bh.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bi.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bj.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bl.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bn.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bo.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bq.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/br.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bs.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bt.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bv.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bw.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/by.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/bz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/bz.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ca.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cc.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cd.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cefta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cefta.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cf.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ch.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ci.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ck.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cl.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cn.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/co.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/co.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cp.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cu.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cv.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cw.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cx.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cy.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/cz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/cz.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/de.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/dg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/dg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/dj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/dj.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/dk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/dk.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/dm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/do.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/do.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/dz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/dz.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/eac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/eac.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ec.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ee.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/eg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/eg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/eh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/eh.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/er.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/er.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/es-ct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/es-ct.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/es-ga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/es-ga.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/es-pv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/es-pv.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/es.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/et.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/et.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/eu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/eu.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/fi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/fi.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/fj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/fj.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/fk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/fk.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/fm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/fm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/fo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/fo.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/fr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ga.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gb-eng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gb-eng.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gb-nir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gb-nir.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gb-sct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gb-sct.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gb-wls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gb-wls.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gb.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gd.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ge.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gf.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gh.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gi.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gl.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gn.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gp.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gq.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gs.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gt.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gu.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gw.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/gy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/gy.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/hk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/hk.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/hm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/hm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/hn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/hn.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/hr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/hr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ht.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ht.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/hu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/hu.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ic.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/id.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ie.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/il.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/il.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/im.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/im.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/in.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/io.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/io.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/iq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/iq.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ir.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/is.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/is.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/it.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/je.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/je.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/jm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/jm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/jo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/jo.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/jp.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ke.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/kg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/kg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/kh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/kh.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ki.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/km.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/km.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/kn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/kn.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/kp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/kp.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/kr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/kr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/kw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/kw.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ky.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/kz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/kz.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/la.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/la.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/lb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/lb.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/lc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/lc.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/li.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/li.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/lk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/lk.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/lr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/lr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ls.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/lt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/lt.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/lu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/lu.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/lv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/lv.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ly.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ma.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mc.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/md.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/md.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/me.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mf.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mh.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mk.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ml.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mn.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mo.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mp.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mq.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ms.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mt.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mu.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mv.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mw.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mx.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/my.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/my.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/mz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/mz.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/na.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/na.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/nc.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ne.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/nf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/nf.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ng.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ni.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/nl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/nl.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/no.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/np.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/np.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/nr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/nr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/nu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/nu.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/nz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/nz.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/om.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pa.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pc.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pe.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pf.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ph.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pk.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pl.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pn.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ps.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pt.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/pw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/pw.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/py.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/py.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/qa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/qa.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/re.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/re.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ro.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/rs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/rs.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ru.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/rw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/rw.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sa.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sb.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sc.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sd.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/se.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/se.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sh-ac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sh-ac.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sh-hl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sh-hl.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sh-ta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sh-ta.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sh.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/si.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/si.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sj.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sk.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sl.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sn.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/so.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/so.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ss.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/st.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/st.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sv.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sx.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sy.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/sz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/sz.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tc.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/td.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/td.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tf.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/th.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tj.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tk.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tl.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tn.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/to.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tr.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tt.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tv.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tw.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/tz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/tz.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ua.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ug.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/um.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/um.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/un.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/un.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/us.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/uy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/uy.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/uz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/uz.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/va.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/va.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/vc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/vc.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ve.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/vg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/vg.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/vi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/vi.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/vn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/vn.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/vu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/vu.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/wf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/wf.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ws.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/xk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/xk.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/xx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/xx.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/ye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/ye.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/yt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/yt.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/za.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/za.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/zm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/zm.svg -------------------------------------------------------------------------------- /fediverser/apps/core/static/flags/zw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/static/flags/zw.svg -------------------------------------------------------------------------------- /fediverser/apps/core/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/tasks.py -------------------------------------------------------------------------------- /fediverser/apps/core/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/account/login.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/account/signup.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/admin/redditaccount_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/admin/redditaccount_change_form.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/admin/redditcommunity_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/admin/redditcommunity_change_form.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/admin/redditsubmission_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/admin/redditsubmission_change_form.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/fediverser/messages/mirrored_post_disclosure.tmpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/fediverser/messages/mirrored_post_disclosure.tmpl.md -------------------------------------------------------------------------------- /fediverser/apps/core/templates/invites/already_accepted.tmpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/invites/already_accepted.tmpl.txt -------------------------------------------------------------------------------- /fediverser/apps/core/templates/invites/direct_message.tmpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/invites/direct_message.tmpl.md -------------------------------------------------------------------------------- /fediverser/apps/core/templates/invites/expired.tmpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/invites/expired.tmpl.txt -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/base.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/base.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/change_request/list.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/change_request/list.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/community/create.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/community/create.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/community/detail.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/community/detail.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/community/list.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/community/list.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/community_proposal/create.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/community_proposal/create.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/generic/base.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/generic/base.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/generic/create.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/generic/create.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/generic/detail.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/generic/detail.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/generic/form.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/generic/form.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/generic/listing.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/generic/listing.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/home/header.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/home/header.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/home/instance_finder.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/home/instance_finder.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/home/invite.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/home/invite.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/home/page.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/home/page.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/instance/create.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/instance/create.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/instance/detail.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/instance/detail.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/instance/header.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/instance/header.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/instance/list.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/instance/list.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/instance/signup.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/instance/signup.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/pages/about.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/pages/about.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/partials/header.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/partials/header.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/partials/home_header.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/partials/home_header.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/reddit_community/create.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/reddit_community/create.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/reddit_community/detail.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/reddit_community/detail.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/reddit_community/header.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/reddit_community/header.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/reddit_community/list.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/reddit_community/list.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/reddit_submission/detail.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/reddit_submission/detail.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/redditor/decline_invite.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/redditor/decline_invite.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/redditor/detail.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/redditor/detail.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/redditor/header.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/redditor/header.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templates/portal/redditor/list.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templates/portal/redditor/list.tmpl.html -------------------------------------------------------------------------------- /fediverser/apps/core/templatetags/fediverser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/templatetags/fediverser.py -------------------------------------------------------------------------------- /fediverser/apps/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from .test_models import * # noqa 2 | -------------------------------------------------------------------------------- /fediverser/apps/core/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/tests/common.py -------------------------------------------------------------------------------- /fediverser/apps/core/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/tests/test_api.py -------------------------------------------------------------------------------- /fediverser/apps/core/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/tests/test_models.py -------------------------------------------------------------------------------- /fediverser/apps/core/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/tests/test_views.py -------------------------------------------------------------------------------- /fediverser/apps/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/urls.py -------------------------------------------------------------------------------- /fediverser/apps/core/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/views/__init__.py -------------------------------------------------------------------------------- /fediverser/apps/core/views/ambassadors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/views/ambassadors.py -------------------------------------------------------------------------------- /fediverser/apps/core/views/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/views/auth.py -------------------------------------------------------------------------------- /fediverser/apps/core/views/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/views/common.py -------------------------------------------------------------------------------- /fediverser/apps/core/views/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/views/mapping.py -------------------------------------------------------------------------------- /fediverser/apps/core/views/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/views/network.py -------------------------------------------------------------------------------- /fediverser/apps/core/views/onboarding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/views/onboarding.py -------------------------------------------------------------------------------- /fediverser/apps/core/views/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/core/views/reddit.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fediverser/apps/lemmy/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/admin.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/apps.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/authentication.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/choices.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/forms.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/migrations/0001_initial.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/migrations/0002_upgrade_to_019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/migrations/0002_upgrade_to_019.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/migrations/0003_imagedetails_delete_imageupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/migrations/0003_imagedetails_delete_imageupload.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fediverser/apps/lemmy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/models.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/serializers.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/services.py -------------------------------------------------------------------------------- /fediverser/apps/lemmy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/apps/lemmy/settings.py -------------------------------------------------------------------------------- /fediverser/services/admin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/services/admin/urls.py -------------------------------------------------------------------------------- /fediverser/services/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/services/base/__init__.py -------------------------------------------------------------------------------- /fediverser/services/base/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/services/base/asgi.py -------------------------------------------------------------------------------- /fediverser/services/base/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/services/base/celery.py -------------------------------------------------------------------------------- /fediverser/services/base/database_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/services/base/database_router.py -------------------------------------------------------------------------------- /fediverser/services/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/services/base/settings.py -------------------------------------------------------------------------------- /fediverser/services/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/services/base/wsgi.py -------------------------------------------------------------------------------- /fediverser/services/portal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/fediverser/services/portal/urls.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroomlabs/fediverser/HEAD/setup.cfg --------------------------------------------------------------------------------