├── .gitignore ├── AniDbFileBasedMediaAdder_state.json ├── LICENSE ├── Meta-Resources ├── sparse-image-bg.png ├── template.xdm.sparseimage ├── template.xdm.sparseimage.zip ├── xdm-arrows.png ├── xdm-icon-w-background.1024x1024.png ├── xdm-icon-w-background.120x120.png ├── xdm-icon.1024x1024.png ├── xdm-icon.256x256.png ├── xdm-icon.32x32.png ├── xdm-icon.512x512.png ├── xdm-icon.icns ├── xdm-icon.png ├── xdm-logo.ai ├── xdm-logo.h100.png ├── xdm-logo.h32.png ├── xdm-logo.png ├── xdm-logo.svg └── xdm-logo.w1024.png ├── README.md ├── XDM.py ├── babel.cfg ├── corePlugins ├── __init__.py ├── downloadType │ ├── NZB.py │ ├── Torrent.py │ └── __init__.py ├── filter_download │ ├── RegEx.py │ └── __init__.py ├── filter_searchTerm │ ├── Replace.py │ ├── Umlaute.py │ └── __init__.py └── system │ ├── System.py │ └── __init__.py ├── doc └── source │ ├── api │ └── index.rst │ ├── conf.py │ ├── core │ ├── classes.rst │ ├── index.rst │ ├── init.rst │ ├── message.rst │ ├── news.rst │ ├── scheduler.rst │ └── updater.rst │ ├── index.rst │ └── plugin │ ├── DownloadFilter.rst │ ├── DownloadType.rst │ ├── Downloader.rst │ ├── Indexer.rst │ ├── MediaAdder.rst │ ├── MediaTypeManager.rst │ ├── Notifier.rst │ ├── PostProcessor.rst │ ├── Provider.rst │ ├── SearchTermFilter.rst │ ├── System.rst │ ├── index.rst │ ├── pluginManager.rst │ ├── plugin_config.rst │ ├── plugins │ └── System.rst │ └── repo.rst ├── html ├── bootstrap │ ├── css │ │ ├── bootstrap-combined.no-icons.min.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── css │ ├── animate.css │ ├── fancybox_loading.gif │ ├── fancybox_overlay.png │ ├── fancybox_sprite.png │ ├── fontawesome │ │ ├── css │ │ │ ├── font-awesome-ie7.css │ │ │ ├── font-awesome-ie7.min.css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── fonts │ │ ├── typeone.eot │ │ ├── typeone.svg │ │ └── typeone.woff │ ├── jquery.fancybox.css │ ├── jquery.qtip.min.css │ ├── main.css │ ├── normalize.css │ ├── smoothness │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui-1.10.1.custom.css │ │ └── jquery-ui-1.10.1.custom.min.css │ ├── ui-darkness │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.1.custom.css │ │ └── jquery-ui-1.10.1.custom.min.css │ └── wizard.css ├── img │ ├── bg.gif │ ├── btn_donate_SM.gif │ ├── shattered.png │ ├── shattered_@2X.png │ ├── xdm-icon-w-background.120x120.png │ ├── xdm-icon.32x32.png │ ├── xdm-logo.png │ └── xdm-logo.svg ├── js │ ├── main.js │ ├── managePlugins.js │ ├── plugins.js │ ├── settings.js │ ├── vendor │ │ ├── jquery-1.9.0.min.js │ │ ├── jquery-ui-1.10.1.custom.min.js │ │ ├── modernizr-2.6.2.min.js │ │ └── snap.svg-min.js │ └── wizard.js └── templates │ ├── about.html │ ├── base.html │ ├── completed.html │ ├── events.html │ ├── index.html │ ├── log.html │ ├── log_entry.html │ ├── modalFrames │ ├── configFrame.html │ ├── downloadDetailFrame.html │ ├── downloadsFrame.html │ ├── eventsFrame.html │ └── locationsFrame.html │ ├── msg.html │ ├── plugins.html │ ├── plugins_by_repo.html │ ├── plugins_by_type.html │ ├── results.html │ ├── settings.html │ ├── settingsPlugin.html │ ├── widget │ ├── actionButtons.html │ ├── actionButtonsIcons.html │ ├── actionButtonsVertical.html │ ├── addButton.html │ ├── addButtonIcon.html │ ├── deleteButton.html │ ├── downloadProgressBar.html │ ├── infoButtons.html │ ├── infoButtonsIcons.html │ ├── infoButtonsVertical.html │ ├── locationButton.html │ ├── released.html │ ├── simpleStatusSelect.html │ └── statusSelect.html │ └── wizard │ ├── finished.html │ ├── step_0.html │ ├── step_1.html │ ├── step_2.html │ └── step_3.html ├── i18n ├── de │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── en_US │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── messages.pot ├── initScripts ├── init.systemd └── init.ubuntu ├── requirements.txt ├── setup.py ├── site-packages ├── babel │ ├── __init__.py │ ├── _compat.py │ ├── core.py │ ├── dates.py │ ├── global.dat │ ├── localedata.py │ ├── localedata │ │ ├── aa.dat │ │ ├── aa_DJ.dat │ │ ├── aa_ER.dat │ │ ├── aa_ET.dat │ │ ├── af.dat │ │ ├── af_NA.dat │ │ ├── af_ZA.dat │ │ ├── agq.dat │ │ ├── agq_CM.dat │ │ ├── ak.dat │ │ ├── ak_GH.dat │ │ ├── am.dat │ │ ├── am_ET.dat │ │ ├── ar.dat │ │ ├── ar_001.dat │ │ ├── ar_AE.dat │ │ ├── ar_BH.dat │ │ ├── ar_DJ.dat │ │ ├── ar_DZ.dat │ │ ├── ar_EG.dat │ │ ├── ar_EH.dat │ │ ├── ar_ER.dat │ │ ├── ar_IL.dat │ │ ├── ar_IQ.dat │ │ ├── ar_JO.dat │ │ ├── ar_KM.dat │ │ ├── ar_KW.dat │ │ ├── ar_LB.dat │ │ ├── ar_LY.dat │ │ ├── ar_MA.dat │ │ ├── ar_MR.dat │ │ ├── ar_OM.dat │ │ ├── ar_PS.dat │ │ ├── ar_QA.dat │ │ ├── ar_SA.dat │ │ ├── ar_SD.dat │ │ ├── ar_SO.dat │ │ ├── ar_SY.dat │ │ ├── ar_TD.dat │ │ ├── ar_TN.dat │ │ ├── ar_YE.dat │ │ ├── as.dat │ │ ├── as_IN.dat │ │ ├── asa.dat │ │ ├── asa_TZ.dat │ │ ├── ast.dat │ │ ├── ast_ES.dat │ │ ├── az.dat │ │ ├── az_Cyrl.dat │ │ ├── az_Cyrl_AZ.dat │ │ ├── az_Latn.dat │ │ ├── az_Latn_AZ.dat │ │ ├── bas.dat │ │ ├── bas_CM.dat │ │ ├── be.dat │ │ ├── be_BY.dat │ │ ├── bem.dat │ │ ├── bem_ZM.dat │ │ ├── bez.dat │ │ ├── bez_TZ.dat │ │ ├── bg.dat │ │ ├── bg_BG.dat │ │ ├── bm.dat │ │ ├── bm_ML.dat │ │ ├── bn.dat │ │ ├── bn_BD.dat │ │ ├── bn_IN.dat │ │ ├── bo.dat │ │ ├── bo_CN.dat │ │ ├── bo_IN.dat │ │ ├── br.dat │ │ ├── br_FR.dat │ │ ├── brx.dat │ │ ├── brx_IN.dat │ │ ├── bs.dat │ │ ├── bs_Cyrl.dat │ │ ├── bs_Cyrl_BA.dat │ │ ├── bs_Latn.dat │ │ ├── bs_Latn_BA.dat │ │ ├── byn.dat │ │ ├── byn_ER.dat │ │ ├── ca.dat │ │ ├── ca_AD.dat │ │ ├── ca_ES.dat │ │ ├── cgg.dat │ │ ├── cgg_UG.dat │ │ ├── chr.dat │ │ ├── chr_US.dat │ │ ├── cs.dat │ │ ├── cs_CZ.dat │ │ ├── cy.dat │ │ ├── cy_GB.dat │ │ ├── da.dat │ │ ├── da_DK.dat │ │ ├── dav.dat │ │ ├── dav_KE.dat │ │ ├── de.dat │ │ ├── de_AT.dat │ │ ├── de_BE.dat │ │ ├── de_CH.dat │ │ ├── de_DE.dat │ │ ├── de_LI.dat │ │ ├── de_LU.dat │ │ ├── dje.dat │ │ ├── dje_NE.dat │ │ ├── dua.dat │ │ ├── dua_CM.dat │ │ ├── dyo.dat │ │ ├── dyo_SN.dat │ │ ├── dz.dat │ │ ├── dz_BT.dat │ │ ├── ebu.dat │ │ ├── ebu_KE.dat │ │ ├── ee.dat │ │ ├── ee_GH.dat │ │ ├── ee_TG.dat │ │ ├── el.dat │ │ ├── el_CY.dat │ │ ├── el_GR.dat │ │ ├── en.dat │ │ ├── en_150.dat │ │ ├── en_AG.dat │ │ ├── en_AS.dat │ │ ├── en_AU.dat │ │ ├── en_BB.dat │ │ ├── en_BE.dat │ │ ├── en_BM.dat │ │ ├── en_BS.dat │ │ ├── en_BW.dat │ │ ├── en_BZ.dat │ │ ├── en_CA.dat │ │ ├── en_CM.dat │ │ ├── en_DM.dat │ │ ├── en_Dsrt.dat │ │ ├── en_Dsrt_US.dat │ │ ├── en_FJ.dat │ │ ├── en_FM.dat │ │ ├── en_GB.dat │ │ ├── en_GD.dat │ │ ├── en_GG.dat │ │ ├── en_GH.dat │ │ ├── en_GI.dat │ │ ├── en_GM.dat │ │ ├── en_GU.dat │ │ ├── en_GY.dat │ │ ├── en_HK.dat │ │ ├── en_IE.dat │ │ ├── en_IM.dat │ │ ├── en_IN.dat │ │ ├── en_JE.dat │ │ ├── en_JM.dat │ │ ├── en_KE.dat │ │ ├── en_KI.dat │ │ ├── en_KN.dat │ │ ├── en_KY.dat │ │ ├── en_LC.dat │ │ ├── en_LR.dat │ │ ├── en_LS.dat │ │ ├── en_MG.dat │ │ ├── en_MH.dat │ │ ├── en_MP.dat │ │ ├── en_MT.dat │ │ ├── en_MU.dat │ │ ├── en_MW.dat │ │ ├── en_NA.dat │ │ ├── en_NG.dat │ │ ├── en_NZ.dat │ │ ├── en_PG.dat │ │ ├── en_PH.dat │ │ ├── en_PK.dat │ │ ├── en_PR.dat │ │ ├── en_PW.dat │ │ ├── en_SB.dat │ │ ├── en_SC.dat │ │ ├── en_SG.dat │ │ ├── en_SL.dat │ │ ├── en_SS.dat │ │ ├── en_SZ.dat │ │ ├── en_TC.dat │ │ ├── en_TO.dat │ │ ├── en_TT.dat │ │ ├── en_TZ.dat │ │ ├── en_UG.dat │ │ ├── en_UM.dat │ │ ├── en_US.dat │ │ ├── en_US_POSIX.dat │ │ ├── en_VC.dat │ │ ├── en_VG.dat │ │ ├── en_VI.dat │ │ ├── en_VU.dat │ │ ├── en_WS.dat │ │ ├── en_ZA.dat │ │ ├── en_ZM.dat │ │ ├── en_ZW.dat │ │ ├── eo.dat │ │ ├── es.dat │ │ ├── es_419.dat │ │ ├── es_AR.dat │ │ ├── es_BO.dat │ │ ├── es_CL.dat │ │ ├── es_CO.dat │ │ ├── es_CR.dat │ │ ├── es_CU.dat │ │ ├── es_DO.dat │ │ ├── es_EA.dat │ │ ├── es_EC.dat │ │ ├── es_ES.dat │ │ ├── es_GQ.dat │ │ ├── es_GT.dat │ │ ├── es_HN.dat │ │ ├── es_IC.dat │ │ ├── es_MX.dat │ │ ├── es_NI.dat │ │ ├── es_PA.dat │ │ ├── es_PE.dat │ │ ├── es_PH.dat │ │ ├── es_PR.dat │ │ ├── es_PY.dat │ │ ├── es_SV.dat │ │ ├── es_US.dat │ │ ├── es_UY.dat │ │ ├── es_VE.dat │ │ ├── et.dat │ │ ├── et_EE.dat │ │ ├── eu.dat │ │ ├── eu_ES.dat │ │ ├── ewo.dat │ │ ├── ewo_CM.dat │ │ ├── fa.dat │ │ ├── fa_AF.dat │ │ ├── fa_IR.dat │ │ ├── ff.dat │ │ ├── ff_SN.dat │ │ ├── fi.dat │ │ ├── fi_FI.dat │ │ ├── fil.dat │ │ ├── fil_PH.dat │ │ ├── fo.dat │ │ ├── fo_FO.dat │ │ ├── fr.dat │ │ ├── fr_BE.dat │ │ ├── fr_BF.dat │ │ ├── fr_BI.dat │ │ ├── fr_BJ.dat │ │ ├── fr_BL.dat │ │ ├── fr_CA.dat │ │ ├── fr_CD.dat │ │ ├── fr_CF.dat │ │ ├── fr_CG.dat │ │ ├── fr_CH.dat │ │ ├── fr_CI.dat │ │ ├── fr_CM.dat │ │ ├── fr_DJ.dat │ │ ├── fr_DZ.dat │ │ ├── fr_FR.dat │ │ ├── fr_GA.dat │ │ ├── fr_GF.dat │ │ ├── fr_GN.dat │ │ ├── fr_GP.dat │ │ ├── fr_GQ.dat │ │ ├── fr_HT.dat │ │ ├── fr_KM.dat │ │ ├── fr_LU.dat │ │ ├── fr_MA.dat │ │ ├── fr_MC.dat │ │ ├── fr_MF.dat │ │ ├── fr_MG.dat │ │ ├── fr_ML.dat │ │ ├── fr_MQ.dat │ │ ├── fr_MR.dat │ │ ├── fr_MU.dat │ │ ├── fr_NC.dat │ │ ├── fr_NE.dat │ │ ├── fr_PF.dat │ │ ├── fr_RE.dat │ │ ├── fr_RW.dat │ │ ├── fr_SC.dat │ │ ├── fr_SN.dat │ │ ├── fr_SY.dat │ │ ├── fr_TD.dat │ │ ├── fr_TG.dat │ │ ├── fr_TN.dat │ │ ├── fr_VU.dat │ │ ├── fr_YT.dat │ │ ├── fur.dat │ │ ├── fur_IT.dat │ │ ├── ga.dat │ │ ├── ga_IE.dat │ │ ├── gd.dat │ │ ├── gd_GB.dat │ │ ├── gl.dat │ │ ├── gl_ES.dat │ │ ├── gsw.dat │ │ ├── gsw_CH.dat │ │ ├── gu.dat │ │ ├── gu_IN.dat │ │ ├── guz.dat │ │ ├── guz_KE.dat │ │ ├── gv.dat │ │ ├── gv_GB.dat │ │ ├── ha.dat │ │ ├── ha_Latn.dat │ │ ├── ha_Latn_GH.dat │ │ ├── ha_Latn_NE.dat │ │ ├── ha_Latn_NG.dat │ │ ├── haw.dat │ │ ├── haw_US.dat │ │ ├── he.dat │ │ ├── he_IL.dat │ │ ├── hi.dat │ │ ├── hi_IN.dat │ │ ├── hr.dat │ │ ├── hr_BA.dat │ │ ├── hr_HR.dat │ │ ├── hu.dat │ │ ├── hu_HU.dat │ │ ├── hy.dat │ │ ├── hy_AM.dat │ │ ├── ia.dat │ │ ├── ia_FR.dat │ │ ├── id.dat │ │ ├── id_ID.dat │ │ ├── ig.dat │ │ ├── ig_NG.dat │ │ ├── ii.dat │ │ ├── ii_CN.dat │ │ ├── is.dat │ │ ├── is_IS.dat │ │ ├── it.dat │ │ ├── it_CH.dat │ │ ├── it_IT.dat │ │ ├── it_SM.dat │ │ ├── ja.dat │ │ ├── ja_JP.dat │ │ ├── jgo.dat │ │ ├── jgo_CM.dat │ │ ├── jmc.dat │ │ ├── jmc_TZ.dat │ │ ├── ka.dat │ │ ├── ka_GE.dat │ │ ├── kab.dat │ │ ├── kab_DZ.dat │ │ ├── kam.dat │ │ ├── kam_KE.dat │ │ ├── kde.dat │ │ ├── kde_TZ.dat │ │ ├── kea.dat │ │ ├── kea_CV.dat │ │ ├── khq.dat │ │ ├── khq_ML.dat │ │ ├── ki.dat │ │ ├── ki_KE.dat │ │ ├── kk.dat │ │ ├── kk_Cyrl.dat │ │ ├── kk_Cyrl_KZ.dat │ │ ├── kkj.dat │ │ ├── kkj_CM.dat │ │ ├── kl.dat │ │ ├── kl_GL.dat │ │ ├── kln.dat │ │ ├── kln_KE.dat │ │ ├── km.dat │ │ ├── km_KH.dat │ │ ├── kn.dat │ │ ├── kn_IN.dat │ │ ├── ko.dat │ │ ├── ko_KP.dat │ │ ├── ko_KR.dat │ │ ├── kok.dat │ │ ├── kok_IN.dat │ │ ├── ks.dat │ │ ├── ks_Arab.dat │ │ ├── ks_Arab_IN.dat │ │ ├── ksb.dat │ │ ├── ksb_TZ.dat │ │ ├── ksf.dat │ │ ├── ksf_CM.dat │ │ ├── ksh.dat │ │ ├── ksh_DE.dat │ │ ├── kw.dat │ │ ├── kw_GB.dat │ │ ├── ky.dat │ │ ├── ky_KG.dat │ │ ├── lag.dat │ │ ├── lag_TZ.dat │ │ ├── lg.dat │ │ ├── lg_UG.dat │ │ ├── ln.dat │ │ ├── ln_AO.dat │ │ ├── ln_CD.dat │ │ ├── ln_CF.dat │ │ ├── ln_CG.dat │ │ ├── lo.dat │ │ ├── lo_LA.dat │ │ ├── lt.dat │ │ ├── lt_LT.dat │ │ ├── lu.dat │ │ ├── lu_CD.dat │ │ ├── luo.dat │ │ ├── luo_KE.dat │ │ ├── luy.dat │ │ ├── luy_KE.dat │ │ ├── lv.dat │ │ ├── lv_LV.dat │ │ ├── mas.dat │ │ ├── mas_KE.dat │ │ ├── mas_TZ.dat │ │ ├── mer.dat │ │ ├── mer_KE.dat │ │ ├── mfe.dat │ │ ├── mfe_MU.dat │ │ ├── mg.dat │ │ ├── mg_MG.dat │ │ ├── mgh.dat │ │ ├── mgh_MZ.dat │ │ ├── mgo.dat │ │ ├── mgo_CM.dat │ │ ├── mk.dat │ │ ├── mk_MK.dat │ │ ├── ml.dat │ │ ├── ml_IN.dat │ │ ├── mn.dat │ │ ├── mn_Cyrl.dat │ │ ├── mn_Cyrl_MN.dat │ │ ├── mr.dat │ │ ├── mr_IN.dat │ │ ├── ms.dat │ │ ├── ms_Latn.dat │ │ ├── ms_Latn_BN.dat │ │ ├── ms_Latn_MY.dat │ │ ├── ms_Latn_SG.dat │ │ ├── mt.dat │ │ ├── mt_MT.dat │ │ ├── mua.dat │ │ ├── mua_CM.dat │ │ ├── my.dat │ │ ├── my_MM.dat │ │ ├── naq.dat │ │ ├── naq_NA.dat │ │ ├── nb.dat │ │ ├── nb_NO.dat │ │ ├── nd.dat │ │ ├── nd_ZW.dat │ │ ├── ne.dat │ │ ├── ne_IN.dat │ │ ├── ne_NP.dat │ │ ├── nl.dat │ │ ├── nl_AW.dat │ │ ├── nl_BE.dat │ │ ├── nl_CW.dat │ │ ├── nl_NL.dat │ │ ├── nl_SR.dat │ │ ├── nl_SX.dat │ │ ├── nmg.dat │ │ ├── nmg_CM.dat │ │ ├── nn.dat │ │ ├── nn_NO.dat │ │ ├── nnh.dat │ │ ├── nnh_CM.dat │ │ ├── nr.dat │ │ ├── nr_ZA.dat │ │ ├── nso.dat │ │ ├── nso_ZA.dat │ │ ├── nus.dat │ │ ├── nus_SD.dat │ │ ├── nyn.dat │ │ ├── nyn_UG.dat │ │ ├── om.dat │ │ ├── om_ET.dat │ │ ├── om_KE.dat │ │ ├── or.dat │ │ ├── or_IN.dat │ │ ├── os.dat │ │ ├── os_GE.dat │ │ ├── os_RU.dat │ │ ├── pa.dat │ │ ├── pa_Arab.dat │ │ ├── pa_Arab_PK.dat │ │ ├── pa_Guru.dat │ │ ├── pa_Guru_IN.dat │ │ ├── pl.dat │ │ ├── pl_PL.dat │ │ ├── ps.dat │ │ ├── ps_AF.dat │ │ ├── pt.dat │ │ ├── pt_AO.dat │ │ ├── pt_BR.dat │ │ ├── pt_CV.dat │ │ ├── pt_GW.dat │ │ ├── pt_MO.dat │ │ ├── pt_MZ.dat │ │ ├── pt_PT.dat │ │ ├── pt_ST.dat │ │ ├── pt_TL.dat │ │ ├── rm.dat │ │ ├── rm_CH.dat │ │ ├── rn.dat │ │ ├── rn_BI.dat │ │ ├── ro.dat │ │ ├── ro_MD.dat │ │ ├── ro_RO.dat │ │ ├── rof.dat │ │ ├── rof_TZ.dat │ │ ├── root.dat │ │ ├── ru.dat │ │ ├── ru_BY.dat │ │ ├── ru_KG.dat │ │ ├── ru_KZ.dat │ │ ├── ru_MD.dat │ │ ├── ru_RU.dat │ │ ├── ru_UA.dat │ │ ├── rw.dat │ │ ├── rw_RW.dat │ │ ├── rwk.dat │ │ ├── rwk_TZ.dat │ │ ├── sah.dat │ │ ├── sah_RU.dat │ │ ├── saq.dat │ │ ├── saq_KE.dat │ │ ├── sbp.dat │ │ ├── sbp_TZ.dat │ │ ├── se.dat │ │ ├── se_FI.dat │ │ ├── se_NO.dat │ │ ├── seh.dat │ │ ├── seh_MZ.dat │ │ ├── ses.dat │ │ ├── ses_ML.dat │ │ ├── sg.dat │ │ ├── sg_CF.dat │ │ ├── shi.dat │ │ ├── shi_Latn.dat │ │ ├── shi_Latn_MA.dat │ │ ├── shi_Tfng.dat │ │ ├── shi_Tfng_MA.dat │ │ ├── si.dat │ │ ├── si_LK.dat │ │ ├── sk.dat │ │ ├── sk_SK.dat │ │ ├── sl.dat │ │ ├── sl_SI.dat │ │ ├── sn.dat │ │ ├── sn_ZW.dat │ │ ├── so.dat │ │ ├── so_DJ.dat │ │ ├── so_ET.dat │ │ ├── so_KE.dat │ │ ├── so_SO.dat │ │ ├── sq.dat │ │ ├── sq_AL.dat │ │ ├── sq_MK.dat │ │ ├── sq_XK.dat │ │ ├── sr.dat │ │ ├── sr_Cyrl.dat │ │ ├── sr_Cyrl_BA.dat │ │ ├── sr_Cyrl_ME.dat │ │ ├── sr_Cyrl_RS.dat │ │ ├── sr_Cyrl_XK.dat │ │ ├── sr_Latn.dat │ │ ├── sr_Latn_BA.dat │ │ ├── sr_Latn_ME.dat │ │ ├── sr_Latn_RS.dat │ │ ├── sr_Latn_XK.dat │ │ ├── ss.dat │ │ ├── ss_SZ.dat │ │ ├── ss_ZA.dat │ │ ├── ssy.dat │ │ ├── ssy_ER.dat │ │ ├── st.dat │ │ ├── st_LS.dat │ │ ├── st_ZA.dat │ │ ├── sv.dat │ │ ├── sv_AX.dat │ │ ├── sv_FI.dat │ │ ├── sv_SE.dat │ │ ├── sw.dat │ │ ├── sw_KE.dat │ │ ├── sw_TZ.dat │ │ ├── sw_UG.dat │ │ ├── swc.dat │ │ ├── swc_CD.dat │ │ ├── ta.dat │ │ ├── ta_IN.dat │ │ ├── ta_LK.dat │ │ ├── ta_MY.dat │ │ ├── ta_SG.dat │ │ ├── te.dat │ │ ├── te_IN.dat │ │ ├── teo.dat │ │ ├── teo_KE.dat │ │ ├── teo_UG.dat │ │ ├── tg.dat │ │ ├── tg_Cyrl.dat │ │ ├── tg_Cyrl_TJ.dat │ │ ├── th.dat │ │ ├── th_TH.dat │ │ ├── ti.dat │ │ ├── ti_ER.dat │ │ ├── ti_ET.dat │ │ ├── tig.dat │ │ ├── tig_ER.dat │ │ ├── tn.dat │ │ ├── tn_BW.dat │ │ ├── tn_ZA.dat │ │ ├── to.dat │ │ ├── to_TO.dat │ │ ├── tr.dat │ │ ├── tr_CY.dat │ │ ├── tr_TR.dat │ │ ├── ts.dat │ │ ├── ts_ZA.dat │ │ ├── twq.dat │ │ ├── twq_NE.dat │ │ ├── tzm.dat │ │ ├── tzm_Latn.dat │ │ ├── tzm_Latn_MA.dat │ │ ├── uk.dat │ │ ├── uk_UA.dat │ │ ├── ur.dat │ │ ├── ur_IN.dat │ │ ├── ur_PK.dat │ │ ├── uz.dat │ │ ├── uz_Arab.dat │ │ ├── uz_Arab_AF.dat │ │ ├── uz_Cyrl.dat │ │ ├── uz_Cyrl_UZ.dat │ │ ├── uz_Latn.dat │ │ ├── uz_Latn_UZ.dat │ │ ├── vai.dat │ │ ├── vai_Latn.dat │ │ ├── vai_Latn_LR.dat │ │ ├── vai_Vaii.dat │ │ ├── vai_Vaii_LR.dat │ │ ├── ve.dat │ │ ├── ve_ZA.dat │ │ ├── vi.dat │ │ ├── vi_VN.dat │ │ ├── vo.dat │ │ ├── vun.dat │ │ ├── vun_TZ.dat │ │ ├── wae.dat │ │ ├── wae_CH.dat │ │ ├── wal.dat │ │ ├── wal_ET.dat │ │ ├── xh.dat │ │ ├── xh_ZA.dat │ │ ├── xog.dat │ │ ├── xog_UG.dat │ │ ├── yav.dat │ │ ├── yav_CM.dat │ │ ├── yo.dat │ │ ├── yo_NG.dat │ │ ├── zh.dat │ │ ├── zh_Hans.dat │ │ ├── zh_Hans_CN.dat │ │ ├── zh_Hans_HK.dat │ │ ├── zh_Hans_MO.dat │ │ ├── zh_Hans_SG.dat │ │ ├── zh_Hant.dat │ │ ├── zh_Hant_HK.dat │ │ ├── zh_Hant_MO.dat │ │ ├── zh_Hant_TW.dat │ │ ├── zu.dat │ │ └── zu_ZA.dat │ ├── localtime │ │ ├── __init__.py │ │ ├── _unix.py │ │ └── _win32.py │ ├── messages │ │ ├── __init__.py │ │ ├── catalog.py │ │ ├── checkers.py │ │ ├── extract.py │ │ ├── frontend.py │ │ ├── jslexer.py │ │ ├── mofile.py │ │ ├── plurals.py │ │ └── pofile.py │ ├── numbers.py │ ├── plural.py │ ├── support.py │ └── util.py ├── certgen.py ├── cherrypy │ ├── LICENSE.txt │ ├── __init__.py │ ├── _cpchecker.py │ ├── _cpcompat.py │ ├── _cpconfig.py │ ├── _cpdispatch.py │ ├── _cperror.py │ ├── _cplogging.py │ ├── _cpmodpy.py │ ├── _cpnative_server.py │ ├── _cpreqbody.py │ ├── _cprequest.py │ ├── _cpserver.py │ ├── _cpthreadinglocal.py │ ├── _cptools.py │ ├── _cptree.py │ ├── _cpwsgi.py │ ├── _cpwsgi_server.py │ ├── cherryd │ ├── favicon.ico │ ├── lib │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── auth_basic.py │ │ ├── auth_digest.py │ │ ├── caching.py │ │ ├── covercp.py │ │ ├── cpstats.py │ │ ├── cptools.py │ │ ├── encoding.py │ │ ├── gctools.py │ │ ├── http.py │ │ ├── httpauth.py │ │ ├── httputil.py │ │ ├── jsontools.py │ │ ├── profiler.py │ │ ├── reprconf.py │ │ ├── sessions.py │ │ ├── static.py │ │ └── xmlrpcutil.py │ ├── process │ │ ├── __init__.py │ │ ├── plugins.py │ │ ├── servers.py │ │ ├── win32.py │ │ └── wspbus.py │ ├── scaffold │ │ ├── __init__.py │ │ ├── apache-fcgi.conf │ │ ├── example.conf │ │ ├── site.conf │ │ └── static │ │ │ └── made_with_cherrypy_small.png │ ├── test │ │ ├── __init__.py │ │ ├── _test_decorators.py │ │ ├── _test_states_demo.py │ │ ├── benchmark.py │ │ ├── checkerdemo.py │ │ ├── helper.py │ │ ├── logtest.py │ │ ├── modfastcgi.py │ │ ├── modfcgid.py │ │ ├── modpy.py │ │ ├── modwsgi.py │ │ ├── sessiondemo.py │ │ ├── static │ │ │ ├── dirback.jpg │ │ │ └── index.html │ │ ├── style.css │ │ ├── test.pem │ │ ├── test_auth_basic.py │ │ ├── test_auth_digest.py │ │ ├── test_bus.py │ │ ├── test_caching.py │ │ ├── test_config.py │ │ ├── test_config_server.py │ │ ├── test_conn.py │ │ ├── test_core.py │ │ ├── test_dynamicobjectmapping.py │ │ ├── test_encoding.py │ │ ├── test_etags.py │ │ ├── test_http.py │ │ ├── test_httpauth.py │ │ ├── test_httplib.py │ │ ├── test_json.py │ │ ├── test_logging.py │ │ ├── test_mime.py │ │ ├── test_misc_tools.py │ │ ├── test_objectmapping.py │ │ ├── test_proxy.py │ │ ├── test_refleaks.py │ │ ├── test_request_obj.py │ │ ├── test_routes.py │ │ ├── test_session.py │ │ ├── test_sessionauthenticate.py │ │ ├── test_states.py │ │ ├── test_static.py │ │ ├── test_tools.py │ │ ├── test_tutorials.py │ │ ├── test_virtualhost.py │ │ ├── test_wsgi_ns.py │ │ ├── test_wsgi_vhost.py │ │ ├── test_wsgiapps.py │ │ ├── test_xmlrpc.py │ │ └── webtest.py │ ├── tutorial │ │ ├── README.txt │ │ ├── __init__.py │ │ ├── bonus-sqlobject.py │ │ ├── custom_error.html │ │ ├── pdf_file.pdf │ │ ├── tut01_helloworld.py │ │ ├── tut02_expose_methods.py │ │ ├── tut03_get_and_post.py │ │ ├── tut04_complex_site.py │ │ ├── tut05_derived_objects.py │ │ ├── tut06_default_method.py │ │ ├── tut07_sessions.py │ │ ├── tut08_generators_and_yield.py │ │ ├── tut09_files.py │ │ ├── tut10_http_errors.py │ │ └── tutorial.conf │ └── wsgiserver │ │ ├── __init__.py │ │ ├── ssl_builtin.py │ │ ├── ssl_pyopenssl.py │ │ ├── wsgiserver2.py │ │ └── wsgiserver3.py ├── dateutil │ ├── __init__.py │ ├── easter.py │ ├── parser.py │ ├── relativedelta.py │ ├── rrule.py │ ├── tz.py │ ├── tzwin.py │ └── zoneinfo │ │ ├── __init__.py │ │ └── zoneinfo--latest.tar.gz ├── feedparser.py ├── guessit │ ├── ISO-3166-1_utf8.txt │ ├── ISO-639-2_utf-8.txt │ ├── __init__.py │ ├── __main__.py │ ├── country.py │ ├── date.py │ ├── fileutils.py │ ├── guess.py │ ├── hash_ed2k.py │ ├── hash_mpc.py │ ├── language.py │ ├── matcher.py │ ├── matchtree.py │ ├── patterns.py │ ├── slogging.py │ ├── textutils.py │ └── transfo │ │ ├── __init__.py │ │ ├── guess_bonus_features.py │ │ ├── guess_country.py │ │ ├── guess_date.py │ │ ├── guess_episode_info_from_position.py │ │ ├── guess_episodes_rexps.py │ │ ├── guess_filetype.py │ │ ├── guess_language.py │ │ ├── guess_movie_title_from_position.py │ │ ├── guess_properties.py │ │ ├── guess_release_group.py │ │ ├── guess_video_rexps.py │ │ ├── guess_weak_episodes_rexps.py │ │ ├── guess_website.py │ │ ├── guess_year.py │ │ ├── post_process.py │ │ ├── split_explicit_groups.py │ │ ├── split_on_dash.py │ │ └── split_path_components.py ├── guessit_new │ ├── ISO-3166-1_utf8.txt │ ├── ISO-639-2_utf-8.txt │ ├── __init__.py │ ├── __main__.py │ ├── containers.py │ ├── country.py │ ├── date.py │ ├── fileutils.py │ ├── guess.py │ ├── hash_ed2k.py │ ├── hash_mpc.py │ ├── language.py │ ├── matcher.py │ ├── matchtree.py │ ├── options.py │ ├── patterns │ │ ├── __init__.py │ │ ├── extension.py │ │ └── numeral.py │ ├── plugins │ │ ├── __init__.py │ │ └── transformers.py │ ├── quality.py │ ├── slogging.py │ ├── test │ │ ├── 1MB │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── autodetect.yaml │ │ ├── dummy.srt │ │ ├── episodes.yaml │ │ ├── guessittest.py │ │ ├── movies.yaml │ │ ├── opensubtitles_languages_2012_05_09.txt │ │ ├── test_api.py │ │ ├── test_autodetect.py │ │ ├── test_autodetect_all.py │ │ ├── test_doctests.py │ │ ├── test_episode.py │ │ ├── test_hashes.py │ │ ├── test_language.py │ │ ├── test_main.py │ │ ├── test_matchtree.py │ │ ├── test_movie.py │ │ ├── test_quality.py │ │ └── test_utils.py │ ├── textutils.py │ ├── tlds-alpha-by-domain.txt │ └── transfo │ │ ├── __init__.py │ │ ├── guess_bonus_features.py │ │ ├── guess_country.py │ │ ├── guess_date.py │ │ ├── guess_episode_info_from_position.py │ │ ├── guess_episode_special.py │ │ ├── guess_episodes_rexps.py │ │ ├── guess_filetype.py │ │ ├── guess_idnumber.py │ │ ├── guess_language.py │ │ ├── guess_movie_title_from_position.py │ │ ├── guess_properties.py │ │ ├── guess_release_group.py │ │ ├── guess_video_rexps.py │ │ ├── guess_weak_episodes_rexps.py │ │ ├── guess_website.py │ │ ├── guess_year.py │ │ ├── split_explicit_groups.py │ │ ├── split_on_dash.py │ │ └── split_path_components.py ├── jinja2 │ ├── __init__.py │ ├── _debugsupport.c │ ├── _markupsafe │ │ ├── __init__.py │ │ ├── _bundle.py │ │ ├── _constants.py │ │ ├── _native.py │ │ └── tests.py │ ├── _stringdefs.py │ ├── bccache.py │ ├── compiler.py │ ├── constants.py │ ├── debug.py │ ├── defaults.py │ ├── environment.py │ ├── exceptions.py │ ├── ext.py │ ├── filters.py │ ├── lexer.py │ ├── loaders.py │ ├── meta.py │ ├── nodes.py │ ├── optimizer.py │ ├── parser.py │ ├── runtime.py │ ├── sandbox.py │ ├── tests.py │ ├── utils.py │ └── visitor.py ├── jsonrpclib │ ├── SimpleJSONRPCServer.py │ ├── __init__.py │ ├── config.py │ ├── history.py │ ├── jsonclass.py │ └── jsonrpc.py ├── logilab │ ├── __init__.py │ ├── astng │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── ChangeLog │ │ ├── PKG-INFO │ │ ├── README │ │ ├── README.Python3 │ │ ├── __init__.py │ │ ├── __pkginfo__.py │ │ ├── as_string.py │ │ ├── bases.py │ │ ├── brain │ │ │ ├── py2mechanize.py │ │ │ ├── py2qt4.py │ │ │ └── py2stdlib.py │ │ ├── builder.py │ │ ├── exceptions.py │ │ ├── inference.py │ │ ├── inspector.py │ │ ├── manager.py │ │ ├── mixins.py │ │ ├── node_classes.py │ │ ├── nodes.py │ │ ├── protocols.py │ │ ├── raw_building.py │ │ ├── rebuilder.py │ │ ├── scoped_nodes.py │ │ ├── setup.py │ │ ├── test │ │ │ ├── data │ │ │ │ ├── MyPyPa-0.1.0-py2.5.zip │ │ │ │ ├── SSL1 │ │ │ │ │ ├── Connection1.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── absimport.py │ │ │ │ ├── all.py │ │ │ │ ├── appl │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── myConnection.py │ │ │ │ ├── email.py │ │ │ │ ├── format.py │ │ │ │ ├── module.py │ │ │ │ ├── module2.py │ │ │ │ ├── noendingnewline.py │ │ │ │ ├── nonregr.py │ │ │ │ └── notall.py │ │ │ ├── data2 │ │ │ │ ├── __init__.py │ │ │ │ ├── clientmodule_test.py │ │ │ │ └── suppliermodule_test.py │ │ │ ├── fulltest.sh │ │ │ ├── regrtest_data │ │ │ │ ├── absimp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── sidepackage │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── string.py │ │ │ │ ├── descriptor_crash.py │ │ │ │ └── package │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── absimport.py │ │ │ │ │ ├── hello.py │ │ │ │ │ ├── import_package_subpackage_module.py │ │ │ │ │ └── subpackage │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── module.py │ │ │ ├── unittest_builder.py │ │ │ ├── unittest_inference.py │ │ │ ├── unittest_inspector.py │ │ │ ├── unittest_lookup.py │ │ │ ├── unittest_manager.py │ │ │ ├── unittest_nodes.py │ │ │ ├── unittest_python3.py │ │ │ ├── unittest_regrtest.py │ │ │ ├── unittest_scoped_nodes.py │ │ │ └── unittest_utils.py │ │ └── utils.py │ └── common │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── ChangeLog │ │ ├── PKG-INFO │ │ ├── README │ │ ├── README.Python3 │ │ ├── __init__.py │ │ ├── __pkginfo__.py │ │ ├── cache.py │ │ ├── changelog.py │ │ ├── clcommands.py │ │ ├── cli.py │ │ ├── compat.py │ │ ├── configuration.py │ │ ├── contexts.py │ │ ├── corbautils.py │ │ ├── daemon.py │ │ ├── date.py │ │ ├── dbf.py │ │ ├── debugger.py │ │ ├── decorators.py │ │ ├── deprecation.py │ │ ├── doc │ │ ├── makefile │ │ └── pytest.1 │ │ ├── fileutils.py │ │ ├── graph.py │ │ ├── hg.py │ │ ├── interface.py │ │ ├── logging_ext.py │ │ ├── modutils.py │ │ ├── optik_ext.py │ │ ├── optparser.py │ │ ├── pdf_ext.py │ │ ├── proc.py │ │ ├── pyro_ext.py │ │ ├── pytest.py │ │ ├── registry.py │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── shellutils.py │ │ ├── sphinx_ext.py │ │ ├── sphinxutils.py │ │ ├── table.py │ │ ├── tasksqueue.py │ │ ├── test │ │ ├── data │ │ │ ├── ChangeLog │ │ │ ├── MyPyPa-0.1.0.zip │ │ │ ├── __init__.py │ │ │ ├── content_differ_dir │ │ │ │ ├── NOTHING │ │ │ │ ├── README │ │ │ │ └── subdir │ │ │ │ │ ├── coin │ │ │ │ │ └── toto.txt │ │ │ ├── deprecation.py │ │ │ ├── file_differ_dir │ │ │ │ ├── NOTHING │ │ │ │ ├── README │ │ │ │ ├── subdir │ │ │ │ │ └── toto.txt │ │ │ │ └── subdirtwo │ │ │ │ │ └── Hello │ │ │ ├── find_test │ │ │ │ ├── __init__.py │ │ │ │ ├── foo.txt │ │ │ │ ├── module.py │ │ │ │ ├── module2.py │ │ │ │ ├── newlines.txt │ │ │ │ ├── noendingnewline.py │ │ │ │ ├── nonregr.py │ │ │ │ ├── normal_file.txt │ │ │ │ ├── spam.txt │ │ │ │ ├── sub │ │ │ │ │ ├── doc.txt │ │ │ │ │ └── momo.py │ │ │ │ ├── test.ini │ │ │ │ ├── test1.msg │ │ │ │ ├── test2.msg │ │ │ │ └── write_protected_file.txt │ │ │ ├── foo.txt │ │ │ ├── lmfp │ │ │ │ ├── __init__.py │ │ │ │ └── foo.py │ │ │ ├── module.py │ │ │ ├── module2.py │ │ │ ├── newlines.txt │ │ │ ├── noendingnewline.py │ │ │ ├── nonregr.py │ │ │ ├── normal_file.txt │ │ │ ├── reference_dir │ │ │ │ ├── NOTHING │ │ │ │ ├── README │ │ │ │ └── subdir │ │ │ │ │ ├── coin │ │ │ │ │ └── toto.txt │ │ │ ├── regobjects.py │ │ │ ├── regobjects2.py │ │ │ ├── same_dir │ │ │ │ ├── NOTHING │ │ │ │ ├── README │ │ │ │ └── subdir │ │ │ │ │ ├── coin │ │ │ │ │ └── toto.txt │ │ │ ├── spam.txt │ │ │ ├── sub │ │ │ │ ├── doc.txt │ │ │ │ └── momo.py │ │ │ ├── subdir_differ_dir │ │ │ │ ├── NOTHING │ │ │ │ ├── README │ │ │ │ └── subdir │ │ │ │ │ ├── coin │ │ │ │ │ └── toto.txt │ │ │ ├── test.ini │ │ │ ├── test1.msg │ │ │ ├── test2.msg │ │ │ └── write_protected_file.txt │ │ ├── unittest_cache.py │ │ ├── unittest_changelog.py │ │ ├── unittest_compat.py │ │ ├── unittest_configuration.py │ │ ├── unittest_date.py │ │ ├── unittest_decorators.py │ │ ├── unittest_deprecation.py │ │ ├── unittest_fileutils.py │ │ ├── unittest_graph.py │ │ ├── unittest_interface.py │ │ ├── unittest_modutils.py │ │ ├── unittest_pytest.py │ │ ├── unittest_registry.py │ │ ├── unittest_shellutils.py │ │ ├── unittest_table.py │ │ ├── unittest_taskqueue.py │ │ ├── unittest_testlib.py │ │ ├── unittest_textutils.py │ │ ├── unittest_tree.py │ │ ├── unittest_umessage.py │ │ ├── unittest_ureports_html.py │ │ ├── unittest_ureports_text.py │ │ ├── unittest_xmlutils.py │ │ └── utils.py │ │ ├── testlib.py │ │ ├── textutils.py │ │ ├── tree.py │ │ ├── umessage.py │ │ ├── ureports │ │ ├── __init__.py │ │ ├── docbook_writer.py │ │ ├── html_writer.py │ │ ├── nodes.py │ │ └── text_writer.py │ │ ├── urllib2ext.py │ │ ├── vcgutils.py │ │ ├── visitor.py │ │ ├── xmlrpcutils.py │ │ └── xmlutils.py ├── migrate.pth ├── mock.py ├── pbs.py ├── peewee.py ├── profilehooks.py ├── pyDes.py ├── pylint │ ├── COPYING │ ├── ChangeLog │ ├── DEPENDS │ ├── PKG-INFO │ ├── README │ ├── README.Python3 │ ├── __init__.py │ ├── __pkginfo__.py │ ├── checkers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── classes.py │ │ ├── design_analysis.py │ │ ├── exceptions.py │ │ ├── format.py │ │ ├── imports.py │ │ ├── logging.py │ │ ├── misc.py │ │ ├── newstyle.py │ │ ├── raw_metrics.py │ │ ├── similar.py │ │ ├── strings.py │ │ ├── typecheck.py │ │ ├── utils.py │ │ └── variables.py │ ├── config.py │ ├── elisp │ │ ├── pylint-flymake.el │ │ ├── pylint.el │ │ └── startup │ ├── epylint.py │ ├── gui.py │ ├── interfaces.py │ ├── lint.py │ ├── pyreverse │ │ ├── __init__.py │ │ ├── diadefslib.py │ │ ├── diagrams.py │ │ ├── main.py │ │ ├── utils.py │ │ └── writer.py │ ├── reporters │ │ ├── __init__.py │ │ ├── guireporter.py │ │ ├── html.py │ │ └── text.py │ ├── setup.cfg │ ├── setup.py │ ├── testutils.py │ └── utils.py ├── pytz │ ├── __init__.py │ ├── exceptions.py │ ├── lazy.py │ ├── reference.py │ ├── tests │ │ ├── test_docs.py │ │ ├── test_lazy.py │ │ └── test_tzinfo.py │ ├── tzfile.py │ ├── tzinfo.py │ └── zoneinfo │ │ ├── Africa │ │ ├── Abidjan │ │ ├── Accra │ │ ├── Addis_Ababa │ │ ├── Algiers │ │ ├── Asmara │ │ ├── Asmera │ │ ├── Bamako │ │ ├── Bangui │ │ ├── Banjul │ │ ├── Bissau │ │ ├── Blantyre │ │ ├── Brazzaville │ │ ├── Bujumbura │ │ ├── Cairo │ │ ├── Casablanca │ │ ├── Ceuta │ │ ├── Conakry │ │ ├── Dakar │ │ ├── Dar_es_Salaam │ │ ├── Djibouti │ │ ├── Douala │ │ ├── El_Aaiun │ │ ├── Freetown │ │ ├── Gaborone │ │ ├── Harare │ │ ├── Johannesburg │ │ ├── Juba │ │ ├── Kampala │ │ ├── Khartoum │ │ ├── Kigali │ │ ├── Kinshasa │ │ ├── Lagos │ │ ├── Libreville │ │ ├── Lome │ │ ├── Luanda │ │ ├── Lubumbashi │ │ ├── Lusaka │ │ ├── Malabo │ │ ├── Maputo │ │ ├── Maseru │ │ ├── Mbabane │ │ ├── Mogadishu │ │ ├── Monrovia │ │ ├── Nairobi │ │ ├── Ndjamena │ │ ├── Niamey │ │ ├── Nouakchott │ │ ├── Ouagadougou │ │ ├── Porto-Novo │ │ ├── Sao_Tome │ │ ├── Timbuktu │ │ ├── Tripoli │ │ ├── Tunis │ │ └── Windhoek │ │ ├── America │ │ ├── Adak │ │ ├── Anchorage │ │ ├── Anguilla │ │ ├── Antigua │ │ ├── Araguaina │ │ ├── Argentina │ │ │ ├── Buenos_Aires │ │ │ ├── Catamarca │ │ │ ├── ComodRivadavia │ │ │ ├── Cordoba │ │ │ ├── Jujuy │ │ │ ├── La_Rioja │ │ │ ├── Mendoza │ │ │ ├── Rio_Gallegos │ │ │ ├── Salta │ │ │ ├── San_Juan │ │ │ ├── San_Luis │ │ │ ├── Tucuman │ │ │ └── Ushuaia │ │ ├── Aruba │ │ ├── Asuncion │ │ ├── Atikokan │ │ ├── Atka │ │ ├── Bahia │ │ ├── Bahia_Banderas │ │ ├── Barbados │ │ ├── Belem │ │ ├── Belize │ │ ├── Blanc-Sablon │ │ ├── Boa_Vista │ │ ├── Bogota │ │ ├── Boise │ │ ├── Buenos_Aires │ │ ├── Cambridge_Bay │ │ ├── Campo_Grande │ │ ├── Cancun │ │ ├── Caracas │ │ ├── Catamarca │ │ ├── Cayenne │ │ ├── Cayman │ │ ├── Chicago │ │ ├── Chihuahua │ │ ├── Coral_Harbour │ │ ├── Cordoba │ │ ├── Costa_Rica │ │ ├── Creston │ │ ├── Cuiaba │ │ ├── Curacao │ │ ├── Danmarkshavn │ │ ├── Dawson │ │ ├── Dawson_Creek │ │ ├── Denver │ │ ├── Detroit │ │ ├── Dominica │ │ ├── Edmonton │ │ ├── Eirunepe │ │ ├── El_Salvador │ │ ├── Ensenada │ │ ├── Fort_Wayne │ │ ├── Fortaleza │ │ ├── Glace_Bay │ │ ├── Godthab │ │ ├── Goose_Bay │ │ ├── Grand_Turk │ │ ├── Grenada │ │ ├── Guadeloupe │ │ ├── Guatemala │ │ ├── Guayaquil │ │ ├── Guyana │ │ ├── Halifax │ │ ├── Havana │ │ ├── Hermosillo │ │ ├── Indiana │ │ │ ├── Indianapolis │ │ │ ├── Knox │ │ │ ├── Marengo │ │ │ ├── Petersburg │ │ │ ├── Tell_City │ │ │ ├── Vevay │ │ │ ├── Vincennes │ │ │ └── Winamac │ │ ├── Indianapolis │ │ ├── Inuvik │ │ ├── Iqaluit │ │ ├── Jamaica │ │ ├── Jujuy │ │ ├── Juneau │ │ ├── Kentucky │ │ │ ├── Louisville │ │ │ └── Monticello │ │ ├── Knox_IN │ │ ├── Kralendijk │ │ ├── La_Paz │ │ ├── Lima │ │ ├── Los_Angeles │ │ ├── Louisville │ │ ├── Lower_Princes │ │ ├── Maceio │ │ ├── Managua │ │ ├── Manaus │ │ ├── Marigot │ │ ├── Martinique │ │ ├── Matamoros │ │ ├── Mazatlan │ │ ├── Mendoza │ │ ├── Menominee │ │ ├── Merida │ │ ├── Metlakatla │ │ ├── Mexico_City │ │ ├── Miquelon │ │ ├── Moncton │ │ ├── Monterrey │ │ ├── Montevideo │ │ ├── Montreal │ │ ├── Montserrat │ │ ├── Nassau │ │ ├── New_York │ │ ├── Nipigon │ │ ├── Nome │ │ ├── Noronha │ │ ├── North_Dakota │ │ │ ├── Beulah │ │ │ ├── Center │ │ │ └── New_Salem │ │ ├── Ojinaga │ │ ├── Panama │ │ ├── Pangnirtung │ │ ├── Paramaribo │ │ ├── Phoenix │ │ ├── Port-au-Prince │ │ ├── Port_of_Spain │ │ ├── Porto_Acre │ │ ├── Porto_Velho │ │ ├── Puerto_Rico │ │ ├── Rainy_River │ │ ├── Rankin_Inlet │ │ ├── Recife │ │ ├── Regina │ │ ├── Resolute │ │ ├── Rio_Branco │ │ ├── Rosario │ │ ├── Santa_Isabel │ │ ├── Santarem │ │ ├── Santiago │ │ ├── Santo_Domingo │ │ ├── Sao_Paulo │ │ ├── Scoresbysund │ │ ├── Shiprock │ │ ├── Sitka │ │ ├── St_Barthelemy │ │ ├── St_Johns │ │ ├── St_Kitts │ │ ├── St_Lucia │ │ ├── St_Thomas │ │ ├── St_Vincent │ │ ├── Swift_Current │ │ ├── Tegucigalpa │ │ ├── Thule │ │ ├── Thunder_Bay │ │ ├── Tijuana │ │ ├── Toronto │ │ ├── Tortola │ │ ├── Vancouver │ │ ├── Virgin │ │ ├── Whitehorse │ │ ├── Winnipeg │ │ ├── Yakutat │ │ └── Yellowknife │ │ ├── Antarctica │ │ ├── Casey │ │ ├── Davis │ │ ├── DumontDUrville │ │ ├── Macquarie │ │ ├── Mawson │ │ ├── McMurdo │ │ ├── Palmer │ │ ├── Rothera │ │ ├── South_Pole │ │ ├── Syowa │ │ └── Vostok │ │ ├── Arctic │ │ └── Longyearbyen │ │ ├── Asia │ │ ├── Aden │ │ ├── Almaty │ │ ├── Amman │ │ ├── Anadyr │ │ ├── Aqtau │ │ ├── Aqtobe │ │ ├── Ashgabat │ │ ├── Ashkhabad │ │ ├── Baghdad │ │ ├── Bahrain │ │ ├── Baku │ │ ├── Bangkok │ │ ├── Beirut │ │ ├── Bishkek │ │ ├── Brunei │ │ ├── Calcutta │ │ ├── Choibalsan │ │ ├── Chongqing │ │ ├── Chungking │ │ ├── Colombo │ │ ├── Dacca │ │ ├── Damascus │ │ ├── Dhaka │ │ ├── Dili │ │ ├── Dubai │ │ ├── Dushanbe │ │ ├── Gaza │ │ ├── Harbin │ │ ├── Hebron │ │ ├── Ho_Chi_Minh │ │ ├── Hong_Kong │ │ ├── Hovd │ │ ├── Irkutsk │ │ ├── Istanbul │ │ ├── Jakarta │ │ ├── Jayapura │ │ ├── Jerusalem │ │ ├── Kabul │ │ ├── Kamchatka │ │ ├── Karachi │ │ ├── Kashgar │ │ ├── Kathmandu │ │ ├── Katmandu │ │ ├── Khandyga │ │ ├── Kolkata │ │ ├── Krasnoyarsk │ │ ├── Kuala_Lumpur │ │ ├── Kuching │ │ ├── Kuwait │ │ ├── Macao │ │ ├── Macau │ │ ├── Magadan │ │ ├── Makassar │ │ ├── Manila │ │ ├── Muscat │ │ ├── Nicosia │ │ ├── Novokuznetsk │ │ ├── Novosibirsk │ │ ├── Omsk │ │ ├── Oral │ │ ├── Phnom_Penh │ │ ├── Pontianak │ │ ├── Pyongyang │ │ ├── Qatar │ │ ├── Qyzylorda │ │ ├── Rangoon │ │ ├── Riyadh │ │ ├── Saigon │ │ ├── Sakhalin │ │ ├── Samarkand │ │ ├── Seoul │ │ ├── Shanghai │ │ ├── Singapore │ │ ├── Taipei │ │ ├── Tashkent │ │ ├── Tbilisi │ │ ├── Tehran │ │ ├── Tel_Aviv │ │ ├── Thimbu │ │ ├── Thimphu │ │ ├── Tokyo │ │ ├── Ujung_Pandang │ │ ├── Ulaanbaatar │ │ ├── Ulan_Bator │ │ ├── Urumqi │ │ ├── Ust-Nera │ │ ├── Vientiane │ │ ├── Vladivostok │ │ ├── Yakutsk │ │ ├── Yekaterinburg │ │ └── Yerevan │ │ ├── Atlantic │ │ ├── Azores │ │ ├── Bermuda │ │ ├── Canary │ │ ├── Cape_Verde │ │ ├── Faeroe │ │ ├── Faroe │ │ ├── Jan_Mayen │ │ ├── Madeira │ │ ├── Reykjavik │ │ ├── South_Georgia │ │ ├── St_Helena │ │ └── Stanley │ │ ├── Australia │ │ ├── ACT │ │ ├── Adelaide │ │ ├── Brisbane │ │ ├── Broken_Hill │ │ ├── Canberra │ │ ├── Currie │ │ ├── Darwin │ │ ├── Eucla │ │ ├── Hobart │ │ ├── LHI │ │ ├── Lindeman │ │ ├── Lord_Howe │ │ ├── Melbourne │ │ ├── NSW │ │ ├── North │ │ ├── Perth │ │ ├── Queensland │ │ ├── South │ │ ├── Sydney │ │ ├── Tasmania │ │ ├── Victoria │ │ ├── West │ │ └── Yancowinna │ │ ├── Brazil │ │ ├── Acre │ │ ├── DeNoronha │ │ ├── East │ │ └── West │ │ ├── CET │ │ ├── CST6CDT │ │ ├── Canada │ │ ├── Atlantic │ │ ├── Central │ │ ├── East-Saskatchewan │ │ ├── Eastern │ │ ├── Mountain │ │ ├── Newfoundland │ │ ├── Pacific │ │ ├── Saskatchewan │ │ └── Yukon │ │ ├── Chile │ │ ├── Continental │ │ └── EasterIsland │ │ ├── Cuba │ │ ├── EET │ │ ├── EST │ │ ├── EST5EDT │ │ ├── Egypt │ │ ├── Eire │ │ ├── Etc │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT+1 │ │ ├── GMT+10 │ │ ├── GMT+11 │ │ ├── GMT+12 │ │ ├── GMT+2 │ │ ├── GMT+3 │ │ ├── GMT+4 │ │ ├── GMT+5 │ │ ├── GMT+6 │ │ ├── GMT+7 │ │ ├── GMT+8 │ │ ├── GMT+9 │ │ ├── GMT-0 │ │ ├── GMT-1 │ │ ├── GMT-10 │ │ ├── GMT-11 │ │ ├── GMT-12 │ │ ├── GMT-13 │ │ ├── GMT-14 │ │ ├── GMT-2 │ │ ├── GMT-3 │ │ ├── GMT-4 │ │ ├── GMT-5 │ │ ├── GMT-6 │ │ ├── GMT-7 │ │ ├── GMT-8 │ │ ├── GMT-9 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── UCT │ │ ├── UTC │ │ ├── Universal │ │ └── Zulu │ │ ├── Europe │ │ ├── Amsterdam │ │ ├── Andorra │ │ ├── Athens │ │ ├── Belfast │ │ ├── Belgrade │ │ ├── Berlin │ │ ├── Bratislava │ │ ├── Brussels │ │ ├── Bucharest │ │ ├── Budapest │ │ ├── Busingen │ │ ├── Chisinau │ │ ├── Copenhagen │ │ ├── Dublin │ │ ├── Gibraltar │ │ ├── Guernsey │ │ ├── Helsinki │ │ ├── Isle_of_Man │ │ ├── Istanbul │ │ ├── Jersey │ │ ├── Kaliningrad │ │ ├── Kiev │ │ ├── Lisbon │ │ ├── Ljubljana │ │ ├── London │ │ ├── Luxembourg │ │ ├── Madrid │ │ ├── Malta │ │ ├── Mariehamn │ │ ├── Minsk │ │ ├── Monaco │ │ ├── Moscow │ │ ├── Nicosia │ │ ├── Oslo │ │ ├── Paris │ │ ├── Podgorica │ │ ├── Prague │ │ ├── Riga │ │ ├── Rome │ │ ├── Samara │ │ ├── San_Marino │ │ ├── Sarajevo │ │ ├── Simferopol │ │ ├── Skopje │ │ ├── Sofia │ │ ├── Stockholm │ │ ├── Tallinn │ │ ├── Tirane │ │ ├── Tiraspol │ │ ├── Uzhgorod │ │ ├── Vaduz │ │ ├── Vatican │ │ ├── Vienna │ │ ├── Vilnius │ │ ├── Volgograd │ │ ├── Warsaw │ │ ├── Zagreb │ │ ├── Zaporozhye │ │ └── Zurich │ │ ├── Factory │ │ ├── GB │ │ ├── GB-Eire │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT-0 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── HST │ │ ├── Hongkong │ │ ├── Iceland │ │ ├── Indian │ │ ├── Antananarivo │ │ ├── Chagos │ │ ├── Christmas │ │ ├── Cocos │ │ ├── Comoro │ │ ├── Kerguelen │ │ ├── Mahe │ │ ├── Maldives │ │ ├── Mauritius │ │ ├── Mayotte │ │ └── Reunion │ │ ├── Iran │ │ ├── Israel │ │ ├── Jamaica │ │ ├── Japan │ │ ├── Kwajalein │ │ ├── Libya │ │ ├── MET │ │ ├── MST │ │ ├── MST7MDT │ │ ├── Mexico │ │ ├── BajaNorte │ │ ├── BajaSur │ │ └── General │ │ ├── NZ │ │ ├── NZ-CHAT │ │ ├── Navajo │ │ ├── PRC │ │ ├── PST8PDT │ │ ├── Pacific │ │ ├── Apia │ │ ├── Auckland │ │ ├── Chatham │ │ ├── Chuuk │ │ ├── Easter │ │ ├── Efate │ │ ├── Enderbury │ │ ├── Fakaofo │ │ ├── Fiji │ │ ├── Funafuti │ │ ├── Galapagos │ │ ├── Gambier │ │ ├── Guadalcanal │ │ ├── Guam │ │ ├── Honolulu │ │ ├── Johnston │ │ ├── Kiritimati │ │ ├── Kosrae │ │ ├── Kwajalein │ │ ├── Majuro │ │ ├── Marquesas │ │ ├── Midway │ │ ├── Nauru │ │ ├── Niue │ │ ├── Norfolk │ │ ├── Noumea │ │ ├── Pago_Pago │ │ ├── Palau │ │ ├── Pitcairn │ │ ├── Pohnpei │ │ ├── Ponape │ │ ├── Port_Moresby │ │ ├── Rarotonga │ │ ├── Saipan │ │ ├── Samoa │ │ ├── Tahiti │ │ ├── Tarawa │ │ ├── Tongatapu │ │ ├── Truk │ │ ├── Wake │ │ ├── Wallis │ │ └── Yap │ │ ├── Poland │ │ ├── Portugal │ │ ├── ROC │ │ ├── ROK │ │ ├── Singapore │ │ ├── Turkey │ │ ├── UCT │ │ ├── US │ │ ├── Alaska │ │ ├── Aleutian │ │ ├── Arizona │ │ ├── Central │ │ ├── East-Indiana │ │ ├── Eastern │ │ ├── Hawaii │ │ ├── Indiana-Starke │ │ ├── Michigan │ │ ├── Mountain │ │ ├── Pacific │ │ ├── Pacific-New │ │ └── Samoa │ │ ├── UTC │ │ ├── Universal │ │ ├── W-SU │ │ ├── WET │ │ ├── Zulu │ │ ├── iso3166.tab │ │ ├── localtime │ │ ├── posixrules │ │ └── zone.tab ├── requests │ ├── __init__.py │ ├── adapters.py │ ├── api.py │ ├── auth.py │ ├── cacert.pem │ ├── certs.py │ ├── compat.py │ ├── cookies.py │ ├── exceptions.py │ ├── hooks.py │ ├── models.py │ ├── packages │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardetect.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── constants.py │ │ │ ├── cp949prober.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ └── utf8prober.py │ │ └── urllib3 │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── ntlmpool.py │ │ │ └── pyopenssl.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── ordered_dict.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util.py │ ├── sessions.py │ ├── status_codes.py │ ├── structures.py │ └── utils.py ├── sh.py └── six.py ├── tools ├── repoJSONmaker.py └── setup.py └── xdm ├── __init__.py ├── actionManager.py ├── api ├── __init__.py ├── plugins.py └── system.py ├── classes.py ├── core_migrate.py ├── core_string_for_i18n.py ├── garbage_collector.py ├── helper.py ├── init.py ├── jsonHelper.py ├── logger.py ├── message.py ├── news.py ├── plugins ├── __init__.py ├── bases.py ├── meta.py ├── pluginManager.py └── repository.py ├── scheduler.py ├── tasks.py ├── updater.py ├── version.py └── web ├── __init__.py ├── ajax.py ├── fileBrowser.py └── wizard.py /Meta-Resources/sparse-image-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/sparse-image-bg.png -------------------------------------------------------------------------------- /Meta-Resources/template.xdm.sparseimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/template.xdm.sparseimage -------------------------------------------------------------------------------- /Meta-Resources/xdm-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-arrows.png -------------------------------------------------------------------------------- /Meta-Resources/xdm-icon.1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-icon.1024x1024.png -------------------------------------------------------------------------------- /Meta-Resources/xdm-icon.256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-icon.256x256.png -------------------------------------------------------------------------------- /Meta-Resources/xdm-icon.32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-icon.32x32.png -------------------------------------------------------------------------------- /Meta-Resources/xdm-icon.512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-icon.512x512.png -------------------------------------------------------------------------------- /Meta-Resources/xdm-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-icon.icns -------------------------------------------------------------------------------- /Meta-Resources/xdm-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-icon.png -------------------------------------------------------------------------------- /Meta-Resources/xdm-logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-logo.ai -------------------------------------------------------------------------------- /Meta-Resources/xdm-logo.h100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-logo.h100.png -------------------------------------------------------------------------------- /Meta-Resources/xdm-logo.h32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-logo.h32.png -------------------------------------------------------------------------------- /Meta-Resources/xdm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-logo.png -------------------------------------------------------------------------------- /Meta-Resources/xdm-logo.w1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/Meta-Resources/xdm-logo.w1024.png -------------------------------------------------------------------------------- /corePlugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/corePlugins/__init__.py -------------------------------------------------------------------------------- /corePlugins/downloadType/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/corePlugins/downloadType/__init__.py -------------------------------------------------------------------------------- /corePlugins/filter_download/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/corePlugins/filter_download/__init__.py -------------------------------------------------------------------------------- /corePlugins/system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/corePlugins/system/__init__.py -------------------------------------------------------------------------------- /doc/source/core/classes.rst: -------------------------------------------------------------------------------- 1 | 2 | ORM Classes 3 | *********** 4 | 5 | .. automodule:: xdm.classes 6 | :members: 7 | :undoc-members: 8 | 9 | -------------------------------------------------------------------------------- /doc/source/core/init.rst: -------------------------------------------------------------------------------- 1 | 2 | Init 3 | **** 4 | 5 | .. automodule:: xdm.init 6 | :members: 7 | :undoc-members: 8 | 9 | -------------------------------------------------------------------------------- /doc/source/core/message.rst: -------------------------------------------------------------------------------- 1 | 2 | GUI Message system 3 | ****************** 4 | 5 | .. automodule:: xdm.message 6 | :members: 7 | 8 | -------------------------------------------------------------------------------- /doc/source/core/news.rst: -------------------------------------------------------------------------------- 1 | 2 | News feed system 3 | **************** 4 | 5 | .. automodule:: xdm.news 6 | :members: 7 | 8 | -------------------------------------------------------------------------------- /doc/source/core/scheduler.rst: -------------------------------------------------------------------------------- 1 | 2 | Scheduler 3 | ********* 4 | 5 | .. automodule:: xdm.scheduler 6 | :members: 7 | 8 | -------------------------------------------------------------------------------- /doc/source/core/updater.rst: -------------------------------------------------------------------------------- 1 | 2 | Updater 3 | ******* 4 | 5 | .. automodule:: xdm.updater 6 | :members: 7 | 8 | -------------------------------------------------------------------------------- /doc/source/plugin/Indexer.rst: -------------------------------------------------------------------------------- 1 | 2 | Indexer 3 | ******* 4 | 5 | .. autoclass:: xdm.plugins.bases.Indexer 6 | :members: 7 | :inherited-members: 8 | 9 | -------------------------------------------------------------------------------- /doc/source/plugin/Notifier.rst: -------------------------------------------------------------------------------- 1 | 2 | Notifier 3 | ******** 4 | 5 | .. autoclass:: xdm.plugins.bases.Notifier 6 | :members: 7 | :inherited-members: 8 | 9 | -------------------------------------------------------------------------------- /doc/source/plugin/Provider.rst: -------------------------------------------------------------------------------- 1 | 2 | Provider 3 | ******** 4 | 5 | .. autoclass:: xdm.plugins.bases.Provider 6 | :members: 7 | :inherited-members: 8 | 9 | -------------------------------------------------------------------------------- /doc/source/plugin/System.rst: -------------------------------------------------------------------------------- 1 | 2 | System 3 | ****** 4 | 5 | .. autoclass:: xdm.plugins.bases.System 6 | :members: 7 | :inherited-members: 8 | 9 | -------------------------------------------------------------------------------- /doc/source/plugin/pluginManager.rst: -------------------------------------------------------------------------------- 1 | 2 | PluginManager 3 | ************* 4 | 5 | .. automodule:: xdm.plugins.pluginManager 6 | :members: 7 | -------------------------------------------------------------------------------- /doc/source/plugin/plugins/System.rst: -------------------------------------------------------------------------------- 1 | 2 | SystemConfig plugin 3 | ******************* 4 | 5 | .. automodule:: corePlugins.system.System 6 | :members: 7 | -------------------------------------------------------------------------------- /doc/source/plugin/repo.rst: -------------------------------------------------------------------------------- 1 | 2 | Repository 3 | ********** 4 | 5 | .. automodule:: xdm.plugins.repository 6 | :members: 7 | 8 | -------------------------------------------------------------------------------- /html/css/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/css/fancybox_loading.gif -------------------------------------------------------------------------------- /html/css/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/css/fancybox_overlay.png -------------------------------------------------------------------------------- /html/css/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/css/fancybox_sprite.png -------------------------------------------------------------------------------- /html/css/fonts/typeone.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/css/fonts/typeone.eot -------------------------------------------------------------------------------- /html/css/fonts/typeone.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/css/fonts/typeone.woff -------------------------------------------------------------------------------- /html/img/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/img/bg.gif -------------------------------------------------------------------------------- /html/img/btn_donate_SM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/img/btn_donate_SM.gif -------------------------------------------------------------------------------- /html/img/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/img/shattered.png -------------------------------------------------------------------------------- /html/img/shattered_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/img/shattered_@2X.png -------------------------------------------------------------------------------- /html/img/xdm-icon.32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/img/xdm-icon.32x32.png -------------------------------------------------------------------------------- /html/img/xdm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/html/img/xdm-logo.png -------------------------------------------------------------------------------- /html/templates/msg.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% set title = 'Log' -%} 3 | {% block content %} 4 |

{{msg}}

5 | 6 | {% endblock %} -------------------------------------------------------------------------------- /html/templates/settingsPlugin.html: -------------------------------------------------------------------------------- 1 | 2 | {% for plugin in plugins -%} 3 | {{plugin.getConfigHtml()}} 4 | {% endfor %} 5 | -------------------------------------------------------------------------------- /i18n/de/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/i18n/de/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /i18n/en_US/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/i18n/en_US/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /site-packages/babel/global.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/global.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/aa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/aa.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/aa_DJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/aa_DJ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/aa_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/aa_ER.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/aa_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/aa_ET.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/af.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/af.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/af_NA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/af_NA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/af_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/af_ZA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/agq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/agq.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ak.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ak.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ak_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ak_GH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/am.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/am.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/am_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/am_ET.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_AE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_AE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_BH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_BH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_DJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_DJ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_DZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_DZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_EG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_EG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_EH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_EH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_ER.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_IL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_IL.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_IQ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_IQ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_JO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_JO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_KM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_KM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_KW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_KW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_LB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_LB.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_LY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_LY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_MA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_MA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_MR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_MR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_OM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_OM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_PS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_PS.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_QA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_QA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_SA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_SA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_SD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_SD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_SO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_SO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_SY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_SY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_TD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_TD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_TN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_TN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ar_YE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ar_YE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/as.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/as.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/as_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/as_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/asa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/asa.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ast.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ast.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/az.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/az.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bas.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bas.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/be.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/be.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/be_BY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/be_BY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bem.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bem.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bez.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bez.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bg.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bg_BG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bg_BG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bm.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bm_ML.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bm_ML.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bn.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bn_BD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bn_BD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bn_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bn_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bo_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bo_CN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bo_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bo_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/br.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/br.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/br_FR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/br_FR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/brx.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/brx.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/bs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/bs.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/byn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/byn.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ca.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ca.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ca_AD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ca_AD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ca_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ca_ES.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/cgg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/cgg.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/chr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/chr.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/cs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/cs.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/cs_CZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/cs_CZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/cy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/cy.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/cy_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/cy_GB.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/da.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/da.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/da_DK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/da_DK.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/dav.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/dav.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/de.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/de.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/de_AT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/de_AT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/de_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/de_BE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/de_CH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/de_CH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/de_DE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/de_DE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/de_LI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/de_LI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/de_LU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/de_LU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/dje.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/dje.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/dua.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/dua.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/dyo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/dyo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/dz.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/dz.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/dz_BT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/dz_BT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ebu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ebu.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ee.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ee.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ee_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ee_GH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ee_TG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ee_TG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/el.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/el.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/el_CY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/el_CY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/el_GR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/el_GR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_AG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_AG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_AS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_AS.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_AU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_AU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_BB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_BB.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_BE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_BM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_BM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_BS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_BS.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_BW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_BW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_BZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_BZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_CA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_CA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_CM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_CM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_DM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_DM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_FJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_FJ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_FM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_FM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_GB.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_GD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_GD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_GG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_GG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_GH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_GI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_GI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_GM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_GM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_GU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_GU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_GY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_GY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_HK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_HK.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_IE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_IE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_IM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_IM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_JE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_JE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_JM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_JM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_KE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_KI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_KI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_KN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_KN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_KY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_KY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_LC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_LC.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_LR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_LR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_LS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_LS.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_MG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_MG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_MH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_MH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_MP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_MP.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_MT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_MT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_MU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_MU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_MW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_MW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_NA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_NA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_NG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_NZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_NZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_PG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_PG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_PH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_PH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_PK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_PK.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_PR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_PR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_PW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_PW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_SB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_SB.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_SC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_SC.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_SG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_SG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_SL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_SL.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_SS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_SS.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_SZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_SZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_TC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_TC.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_TO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_TO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_TT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_TT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_TZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_TZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_UG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_UG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_UM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_UM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_US.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_US.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_VC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_VC.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_VG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_VG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_VI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_VI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_VU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_VU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_WS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_WS.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_ZA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_ZM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_ZM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/en_ZW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/en_ZW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/eo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/eo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_AR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_AR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_BO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_BO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_CL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_CL.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_CO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_CO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_CR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_CR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_CU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_CU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_DO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_DO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_EA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_EA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_EC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_EC.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_ES.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_GQ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_GQ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_GT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_GT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_HN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_HN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_IC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_IC.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_MX.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_MX.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_NI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_NI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_PA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_PA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_PE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_PE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_PH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_PH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_PR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_PR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_PY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_PY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_SV.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_SV.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_US.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_US.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_UY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_UY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/es_VE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/es_VE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/et.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/et.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/et_EE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/et_EE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/eu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/eu.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/eu_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/eu_ES.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ewo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ewo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fa.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fa_AF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fa_AF.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fa_IR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fa_IR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ff.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ff.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ff_SN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ff_SN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fi.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fi_FI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fi_FI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fil.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fil.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fo_FO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fo_FO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_BE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_BF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_BF.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_BI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_BI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_BJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_BJ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_BL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_BL.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_CA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_CA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_CD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_CD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_CF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_CF.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_CG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_CG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_CH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_CH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_CI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_CI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_CM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_CM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_DJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_DJ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_DZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_DZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_FR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_FR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_GA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_GA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_GF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_GF.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_GN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_GN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_GP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_GP.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_GQ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_GQ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_HT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_HT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_KM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_KM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_LU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_LU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_MA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_MA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_MC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_MC.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_MF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_MF.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_MG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_MG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_ML.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_ML.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_MQ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_MQ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_MR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_MR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_MU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_MU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_NC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_NC.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_NE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_NE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_PF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_PF.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_RE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_RE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_RW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_RW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_SC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_SC.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_SN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_SN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_SY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_SY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_TD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_TD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_TG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_TG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_TN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_TN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_VU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_VU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fr_YT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fr_YT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/fur.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/fur.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ga.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ga.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ga_IE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ga_IE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/gd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/gd.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/gd_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/gd_GB.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/gl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/gl.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/gl_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/gl_ES.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/gsw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/gsw.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/gu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/gu.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/gu_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/gu_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/guz.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/guz.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/gv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/gv.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/gv_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/gv_GB.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ha.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ha.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/haw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/haw.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/he.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/he.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/he_IL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/he_IL.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/hi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/hi.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/hi_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/hi_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/hr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/hr.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/hr_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/hr_BA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/hr_HR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/hr_HR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/hu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/hu.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/hu_HU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/hu_HU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/hy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/hy.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/hy_AM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/hy_AM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ia.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ia.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ia_FR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ia_FR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/id.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/id.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/id_ID.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/id_ID.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ig.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ig_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ig_NG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ii.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ii.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ii_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ii_CN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/is.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/is.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/is_IS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/is_IS.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/it.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/it.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/it_CH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/it_CH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/it_IT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/it_IT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/it_SM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/it_SM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ja.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ja.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ja_JP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ja_JP.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/jgo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/jgo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/jmc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/jmc.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ka.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ka.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ka_GE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ka_GE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kab.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kam.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kam.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kde.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kde.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kea.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kea.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/khq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/khq.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ki.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ki.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ki_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ki_KE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kk.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kkj.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kkj.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kl.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kl_GL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kl_GL.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kln.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kln.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/km.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/km.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/km_KH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/km_KH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kn.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kn_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kn_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ko.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ko.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ko_KP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ko_KP.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ko_KR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ko_KR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kok.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kok.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ks.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ks.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ksb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ksb.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ksf.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ksf.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ksh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ksh.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kw.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/kw_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/kw_GB.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ky.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ky_KG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ky_KG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lag.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lag.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lg.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lg_UG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lg_UG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ln.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ln.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ln_AO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ln_AO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ln_CD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ln_CD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ln_CF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ln_CF.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ln_CG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ln_CG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lo_LA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lo_LA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lt.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lt_LT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lt_LT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lu.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lu_CD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lu_CD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/luo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/luo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/luy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/luy.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lv.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/lv_LV.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/lv_LV.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mas.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mas.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mer.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mer.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mfe.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mfe.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mg.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mg_MG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mg_MG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mgh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mgh.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mgo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mgo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mk.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mk_MK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mk_MK.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ml.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ml.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ml_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ml_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mn.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mr.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mr_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mr_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ms.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ms.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mt.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mt_MT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mt_MT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/mua.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/mua.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/my.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/my.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/my_MM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/my_MM.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/naq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/naq.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nb.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nb_NO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nb_NO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nd.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nd_ZW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nd_ZW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ne.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ne.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ne_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ne_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ne_NP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ne_NP.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nl.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nl_AW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nl_AW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nl_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nl_BE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nl_CW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nl_CW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nl_NL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nl_NL.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nl_SR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nl_SR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nl_SX.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nl_SX.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nmg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nmg.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nn.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nn_NO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nn_NO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nnh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nnh.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nr.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nr_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nr_ZA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nso.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nso.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nus.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nus.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/nyn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/nyn.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/om.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/om.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/om_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/om_ET.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/om_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/om_KE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/or.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/or.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/or_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/or_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/os.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/os.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/os_GE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/os_GE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/os_RU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/os_RU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pa.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pl.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pl_PL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pl_PL.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ps.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ps.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ps_AF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ps_AF.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pt.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pt_AO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pt_AO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pt_BR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pt_BR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pt_CV.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pt_CV.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pt_GW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pt_GW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pt_MO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pt_MO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pt_MZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pt_MZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pt_PT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pt_PT.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pt_ST.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pt_ST.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/pt_TL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/pt_TL.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/rm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/rm.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/rm_CH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/rm_CH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/rn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/rn.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/rn_BI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/rn_BI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ro.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ro.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ro_MD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ro_MD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ro_RO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ro_RO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/rof.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/rof.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/root.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/root.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ru.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ru.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ru_BY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ru_BY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ru_KG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ru_KG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ru_KZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ru_KZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ru_MD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ru_MD.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ru_RU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ru_RU.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ru_UA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ru_UA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/rw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/rw.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/rw_RW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/rw_RW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/rwk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/rwk.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sah.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sah.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/saq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/saq.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sbp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sbp.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/se.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/se.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/se_FI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/se_FI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/se_NO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/se_NO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/seh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/seh.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ses.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ses.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sg.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sg_CF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sg_CF.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/shi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/shi.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/si.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/si.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/si_LK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/si_LK.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sk.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sk_SK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sk_SK.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sl.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sl_SI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sl_SI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sn.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sn_ZW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sn_ZW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/so.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/so.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/so_DJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/so_DJ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/so_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/so_ET.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/so_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/so_KE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/so_SO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/so_SO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sq.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sq_AL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sq_AL.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sq_MK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sq_MK.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sq_XK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sq_XK.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sr.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ss.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ss.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ss_SZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ss_SZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ss_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ss_ZA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ssy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ssy.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/st.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/st.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/st_LS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/st_LS.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/st_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/st_ZA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sv.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sv_AX.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sv_AX.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sv_FI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sv_FI.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sv_SE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sv_SE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sw.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sw_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sw_KE.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sw_TZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sw_TZ.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/sw_UG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/sw_UG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/swc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/swc.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ta.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ta.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ta_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ta_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ta_LK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ta_LK.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ta_MY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ta_MY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ta_SG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ta_SG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/te.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/te.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/te_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/te_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/teo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/teo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/tg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/tg.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/th.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/th.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/th_TH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/th_TH.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ti.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ti.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ti_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ti_ER.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ti_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ti_ET.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/tig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/tig.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/tn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/tn.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/tn_BW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/tn_BW.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/tn_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/tn_ZA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/to.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/to.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/to_TO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/to_TO.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/tr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/tr.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/tr_CY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/tr_CY.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/tr_TR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/tr_TR.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ts.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ts.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ts_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ts_ZA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/twq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/twq.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/tzm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/tzm.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/uk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/uk.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/uk_UA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/uk_UA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ur.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ur.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ur_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ur_IN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ur_PK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ur_PK.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/uz.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/uz.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/vai.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/vai.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ve.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ve.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/ve_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/ve_ZA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/vi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/vi.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/vi_VN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/vi_VN.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/vo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/vo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/vun.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/vun.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/wae.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/wae.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/wal.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/wal.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/xh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/xh.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/xh_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/xh_ZA.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/xog.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/xog.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/yav.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/yav.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/yo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/yo.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/yo_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/yo_NG.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/zh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/zh.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/zu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/zu.dat -------------------------------------------------------------------------------- /site-packages/babel/localedata/zu_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/babel/localedata/zu_ZA.dat -------------------------------------------------------------------------------- /site-packages/certgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/certgen.py -------------------------------------------------------------------------------- /site-packages/cherrypy/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/cherrypy/favicon.ico -------------------------------------------------------------------------------- /site-packages/cherrypy/scaffold/example.conf: -------------------------------------------------------------------------------- 1 | [/] 2 | log.error_file: "error.log" 3 | log.access_file: "access.log" -------------------------------------------------------------------------------- /site-packages/cherrypy/test/static/index.html: -------------------------------------------------------------------------------- 1 | Hello, world 2 | -------------------------------------------------------------------------------- /site-packages/cherrypy/test/style.css: -------------------------------------------------------------------------------- 1 | Dummy stylesheet 2 | -------------------------------------------------------------------------------- /site-packages/cherrypy/tutorial/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | # This is used in test_config to test unrepr of "from A import B" 3 | thing2 = object() -------------------------------------------------------------------------------- /site-packages/cherrypy/tutorial/tutorial.conf: -------------------------------------------------------------------------------- 1 | [global] 2 | server.socket_host = "127.0.0.1" 3 | server.socket_port = 8080 4 | server.thread_pool = 10 5 | -------------------------------------------------------------------------------- /site-packages/dateutil/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/dateutil/parser.py -------------------------------------------------------------------------------- /site-packages/guessit_new/test/1MB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/guessit_new/test/1MB -------------------------------------------------------------------------------- /site-packages/guessit_new/test/dummy.srt: -------------------------------------------------------------------------------- 1 | Just a dummy srt file (used for unittests: do not remove!) 2 | -------------------------------------------------------------------------------- /site-packages/logilab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/logilab/__init__.py -------------------------------------------------------------------------------- /site-packages/logilab/astng/test/data/absimport.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | import email 3 | from email import message 4 | -------------------------------------------------------------------------------- /site-packages/logilab/astng/test/data/email.py: -------------------------------------------------------------------------------- 1 | """fake email module to test absolute import doesn't grab this one""" 2 | -------------------------------------------------------------------------------- /site-packages/logilab/astng/test/regrtest_data/absimp/sidepackage/__init__.py: -------------------------------------------------------------------------------- 1 | """a side package with nothing in it 2 | """ 3 | 4 | -------------------------------------------------------------------------------- /site-packages/logilab/astng/test/regrtest_data/absimp/string.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | import string 3 | print string 4 | -------------------------------------------------------------------------------- /site-packages/logilab/astng/test/regrtest_data/package/hello.py: -------------------------------------------------------------------------------- 1 | """hello module""" 2 | 3 | -------------------------------------------------------------------------------- /site-packages/logilab/common/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_rpm] 2 | packager = Sylvain Thenault 3 | provides = logilab.common 4 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/content_differ_dir/README: -------------------------------------------------------------------------------- 1 | thank you 2 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/content_differ_dir/subdir/coin: -------------------------------------------------------------------------------- 1 | baba 2 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/deprecation.py: -------------------------------------------------------------------------------- 1 | # placeholder used by unittest_deprecation 2 | 3 | def moving_target(): 4 | pass 5 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/file_differ_dir/README: -------------------------------------------------------------------------------- 1 | thank you 2 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/foo.txt: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | d 5 | e 6 | f 7 | g 8 | h 9 | 10 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/lmfp/__init__.py: -------------------------------------------------------------------------------- 1 | # force a "direct" python import 2 | from . import foo 3 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/newlines.txt: -------------------------------------------------------------------------------- 1 | # mixed new lines 2 | 1 3 | 2 3 4 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/reference_dir/README: -------------------------------------------------------------------------------- 1 | thank you 2 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/reference_dir/subdir/coin: -------------------------------------------------------------------------------- 1 | baba 2 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/same_dir/README: -------------------------------------------------------------------------------- 1 | thank you 2 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/same_dir/subdir/coin: -------------------------------------------------------------------------------- 1 | baba 2 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/spam.txt: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | h 5 | e 6 | f 7 | g 8 | h 9 | 10 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/sub/momo.py: -------------------------------------------------------------------------------- 1 | print 'yo' 2 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/subdir_differ_dir/README: -------------------------------------------------------------------------------- 1 | thank you 2 | -------------------------------------------------------------------------------- /site-packages/logilab/common/test/data/subdir_differ_dir/subdir/coin: -------------------------------------------------------------------------------- 1 | baba 2 | -------------------------------------------------------------------------------- /site-packages/migrate.pth: -------------------------------------------------------------------------------- 1 | ../site-packages -------------------------------------------------------------------------------- /site-packages/pylint/DEPENDS: -------------------------------------------------------------------------------- 1 | python-logilab-common (>= 0.19.0) 2 | python-logilab-astng (>= 0.16.1) 3 | python-tk 4 | -------------------------------------------------------------------------------- /site-packages/pylint/pyreverse/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | pyreverse.extensions 3 | """ 4 | 5 | __revision__ = "$Id $" 6 | -------------------------------------------------------------------------------- /site-packages/pylint/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_rpm] 2 | packager = Sylvain Thenault 3 | provides = pylint 4 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Africa/Accra -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Africa/Cairo -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Africa/Ceuta -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Africa/Dakar -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Africa/Juba -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Africa/Lagos -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Africa/Lome -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Africa/Tunis -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/America/Adak -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/America/Atka -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/America/Lima -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/America/Nome -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Almaty -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Anadyr -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Aqtobe -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Baghdad -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Bahrain -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Bangkok -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Beirut -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Bishkek -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Brunei -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Colombo -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Harbin -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Hebron -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Irkutsk -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Jakarta -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Karachi -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Kashgar -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Kolkata -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Kuching -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Kuwait -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Magadan -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Manila -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Muscat -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Nicosia -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Rangoon -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Riyadh -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Saigon -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Taipei -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Tbilisi -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Tehran -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Thimbu -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Thimphu -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Urumqi -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Yakutsk -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Asia/Yerevan -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Brazil/Acre -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Brazil/East -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Brazil/West -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/CET -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Canada/Yukon -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Cuba -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/EET -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/EST -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Egypt -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Eire -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+10 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+11 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+12 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT-10 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT-11 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT-12 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT-13 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT-14 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- 1 | TZif2UCTTZif2UCT 2 | UCT0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Europe/Kiev -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Europe/Malta -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Europe/Minsk -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Europe/Oslo -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Europe/Paris -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Europe/Riga -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Europe/Rome -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Europe/Sofia -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/GB -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/GMT: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/GMT0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/HST -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Hongkong -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Iceland -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Iran -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Israel -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Jamaica -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Japan -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Libya -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/MET -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/MST -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/NZ -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Navajo -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/PRC -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Poland -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Portugal -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/ROC -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/ROK -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Singapore -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/Turkey -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/UCT: -------------------------------------------------------------------------------- 1 | TZif2UCTTZif2UCT 2 | UCT0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/UTC: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/W-SU -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lad1337/XDM/0c1b7009fe00f06f102a6f67c793478f515e7efe/site-packages/pytz/zoneinfo/WET -------------------------------------------------------------------------------- /site-packages/pytz/zoneinfo/Zulu: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /site-packages/requests/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import urllib3 4 | -------------------------------------------------------------------------------- /site-packages/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | -------------------------------------------------------------------------------- /xdm/version.py: -------------------------------------------------------------------------------- 1 | major = 0 2 | minor = 5 3 | revision = 19 4 | build = 0 5 | --------------------------------------------------------------------------------