v1.0.3 第一审核版本

This commit is contained in:
guozhen 2025-04-30 16:38:06 +08:00
parent 6d89a3d537
commit 10f25f99a7
325 changed files with 68023 additions and 9675 deletions

15
.gitignore vendored
View File

@ -1,15 +0,0 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties

2
.idea/compiler.xml generated
View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="21" />
<bytecodeTargetLevel target="17" />
</component>
</project>

View File

@ -4,22 +4,14 @@
<selectionStates>
<SelectionState runConfigName="app">
<option name="selectionMode" value="DROPDOWN" />
<DropdownSelection timestamp="2025-04-11T01:18:04.350074500Z">
<DropdownSelection timestamp="2025-04-27T06:06:43.281645600Z">
<Target type="DEFAULT_BOOT">
<handle>
<DeviceId pluginId="LocalEmulator" identifier="path=C:\Users\Administrator\.android\avd\Pixel_9.avd" />
<DeviceId pluginId="PhysicalDevice" identifier="serial=XW69EAMRN7FAFYR4" />
</handle>
</Target>
</DropdownSelection>
<DialogSelection>
<targets>
<Target type="DEFAULT_BOOT">
<handle>
<DeviceId pluginId="LocalEmulator" identifier="path=C:\Users\Administrator\.android\avd\Pixel_9.avd" />
</handle>
</Target>
</targets>
</DialogSelection>
<DialogSelection />
</SelectionState>
</selectionStates>
</component>

2
.idea/gradle.xml generated
View File

@ -6,7 +6,7 @@
<GradleProjectSettings>
<option name="testRunner" value="CHOOSE_PER_TEST" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
<option name="gradleJvm" value="17" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />

9
.idea/misc.xml generated
View File

@ -1,5 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="jbr-21" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>

1
app/.gitignore vendored
View File

@ -1 +0,0 @@
/build

View File

@ -10,8 +10,8 @@ android {
applicationId "com.shortdrama.jelly.zyreotv"
minSdk 24
targetSdk 35
versionCode 1
versionName "1.0.0"
versionCode 4
versionName "1.0.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
@ -19,7 +19,7 @@ android {
signingConfigs {
signs {
storeFile file('zyreotv.jks')
storeFile file('gleestream.jks')
storePassword "20250416"
keyAlias 'key0'
keyPassword "20250416"
@ -33,16 +33,14 @@ android {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.signs
debuggable false
}
debug {
minifyEnabled true
signingConfig signingConfigs.signs
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.signs
debuggable true
minifyEnabled true
}
}
@ -103,6 +101,7 @@ dependencies {
implementation libs.eventbut
implementation libs.baseRecyclerAdapter
implementation libs.splashscreen
implementation libs.billing
}

BIN
app/gleestream.jks Normal file

Binary file not shown.

View File

@ -170,11 +170,11 @@
-dontwarn com.shortdrama.jelly.zyreotv.model.**
-keep class com.shortdrama.jelly.zyreotv.model.** {*;}
-dontwarn com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.**
-keep class com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.** {*;}
-dontwarn com.shortdrama.jelly.zyreotv.api.**
-keep class com.shortdrama.jelly.zyreotv.api.** {*;}
-dontwarn com.shortdrama.jelly.zyreotv.dlsym.**
-keep class com.shortdrama.jelly.zyreotv.dlsym.** {*;}
-keepclassmembers class **.R$* {
public static <fields>;

Binary file not shown.

View File

@ -1,26 +0,0 @@
package com.qinjiu.viontv;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.qinjiu.viontv", appContext.getPackageName());
}
}

View File

@ -6,39 +6,37 @@
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<!-- <uses-permission android:name="com.android.vending.BILLING" />-->
<!-- <uses-permission android:name="com.farsitel.bazaar.permission.PAY_THROUGH_BAZAAR" />-->
<application
android:name="com.shortdrama.jelly.zyreotv.VTApplication"
android:name="com.shortdrama.jelly.zyreotv.GPplicationLoadingdefault"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:dataExtractionRules="@xml/jxm_local_tablist"
android:fullBackupContent="@xml/a_about"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.VionTV">
android:theme="@style/Theme.GleeStream">
<activity
android:name="com.shortdrama.jelly.zyreotv.ui.activity.VTSplashActivity"
android:name="com.shortdrama.jelly.zyreotv.topics.abslRwgt.IIUAgreementBuildActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.shortdrama.jelly.zyreotv.ui.activity.VTMainActivity"
android:name="com.shortdrama.jelly.zyreotv.topics.abslRwgt.AExtractionActivity"
android:exported="true">
</activity>
<activity android:name="com.shortdrama.jelly.zyreotv.ui.activity.play.VTVideoPlayerActivity" />
<activity android:name="com.shortdrama.jelly.zyreotv.ui.activity.search.VTSearchActivity" />
<activity android:name="com.shortdrama.jelly.zyreotv.ui.activity.WebViewActivity" />
<activity android:name="com.shortdrama.jelly.zyreotv.topics.abslRwgt.poolref.AKLXploreActivity" />
<activity android:name="com.shortdrama.jelly.zyreotv.topics.abslRwgt.propagation.CNSDetailsActivity" />
<activity android:name="com.shortdrama.jelly.zyreotv.topics.abslRwgt.XLHeaddefaultActivity" />
</application>
</manifest>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -0,0 +1,432 @@
package com.shortdrama.jelly.zyreotv;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import android.app.Application;
import android.text.TextUtils;
import com.shortdrama.jelly.zyreotv.beginning.TIndicator;
import com.shortdrama.jelly.zyreotv.dlsym.IMACloseStroke;
import com.shortdrama.jelly.zyreotv.dlsym.RREStyles;
import com.shortdrama.jelly.zyreotv.dlsym.VZBack;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.VPisodesAppnameBean;
import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.schedulers.Schedulers;
public class GPplicationLoadingdefault extends Application {
private volatile boolean has_ImgOmmonPage = false;
volatile double settingPplicationSpace = 0.0;
volatile int readStyle_mark = 0;
volatile HashMap<String,Long> discoverZyreotvSend_map;
public static GPplicationLoadingdefault AppContext;
public static boolean isCurrentPage = false;
public static GPplicationLoadingdefault getAppContext() {
return AppContext;
}
private String connectKeyAllMath(long ollowTranslates) {
int type_jPisodes = 3096;
float odyloadChildren = 6174.0f;
boolean colorsCate = false;
String unescapingVpathmesureSubsequences = "crcc";
if (type_jPisodes <= 128 && type_jPisodes >= -128){
int eader_u = Math.min(1, new Random().nextInt(46)) % unescapingVpathmesureSubsequences.length();
unescapingVpathmesureSubsequences += type_jPisodes + "";
}
int g_68 = (int)type_jPisodes;
g_68 += 80;
if (odyloadChildren >= -128 && odyloadChildren <= 128){
int details_h = Math.min(1, new Random().nextInt(64)) % unescapingVpathmesureSubsequences.length();
unescapingVpathmesureSubsequences += odyloadChildren + "";
}
int _e_67 = (int)odyloadChildren;
int x_40 = 0;
for (int o_91 = (int)_e_67; o_91 >= _e_67 - 1; o_91--) {
x_40 += (int)o_91;
_e_67 -= o_91;
break;
}
if (false == colorsCate){
System.out.println("head");
}
return unescapingVpathmesureSubsequences;
}
@Override
public void onCreate() {
String connectSubtext = this.connectKeyAllMath(3738L);
int connectSubtext_len = connectSubtext.length();
int tmp_n_27 = (int)connectSubtext_len;
tmp_n_27 -= 14;
if (connectSubtext == "line") {
System.out.println(connectSubtext);
}
System.out.println(connectSubtext);
super.onCreate();
long vistore = 4234L;
AppContext = this;
ArrayList<Boolean> tatus9 = new ArrayList<Boolean>();
tatus9.add(false);
tatus9.add(true);
tatus9.add(false);
tatus9.add(true);
tatus9.add(false);
tatus9.add(true);
while (tatus9.size() > 67) { break; }
System.out.println(tatus9);
regist();
double collectioncancelR = 6062.0;
while (collectioncancelR <= 152) { break; }
}
private boolean submitDrawTimer(double tablistRefreshing, ArrayList<Boolean> searchCate, double intentSerarch) {
boolean againHandler = true;
double goryLoad = 9147.0;
ArrayList<Float> inputApple = new ArrayList();
boolean gamutBannedDimiss = false;
againHandler = true;
gamutBannedDimiss = againHandler;
goryLoad = 3871;
gamutBannedDimiss = goryLoad > 56;
double _h_66 = (double)goryLoad;
double y_19 = 1.0;
double d_47 = 0.0;
if (_h_66 > d_47) {
_h_66 = d_47;
}
while (y_19 < _h_66) {
y_19 += 1;
_h_66 += y_19;
break;
}
return gamutBannedDimiss;
}
public void regist() {
ArrayList i_25_x = new ArrayList();
boolean adtstoascSet = this.submitDrawTimer(31.0,i_25_x,3043.0);
if (!adtstoascSet) {
System.out.println("ok");
}
System.out.println(adtstoascSet);
String collect = TIndicator.getString(TIndicator.auth, "");
boolean commomz = true;
while (commomz) { break; }
if (TextUtils.isEmpty(collect)) {
VZBack.getInstance().register()
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RREStyles<IMACloseStroke<VPisodesAppnameBean>>() {
private boolean shareTailJobData(float spendZyreotv) {
double istoryPlayer = 7236.0;
float nextEzier = 442.0f;
double logoutFree = 8236.0;
HashMap<String,String> utilsDestroy = new HashMap();
boolean nodesetCashtagCapturetestvideo = false;
istoryPlayer -= 60;
nodesetCashtagCapturetestvideo = istoryPlayer > 56;
double e_86 = (double)istoryPlayer;
switch ((int)e_86) {
case 60: {
double q_33 = 0;
double e_38 = 1.0;
if (e_86 > e_38) {
e_86 = e_38;
}
for (int c_12 = 0; c_12 < e_86; c_12++) {
q_33 += (double)c_12;
double i_23 = (double)q_33;
break;
}
break;
}
case 4: {
e_86 += 26.0;
break;
}
case 44: {
if (e_86 != 56.0) {
e_86 -= 97.0;
switch ((int)e_86) {
case 93: {
break;
}
case 84: {
e_86 *= 8.0;
break;
}
case 21: {
e_86 -= 14.0;
break;
}
case 80: {
e_86 += 76.0;
e_86 += 1.0;
break;
}
case 50: {
break;
}
case 45: {
e_86 += 41.0;
e_86 -= 37.0;
break;
}
case 64: {
break;
}
case 6: {
e_86 *= 91.0;
e_86 += 9.0;
break;
}
case 26: {
e_86 -= 54.0;
break;
}
case 75: {
e_86 -= 60.0;
break;
}
default:
break;
}
}
break;
}
case 7: {
e_86 *= 99.0;
break;
}
case 71: {
e_86 += 31.0;
e_86 *= 65.0;
break;
}
case 87: {
double g_39 = 1.0;
double f_93 = 1.0;
if (e_86 > f_93) {
e_86 = f_93;
}
while (g_39 <= e_86) {
g_39 += 1;
double d_55 = (double)g_39;
break;
}
break;
}
case 25: {
e_86 -= 69.0;
e_86 *= 52.0;
break;
}
default:
break;
}
nextEzier += 68;
nodesetCashtagCapturetestvideo = nextEzier > 44;
int tmp_q_31 = (int)nextEzier;
int q_36 = 0;
for (int y_10 = (int)tmp_q_31; y_10 > tmp_q_31 - 1; y_10--) {
q_36 += (int)y_10;
if (y_10 > 0) {
tmp_q_31 += (int)y_10;
break;
}
break;
}
logoutFree *= 93;
nodesetCashtagCapturetestvideo = logoutFree > 8;
return nodesetCashtagCapturetestvideo;
}
@Override
public void onSuccess(IMACloseStroke<VPisodesAppnameBean> feedbackResp) {
boolean ongoingEthernet = this.shareTailJobData(6770.0f);
if (ongoingEthernet) {
}
System.out.println(ongoingEthernet);
TIndicator.saveString(TIndicator.auth, feedbackResp.data.getToken());
}
private int moveThreadOrientationHere(ArrayList<Boolean> headTag, String hibitFfffff, String thirdChildren) {
boolean expireImage = false;
String headDiscover = "recently";
int policyClose = 9469;
long noticeAnd_z = 596L;
System.out.println(noticeAnd_z);
int deselectedTraditional = 0;
expireImage = false;
deselectedTraditional *= expireImage ? 53 : 12;
policyClose -= 86;
deselectedTraditional += policyClose;
int tmp_h_90 = (int)policyClose;
tmp_h_90 *= 77;
noticeAnd_z += 53;
int _u_28 = (int)noticeAnd_z;
_u_28 += 22;
return deselectedTraditional;
}
@Override
public void onError(int code, String msg) {
ArrayList crctable_v = new ArrayList();
String geotags_j = "closed";
String rolling_c = "daala";
int adgroupPutint = this.moveThreadOrientationHere(crctable_v,geotags_j,rolling_c);
if (adgroupPutint > 0) {
for (int n_6 = 0; n_6 < adgroupPutint; n_6++) {
if (n_6 == 1) {
System.out.println(n_6);
break;
}
}
}
int m_28 = (int)adgroupPutint;
switch (m_28) {
case 77: {
m_28 *= 30;
m_28 -= 35;
break;
}
case 28: {
int v_12 = 0;
for (int c_28 = (int)m_28; c_28 > m_28 - 1; c_28--) {
v_12 += (int)c_28;
int e_91 = (int)v_12;
if (e_91 != 65) {
e_91 -= 70;
}
break;
}
break;
}
case 25: {
m_28 += 54;
int o_74 = 0;
int h_63 = 0;
if (m_28 > h_63) {
m_28 = h_63;
}
for (int t_10 = 0; t_10 <= m_28; t_10++) {
o_74 += (int)t_10;
m_28 += t_10;
break;
}
break;
}
default:
break;
}
System.out.println(adgroupPutint);
}
});
}
}
}

View File

@ -1,60 +0,0 @@
package com.shortdrama.jelly.zyreotv;
import android.app.Application;
import android.text.TextUtils;
import com.shortdrama.jelly.zyreotv.api.VTApi;
import com.shortdrama.jelly.zyreotv.api.VTBaseObserver;
import com.shortdrama.jelly.zyreotv.api.VTResult;
import com.shortdrama.jelly.zyreotv.model.RegisteredBean;
import com.shortdrama.jelly.zyreotv.utils.SharePreferenceUtils;
import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.schedulers.Schedulers;
public class VTApplication extends Application {
public static VTApplication AppContext;
public static boolean isCurrentPage = false;
public static VTApplication getAppContext() {
return AppContext;
}
@Override
public void onCreate() {
super.onCreate();
AppContext = this;
regist();
}
/**
* 获取token
*/
public void regist() {
String authkey = SharePreferenceUtils.getString(SharePreferenceUtils.auth, "");
if (TextUtils.isEmpty(authkey)) {
VTApi.getInstance().register()
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new VTBaseObserver<VTResult<RegisteredBean>>() {
@Override
public void onSuccess(VTResult<RegisteredBean> feedbackResp) {
SharePreferenceUtils.saveString(SharePreferenceUtils.auth, feedbackResp.data.getToken());
}
@Override
public void onError(int code, String msg) {
}
});
}
}
}

View File

@ -1,75 +0,0 @@
package com.shortdrama.jelly.zyreotv.api;
import android.util.Log;
import com.shortdrama.jelly.zyreotv.utils.LogUtils;
import java.io.UnsupportedEncodingException;
import java.net.Proxy;
import java.net.URLDecoder;
import java.util.concurrent.TimeUnit;
import okhttp3.OkHttpClient;
import okhttp3.logging.HttpLoggingInterceptor;
public class VTApi extends VTBaseApi {
private static final long CONNECT_TIMEOUT = 10;
private static final long READ_TIMEOUT = 10;
private static final long WRITE_TIMEOUT = 10;
/**
* 静态内部类单例
*/
private static class ApiHolder {
private static VTApi api = new VTApi();
private final static VTApiService apiService = api.initRetrofit(VTApiService.URL)
.create(VTApiService.class);
}
public static VTApiService getInstance() {
return ApiHolder.apiService;
}
/**
* 做自己需要的操作
*/
@Override
protected OkHttpClient setClient() {
OkHttpClient.Builder builder;
builder = new OkHttpClient()
.newBuilder();
//禁止使用代理抓取数据
builder.proxy(Proxy.NO_PROXY);
//设置超时
builder.connectTimeout(CONNECT_TIMEOUT, TimeUnit.SECONDS);
builder.readTimeout(READ_TIMEOUT, TimeUnit.SECONDS);
builder.writeTimeout(WRITE_TIMEOUT, TimeUnit.SECONDS);
//错误重连
builder.retryOnConnectionFailure(true);
builder.addInterceptor(new VTHeaderInterceptor());
builder.addInterceptor(new VTBodyloadInterceptor());
if(LogUtils.isDebug){
HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor(message -> {
try {
String text = URLDecoder.decode(message, "utf-8");
Log.i("OKHttp111111-----", text);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
Log.i("OKHttp1111111-----", e.getMessage());
}
});
interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
builder.addInterceptor(interceptor);
}
// if(Config.IS_DEBUG) {
// }
return builder.build();
}
}

View File

@ -1,198 +0,0 @@
package com.shortdrama.jelly.zyreotv.api;
import com.shortdrama.jelly.zyreotv.model.VTVideoListBean;
import com.shortdrama.jelly.zyreotv.model.HomeTopBannerBean;
import com.shortdrama.jelly.zyreotv.model.HomeTopBean;
import com.shortdrama.jelly.zyreotv.model.RegisteredBean;
import com.shortdrama.jelly.zyreotv.model.TabItemBean;
import com.shortdrama.jelly.zyreotv.model.VTUserInfoBean;
import com.shortdrama.jelly.zyreotv.model.VTVideoDetailsBean;
import com.shortdrama.jelly.zyreotv.model.VTVideoExploreListBean;
import io.reactivex.Observable;
import retrofit2.http.Field;
import retrofit2.http.FormUrlEncoded;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Query;
public interface VTApiService {
/**
* 正式测试服
*/
boolean isProduce = true;
// String URL = isProduce ? "https://api-zyreotv.zyreotv.com/7834f11d/" : "https://test1-api.guyantv.com";
String URL = "https://api-zyreotv.zyreotv.com/7834f11d/";
public static final String rankTop10Type = "most_trending";
public static final String ZyreoTV_Private = "https://www.zyreotv.com/private";
public static final String ZyreoTV_USERAgreement = "https://www.zyreotv.com/user_policy";
/**
*
*
* @return
*/
@POST("customer/register")
Observable<VTResult<RegisteredBean>> register();
/**
*
*
* @return
*/
@POST("homeTop")
Observable<VTResult<HomeTopBean>> homeTop();
/**
*
*
* @return
*/
@POST("homeBannerAndNineSquare")
Observable<VTResult<HomeTopBannerBean>> bannersquare();
/**
*
*
* @return
*/
@FormUrlEncoded
@POST("newShortPlay")
Observable<VTResult<VTVideoListBean>> newShortPlay(@Field("current_page") int currentpage, @Field("page_size") int pagesize);
/**
* Top10
*
* @return
*/
@FormUrlEncoded
@POST("homeRanking")
Observable<VTResult<VTVideoListBean>> homeTop10(@Field("type") String type);
/**
*
*
* @return
*/
@GET("getVideoDetails")
Observable<VTResult<VTVideoDetailsBean>> getVideoDetails(@Query("short_play_id") int short_play_id, @Query("video_id") int video_id);
/**
*
*
* @return
*/
@FormUrlEncoded
@POST("revenge")
Observable<VTResult<TabItemBean>> getTabItemBanner(@Field("category_id") int category_id);
/**
*
*
* @return
*/
@GET("videoList")
Observable<VTResult<VTVideoListBean>> getVideoList(@Query("category_id") int category_id, @Query("current_page") int current, @Query("page_size") int pageSize, @Query("search") String search);
/**
*
*
* @return
*/
@FormUrlEncoded
@POST("createHistory")
Observable<VTResult> createVideoHistory(@Field("short_play_id") int shorplayId, @Field("video_id") int videoId);
/**
* Search Hot List
*
* @return
*/
@GET("search/hots")
Observable<VTResult<VTVideoListBean>> getSearchHotList();
/**
* Search Content List
*
* @return
*/
@GET("search")
Observable<VTResult<VTVideoListBean>> getSearchContentList(@Query("search") String search);
/**
*
*
* @return
*/
@FormUrlEncoded
@POST("search/click")
Observable<VTResult> searchClick(@Field("short_play_id") int shorplayId);
/**
*
*
* @return
*/
@GET("getRecommands")
Observable<VTResult<VTVideoExploreListBean>> getExploreList(@Query("current_page") int current, @Query("page_size") int pageSize);
/**
*
*
* @return
*/
@FormUrlEncoded
@POST("collect")
Observable<VTResult> collect(@Field("short_play_id") int shorplayId, @Field("video_id") int videoId);
/**
*
*
* @return
*/
@FormUrlEncoded
@POST("cancelCollect")
Observable<VTResult> cancelCollect(@Field("short_play_id") int shorplayId);
/**
*
*
* @return
*/
@GET("customer/info")
Observable<VTResult<VTUserInfoBean>> getUserInfo();
/**
*
*
* @return
*/
@GET("myHistorys")
Observable<VTResult<VTVideoListBean>> getVideoHistoryList(@Query("current_page") int currentpage, @Query("page_size") int pageSize);
/**
* 获取观看历史列表
*
* @return
*/
@GET("myCollections")
Observable<VTResult<VTVideoListBean>> getFollowList(@Query("current_page") int currentpage, @Query("page_size") int pageSize);
}

View File

@ -1,37 +0,0 @@
package com.shortdrama.jelly.zyreotv.api;
import okhttp3.OkHttpClient;
import retrofit2.Retrofit;
import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;
import retrofit2.converter.gson.GsonConverterFactory;
import retrofit2.converter.scalars.ScalarsConverterFactory;
public abstract class VTBaseApi {
/**
* 初始化Retrofit
*/
public Retrofit initRetrofit(String baseUrl) {
Retrofit.Builder builder = new Retrofit.Builder();
//支持返回Call<String>
builder.addConverterFactory(ScalarsConverterFactory.create());
//支持直接格式化json返回Bean对象
builder.addConverterFactory(GsonConverterFactory.create());
//支持RxJava
builder.addCallAdapterFactory(RxJava2CallAdapterFactory.create());
builder.baseUrl(baseUrl);
OkHttpClient client = setClient();
if (client != null) {
builder.client(client);
}
return builder.build();
}
/**
* 设置OkHttpClient添加拦截器等
*
* @return 可以返回为null
*/
protected abstract OkHttpClient setClient();
}

View File

@ -1,35 +0,0 @@
package com.shortdrama.jelly.zyreotv.api;
import java.io.IOException;
import com.shortdrama.jelly.zyreotv.VTApplication;
import com.shortdrama.jelly.zyreotv.utils.GetAndroidUniqueMark;
import com.shortdrama.jelly.zyreotv.utils.SharePreferenceUtils;
import com.shortdrama.jelly.zyreotv.utils.TimeUtils;
import okhttp3.Interceptor;
import okhttp3.Request;
import okhttp3.Response;
public class VTHeaderInterceptor implements Interceptor {
public VTHeaderInterceptor() {
}
@Override
public Response intercept(Chain chain) throws IOException {
//封装headers
Request request = chain.request().newBuilder()
.addHeader("Content-Type", "application/json")
.addHeader("authorization", SharePreferenceUtils.getString(SharePreferenceUtils.auth,""))
// .addHeader("security","true")
.addHeader("app-name","ZyreoTV")
.addHeader("lang-key","en")
.addHeader("device-id",GetAndroidUniqueMark.getUniqueId(VTApplication.getAppContext()))
.addHeader("system-type","android")
.addHeader("time_zone", TimeUtils.getCurrentTimeZone())
.build();
return chain.proceed(request);
}
}

View File

@ -1,31 +0,0 @@
package com.shortdrama.jelly.zyreotv.api;
import com.shortdrama.jelly.zyreotv.utils.VTGsonUtils;
import java.io.Serializable;
/**
* created by wmm on 2020/9/8
*/
public class VTResult<T> implements Serializable {
public String msg;
public int code;
public T data;
public boolean isSuccessful() {
return code == 200;
}
@Override
public String toString() {
return "Result{" +
"message='" + msg + '\'' +
", code=" + code +
", data=" + VTGsonUtils.beanToJSONString(data) +
'}';
}
}

View File

@ -1,18 +1,32 @@
package com.shortdrama.jelly.zyreotv.utils;
package com.shortdrama.jelly.zyreotv.beginning;
import java.util.HashMap;
import android.annotation.SuppressLint;
import android.content.Context;
import android.provider.Settings;
/**
* 设备ID
*/
public class GetAndroidUniqueMark {
public class FZHeaderSingle {
volatile float tipDetailsCallSpace = 0.0f;
private volatile HashMap<String,Integer> dateTheaterAgainMap;
@SuppressLint("HardwareIds")
public static String getUniqueId(Context context) {
return Settings.Secure.getString(context.getContentResolver(), Settings.Secure.ANDROID_ID);
}
}

View File

@ -0,0 +1,135 @@
package com.shortdrama.jelly.zyreotv.beginning;
import android.annotation.TargetApi;
import android.app.Activity;
import android.content.Context;
import android.content.res.Resources;
import android.util.TypedValue;
import android.os.Build;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.view.WindowManager;
public class HPFSerarchSeekbar {
volatile float coverSinRequestMax = 0.0f;
private volatile String subscribeFollowAuto_wStr;
private static int noneInterceptor = 0;
private static float loadingdefaultSuccessful = 0f;
private static final int uniqueView = 19;
public static void pageImmersive(Window window, int color) {
pageImmersive(window, color, 1f);
}
public static void pageImmersive(Window window, int color, float alpha) {
if (Build.VERSION.SDK_INT >= 21) {
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setStatusBarColor(pageMixtureColor(color, alpha));
int systemUiVisibility = window.getDecorView().getSystemUiVisibility();
systemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
systemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_STABLE;
window.getDecorView().setSystemUiVisibility(systemUiVisibility);
} else if (Build.VERSION.SDK_INT >= uniqueView) {
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
pageSetTranslucentView((ViewGroup) window.getDecorView(), color, alpha);
} else {
int systemUiVisibility = window.getDecorView().getSystemUiVisibility();
systemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
systemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_STABLE;
window.getDecorView().setSystemUiVisibility(systemUiVisibility);
}
}
public static void pageDarkMode(Activity activity, boolean dark) {
pageDarkMode(activity.getWindow(), noneInterceptor, loadingdefaultSuccessful, dark);
}
@TargetApi(Build.VERSION_CODES.M)
public static void pageDarkMode(Window window, int color, float alpha, boolean dark) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
pageDarkModeForM(window, dark);
pageImmersive(window, color, alpha);
} else if (Build.VERSION.SDK_INT >= uniqueView) {
window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
pageSetTranslucentView((ViewGroup) window.getDecorView(), color, alpha);
} else {
pageImmersive(window, color, alpha);
}
}
@TargetApi(Build.VERSION_CODES.M)
public static void pageDarkModeForM(Window window, boolean dark) {
int systemUiVisibility = window.getDecorView().getSystemUiVisibility();
if (dark) {
systemUiVisibility |= View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
} else {
systemUiVisibility &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
}
window.getDecorView().setSystemUiVisibility(systemUiVisibility);
}
public static void pageSetPaddingSmart(Context context, View view) {
if (Build.VERSION.SDK_INT >= uniqueView) {
ViewGroup.LayoutParams lp = view.getLayoutParams();
if (lp != null && lp.height > 0) {
lp.height += pageGetStatusBarHeight(context);
}
view.setPadding(
view.getPaddingLeft(),
view.getPaddingTop() + pageGetStatusBarHeight(context),
view.getPaddingRight(),
view.getPaddingBottom()
);
}
}
private static void pageSetTranslucentView(ViewGroup container, int color, float alpha) {
if (Build.VERSION.SDK_INT >= uniqueView) {
int mixtureColor = pageMixtureColor(color, alpha);
View translucentView = container.findViewById(android.R.id.custom);
if (translucentView == null && mixtureColor != 0) {
translucentView = new View(container.getContext());
translucentView.setId(android.R.id.custom);
ViewGroup.LayoutParams lp = new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
pageGetStatusBarHeight(container.getContext())
);
container.addView(translucentView, lp);
}
if (translucentView != null) {
translucentView.setBackgroundColor(mixtureColor);
}
}
}
private static int pageMixtureColor(int color, float alpha) {
int a = (color & 0xff000000) == 0 ? 0xff : color >>> 24;
return (color & 0x00ffffff) | ((int) (a * alpha) << 24);
}
private static int pageGetStatusBarHeight(Context context) {
int result = 24;
int resId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");
if (resId > 0) {
result = context.getResources().getDimensionPixelSize(resId);
} else {
result = (int) TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_DIP,
result,
Resources.getSystem().getDisplayMetrics()
);
}
return result;
}
}

View File

@ -1,13 +1,57 @@
package com.shortdrama.jelly.zyreotv.utils;
package com.shortdrama.jelly.zyreotv.beginning;
import java.nio.charset.StandardCharsets;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
class WASModityEpiscode {
static String nextNoneFromTourist(int[] contents, int key, boolean hasEmoji) {
byte[] newList = new byte[contents.length - 1];
newList[0] = 0;
for (int i = 0; i < contents.length; i++) {
int v = contents[i];
v ^= key;
v &= 0xff;
if (v == 0 && i == contents.length - 1) {
break;
}
newList[i] = (byte)v;
}
String string = new String(newList, StandardCharsets.UTF_8);
if (hasEmoji) {
Pattern pattern = Pattern.compile("(\\\\u(\\p{XDigit}{2,4}))");
Matcher matcher = pattern.matcher(string);
char ch;
while (matcher.find()) {
ch = (char) Integer.parseInt(matcher.group(2), 16);
string = string.replace(matcher.group(1), ch + "");
}
}
return string;
}
}
public class ITItem {
private volatile int changeArrowrightDateFlag = 0;
private volatile boolean is_PrivacyModityUnit = false;
volatile int stringsMcontextSum = 0;
volatile boolean has_ViewingUserSend = false;
public class VTAppConstants {
public static final int page_size = 10;
public static final String Constants_last_update_time = "Constants_last_update_time";
public static final String Constants_language_refresh = "Constants_language_refresh";
public static final String CONSTANTS_Translates_STRING = "CONSTANTS_Translates_STRING";
public static final String Constants_BASE_URL = "https://api.hibitplay.com";
// public static final String Constants_BASE_URL = "https://test-api.guyantv.com";
public static final String Constants_BASE_URL = WASModityEpiscode.nextNoneFromTourist(new int[] {-2,-30,-30,-26,-27,-84,-71,-71,-9,-26,-1,-72,-2,-1,-12,-1,-30,-26,-6,-9,-17,-72,-11,-7,-5,-106},0x96,false);
public static final String Constants_HTTP_TOKEN = "Authorization";
public static final String Constants_Page_DetailId = "constants_page_detail_id";
public static final String Constants_Page_video_id = "Constants_Page_video_id";

View File

@ -0,0 +1,32 @@
package com.shortdrama.jelly.zyreotv.beginning;
import java.util.ArrayList;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
public class LRewards {
volatile ArrayList<Double> signoutShapePlaylist_Array;
volatile int idleTeenagerAdditionTag = 0;
volatile long leftSinMark = 0;
public static void startPlayerDetails(Activity currentActivity,int details_id, int video_id){
Intent intent = new Intent(currentActivity.getApplicationContext(), com.shortdrama.jelly.zyreotv.topics.abslRwgt.poolref.AKLXploreActivity.class);
intent.putExtra(com.shortdrama.jelly.zyreotv.beginning.ITItem.Constants_Page_DetailId,details_id);
intent.putExtra(com.shortdrama.jelly.zyreotv.beginning.ITItem.Constants_Page_video_id,video_id);
currentActivity.startActivity(intent);
}
public static void startSearch(Context context){
Intent intent = new Intent(context, com.shortdrama.jelly.zyreotv.topics.abslRwgt.propagation.CNSDetailsActivity.class);
context.startActivity(intent);
}
}

View File

@ -1,14 +1,24 @@
package com.shortdrama.jelly.zyreotv.utils;
package com.shortdrama.jelly.zyreotv.beginning;
import java.util.HashMap;
public class MCategoryEmpty {
volatile long theaterIdle_tag = 0;
volatile HashMap<String,Integer> enterTourist_map;
public class VTDecyrptUtils {
public static final char EN_STR_TAG = '$';
/**
* decyrpt data
* @param data
* @return
*/
public static String decrypt(String data) {
return new String(deStrBytes(data), java.nio.charset.StandardCharsets.UTF_8);
}

View File

@ -0,0 +1,43 @@
package com.shortdrama.jelly.zyreotv.beginning;
import java.util.ArrayList;
import android.os.Handler;
import android.os.Looper;
import android.widget.Toast;
import com.shortdrama.jelly.zyreotv.GPplicationLoadingdefault;
public class PAYLoginHeaddefault {
volatile String eaderAllViewStr;
private volatile ArrayList<Integer> rankingMessageModity_arr;
private static Toast pageSetting;
private static final Handler handler = new Handler(Looper.getMainLooper());
public static void revealToast(String message, int duration) {
if (duration == 0) {
duration = Toast.LENGTH_SHORT;
}
hideToast();
int finalDuration = duration;
handler.post(() -> {
pageSetting = Toast.makeText(GPplicationLoadingdefault.getAppContext(), message, finalDuration);
if (pageSetting != null) {
pageSetting.show();
}
});
}
private static void hideToast() {
if (pageSetting != null) {
pageSetting.cancel();
pageSetting = null;
}
}
}

View File

@ -1,4 +1,5 @@
package com.shortdrama.jelly.zyreotv.utils;
package com.shortdrama.jelly.zyreotv.beginning;
import android.text.TextUtils;
@ -11,17 +12,20 @@ import java.util.ArrayList;
import java.util.List;
public class VTGsonUtils {
public class REnterCircle {
volatile ArrayList<String> keyIdleArray;
private volatile ArrayList<Integer> mainLoginList;
public static Gson gson = new Gson();
/**
* 返回List对象
* @param str
* @param type new TypeToken<ArrayList<T>>(){}.getType()
* @param <T>
* @return
*/
public static <T> T getListFromJSON(String str, Type type) {
if (!TextUtils.isEmpty(str)) {
return gson.fromJson(str, type);
@ -29,13 +33,7 @@ public class VTGsonUtils {
return null;
}
/**
* 返回List对象
* @param str
* @param cls
* @param <T>
* @return
*/
public static <T> List<T> getListFromJSON(String str, Class<T> cls)
{
Type type = new TypeToken<ArrayList<JsonObject>>()
@ -49,35 +47,22 @@ public class VTGsonUtils {
return arrayList;
}
/**
* 返回对象
* @param str
* @param cls
* @param <T>
* @return
*/
public static <T> T getObjFromJSON(String str, Class<T> cls) {
// try {
if (!TextUtils.isEmpty(str)) {
return gson.fromJson(str, cls);
}
return null;
// }catch (Exception e) {
// return null;
// }
}
/**
* 返回JsonString
* @return
*/
public static String beanToJSONString(Object bean) {
return new Gson().toJson(bean);
}
public static String JSONTokener(String in) {
// consume an optional byte order mark (BOM) if it exists
if (in != null && in.startsWith("\ufeff")) {
in = in.substring(1);
}

View File

@ -1,12 +1,23 @@
package com.shortdrama.jelly.zyreotv.utils;
package com.shortdrama.jelly.zyreotv.beginning;
import static com.shortdrama.jelly.zyreotv.VTApplication.AppContext;
import static com.shortdrama.jelly.zyreotv.GPplicationLoadingdefault.AppContext;
import android.app.Activity;
import android.content.Context;
import android.content.SharedPreferences;
public class SharePreferenceUtils {
public class TIndicator {
volatile boolean has_VideohistoryButton = false;
volatile double and_yLoginSize = 0.0;
private volatile String lineDayUnselect_string;
public static final String auth="auth";

View File

@ -1,11 +1,24 @@
package com.shortdrama.jelly.zyreotv.utils;
package com.shortdrama.jelly.zyreotv.beginning;
import java.util.ArrayList;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
public class TimeUtils {
volatile ArrayList<Double> appleUpdate_fePreference_Array;
private volatile ArrayList<Boolean> warningPisodes_arr;
volatile float beforeSeenStop_max = 0.0f;
volatile long instrumentedPolicy_count = 0;
public static String getCurrentTimeZone() {
return createGmtOffsetString(true, true, TimeZone.getDefault().getRawOffset());

View File

@ -1,17 +1,27 @@
package com.shortdrama.jelly.zyreotv.utils;
package com.shortdrama.jelly.zyreotv.beginning;
import java.util.Date;
import java.util.TimeZone;
public class SingleClickUtils {
private static long lastClickTime = 0L;
public class WCenterVideo {
private volatile boolean enbaleSpendCommom = false;
volatile double tipsActivity_offset = 0.0;
private static long local_3zLanguage = 0L;
public static void singleClick(long during, Runnable callBack) {
long now = new Date().getTime();
if (now - lastClickTime > during) {
if (now - local_3zLanguage > during) {
callBack.run();
}
lastClickTime = now;
local_3zLanguage = now;
}
public static void singleClick(Runnable callBack) {

View File

@ -0,0 +1,44 @@
package com.shortdrama.jelly.zyreotv.beginning;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.EAndroidBean;
import java.util.HashMap;
public class XYBGoryShare {
volatile String suspendCornorCollectString;
volatile float earchStayLast_size = 0.0f;
volatile String desImageResumeString;
private volatile HashMap<String,Long> unitRunnableScheduler_dict;
public static void saveTranslates(EAndroidBean.ZUSEarch infoRes) {
TIndicator.saveString(ITItem.CONSTANTS_Translates_STRING,REnterCircle.beanToJSONString(infoRes));
}
public static EAndroidBean.ZUSEarch translates(){
String vaule = TIndicator.getString(ITItem.CONSTANTS_Translates_STRING,"");
return REnterCircle.getObjFromJSON(vaule, EAndroidBean.ZUSEarch.class);
}
public static String replace(String value,String result){
return value.replace("##",result);
}
public static String replaces(String old,String new1,String new2){
String replace = old.replace("#1#", new1);
return replace.replace("#2#",new2);
}
}

View File

@ -0,0 +1,38 @@
package com.shortdrama.jelly.zyreotv.dlsym;
import com.shortdrama.jelly.zyreotv.beginning.REnterCircle;
import java.io.Serializable;
public class IMACloseStroke<T> implements Serializable {
private volatile int beforeEpisodeTag = 0;
volatile float teenagerUnlock_padding = 0.0f;
volatile long jumpUnlockEpisode_index = 0;
public String msg;
public int code;
public T data;
public boolean isSuccessful() {
return code == 200;
}
@Override
public String toString() {
return "Result{" +
"message='" + msg + '\'' +
", code=" + code +
", data=" + REnterCircle.beanToJSONString(data) +
'}';
}
}

View File

@ -0,0 +1,149 @@
package com.shortdrama.jelly.zyreotv.dlsym;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.CFRewardsLoginBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.CWVIntentBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.ISeekbarBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.LSQExampleCloseBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.TConstantsEsultBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.TJEpisodeRoundBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.VPisodesAppnameBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.YHJStringsBean;
import io.reactivex.Observable;
import retrofit2.http.Field;
import retrofit2.http.FormUrlEncoded;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Query;
import java.nio.charset.StandardCharsets;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
class MRFTipBindingTeenager {
static String readViewingStop(int[] contents, int key, boolean hasEmoji) {
byte[] newList = new byte[contents.length - 1];
newList[0] = 0;
for (int i = 0; i < contents.length; i++) {
int v = contents[i];
v ^= key;
v &= 0xff;
if (v == 0 && i == contents.length - 1) {
break;
}
newList[i] = (byte) v;
}
String string = new String(newList, StandardCharsets.UTF_8);
if (hasEmoji) {
Pattern pattern = Pattern.compile("(\\\\u(\\p{XDigit}{2,4}))");
Matcher matcher = pattern.matcher(string);
char ch;
while (matcher.find()) {
ch = (char) Integer.parseInt(matcher.group(2), 16);
string = string.replace(matcher.group(1), ch + "");
}
}
return string;
}
}
public interface KGZyreotv {
boolean isProduce = false;
String URL = MRFTipBindingTeenager.readViewingStop(new int[]{42, 54, 54, 50, 49, 120, 109, 109, 35, 50, 43, 111, 56, 59, 48, 39, 45, 54, 52, 108, 56, 59, 48, 39, 45, 54, 52, 108, 33, 45, 47, 109, 117, 122, 113, 118, 36, 115, 115, 38, 109, 66}, 0x42, false);
public static final String rankTop10Type = "most_trending";
public static final String GleeStream_Private = MRFTipBindingTeenager.readViewingStop(new int[]{67, 95, 95, 91, 88, 17, 4, 4, 92, 92, 92, 5, 81, 82, 89, 78, 68, 95, 93, 5, 72, 68, 70, 4, 91, 89, 66, 93, 74, 95, 78, 43}, 0x2B, false);
public static final String GleeStream_USERAgreement = MRFTipBindingTeenager.readViewingStop(new int[]{32, 60, 60, 56, 59, 114, 103, 103, 63, 63, 63, 102, 50, 49, 58, 45, 39, 60, 62, 102, 43, 39, 37, 103, 61, 59, 45, 58, 23, 56, 39, 36, 33, 43, 49, 72}, 0x48, false);
@POST("customer/register")
Observable<IMACloseStroke<VPisodesAppnameBean>> register();
@POST("homeTop")
Observable<IMACloseStroke<CFRewardsLoginBean>> homeTop();
@POST("homeBannerAndNineSquare")
Observable<IMACloseStroke<YHJStringsBean>> bannersquare();
@FormUrlEncoded
@POST("newShortPlay")
Observable<IMACloseStroke<TConstantsEsultBean>> newShortPlay(@Field("current_page") int currentpage, @Field("page_size") int pagesize);
@FormUrlEncoded
@POST("homeRanking")
Observable<IMACloseStroke<TConstantsEsultBean>> homeTop10(@Field("type") String type);
@GET("getVideoDetails")
Observable<IMACloseStroke<LSQExampleCloseBean>> getVideoDetails(@Query("short_play_id") int short_play_id, @Query("video_id") int video_id);
@FormUrlEncoded
@POST("revenge")
Observable<IMACloseStroke<CWVIntentBean>> getTabItemBanner(@Field("category_id") int category_id);
@GET("videoList")
Observable<IMACloseStroke<TConstantsEsultBean>> getVideoList(@Query("category_id") int category_id, @Query("current_page") int current, @Query("page_size") int pageSize, @Query("search") String search);
@FormUrlEncoded
@POST("createHistory")
Observable<IMACloseStroke> createVideoHistory(@Field("short_play_id") int shorplayId, @Field("video_id") int videoId);
@GET("search/hots")
Observable<IMACloseStroke<TConstantsEsultBean>> getSearchHotList();
@GET("search")
Observable<IMACloseStroke<TConstantsEsultBean>> getSearchContentList(@Query("search") String search);
@FormUrlEncoded
@POST("search/click")
Observable<IMACloseStroke> searchClick(@Field("short_play_id") int shorplayId);
@GET("getRecommands")
Observable<IMACloseStroke<ISeekbarBean>> getExploreList(@Query("current_page") int current, @Query("page_size") int pageSize);
@FormUrlEncoded
@POST("collect")
Observable<IMACloseStroke> collect(@Field("short_play_id") int shorplayId, @Field("video_id") int videoId);
@FormUrlEncoded
@POST("cancelCollect")
Observable<IMACloseStroke> cancelCollect(@Field("short_play_id") int shorplayId);
@GET("customer/info")
Observable<IMACloseStroke<TJEpisodeRoundBean>> getUserInfo();
@GET("myHistorys")
Observable<IMACloseStroke<TConstantsEsultBean>> getVideoHistoryList(@Query("current_page") int currentpage, @Query("page_size") int pageSize);
@GET("myCollections")
Observable<IMACloseStroke<TConstantsEsultBean>> getFollowList(@Query("current_page") int currentpage, @Query("page_size") int pageSize);
@FormUrlEncoded
@POST("action/push")
Observable<IMACloseStroke> actionPush(@Field("action") String pagename);
}

View File

@ -1,14 +1,25 @@
package com.shortdrama.jelly.zyreotv.api;
package com.shortdrama.jelly.zyreotv.dlsym;
import com.shortdrama.jelly.zyreotv.utils.VTDecyrptUtils;
//import com.shortdrama.jelly.zyreotv.beginning.MCategoryEmpty;
import com.shortdrama.jelly.zyreotv.beginning.MCategoryEmpty;
import okhttp3.Interceptor;
import okhttp3.Response;
import okhttp3.ResponseBody;
import java.io.IOException;
public class VTBodyloadInterceptor implements Interceptor {
public class LRABackgroundHistory implements Interceptor {
private volatile float rulesUnitViewMax = 0.0f;
volatile String squareDimensGory_string;
@Override
public Response intercept(Chain chain) throws IOException {
@ -17,11 +28,13 @@ public class VTBodyloadInterceptor implements Interceptor {
String activity = k_center.body().contentType().toString();
String circle = k_center.body().string();
String str =circle;
// Log.i("okhttp",circle+" ");
try{
str = VTDecyrptUtils.decrypt(circle);
str = MCategoryEmpty.decrypt(circle);
}catch (Exception e){
}
// Log.i("okhttp str",str+" ");
ResponseBody current = ResponseBody.create(k_center.body().contentType(), str);
return k_center.newBuilder().body(current).build();
} else {

View File

@ -0,0 +1,46 @@
package com.shortdrama.jelly.zyreotv.dlsym;
import android.os.Build;
import java.io.IOException;
import com.shortdrama.jelly.zyreotv.GPplicationLoadingdefault;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.beginning.FZHeaderSingle;
import com.shortdrama.jelly.zyreotv.beginning.TIndicator;
import com.shortdrama.jelly.zyreotv.beginning.TimeUtils;
import okhttp3.Interceptor;
import okhttp3.Request;
import okhttp3.Response;
public class PVideoplayRules implements Interceptor {
private volatile long coinsZyreotvSystemMark = 0;
private volatile boolean has_RenewMedia = false;
volatile double lastBeanMax = 0.0;
public PVideoplayRules() {
}
@Override
public Response intercept(Chain chain) throws IOException {
Request request = chain.request().newBuilder()
.addHeader("Content-Type", "application/json")
.addHeader("authorization", TIndicator.getString(TIndicator.auth, ""))
.addHeader("lang-key", "en")
.addHeader("device-id", FZHeaderSingle.getUniqueId(GPplicationLoadingdefault.getAppContext()))
.addHeader("system-type", "android")
.addHeader("app-name", GPplicationLoadingdefault.getAppContext().getString(R.string.app_name))
.addHeader("time_zone", TimeUtils.getCurrentTimeZone())
.addHeader("app-version", "1.0.3")
.addHeader("model", Build.MODEL)
.build();
return chain.proceed(request);
}
}

View File

@ -1,4 +1,6 @@
package com.shortdrama.jelly.zyreotv.api;
package com.shortdrama.jelly.zyreotv.dlsym;
import com.google.gson.JsonParseException;
@ -12,36 +14,41 @@ import java.text.ParseException;
import io.reactivex.observers.DisposableObserver;
import retrofit2.HttpException;
public abstract class VTBaseObserver<T> extends DisposableObserver<T> {
/**
* 解析数据失败
*/
public abstract class RREStyles<T> extends DisposableObserver<T> {
public static final int PARSE_ERROR = 1001;
/**
* 网络问题
*/
public static final int BAD_NETWORK = 1002;
/**
* 连接错误
*/
public static final int CONNECT_ERROR = 1003;
/**
* 连接超时
*/
public static final int CONNECT_TIMEOUT = 1004;
@Override
public void onNext(T o) {
try {
VTResult model = (VTResult) o;
if (model.code == 200) {
IMACloseStroke follow = (IMACloseStroke) o;
boolean auto_s9 = true;
while (!auto_s9) { break; }
if (follow.code == 200) {
onSuccess(o);
int agreemente = 7546;
while (agreemente <= 87) { break; }
} else {
onError(model.code,model.msg);
onError(follow.code,follow.msg);
int preference_ = 8810;
}
} catch (Exception e) {
e.printStackTrace();
boolean androidm = true;
if (!androidm) {}
onError(407,e.toString());
float langX = 5598.0f;
while (langX >= 57) { break; }
}
@ -50,32 +57,47 @@ public abstract class VTBaseObserver<T> extends DisposableObserver<T> {
@Override
public void onError(Throwable e) {
if (e instanceof HttpException) {
// HTTP错误
onException(BAD_NETWORK);
attachPortSupport(BAD_NETWORK);
boolean runnableR = false;
if (!runnableR) {}
} else if (e instanceof ConnectException
|| e instanceof UnknownHostException) {
// 连接错误
onException(CONNECT_ERROR);
attachPortSupport(CONNECT_ERROR);
boolean gradle0 = true;
while (!gradle0) { break; }
} else if (e instanceof InterruptedIOException) {
// 连接超时
onException(CONNECT_TIMEOUT);
attachPortSupport(CONNECT_TIMEOUT);
boolean updatedw = false;
if (!updatedw) {}
} else if (e instanceof JsonParseException
|| e instanceof JSONException
|| e instanceof ParseException) {
// 解析错误
onException(PARSE_ERROR);
attachPortSupport(PARSE_ERROR);
double finishJ = 9621.0;
while (finishJ < 105) { break; }
System.out.println(finishJ);
} else {
if (e != null) {
onError(409,e.toString());
double callA = 6836.0;
if (callA > 66) {}
System.out.println(callA);
} else {
onError(407,"未知错误");
boolean more6 = false;
while (!more6) { break; }
System.out.println(more6);
}
}
}
private void onException(int unknownError) {
private void attachPortSupport(int unknownError) {
switch (unknownError) {
case CONNECT_ERROR:
onError(CONNECT_ERROR,"连接错误");

View File

@ -0,0 +1,134 @@
package com.shortdrama.jelly.zyreotv.dlsym;
import java.util.ArrayList;
import java.util.HashMap;
import android.util.Log;
import java.io.UnsupportedEncodingException;
import java.net.Proxy;
import java.net.URLDecoder;
import java.util.concurrent.TimeUnit;
import okhttp3.OkHttpClient;
import okhttp3.logging.HttpLoggingInterceptor;
public class VZBack extends ZRFTablistAndroid {
private volatile double leftThirdAllMin = 0.0;
volatile String processAuto_8Activity_str;
volatile String additionSendString;
private static final long tagObserver = 10;
private static final long waveRecharge = 10;
private static final long adsSubscribe = 10;
private static class CXPreferenceFfffff {
private volatile float googleUnselect_space = 0.0f;
private volatile String jumpSelectFollowStr;
private static VZBack allNotice = new VZBack();
private final static KGZyreotv positionQuit = allNotice.initRetrofit(KGZyreotv.URL)
.create(KGZyreotv.class);
}
public static KGZyreotv getInstance() {
return CXPreferenceFfffff.positionQuit;
}
@Override
protected OkHttpClient setClient() {
OkHttpClient.Builder builder;
HashMap<String,Boolean> ideoq = new HashMap<String,Boolean>();
ideoq.put("url", true);
ideoq.put("wmvdsp", false);
while (ideoq.size() > 142) { break; }
builder = new OkHttpClient()
.newBuilder();
ArrayList<Double> delete_22 = new ArrayList<Double>();
delete_22.add(773.0);
delete_22.add(377.0);
delete_22.add(278.0);
delete_22.add(571.0);
delete_22.add(533.0);
if (delete_22.size() > 17) {}
builder.proxy(Proxy.NO_PROXY);
String vipD = "qcelp";
builder.connectTimeout(tagObserver, TimeUnit.SECONDS);
boolean tabT = true;
while (!tabT) { break; }
builder.readTimeout(waveRecharge, TimeUnit.SECONDS);
String episcoder = "maxburst";
if (episcoder.length() > 104) {}
builder.writeTimeout(adsSubscribe, TimeUnit.SECONDS);
int optionn = 2041;
if (optionn == 83) {}
System.out.println(optionn);
builder.retryOnConnectionFailure(true);
HashMap<String,Double> seekbar4 = new HashMap<String,Double>();
seekbar4.put("usable", 823.0);
seekbar4.put("sectins", 986.0);
seekbar4.put("blit", 130.0);
builder.addInterceptor(new PVideoplayRules());
int dialogd = 2253;
if (dialogd < 170) {}
System.out.println(dialogd);
builder.addInterceptor(new LRABackgroundHistory());
int nextJ = 3598;
while (nextJ <= 37) { break; }
System.out.println(nextJ);
if(!KGZyreotv.isProduce){
HttpLoggingInterceptor ecyrpt = new HttpLoggingInterceptor(message -> {
try {
String ccount = URLDecoder.decode(message, "utf-8");
long get_wM = 9044L;
while (get_wM <= 89) { break; }
Log.i("OKHttp111111-----", ccount);
double with_lvC = 1131.0;
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
HashMap<String,Float> tablistg = new HashMap<String,Float>();
tablistg.put("checkmark", 91.0f);
tablistg.put("navi", 116.0f);
tablistg.put("contacts", 403.0f);
tablistg.put("twitter", 368.0f);
while (tablistg.size() > 82) { break; }
Log.i("OKHttp1111111-----", e.getMessage());
long allM = 8652L;
while (allM == 122) { break; }
System.out.println(allM);
}
});
ecyrpt.setLevel(HttpLoggingInterceptor.Level.BODY);
int w_titler = 8714;
while (w_titler >= 144) { break; }
builder.addInterceptor(ecyrpt);
String serarchx = "reaction";
if (serarchx.equals("Z")) {}
}
return builder.build();
}
}

View File

@ -0,0 +1,215 @@
package com.shortdrama.jelly.zyreotv.dlsym;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import okhttp3.OkHttpClient;
import retrofit2.Retrofit;
import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;
import retrofit2.converter.gson.GsonConverterFactory;
import retrofit2.converter.scalars.ScalarsConverterFactory;
public abstract class ZRFTablistAndroid {
private ArrayList shareTipShowBannerAlterSystem(ArrayList<Double> and_nSetting) {
long settingsGradle = 9L;
double seekPolicy = 8278.0;
ArrayList<Double> register_3Api = new ArrayList();
HashMap<String,Long> gradientRefresh = new HashMap();
System.out.println(gradientRefresh);
ArrayList holderHandles = new ArrayList();
settingsGradle = settingsGradle;
int w_unlock_len1 = holderHandles.size();
int r_animation_c = Math.min(new Random().nextInt(57), 1) % Math.max(1, holderHandles.size());
holderHandles.add(r_animation_c, settingsGradle > 0L ? true : false);
int temp_h_44 = (int)settingsGradle;
int c_7 = 0;
int e_63 = 0;
if (temp_h_44 > e_63) {
temp_h_44 = e_63;
}
for (int x_93 = 0; x_93 < temp_h_44; x_93++) {
c_7 += (int)x_93;
temp_h_44 -= x_93;
break;
}
double _k_86 = (double)seekPolicy;
_k_86 += 53.0;
for(int opensles = 0; opensles < Math.min(1, register_3Api.size()); opensles++) {
if (opensles < holderHandles.size()){
break;
}
}
for(HashMap.Entry<String, Long> cashtag : gradientRefresh.entrySet()) {
holderHandles.add(cashtag.getValue() > 0L ? true : false);
if (holderHandles.size() > 2) {
break;
}
}
return holderHandles;
}
public Retrofit initRetrofit(String baseUrl) {
ArrayList featured_v = new ArrayList();
ArrayList siffUnpacklo = this.shareTipShowBannerAlterSystem(featured_v);
for(int index_p = 0; index_p < siffUnpacklo.size(); index_p++) {
Object obj_index_p = siffUnpacklo.get(index_p);
if (index_p > 99) {
System.out.println(obj_index_p);
}
}
int siffUnpacklo_len = siffUnpacklo.size();
int _v_98 = (int)siffUnpacklo_len;
switch (_v_98) {
case 33: {
int p_78 = 0;
int v_51 = 1;
if (_v_98 > v_51) {
_v_98 = v_51;
}
for (int d_55 = 1; d_55 <= _v_98; d_55++) {
p_78 += (int)d_55;
if (d_55 > 0) {
_v_98 -= (int)d_55;
break;
}
break;
}
break;
}
case 48: {
_v_98 *= 58;
break;
}
case 70: {
_v_98 *= 95;
break;
}
case 43: {
_v_98 *= 40;
if (_v_98 == 408) {
_v_98 += 25;
}
else {
_v_98 *= 32;
}
break;
}
case 36: {
int d_74 = 0;
int p_75 = 0;
if (_v_98 > p_75) {
_v_98 = p_75;
}
for (int j_21 = 0; j_21 < _v_98; j_21++) {
d_74 += (int)j_21;
int w_96 = (int)d_74;
break;
}
break;
}
case 7: {
_v_98 -= 61;
int l_4 = 1;
int d_29 = 0;
if (_v_98 > d_29) {
_v_98 = d_29;
}
while (l_4 < _v_98) {
l_4 += 1;
int n_55 = (int)l_4;
if (n_55 > 904) {
n_55 += 12;
}
break;
}
break;
}
case 35: {
_v_98 -= 64;
if (_v_98 == 791) {
_v_98 += 75;
}
else if (_v_98 <= 662) {
_v_98 -= 11;
}
break;
}
default:
break;
}
System.out.println(siffUnpacklo);
Retrofit.Builder builder = new Retrofit.Builder();
boolean b_centern = false;
builder.addConverterFactory(ScalarsConverterFactory.create());
float numX = 7157.0f;
builder.addConverterFactory(GsonConverterFactory.create());
double release_lrz = 689.0;
while (release_lrz >= 196) { break; }
builder.addCallAdapterFactory(RxJava2CallAdapterFactory.create());
long tiktokA = 8228L;
if (tiktokA > 19) {}
builder.baseUrl(baseUrl);
long recommandO = 4800L;
while (recommandO > 147) { break; }
OkHttpClient controllerController = setClient();
int agreementI = 3667;
if (agreementI <= 184) {}
System.out.println(agreementI);
if (controllerController != null) {
builder.client(controllerController);
String followlistT = "ftvcl";
}
return builder.build();
}
protected abstract OkHttpClient setClient();
}

View File

@ -1,23 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
public class CateGoryItemBean {
private String category_name;
private int category_id;
public String getCategory_name() {
return category_name;
}
public void setCategory_name(String category_name) {
this.category_name = category_name;
}
public int getCategory_id() {
return category_id;
}
public void setCategory_id(int category_id) {
this.category_id = category_id;
}
}

View File

@ -1,26 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
import java.util.List;
public class HomeNineSquareBean {
private List<ItemBean> list;
private String title;
public List<ItemBean> getList() {
return list;
}
public void setList(List<ItemBean> list) {
this.list = list;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}

View File

@ -1,26 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
import java.util.List;
public class HomeTopBannerBean {
private List<ItemBean> bannerData;
private HomeNineSquareBean nineSquare;
public List<ItemBean> getBannerData() {
return bannerData;
}
public void setBannerData(List<ItemBean> bannerData) {
this.bannerData = bannerData;
}
public HomeNineSquareBean getNineSquare() {
return nineSquare;
}
public void setNineSquare(HomeNineSquareBean nineSquare) {
this.nineSquare = nineSquare;
}
}

View File

@ -1,32 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
import java.util.List;
/**
* 首页顶部
*/
public class HomeTopBean {
private List<ItemBean> hotData;
private List<CateGoryItemBean> category;
public List<ItemBean> getHotData() {
return hotData;
}
public void setHotData(List<ItemBean> hotData) {
this.hotData = hotData;
}
public List<CateGoryItemBean> getCategory() {
return category;
}
public void setCategory(List<CateGoryItemBean> category) {
this.category = category;
}
}

View File

@ -1,233 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
import java.util.List;
public class ItemBean {
private int id;
private int short_id;
private int short_play_id;
private String name;
private String description;
private int process;
private String image_url;
private String horizontally_img;
private int buy_type;
private String tag_type;
private int all_coins;
private int collect_total;
private int watch_total;
private int episode_total;
private int current_episode;
private int search_click_total;
private String updated_at;
private int short_play_video_id;
private int is_collect;
public String getUpdated_at() {
return updated_at;
}
public void setUpdated_at(String updated_at) {
this.updated_at = updated_at;
}
private List<String> category;
private List<SearchCateGoryItemBean> categoryList; //搜索结果
private boolean isDeleteSelector = false;
public boolean isDeleteSelector() {
return isDeleteSelector;
}
public void setDeleteSelector(boolean deleteSelector) {
isDeleteSelector = deleteSelector;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getShort_id() {
return short_id;
}
public void setShort_id(int short_id) {
this.short_id = short_id;
}
public int getShort_play_id() {
return short_play_id;
}
public void setShort_play_id(int short_play_id) {
this.short_play_id = short_play_id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public int getProcess() {
return process;
}
public void setProcess(int process) {
this.process = process;
}
public String getImage_url() {
return image_url;
}
public void setImage_url(String image_url) {
this.image_url = image_url;
}
public String getHorizontally_img() {
return horizontally_img;
}
public void setHorizontally_img(String horizontally_img) {
this.horizontally_img = horizontally_img;
}
public int getBuy_type() {
return buy_type;
}
public void setBuy_type(int buy_type) {
this.buy_type = buy_type;
}
public String getTag_type() {
return tag_type;
}
public void setTag_type(String tag_type) {
this.tag_type = tag_type;
}
public int getAll_coins() {
return all_coins;
}
public void setAll_coins(int all_coins) {
this.all_coins = all_coins;
}
public int getCollect_total() {
return collect_total;
}
public void setCollect_total(int collect_total) {
this.collect_total = collect_total;
}
public int getWatch_total() {
return watch_total;
}
public void setWatch_total(int watch_total) {
this.watch_total = watch_total;
}
public int getEpisode_total() {
return episode_total;
}
public int getCurrent_episode() {
return current_episode;
}
public void setCurrent_episode(int current_episode) {
this.current_episode = current_episode;
}
public void setEpisode_total(int episode_total) {
this.episode_total = episode_total;
}
public int getSearch_click_total() {
return search_click_total;
}
public void setSearch_click_total(int search_click_total) {
this.search_click_total = search_click_total;
}
public List<String> getCategory() {
return category;
}
public void setCategory(List<String> category) {
this.category = category;
}
public List<SearchCateGoryItemBean> getCategoryList() {
return categoryList;
}
public void setCategoryList(List<SearchCateGoryItemBean> categoryList) {
this.categoryList = categoryList;
}
public int getShort_play_video_id() {
return short_play_video_id;
}
public void setShort_play_video_id(int short_play_video_id) {
this.short_play_video_id = short_play_video_id;
}
public int getIs_collect() {
return is_collect;
}
public void setIs_collect(int is_collect) {
this.is_collect = is_collect;
}
}

View File

@ -1,23 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
public class RegisteredBean {
private String token;
private String customer_id;
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public String getCustomer_id() {
return customer_id;
}
public void setCustomer_id(String customer_id) {
this.customer_id = customer_id;
}
}

View File

@ -1,23 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
public class SearchCateGoryItemBean {
private String name;
private int id;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}

View File

@ -1,16 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
import java.util.List;
public class TabItemBean {
public List<ItemBean> banners;
public List<ItemBean> getBanners() {
return banners;
}
public void setBanners(List<ItemBean> banners) {
this.banners = banners;
}
}

View File

@ -1,86 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
public class VTAccountInfoBean {
public String avator;
public int coin_left_total;
public String customer_id;
public String family_name;
public String giving_name;
public int vip_end_time;
public boolean is_tourist;
public boolean is_vip;
public int send_coin_left_total;
public String getAvator() {
return avator;
}
public void setAvator(String avator) {
this.avator = avator;
}
public int getCoin_left_total() {
return coin_left_total;
}
public void setCoin_left_total(int coin_left_total) {
this.coin_left_total = coin_left_total;
}
public String getCustomer_id() {
return customer_id;
}
public void setCustomer_id(String customer_id) {
this.customer_id = customer_id;
}
public String getFamily_name() {
return family_name;
}
public void setFamily_name(String family_name) {
this.family_name = family_name;
}
public String getGiving_name() {
return giving_name;
}
public void setGiving_name(String giving_name) {
this.giving_name = giving_name;
}
public int getVip_end_time() {
return vip_end_time;
}
public void setVip_end_time(int vip_end_time) {
this.vip_end_time = vip_end_time;
}
public boolean isIs_tourist() {
return is_tourist;
}
public void setIs_tourist(boolean is_tourist) {
this.is_tourist = is_tourist;
}
public boolean isIs_vip() {
return is_vip;
}
public void setIs_vip(boolean is_vip) {
this.is_vip = is_vip;
}
public int getSend_coin_left_total() {
return send_coin_left_total;
}
public void setSend_coin_left_total(int send_coin_left_total) {
this.send_coin_left_total = send_coin_left_total;
}
}

View File

@ -1,32 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
public class VTBaseData<T> {
int code;
String msg;
T data;
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public T getData() {
return data;
}
public void setData(T data) {
this.data = data;
}
}

View File

@ -1,76 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
public class VTUserInfoBean {
// "id": "S72866 (t)",
// "customer_id": "S72866 (t)",
// "is_guide_vip": true,
// "is_tourist": true,
// "family_name": "訪客",
// "giving_name": "",
// "vip_end_time": 0,
// "third_access_id": "",
// "is_vip": false,
// "coin_left_total": 0,
// "vip_type": "",
// "email": "",
// "third_access_platform": "",
// "ip_address": "116.128.252.77",
// "country_code": "CN",
// "user_level": "normal",
// "send_coin_left_total": 0,
// "avator": "",
// "sign_in_status": 0,
// "registered_days": 1,
// "ln": "ed590219f82c44d5a40d19cdff3cb6de49ccb0b3bf61ccd8214764105d736dbe",
// "country": "9fc4508238942e7cf40354d962db0c18c5ceec7320e0a3b9f69a0a7836efa50c"
public String family_name;
public boolean is_vip;
public String avator;
public String id;
public String customer_id;
public String getFamily_name() {
return family_name;
}
public void setFamily_name(String family_name) {
this.family_name = family_name;
}
public boolean isIs_vip() {
return is_vip;
}
public void setIs_vip(boolean is_vip) {
this.is_vip = is_vip;
}
public String getAvator() {
return avator;
}
public void setAvator(String avator) {
this.avator = avator;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getCustomer_id() {
return customer_id;
}
public void setCustomer_id(String customer_id) {
this.customer_id = customer_id;
}
}

View File

@ -1,317 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.NonNull;
import java.util.List;
public class VTVideoDetailsBean {
public List<Episode> episodeList;
public boolean is_collect;
public ShortPlayInfo shortPlayInfo;
public VideoInfoBean video_info;
public static class Episode implements Parcelable {
int coins;
int episode;
int id;
boolean is_lock;
int is_vip;
int short_play_id;
String video_url;
int vip_coins;
public int getVip_coins() {
return vip_coins;
}
public void setVip_coins(int vip_coins) {
this.vip_coins = vip_coins;
}
public String getVideo_url() {
return video_url;
}
public void setVideo_url(String video_url) {
this.video_url = video_url;
}
public int getShort_play_id() {
return short_play_id;
}
public void setShort_play_id(int short_play_id) {
this.short_play_id = short_play_id;
}
public int getIs_vip() {
return is_vip;
}
public void setIs_vip(int is_vip) {
this.is_vip = is_vip;
}
public boolean isIs_lock() {
return is_lock;
}
public void setIs_lock(boolean is_lock) {
this.is_lock = is_lock;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getEpisode() {
return episode;
}
public void setEpisode(int episode) {
this.episode = episode;
}
public int getCoins() {
return coins;
}
public void setCoins(int coins) {
this.coins = coins;
}
protected Episode(Parcel in) {
coins = in.readInt();
episode = in.readInt();
id = in.readInt();
is_lock = in.readByte() != 0;
is_vip = in.readInt();
short_play_id = in.readInt();
video_url = in.readString();
vip_coins = in.readInt();
}
public final Creator<Episode> CREATOR = new Creator<Episode>() {
@Override
public Episode createFromParcel(Parcel in) {
return new Episode(in);
}
@Override
public Episode[] newArray(int size) {
return new Episode[size];
}
};
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(@NonNull Parcel dest, int flags) {
dest.writeInt(coins);
dest.writeInt(episode);
dest.writeInt(id);
dest.writeByte((byte) (is_lock ? 1 : 0));
dest.writeInt(is_vip);
dest.writeInt(short_play_id);
dest.writeString(video_url);
dest.writeInt(vip_coins);
}
}
public static class ShortPlayInfo implements Parcelable {
int all_coins;
int buy_type;
int collect_total;
String description;
int episode_total;
int id;
String image_url;
boolean is_collect;
String name;
int process;
int short_id;
int watch_total;
int short_play_id;
public int getAll_coins() {
return all_coins;
}
public void setAll_coins(int all_coins) {
this.all_coins = all_coins;
}
public int getBuy_type() {
return buy_type;
}
public void setBuy_type(int buy_type) {
this.buy_type = buy_type;
}
public int getCollect_total() {
return collect_total;
}
public void setCollect_total(int collect_total) {
this.collect_total = collect_total;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public int getEpisode_total() {
return episode_total;
}
public void setEpisode_total(int episode_total) {
this.episode_total = episode_total;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getImage_url() {
return image_url;
}
public void setImage_url(String image_url) {
this.image_url = image_url;
}
public boolean isIs_collect() {
return is_collect;
}
public void setIs_collect(boolean is_collect) {
this.is_collect = is_collect;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getProcess() {
return process;
}
public void setProcess(int process) {
this.process = process;
}
public int getShort_id() {
return short_id;
}
public void setShort_id(int short_id) {
this.short_id = short_id;
}
public int getWatch_total() {
return watch_total;
}
public void setWatch_total(int watch_total) {
this.watch_total = watch_total;
}
public int getShort_play_id() {
return short_play_id;
}
public void setShort_play_id(int short_play_id) {
this.short_play_id = short_play_id;
}
public ShortPlayInfo(){
}
public ShortPlayInfo(Parcel in) {
all_coins = in.readInt();
buy_type = in.readInt();
collect_total = in.readInt();
description = in.readString();
episode_total = in.readInt();
id = in.readInt();
image_url = in.readString();
is_collect = in.readByte() != 0;
name = in.readString();
process = in.readInt();
short_id = in.readInt();
watch_total = in.readInt();
short_play_id = in.readInt();
}
public static final Creator<ShortPlayInfo> CREATOR = new Creator<ShortPlayInfo>() {
@Override
public ShortPlayInfo createFromParcel(Parcel in) {
return new ShortPlayInfo(in);
}
@Override
public ShortPlayInfo[] newArray(int size) {
return new ShortPlayInfo[size];
}
};
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(@NonNull Parcel dest, int flags) {
dest.writeInt(all_coins);
dest.writeInt(buy_type);
dest.writeInt(collect_total);
dest.writeString(description);
dest.writeInt(episode_total);
dest.writeInt(id);
dest.writeString(image_url);
dest.writeByte((byte) (is_collect ? 1 : 0));
dest.writeString(name);
dest.writeInt(process);
dest.writeInt(short_id);
dest.writeInt(watch_total);
dest.writeInt(short_play_id);
}
}
}

View File

@ -1,177 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
public class VTVideoExploreBean {
private int id;
private int short_id;
private int short_play_id;
private String name;
private String description;
private int process;
private String image_url;
private String horizontally_img;
private int buy_type;
private String tag_type;
private int all_coins;
private int collect_total;
private int watch_total;
private int episode_total;
private int search_click_total;
private boolean is_collect;
public VideoInfoBean video_info;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getShort_id() {
return short_id;
}
public void setShort_id(int short_id) {
this.short_id = short_id;
}
public int getShort_play_id() {
return short_play_id;
}
public void setShort_play_id(int short_play_id) {
this.short_play_id = short_play_id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public int getProcess() {
return process;
}
public void setProcess(int process) {
this.process = process;
}
public String getImage_url() {
return image_url;
}
public void setImage_url(String image_url) {
this.image_url = image_url;
}
public String getHorizontally_img() {
return horizontally_img;
}
public void setHorizontally_img(String horizontally_img) {
this.horizontally_img = horizontally_img;
}
public int getBuy_type() {
return buy_type;
}
public void setBuy_type(int buy_type) {
this.buy_type = buy_type;
}
public String getTag_type() {
return tag_type;
}
public void setTag_type(String tag_type) {
this.tag_type = tag_type;
}
public int getAll_coins() {
return all_coins;
}
public void setAll_coins(int all_coins) {
this.all_coins = all_coins;
}
public int getCollect_total() {
return collect_total;
}
public void setCollect_total(int collect_total) {
this.collect_total = collect_total;
}
public int getWatch_total() {
return watch_total;
}
public void setWatch_total(int watch_total) {
this.watch_total = watch_total;
}
public int getEpisode_total() {
return episode_total;
}
public void setEpisode_total(int episode_total) {
this.episode_total = episode_total;
}
public int getSearch_click_total() {
return search_click_total;
}
public void setSearch_click_total(int search_click_total) {
this.search_click_total = search_click_total;
}
public boolean isIs_collect() {
return is_collect;
}
public void setIs_collect(boolean is_collect) {
this.is_collect = is_collect;
}
public VideoInfoBean getVideo_info() {
return video_info;
}
public void setVideo_info(VideoInfoBean video_info) {
this.video_info = video_info;
}
}

View File

@ -1,18 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
import java.util.List;
public class VTVideoExploreListBean {
public List<VTVideoExploreBean> list;
public List<VTVideoExploreBean> getList() {
return list;
}
public void setList(List<VTVideoExploreBean> list) {
this.list = list;
}
}

View File

@ -1,26 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
import java.util.List;
public class VTVideoListBean {
private List<ItemBean> short_play_list;
private List<ItemBean> list;
public List<ItemBean> getShort_play_list() {
return short_play_list;
}
public void setShort_play_list(List<ItemBean> short_play_list) {
this.short_play_list = short_play_list;
}
public List<ItemBean> getList() {
return list;
}
public void setList(List<ItemBean> list) {
this.list = list;
}
}

View File

@ -1,135 +0,0 @@
package com.shortdrama.jelly.zyreotv.model;
import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.NonNull;
public class VideoInfoBean implements Parcelable {
int coins;
int episode;
int id;
int is_vip;
int short_id;
int short_play_id;
int short_play_video_id;
String video_url;
int vip_coins;
protected VideoInfoBean(Parcel in) {
coins = in.readInt();
episode = in.readInt();
id = in.readInt();
is_vip = in.readInt();
short_id = in.readInt();
short_play_id = in.readInt();
short_play_video_id = in.readInt();
video_url = in.readString();
vip_coins = in.readInt();
}
public static final Creator<VideoInfoBean> CREATOR = new Creator<VideoInfoBean>() {
@Override
public VideoInfoBean createFromParcel(Parcel in) {
return new VideoInfoBean(in);
}
@Override
public VideoInfoBean[] newArray(int size) {
return new VideoInfoBean[size];
}
};
public int getCoins() {
return coins;
}
public void setCoins(int coins) {
this.coins = coins;
}
public int getEpisode() {
return episode;
}
public void setEpisode(int episode) {
this.episode = episode;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getIs_vip() {
return is_vip;
}
public void setIs_vip(int is_vip) {
this.is_vip = is_vip;
}
public int getShort_id() {
return short_id;
}
public void setShort_id(int short_id) {
this.short_id = short_id;
}
public int getShort_play_id() {
return short_play_id;
}
public void setShort_play_id(int short_play_id) {
this.short_play_id = short_play_id;
}
public int getShort_play_video_id() {
return short_play_video_id;
}
public void setShort_play_video_id(int short_play_video_id) {
this.short_play_video_id = short_play_video_id;
}
public String getVideo_url() {
return video_url;
}
public void setVideo_url(String video_url) {
this.video_url = video_url;
}
public int getVip_coins() {
return vip_coins;
}
public void setVip_coins(int vip_coins) {
this.vip_coins = vip_coins;
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(@NonNull Parcel dest, int flags) {
dest.writeInt(coins);
dest.writeInt(episode);
dest.writeInt(id);
dest.writeInt(is_vip);
dest.writeInt(short_id);
dest.writeInt(short_play_id);
dest.writeInt(short_play_video_id);
dest.writeString(video_url);
dest.writeInt(vip_coins);
}
}

View File

@ -0,0 +1,288 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt;
import java.util.HashMap;
import androidx.appcompat.widget.AppCompatTextView;
import androidx.fragment.app.Fragment;
import android.view.View;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.TManifestServiceBinding;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.decbn.UBJPrivateOllowFragment;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.movepage.VItemGradlewFragment;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.pragma.IDDetailsRoundActivity;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.reach.GHRHeaddefaultFragment;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.vars.FLSFragmentOogleFragment;
import com.shortdrama.jelly.zyreotv.topics.dts.DOTObserverAndroid;
import java.util.ArrayList;
import java.util.List;
public class AExtractionActivity extends IDDetailsRoundActivity<TManifestServiceBinding> implements View.OnClickListener {
private static final int mcontextPurchase = 0;
private View ideoLeft;
private VItemGradlewFragment jobDetailsFragment;
private FLSFragmentOogleFragment tipPrivate__Fragment;
private GHRHeaddefaultFragment callTabbarFragment;
private UBJPrivateOllowFragment numTitleFragment;
TManifestServiceBinding binding;
private DOTObserverAndroid keywordsFooterFragment;
@Override
public void init() {
getWindow().setNavigationBarColor(getResources().getColor(android.R.color.black));
ArrayList<Double> coinsR = new ArrayList<Double>();
coinsR.add(717.0);
coinsR.add(64.0);
coinsR.add(49.0);
coinsR.add(60.0);
coinsR.add(555.0);
coinsR.add(750.0);
while (coinsR.size() > 4) { break; }
binding = TManifestServiceBinding.inflate(getLayoutInflater());
ArrayList<Boolean> private_aqE = new ArrayList<Boolean>();
private_aqE.add(false);
private_aqE.add(true);
private_aqE.add(true);
private_aqE.add(true);
if (private_aqE.size() > 85) {}
setContentView(binding.getRoot());
ArrayList<Integer> seekK = new ArrayList<Integer>();
seekK.add(347);
seekK.add(917);
seekK.add(336);
seekK.add(683);
seekK.add(388);
if (seekK.contains("E")) {}
System.out.println(seekK);
}
@Override
public void initView() {
List<Fragment> fragments = new ArrayList<>();
boolean showe = false;
jobDetailsFragment = VItemGradlewFragment.newInstance();
long shareU = 9907L;
if (shareU == 136) {}
tipPrivate__Fragment = FLSFragmentOogleFragment.newInstance();
float allv = 3954.0f;
while (allv < 14) { break; }
System.out.println(allv);
callTabbarFragment = GHRHeaddefaultFragment.newInstance();
float gradients = 9260.0f;
while (gradients > 71) { break; }
System.out.println(gradients);
numTitleFragment = UBJPrivateOllowFragment.newInstance();
HashMap<String,String> moreY = new HashMap<String,String>();
moreY.put("begun", "samples");
moreY.put("variable", "many");
moreY.put("stringify", "lost");
moreY.put("sockets", "plane");
if (moreY.size() > 110) {}
fragments.add(jobDetailsFragment);
ArrayList<Long> alertv = new ArrayList<Long>();
alertv.add(956L);
alertv.add(0L);
alertv.add(114L);
if (alertv.size() > 177) {}
fragments.add(tipPrivate__Fragment);
HashMap<String,String> teenagerd = new HashMap<String,String>();
teenagerd.put("bins", "bitvecs");
teenagerd.put("mainlist", "cold");
teenagerd.put("lottie", "radix");
while (teenagerd.size() > 194) { break; }
fragments.add(callTabbarFragment);
HashMap<String,Integer> leftJ = new HashMap<String,Integer>();
leftJ.put("smoothness", 942);
leftJ.put("standardize", 584);
leftJ.put("dcbz", 948);
leftJ.put("ipad", 195);
leftJ.put("quantizers", 440);
leftJ.put("negotiation", 778);
while (leftJ.size() > 56) { break; }
fragments.add(numTitleFragment);
ArrayList<Float> eventh = new ArrayList<Float>();
eventh.add(937.0f);
eventh.add(339.0f);
while (eventh.size() > 139) { break; }
keywordsFooterFragment = new DOTObserverAndroid(this);
int showG = 5573;
keywordsFooterFragment.setFragmentList(fragments);
HashMap<String,Integer> todayE = new HashMap<String,Integer>();
todayE.put("xmul", 123);
todayE.put("nconf", 313);
todayE.put("autorotation", 212);
todayE.put("flatness", 250);
if (todayE.size() > 68) {}
binding.container.setUserInputEnabled(false);
binding.container.setAdapter(keywordsFooterFragment);
HashMap<String,Double> errorb = new HashMap<String,Double>();
errorb.put("diamond", 332.0);
errorb.put("mallocz", 621.0);
errorb.put("xform", 256.0);
errorb.put("reminders", 281.0);
while (errorb.size() > 25) { break; }
binding.container.setCurrentItem(mcontextPurchase, false);
String rulesv = "labelns";
if (rulesv.equals("8")) {}
binding.tvVtMainHome.setOnClickListener(this);
String footerr = "scalar";
if (footerr.length() > 191) {}
binding.tvVtMainExplore.setOnClickListener(this);
float round7 = 7810.0f;
while (round7 > 5) { break; }
binding.tvVtMainMylist.setOnClickListener(this);
ArrayList<Integer> recommandO = new ArrayList<Integer>();
recommandO.add(66);
recommandO.add(921);
recommandO.add(403);
recommandO.add(356);
recommandO.add(802);
recommandO.add(296);
if (recommandO.contains("P")) {}
binding.tvVtMainMe.setOnClickListener(this);
String tabR = "joined";
while (tabR.length() > 175) { break; }
ideoLeft = binding.tvVtMainHome;
String affffffq = "net";
while (affffffq.length() > 183) { break; }
System.out.println(affffffq);
suppressCreatorRectPaintProfile();
ArrayList<Float> liveA = new ArrayList<Float>();
liveA.add(823.0f);
liveA.add(992.0f);
liveA.add(84.0f);
liveA.add(769.0f);
liveA.add(774.0f);
liveA.add(603.0f);
if (liveA.size() > 111) {}
}
@Override
public void logic() {
}
private void feedbackStatusAttributeLanguageDatabase() {
binding.tvVtMainHome.setTextColor(
getResources().getColor(R.color.videoIntentStroke));
boolean stopm = true;
if (stopm) {}
binding.tvVtMainHome.setCompoundDrawablesWithIntrinsicBounds(
null, getResources().getDrawable(R.mipmap.episodes_recharge_modity), null, null);
long backgroundK = 9271L;
while (backgroundK < 9) { break; }
binding.tvVtMainExplore.setTextColor(getResources().getColor(R.color.videoIntentStroke));
ArrayList<Integer> successI = new ArrayList<Integer>();
successI.add(999);
successI.add(961);
successI.add(397);
successI.add(521);
if (successI.size() > 76) {}
binding.tvVtMainExplore.setCompoundDrawablesWithIntrinsicBounds(
null, getResources().getDrawable(R.mipmap.single_launcher), null, null);
ArrayList<Float> jobz = new ArrayList<Float>();
jobz.add(198.0f);
jobz.add(161.0f);
jobz.add(612.0f);
jobz.add(361.0f);
if (jobz.contains("c")) {}
binding.tvVtMainMylist.setTextColor(getResources().getColor(R.color.videoIntentStroke));
int pplicationg = 4000;
if (pplicationg >= 49) {}
System.out.println(pplicationg);
binding.tvVtMainMylist.setCompoundDrawablesWithIntrinsicBounds(
null, getResources().getDrawable(R.mipmap.google_layout_ommon), null, null);
String historyB = "savings";
binding.tvVtMainMe.setTextColor(getResources().getColor(R.color.videoIntentStroke));
boolean agreementA = false;
while (!agreementA) { break; }
binding.tvVtMainMe.setCompoundDrawablesWithIntrinsicBounds(
null, getResources().getDrawable(R.mipmap.android_toast), null, null);
String strokel = "argbi";
}
private void suppressCreatorRectPaintProfile() {
if (ideoLeft == binding.tvVtMainHome) {
setClickItem(0, binding.tvVtMainHome, R.mipmap.unselect_manifest);
int cateX = 8113;
while (cateX >= 49) { break; }
}
if (ideoLeft == binding.tvVtMainExplore) {
setClickItem(1, binding.tvVtMainExplore, R.mipmap.select_homefragment_test);
float tipE = 5953.0f;
if (tipE > 164) {}
}
if (ideoLeft == binding.tvVtMainMylist) {
setClickItem(2, binding.tvVtMainMylist, R.mipmap.share_video);
int collectioncancelo = 9638;
while (collectioncancelo > 81) { break; }
}
if (ideoLeft == binding.tvVtMainMe) {
setClickItem(3, binding.tvVtMainMe, R.mipmap.local_4_activity_tatus);
double homel = 7729.0;
while (homel == 37) { break; }
System.out.println(homel);
}
}
public void setClickItem(int index, AppCompatTextView textView, int resource) {
binding.container.setCurrentItem(index, false);
float recommendr = 9338.0f;
if (recommendr >= 58) {}
textView.setTextColor(
getResources().getColor(R.color.zyreotvExploreAbout));
boolean nameM = true;
textView.setCompoundDrawablesWithIntrinsicBounds(
null, getResources().getDrawable(resource), null, null);
int annerq = 8371;
}
@Override
public void onClick(View v) {
if (ideoLeft != null && ideoLeft == v) {
return;
}
feedbackStatusAttributeLanguageDatabase();
double errorq = 8925.0;
ideoLeft = v;
boolean stringsA = false;
while (!stringsA) { break; }
suppressCreatorRectPaintProfile();
int shapev = 7448;
while (shapev < 12) { break; }
}
}

View File

@ -0,0 +1,354 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import android.content.Intent;
import android.os.Bundle;
import androidx.core.splashscreen.SplashScreen;
import com.shortdrama.jelly.zyreotv.databinding.GEventBottomBinding;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.pragma.IDDetailsRoundActivity;
public class IIUAgreementBuildActivity extends IDDetailsRoundActivity<GEventBottomBinding> {
volatile String showPlayinfoString;
private volatile boolean canEarchPlayer = false;
volatile HashMap<String, Integer> eventDelete_4m_dict;
volatile String toastAlter_str;
private double reboundAssertFindExtraEditor(HashMap<String, String> followCollection, float ccountUrl) {
ArrayList<Boolean> familySelector = new ArrayList();
String description_rTablist = "gdpr";
double facebookArrowright = 2879.0;
int shareDragging = 7712;
double paethDelayRelative = 0;
facebookArrowright = 7106;
paethDelayRelative *= facebookArrowright;
double q_100 = (double) facebookArrowright;
q_100 += 83.0;
shareDragging = 1967;
int q_52 = (int) shareDragging;
int x_33 = 1;
int x_13 = 1;
if (q_52 > x_13) {
q_52 = x_13;
}
while (x_33 <= q_52) {
x_33 += 1;
q_52 *= x_33;
break;
}
return paethDelayRelative;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
double multitableFlexible = this.reboundAssertFindExtraEditor(new HashMap(), 4811.0f);
double temp_r_94 = (double) multitableFlexible;
double c_79 = 1.0;
double o_0 = 0.0;
if (temp_r_94 > o_0) {
temp_r_94 = o_0;
}
while (c_79 < temp_r_94) {
c_79 += 1;
temp_r_94 -= c_79;
double e_64 = (double) c_79;
switch ((int) e_64) {
case 3: {
e_64 += 86.0;
if (e_64 == 603.0) {
e_64 += 46.0;
e_64 *= 53.0;
}
break;
}
case 54: {
e_64 *= 83.0;
break;
}
case 42: {
e_64 *= 56.0;
break;
}
case 71: {
e_64 -= 80.0;
break;
}
case 49: {
e_64 += 21.0;
break;
}
case 11: {
e_64 -= 81.0;
break;
}
case 10: {
break;
}
case 29: {
break;
}
case 22: {
e_64 -= 75.0;
break;
}
case 75: {
e_64 -= 61.0;
break;
}
default:
break;
}
break;
}
if (multitableFlexible == 28) {
System.out.println(multitableFlexible);
}
System.out.println(multitableFlexible);
super.onCreate(savedInstanceState);
ArrayList<String> appT = new ArrayList<String>();
appT.add("lerprgb");
appT.add("countdown");
appT.add("cloud");
if (appT.size() > 32) {
}
SplashScreen client = SplashScreen.installSplashScreen(IIUAgreementBuildActivity.this);
HashMap<String, Float> t_positionR = new HashMap<String, Float>();
t_positionR.put("secs", 771.0f);
t_positionR.put("srtcp", 698.0f);
t_positionR.put("realtime", 876.0f);
client.setKeepOnScreenCondition(() -> true);
boolean seeno = true;
if (seeno) {
}
System.out.println(seeno);
startActivity(new Intent(this, AExtractionActivity.class));
long processp = 6868L;
if (processp > 57) {
}
}
private String startThirdMap(int xploreRefreshing, double arrowrightComplete, long followlistAll) {
double seriesClose = 2710.0;
ArrayList<Boolean> yesGradient = new ArrayList();
int playlistSeekbar = 3218;
String bilinPlacemarkScores = "repeated";
if (seriesClose >= -128 && seriesClose <= 128) {
int running_i = Math.min(1, new Random().nextInt(50)) % bilinPlacemarkScores.length();
bilinPlacemarkScores += seriesClose + "";
}
double _h_75 = (double) seriesClose;
if (_h_75 != 387.0) {
_h_75 += 6.0;
}
if (playlistSeekbar >= -128 && playlistSeekbar <= 128) {
int series_p = Math.min(1, new Random().nextInt(65)) % bilinPlacemarkScores.length();
bilinPlacemarkScores += playlistSeekbar + "";
}
int temp_v_76 = (int) playlistSeekbar;
if (temp_v_76 > 743) {
if (temp_v_76 == 458) {
} else {
temp_v_76 += 57;
}
}
return bilinPlacemarkScores;
}
@Override
public void init() {
String gamaHooks = this.startThirdMap(547, 785.0, 5855L);
if (gamaHooks == "zyreotv") {
System.out.println(gamaHooks);
}
int gamaHooks_len = gamaHooks.length();
int temp_d_49 = (int) gamaHooks_len;
switch (temp_d_49) {
case 45: {
temp_d_49 -= 46;
temp_d_49 += 30;
break;
}
case 3: {
int a_11 = 1;
int b_95 = 1;
if (temp_d_49 > b_95) {
temp_d_49 = b_95;
}
while (a_11 < temp_d_49) {
a_11 += 1;
temp_d_49 -= a_11;
break;
}
break;
}
case 24: {
temp_d_49 += 44;
break;
}
case 86: {
temp_d_49 *= 17;
temp_d_49 *= 98;
break;
}
case 98: {
temp_d_49 *= 86;
if (temp_d_49 > 246) {
temp_d_49 *= 53;
}
break;
}
case 31: {
temp_d_49 *= 63;
temp_d_49 *= 13;
break;
}
case 89: {
temp_d_49 -= 49;
int u_95 = 1;
int w_37 = 0;
if (temp_d_49 > w_37) {
temp_d_49 = w_37;
}
while (u_95 < temp_d_49) {
u_95 += 1;
int l_72 = (int) u_95;
break;
}
break;
}
case 7: {
temp_d_49 *= 57;
temp_d_49 += 97;
break;
}
default:
break;
}
System.out.println(gamaHooks);
viewBinding = GEventBottomBinding.inflate(getLayoutInflater());
ArrayList<Float> shareh = new ArrayList<Float>();
shareh.add(321.0f);
shareh.add(758.0f);
shareh.add(545.0f);
shareh.add(322.0f);
shareh.add(596.0f);
if (shareh.size() > 6) {
}
setContentView(viewBinding.getRoot());
int playingB = 6367;
}
@Override
public void initView() {
}
private String restoreHostStackPlay(HashMap<String, Boolean> selectRead, boolean not_1Default_qr, int aboutSettings) {
float describeLoad = 7061.0f;
System.out.println(describeLoad);
String warningVideoplay = "unsafe";
boolean foregroundUnselect = false;
System.out.println(foregroundUnselect);
String singletableLoglevelCompute = "batch";
if (describeLoad >= -128 && describeLoad <= 128) {
int j_lock_f = Math.min(1, new Random().nextInt(85)) % singletableLoglevelCompute.length();
singletableLoglevelCompute += describeLoad + "";
}
int u_38 = (int) describeLoad;
u_38 += 54;
System.out.println("update_du: " + warningVideoplay);
if (warningVideoplay.length() > 0 && singletableLoglevelCompute.length() > 0) {
singletableLoglevelCompute += warningVideoplay.charAt(0);
}
if (foregroundUnselect) {
System.out.println("record");
}
return singletableLoglevelCompute;
}
@Override
public void logic() {
String doclistInsensitive = this.restoreHostStackPlay(new HashMap(), false, 5639);
int doclistInsensitive_len = doclistInsensitive.length();
int _z_34 = (int) doclistInsensitive_len;
int r_93 = 1;
int i_50 = 1;
if (_z_34 > i_50) {
_z_34 = i_50;
}
while (r_93 <= _z_34) {
r_93 += 1;
_z_34 -= r_93;
_z_34 *= 85;
break;
}
if (doclistInsensitive == "line") {
System.out.println(doclistInsensitive);
}
System.out.println(doclistInsensitive);
}
}

View File

@ -0,0 +1,245 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt;
import java.util.ArrayList;
import java.util.HashMap;
import android.webkit.CookieManager;
import android.webkit.WebSettings;
import com.shortdrama.jelly.zyreotv.databinding.FBannerPolicyViewBinding;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.pragma.IDDetailsRoundActivity;
import com.shortdrama.jelly.zyreotv.beginning.ITItem;
public class XLHeaddefaultActivity extends IDDetailsRoundActivity<FBannerPolicyViewBinding> {
volatile ArrayList<String> processPurchaseRoundArray;
volatile long systemStopQuitSum = 0;
public FBannerPolicyViewBinding binding;
private String signoutHome;
private String policyBackground;
private double chooseImmersiveMakeProfileMessagePlay(boolean agreementExtraction, double observerReharge, HashMap<String,Boolean> subscribeData) {
int positionTest = 1380;
ArrayList<Long> subscribeCode = new ArrayList();
HashMap<String,Float> fromGet_vn = new HashMap();
double defragmentLociXmul = 0;
positionTest *= 47;
int r_53 = (int)positionTest;
r_53 -= 8;
return defragmentLociXmul;
}
@Override
public void init() {
double canvasMale = this.chooseImmersiveMakeProfileMessagePlay(true,2524.0,new HashMap());
if (canvasMale == 98) {
System.out.println(canvasMale);
}
double t_21 = (double)canvasMale;
switch ((int)t_21) {
case 21: {
t_21 -= 84.0;
break;
}
case 24: {
double l_10 = 0;
for (int n_68 = (int)t_21; n_68 > t_21 - 1; n_68--) {
l_10 += (double)n_68;
double l_95 = (double)l_10;
break;
}
break;
}
default:
break;
}
System.out.println(canvasMale);
getWindow().setNavigationBarColor(getResources().getColor(android.R.color.black));
boolean collectc = true;
if (!collectc) {}
binding = FBannerPolicyViewBinding.inflate(getLayoutInflater());
long eventn = 2924L;
if (eventn >= 121) {}
setContentView(binding.getRoot());
long pagen = 621L;
while (pagen == 169) { break; }
signoutHome = getIntent().getStringExtra(ITItem.Constants_Page_WebUrl);
String dataO = "cplx";
policyBackground = getIntent().getStringExtra(ITItem.Constants_Page_WebTitle);
int squareG = 696;
while (squareG < 52) { break; }
System.out.println(squareG);
}
@Override
public void initView() {
binding.ivWebviewBack.setOnClickListener(v -> finish());
float l_titler = 3235.0f;
if (l_titler <= 9) {}
binding.tvWebviewTitle.setText(policyBackground);
ArrayList<Boolean> xploreG = new ArrayList<Boolean>();
xploreG.add(false);
xploreG.add(true);
while (xploreG.size() > 90) { break; }
binding.webview.getSettings();
float urlG = 2927.0f;
while (urlG <= 22) { break; }
WebSettings buttonButton = binding.webview.getSettings();
String stayI = "switchbase";
while (stayI.length() > 162) { break; }
buttonButton.setDomStorageEnabled(true);
float successfulu = 2838.0f;
CookieManager.getInstance().setAcceptThirdPartyCookies(binding.webview, true);
HashMap<String,Boolean> please1 = new HashMap<String,Boolean>();
please1.put("nanopb", true);
please1.put("excluding", false);
please1.put("fourier", false);
please1.put("peuker", false);
buttonButton.setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
int lastj = 9189;
if (lastj == 9) {}
buttonButton.setCacheMode(WebSettings.LOAD_DEFAULT);
float userc = 9185.0f;
if (userc == 153) {}
buttonButton.setJavaScriptEnabled(true);
float recommandQ = 8026.0f;
if (recommandQ == 78) {}
System.out.println(recommandQ);
buttonButton.setLoadWithOverviewMode(true);
long msearchN = 5975L;
if (msearchN == 10) {}
buttonButton.setAllowFileAccess(true);
double alterA = 9124.0;
buttonButton.setAllowContentAccess(true);
boolean commomP = true;
while (!commomP) { break; }
buttonButton.setDatabaseEnabled(true);
float tabg = 5153.0f;
if (tabg <= 136) {}
System.out.println(tabg);
buttonButton.setSavePassword(false);
long children2 = 6864L;
while (children2 > 25) { break; }
buttonButton.setSaveFormData(false);
long short_zfe = 9436L;
System.out.println(short_zfe);
buttonButton.setUseWideViewPort(true);
ArrayList<Float> translatesc = new ArrayList<Float>();
translatesc.add(780.0f);
translatesc.add(96.0f);
translatesc.add(532.0f);
translatesc.add(0.0f);
translatesc.add(314.0f);
if (translatesc.contains("u")) {}
buttonButton.setJavaScriptCanOpenWindowsAutomatically(true);
HashMap<String,String> mcontext2 = new HashMap<String,String>();
mcontext2.put("silenced", "extension");
mcontext2.put("unmute", "qsvdeint");
mcontext2.put("uninit", "readframe");
mcontext2.put("var", "ftvsplitbar");
mcontext2.put("recognize", "yuvayuvle");
mcontext2.put("asn", "watermarks");
while (mcontext2.size() > 123) { break; }
buttonButton.setAllowFileAccessFromFileURLs(true);
int loadM = 9451;
while (loadM == 69) { break; }
buttonButton.setAllowUniversalAccessFromFileURLs(true);
String yess = "disp";
if (yess.length() > 88) {}
binding.webview.loadUrl(signoutHome);
float systemx = 2625.0f;
if (systemx > 131) {}
System.out.println(systemx);
}
private long appendReflectReboundStatusSpring(HashMap<String,String> stopBackup, double headerRegister_dv) {
float pullingMember = 8696.0f;
HashMap<String,Integer> unitProfile = new HashMap();
HashMap<String,Double> refreshingBanner = new HashMap();
float linePolicy = 6939.0f;
System.out.println(linePolicy);
long fwdResidence = 0;
pullingMember = 8015;
int tmp_y_87 = (int)pullingMember;
tmp_y_87 += 90;
linePolicy += 17;
int temp_s_49 = (int)linePolicy;
int l_91 = 0;
for (int g_87 = (int)temp_s_49; g_87 >= temp_s_49 - 1; g_87--) {
l_91 += (int)g_87;
int t_57 = (int)l_91;
if (t_57 >= 699) {
t_57 *= 81;
}
break;
}
return fwdResidence;
}
@Override
public void logic() {
long valuleFloats = this.appendReflectReboundStatusSpring(new HashMap(),6150.0);
if (valuleFloats != 28) {
System.out.println(valuleFloats);
}
int tmp_l_0 = (int)valuleFloats;
if (tmp_l_0 != 508) {
tmp_l_0 *= 51;
tmp_l_0 += 45;
}
System.out.println(valuleFloats);
}
}

View File

@ -0,0 +1,866 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.decbn;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import androidx.lifecycle.MutableLiveData;
import androidx.lifecycle.ViewModel;
import com.shortdrama.jelly.zyreotv.dlsym.IMACloseStroke;
import com.shortdrama.jelly.zyreotv.dlsym.RREStyles;
import com.shortdrama.jelly.zyreotv.dlsym.VZBack;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.TConstantsEsultBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.TJEpisodeRoundBean;
import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.schedulers.Schedulers;
public class GXCProgressLogin extends ViewModel {
volatile HashMap<String, String> stopRehargeFromMap;
private volatile int bannerSerarchTouristTag = 0;
volatile long extractionSendVideo_mark = 0;
private final MutableLiveData<IMACloseStroke<TJEpisodeRoundBean>> tipsContent = new MutableLiveData<>();
private final MutableLiveData<IMACloseStroke<TConstantsEsultBean>> backupButton = new MutableLiveData<>();
private final MutableLiveData<IMACloseStroke<TConstantsEsultBean>> shareAds = new MutableLiveData<>();
public MutableLiveData<IMACloseStroke<TJEpisodeRoundBean>> getGetUserInfoLiveData() {
return tipsContent;
}
public MutableLiveData<IMACloseStroke<TConstantsEsultBean>> getUserVideoHistoryLiveData() {
return backupButton;
}
public MutableLiveData<IMACloseStroke<TConstantsEsultBean>> getUserFollowListLiveData() {
return shareAds;
}
private float splashRefreshingSaltTitleTaskFollow() {
double controllerTips = 7516.0;
ArrayList<Float> allNine = new ArrayList();
System.out.println(allNine);
double activityAlert = 55.0;
float isposableHall = 0;
controllerTips *= 45;
double tmp_q_20 = (double) controllerTips;
tmp_q_20 += 16.0;
activityAlert = 7787;
double o_57 = (double) activityAlert;
if (o_57 != 98.0) {
o_57 *= 57.0;
double t_12 = 1.0;
double c_87 = 0.0;
if (o_57 > c_87) {
o_57 = c_87;
}
while (t_12 < o_57) {
t_12 += 1;
o_57 += t_12;
break;
}
}
return isposableHall;
}
public void getUserInfo() {
float replacesIdsubtype = this.splashRefreshingSaltTitleTaskFollow();
System.out.println(replacesIdsubtype);
int tmp_a_63 = (int) replacesIdsubtype;
if (tmp_a_63 >= 898) {
tmp_a_63 += 60;
}
System.out.println(replacesIdsubtype);
VZBack.getInstance().getUserInfo()
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RREStyles<IMACloseStroke<TJEpisodeRoundBean>>() {
private String stopReachExtraBuy(long auto_6Jump, float exampleTips) {
double touchCollect = 4445.0;
HashMap<String, Double> playerPurchase = new HashMap();
double shareFollowlist = 1613.0;
System.out.println(shareFollowlist);
String keygenAsym = "qminmax";
if (touchCollect <= 128 && touchCollect >= -128) {
int ezier_f = Math.min(1, new Random().nextInt(55)) % keygenAsym.length();
keygenAsym += touchCollect + "";
}
double tmp_m_96 = (double) touchCollect;
switch ((int) tmp_m_96) {
case 39: {
tmp_m_96 *= 23.0;
break;
}
case 43: {
tmp_m_96 *= 48.0;
if (tmp_m_96 == 785.0) {
tmp_m_96 += 4.0;
}
break;
}
default:
break;
}
if (shareFollowlist >= -128 && shareFollowlist <= 128) {
int jump_s = Math.min(1, new Random().nextInt(70)) % keygenAsym.length();
keygenAsym += shareFollowlist + "";
}
double _h_94 = (double) shareFollowlist;
switch ((int) _h_94) {
case 92: {
_h_94 += 56.0;
double p_77 = 0;
for (int t_20 = (int) _h_94; t_20 > _h_94 - 1; t_20--) {
p_77 += (double) t_20;
double t_52 = (double) p_77;
break;
}
break;
}
case 10: {
_h_94 -= 37.0;
break;
}
case 31: {
_h_94 -= 34.0;
break;
}
case 9: {
_h_94 -= 84.0;
double v_43 = 0;
double k_22 = 0.0;
if (_h_94 > k_22) {
_h_94 = k_22;
}
for (int k_38 = 0; k_38 <= _h_94; k_38++) {
v_43 += (double) k_38;
_h_94 -= k_38;
break;
}
break;
}
case 24: {
double x_99 = 0;
double w_77 = 0.0;
if (_h_94 > w_77) {
_h_94 = w_77;
}
for (int l_19 = 0; l_19 <= _h_94; l_19++) {
x_99 += (double) l_19;
double h_28 = (double) x_99;
break;
}
break;
}
case 73: {
_h_94 += 98.0;
break;
}
case 99: {
double c_34 = 0;
for (int x_48 = (int) _h_94; x_48 > _h_94 - 1; x_48--) {
c_34 += (double) x_48;
if (x_48 > 0) {
_h_94 += (double) x_48;
break;
}
double u_20 = (double) c_34;
break;
}
break;
}
case 62: {
_h_94 *= 26.0;
break;
}
case 19: {
_h_94 += 57.0;
break;
}
case 49: {
_h_94 -= 85.0;
double l_33 = 0;
for (int t_47 = (int) _h_94; t_47 > _h_94 - 1; t_47--) {
l_33 += (double) t_47;
double f_24 = (double) l_33;
break;
}
break;
}
default:
break;
}
return keygenAsym;
}
@Override
public void onSuccess(IMACloseStroke<TJEpisodeRoundBean> feedbackResp) {
String renditionsLength = this.stopReachExtraBuy(6485L, 6511.0f);
int renditionsLength_len = renditionsLength.length();
int j_81 = (int) renditionsLength_len;
switch (j_81) {
case 36: {
int x_54 = 1;
int i_77 = 1;
if (j_81 > i_77) {
j_81 = i_77;
}
while (x_54 <= j_81) {
x_54 += 1;
j_81 -= x_54;
int c_48 = (int) x_54;
break;
}
break;
}
case 68: {
int q_28 = 0;
for (int v_10 = (int) j_81; v_10 >= j_81 - 1; v_10--) {
q_28 += (int) v_10;
int e_94 = (int) q_28;
break;
}
break;
}
case 20: {
j_81 += 60;
if (j_81 > 537) {
j_81 -= 52;
switch (j_81) {
case 18: {
j_81 -= 94;
break;
}
case 37: {
break;
}
case 9: {
j_81 += 94;
break;
}
case 64: {
j_81 *= 68;
j_81 -= 55;
break;
}
case 98: {
j_81 -= 72;
break;
}
case 31: {
j_81 -= 25;
break;
}
case 68: {
j_81 += 39;
break;
}
case 99: {
j_81 -= 67;
break;
}
case 17: {
break;
}
case 11: {
j_81 *= 58;
break;
}
default:
break;
}
}
break;
}
case 88: {
j_81 -= 69;
break;
}
case 82: {
j_81 += 86;
break;
}
case 98: {
j_81 -= 67;
if (j_81 <= 698) {
j_81 += 64;
switch (j_81) {
case 58: {
j_81 *= 77;
j_81 *= 29;
break;
}
case 87: {
break;
}
case 43: {
break;
}
case 13: {
j_81 -= 1;
break;
}
case 77: {
j_81 += 56;
break;
}
default:
break;
}
}
break;
}
case 34: {
j_81 *= 14;
int p_51 = 1;
int v_45 = 1;
if (j_81 > v_45) {
j_81 = v_45;
}
while (p_51 < j_81) {
p_51 += 1;
int e_5 = (int) p_51;
switch (e_5) {
case 27: {
e_5 += 85;
e_5 -= 28;
break;
}
case 25: {
e_5 += 47;
break;
}
case 30: {
e_5 += 98;
break;
}
case 52: {
e_5 *= 22;
break;
}
case 38: {
break;
}
case 82: {
break;
}
default:
break;
}
break;
}
break;
}
case 54: {
int l_91 = 1;
int g_78 = 1;
if (j_81 > g_78) {
j_81 = g_78;
}
while (l_91 <= j_81) {
l_91 += 1;
j_81 -= l_91;
break;
}
break;
}
case 32: {
int j_41 = 0;
for (int m_76 = (int) j_81; m_76 >= j_81 - 1; m_76--) {
j_41 += (int) m_76;
int a_61 = (int) j_41;
break;
}
break;
}
case 66: {
j_81 *= 94;
if (j_81 == 526) {
j_81 *= 42;
j_81 -= 65;
}
break;
}
default:
break;
}
System.out.println(renditionsLength);
System.out.println(renditionsLength);
tipsContent.setValue(feedbackResp);
}
private String saveBindVideo(float earchInterceptor) {
boolean thirdFollowlist = true;
long rechargeFooter = 581L;
HashMap<String, Float> pleaseTail = new HashMap();
long colorsTurned = 1038L;
String stridKeys = "doubles";
if (true == thirdFollowlist) {
System.out.println("exception");
}
if (rechargeFooter >= -128 && rechargeFooter <= 128) {
int here_b = Math.min(1, new Random().nextInt(35)) % stridKeys.length();
stridKeys += rechargeFooter + "";
}
int temp_q_70 = (int) rechargeFooter;
if (temp_q_70 <= 203) {
int o_93 = 0;
int f_11 = 1;
if (temp_q_70 > f_11) {
temp_q_70 = f_11;
}
for (int h_51 = 1; h_51 <= temp_q_70; h_51++) {
o_93 += (int) h_51;
int o_44 = (int) o_93;
switch (o_44) {
case 17: {
o_44 += 12;
o_44 -= 85;
break;
}
case 84: {
break;
}
case 57: {
o_44 *= 88;
break;
}
case 22: {
break;
}
case 48: {
break;
}
case 86: {
o_44 += 14;
o_44 -= 65;
break;
}
case 58: {
o_44 += 76;
break;
}
default:
break;
}
break;
}
}
if (colorsTurned >= -128 && colorsTurned <= 128) {
int hnews_r = Math.min(1, new Random().nextInt(66)) % stridKeys.length();
stridKeys += colorsTurned + "";
}
int _c_75 = (int) colorsTurned;
int u_8 = 1;
int c_98 = 1;
if (_c_75 > c_98) {
_c_75 = c_98;
}
while (u_8 < _c_75) {
u_8 += 1;
_c_75 -= u_8;
int y_75 = (int) u_8;
switch (y_75) {
case 51: {
y_75 -= 2;
if (y_75 != 674) {
y_75 += 87;
}
break;
}
case 48: {
y_75 += 66;
break;
}
case 4: {
y_75 -= 66;
break;
}
default:
break;
}
break;
}
return stridKeys;
}
@Override
public void onError(int code, String msg) {
String unpremultiplyyuvAdts = this.saveBindVideo(5032.0f);
int unpremultiplyyuvAdts_len = unpremultiplyyuvAdts.length();
int g_42 = (int) unpremultiplyyuvAdts_len;
if (g_42 == 427) {
g_42 *= 77;
}
if (unpremultiplyyuvAdts == "tatus") {
System.out.println(unpremultiplyyuvAdts);
}
System.out.println(unpremultiplyyuvAdts);
int interceptorK = 4634;
if (interceptorK >= 105) {
}
tipsContent.setValue(null);
String lineI = "sizes";
if (lineI.equals("Z")) {
}
}
});
}
private long clearBeforeSuccess() {
float thirdBackup = 9709.0f;
ArrayList<Float> time_d3Videohistory = new ArrayList();
int settingsEpisodevideo = 7460;
double jobIdeo = 5421.0;
long vlcspecPort = 0;
thirdBackup = 6150;
int temp_z_4 = (int) thirdBackup;
if (temp_z_4 >= 511) {
temp_z_4 += 61;
if (temp_z_4 != 400) {
temp_z_4 -= 55;
temp_z_4 += 47;
}
}
settingsEpisodevideo += settingsEpisodevideo;
int r_27 = (int) settingsEpisodevideo;
int m_62 = 1;
int w_66 = 1;
if (r_27 > w_66) {
r_27 = w_66;
}
while (m_62 <= r_27) {
m_62 += 1;
int m_56 = (int) m_62;
if (m_56 == 774) {
}
break;
}
jobIdeo *= 88;
return vlcspecPort;
}
public void getHistory(int currentPage, int pageSize) {
long indicatorsSliding = this.clearBeforeSuccess();
int tmp_w_68 = (int) indicatorsSliding;
if (tmp_w_68 < 245) {
tmp_w_68 += 39;
tmp_w_68 -= 82;
}
if (indicatorsSliding != 66) {
System.out.println(indicatorsSliding);
}
System.out.println(indicatorsSliding);
VZBack.getInstance().getVideoHistoryList(currentPage, pageSize)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RREStyles<IMACloseStroke<TConstantsEsultBean>>() {
@Override
public void onSuccess(IMACloseStroke<TConstantsEsultBean> feedbackResp) {
backupButton.setValue(feedbackResp);
}
@Override
public void onError(int code, String msg) {
float successfulV = 6603.0f;
if (successfulV > 177) {
}
backupButton.setValue(null);
float buyq = 6699.0f;
while (buyq >= 126) {
break;
}
}
});
}
public void getFollowList(int currentPage, int pageSize) {
VZBack.getInstance().getFollowList(currentPage, pageSize)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RREStyles<IMACloseStroke<TConstantsEsultBean>>() {
@Override
public void onSuccess(IMACloseStroke<TConstantsEsultBean> feedbackResp) {
shareAds.setValue(feedbackResp);
}
private String attachKickLockDatabase(long requestSelected, float and_7Url, ArrayList<String> theaterPurchase) {
double langRagment = 5416.0;
boolean followCollectioncancel = true;
double mainRegistered = 9927.0;
String greatestRvvlcImporter = "deny";
if (langRagment >= -128 && langRagment <= 128) {
int activity_n = Math.min(1, new Random().nextInt(63)) % greatestRvvlcImporter.length();
greatestRvvlcImporter += langRagment + "";
}
double temp_t_83 = (double) langRagment;
if (temp_t_83 <= 604.0) {
temp_t_83 -= 77.0;
double y_83 = 0;
for (int n_19 = (int) temp_t_83; n_19 >= temp_t_83 - 1; n_19--) {
y_83 += (double) n_19;
double d_55 = (double) y_83;
if (d_55 >= 409.0) {
}
break;
}
}
if (followCollectioncancel) {
System.out.println("with_n");
}
if (mainRegistered >= -128 && mainRegistered <= 128) {
int job_v = Math.min(1, new Random().nextInt(25)) % greatestRvvlcImporter.length();
greatestRvvlcImporter += mainRegistered + "";
}
double temp_e_70 = (double) mainRegistered;
double p_18 = 0;
for (int i_71 = (int) temp_e_70; i_71 >= temp_e_70 - 1; i_71--) {
p_18 += (double) i_71;
if (i_71 > 0) {
temp_e_70 += (double) i_71;
break;
}
double k_11 = (double) p_18;
switch ((int) k_11) {
case 32: {
k_11 *= 52.0;
break;
}
case 55: {
k_11 += 42.0;
break;
}
case 54: {
break;
}
case 71: {
break;
}
case 56: {
k_11 *= 10.0;
break;
}
case 77: {
k_11 *= 45.0;
if (k_11 < 667.0) {
k_11 += 99.0;
}
break;
}
case 89: {
k_11 -= 33.0;
break;
}
case 23: {
break;
}
case 62: {
k_11 += 14.0;
k_11 += 70.0;
break;
}
default:
break;
}
break;
}
return greatestRvvlcImporter;
}
@Override
public void onError(int code, String msg) {
ArrayList process_b = new ArrayList();
String structuralSplits = this.attachKickLockDatabase(1946L, 5635.0f, process_b);
int structuralSplits_len = structuralSplits.length();
int d_54 = (int) structuralSplits_len;
if (d_54 >= 897) {
d_54 += 93;
}
if (structuralSplits == "reset") {
System.out.println(structuralSplits);
}
System.out.println(structuralSplits);
int homeC = 3307;
if (homeC >= 60) {
}
System.out.println(homeC);
shareAds.setValue(null);
HashMap<String, Long> playingV = new HashMap<String, Long>();
playingV.put("allocator", 233L);
playingV.put("with", 931L);
while (playingV.size() > 59) {
break;
}
}
});
}
public void pushActivity(String name) {
VZBack.getInstance().actionPush(name)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RREStyles<IMACloseStroke>() {
@Override
public void onSuccess(IMACloseStroke feedbackResp) {
}
@Override
public void onError(int code, String msg) {
}
});
}
}

View File

@ -0,0 +1,787 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.decbn;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import androidx.lifecycle.ViewModelProvider;
import androidx.recyclerview.widget.LinearLayoutManager;
import com.bumptech.glide.Glide;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.beginning.ITItem;
import com.shortdrama.jelly.zyreotv.beginning.LRewards;
import com.shortdrama.jelly.zyreotv.databinding.VezLoginPlashBinding;
import com.shortdrama.jelly.zyreotv.databinding.LpEnterLocalBinding;
import com.shortdrama.jelly.zyreotv.dlsym.KGZyreotv;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.XLHeaddefaultActivity;
import com.shortdrama.jelly.zyreotv.topics.dts.KDZShareRound;
import org.greenrobot.eventbus.EventBus;
import org.greenrobot.eventbus.Subscribe;
import org.greenrobot.eventbus.ThreadMode;
public class UBJPrivateOllowFragment extends Fragment {
private volatile int systemDimensDrawMark = 0;
volatile HashMap<String,String> adsCoverChange_dict;
private GXCProgressLogin seenMarkView;
private VezLoginPlashBinding loadingdefaultRunning;
private int currentPage = 1;
private KDZShareRound lockTablist;
public static UBJPrivateOllowFragment newInstance() {
return new UBJPrivateOllowFragment();
}
private long moveEventResumeHolder(float tabRead, long dialogClient) {
double setProfile = 1474.0;
double exampleToday = 9200.0;
ArrayList<Double> continue_okMore = new ArrayList();
int discoverAll = 7994;
long avigationComment = 0;
setProfile = 4881;
double a_48 = (double)setProfile;
a_48 += 74.0;
exampleToday -= 61;
double _x_20 = (double)exampleToday;
_x_20 -= 4.0;
discoverAll += 5;
return avigationComment;
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
long optimalRelevant = this.moveEventResumeHolder(7286.0f,2511L);
System.out.println(optimalRelevant);
int temp_y_37 = (int)optimalRelevant;
int b_87 = 0;
for (int e_89 = (int)temp_y_37; e_89 >= temp_y_37 - 1; e_89--) {
b_87 += (int)e_89;
if (e_89 > 0) {
temp_y_37 += (int)e_89;
break;
}
int x_70 = (int)b_87;
if (x_70 <= 35) {
x_70 += 15;
switch (x_70) {
case 93: {
x_70 += 93;
break;
}
case 36: {
x_70 += 57;
break;
}
case 9: {
break;
}
case 62: {
break;
}
case 42: {
x_70 += 85;
break;
}
default:
break;
}
}
break;
}
System.out.println(optimalRelevant);
super.onCreate(savedInstanceState);
EventBus.getDefault().register(this);
HashMap<String,Long> homefragmentt = new HashMap<String,Long>();
homefragmentt.put("destruct", 930L);
homefragmentt.put("contents", 513L);
homefragmentt.put("servers", 147L);
homefragmentt.put("score", 97L);
if (homefragmentt.size() > 54) {}
System.out.println(homefragmentt);
seenMarkView = new ViewModelProvider(this).get(GXCProgressLogin.class);
String noticeR = "prep";
}
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
loadingdefaultRunning = VezLoginPlashBinding.inflate(inflater);
double noticeF = 3164.0;
return loadingdefaultRunning.getRoot();
}
private int pauseIdlePostOwnerStayEditor(HashMap<String,Boolean> ninePulling) {
int delete_vtDonate = 2368;
System.out.println(delete_vtDonate);
double ecyrptSave = 2874.0;
double annerInstrumented = 5554.0;
System.out.println(annerInstrumented);
double modelClient = 1921.0;
int resilienceSymbolize = 0;
delete_vtDonate -= 16;
resilienceSymbolize -= delete_vtDonate;
int c_83 = (int)delete_vtDonate;
if (c_83 == 631) {
c_83 += 58;
int q_8 = 1;
int w_51 = 1;
if (c_83 > w_51) {
c_83 = w_51;
}
while (q_8 < c_83) {
q_8 += 1;
c_83 -= q_8;
int mj_index = (int)q_8;
break;
}
}
ecyrptSave += 38;
double _n_14 = (double)ecyrptSave;
double q_61 = 0;
for (int e_62 = (int)_n_14; e_62 >= _n_14 - 1; e_62--) {
q_61 += (double)e_62;
if (e_62 > 0) {
_n_14 += (double)e_62;
break;
}
double n_50 = (double)q_61;
double s_40 = 0;
double e_7 = 1.0;
if (n_50 > e_7) {
n_50 = e_7;
}
for (int j_94 = 1; j_94 < n_50; j_94++) {
s_40 += (double)j_94;
n_50 *= j_94;
break;
}
break;
}
annerInstrumented += 48;
modelClient += 76;
return resilienceSymbolize;
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
int busyAugmented = this.pauseIdlePostOwnerStayEditor(new HashMap());
int tmp_q_7 = (int)busyAugmented;
switch (tmp_q_7) {
case 62: {
tmp_q_7 -= 55;
int f_39 = 1;
int a_26 = 0;
if (tmp_q_7 > a_26) {
tmp_q_7 = a_26;
}
while (f_39 <= tmp_q_7) {
f_39 += 1;
int h_18 = (int)f_39;
switch (h_18) {
case 19: {
h_18 += 71;
h_18 -= 44;
break;
}
case 9: {
break;
}
case 95: {
h_18 += 43;
break;
}
case 82: {
h_18 *= 95;
break;
}
case 68: {
h_18 += 8;
break;
}
case 64: {
h_18 -= 10;
break;
}
default:
break;
}
break;
}
break;
}
case 18: {
if (tmp_q_7 >= 560) {
tmp_q_7 -= 88;
}
break;
}
case 63: {
tmp_q_7 *= 26;
break;
}
case 29: {
tmp_q_7 += 34;
tmp_q_7 *= 76;
break;
}
case 82: {
tmp_q_7 -= 100;
tmp_q_7 -= 84;
break;
}
case 69: {
tmp_q_7 -= 86;
tmp_q_7 *= 9;
break;
}
case 97: {
int k_36 = 0;
for (int t_74 = (int)tmp_q_7; t_74 > tmp_q_7 - 1; t_74--) {
k_36 += (int)t_74;
if (t_74 > 0) {
tmp_q_7 += (int)t_74;
break;
}
int s_50 = (int)k_36;
break;
}
break;
}
case 92: {
tmp_q_7 += 98;
break;
}
default:
break;
}
System.out.println(busyAugmented);
System.out.println(busyAugmented);
super.onViewCreated(view, savedInstanceState);
ArrayList<Long> eaderD = new ArrayList<Long>();
eaderD.add(618L);
eaderD.add(986L);
eaderD.add(415L);
eaderD.add(77L);
eaderD.add(478L);
eaderD.add(149L);
while (eaderD.size() > 145) { break; }
System.out.println(eaderD);
seenMarkView.getUserInfo();
ArrayList<Float> tipD = new ArrayList<Float>();
tipD.add(347.0f);
tipD.add(782.0f);
seenMarkView.getHistory(currentPage, 10);
HashMap<String,Long> emptyp = new HashMap<String,Long>();
emptyp.put("handling", 838L);
emptyp.put("nine", 452L);
emptyp.put("slide", 147L);
LinearLayoutManager network = new LinearLayoutManager(getActivity(), LinearLayoutManager.HORIZONTAL, false);
float lastz = 6320.0f;
if (lastz >= 31) {}
loadingdefaultRunning.recyclerviewHistory.setLayoutManager(network);
lockTablist = new KDZShareRound(getActivity(), LpEnterLocalBinding.class);
double reharge2 = 466.0;
if (reharge2 == 79) {}
System.out.println(reharge2);
lockTablist.setItemClickListener((data, holder) -> {
LRewards.startPlayerDetails(getActivity(), data.getShort_play_id(), 0);
String string5 = "chunks";
System.out.println(string5);
});
loadingdefaultRunning.recyclerviewHistory.setAdapter(lockTablist);
loadingdefaultRunning.tvPrivatePolicy.setOnClickListener(v -> standardQuickClickActivity(KGZyreotv.GleeStream_Private, getResources().getString(R.string.stopSelect)));
loadingdefaultRunning.tvUserAgreement.setOnClickListener(v -> standardQuickClickActivity(KGZyreotv.GleeStream_USERAgreement, getResources().getString(R.string.userVideoSettings)));
logic();
String des9 = "combine";
if (des9.equals("R")) {}
}
private long dismissUniqueCookieCorePlay() {
String commomTranslates = "measurements";
double pisodesCommom = 1546.0;
long closeInsufficient = 7964L;
System.out.println(closeInsufficient);
long execSupernodes = 0;
pisodesCommom += pisodesCommom;
double temp_e_59 = (double)pisodesCommom;
if (temp_e_59 <= 527.0) {
temp_e_59 *= 25.0;
}
else {
}
closeInsufficient += closeInsufficient;
execSupernodes -= closeInsufficient;
int temp_g_6 = (int)closeInsufficient;
temp_g_6 += 40;
return execSupernodes;
}
private void standardQuickClickActivity(String url, String title) {
long tooltipRadfg = this.dismissUniqueCookieCorePlay();
int temp_k_47 = (int)tooltipRadfg;
temp_k_47 -= 28;
System.out.println(tooltipRadfg);
System.out.println(tooltipRadfg);
startActivity(new Intent(getActivity(), XLHeaddefaultActivity.class).putExtra(ITItem.Constants_Page_WebUrl, url).putExtra(ITItem.Constants_Page_WebTitle, title));
}
private String buildSystemInvokeVideoPurchaseRunning(ArrayList<String> nowLive, String alterWave) {
int buttonTop = 7684;
HashMap<String,Boolean> signoutBottom = new HashMap();
System.out.println(signoutBottom);
long moreAndroid = 4548L;
System.out.println(moreAndroid);
int shareAnimation = 5327;
System.out.println(shareAnimation);
String numItemSpecified = "util";
if (buttonTop <= 128 && buttonTop >= -128){
int stop_y = Math.min(1, new Random().nextInt(38)) % numItemSpecified.length();
numItemSpecified += buttonTop + "";
}
int p_78 = (int)buttonTop;
int q_81 = 1;
int x_29 = 0;
if (p_78 > x_29) {
p_78 = x_29;
}
while (q_81 < p_78) {
q_81 += 1;
p_78 -= q_81;
int t_4 = (int)q_81;
if (t_4 > 615) {
if (t_4 < 701) {
t_4 *= 81;
}
}
break;
}
if (moreAndroid <= 128 && moreAndroid >= -128){
int hibit_t = Math.min(1, new Random().nextInt(23)) % numItemSpecified.length();
numItemSpecified += moreAndroid + "";
}
int tmp_r_55 = (int)moreAndroid;
int t_65 = 1;
int e_2 = 0;
if (tmp_r_55 > e_2) {
tmp_r_55 = e_2;
}
while (t_65 <= tmp_r_55) {
t_65 += 1;
tmp_r_55 -= t_65;
tmp_r_55 += 20;
break;
}
if (shareAnimation >= -128 && shareAnimation <= 128){
int complete_l = Math.min(1, new Random().nextInt(14)) % numItemSpecified.length();
numItemSpecified += shareAnimation + "";
}
return numItemSpecified;
}
public void logic() {
ArrayList kilobyte_p = new ArrayList();
String swifty_m = "run";
String ftvsplitbarDynload = this.buildSystemInvokeVideoPurchaseRunning(kilobyte_p,swifty_m);
int ftvsplitbarDynload_len = ftvsplitbarDynload.length();
int temp_m_13 = (int)ftvsplitbarDynload_len;
int y_52 = 1;
int d_80 = 1;
if (temp_m_13 > d_80) {
temp_m_13 = d_80;
}
while (y_52 < temp_m_13) {
y_52 += 1;
temp_m_13 -= y_52;
int r_26 = (int)y_52;
int l_4 = 0;
for (int q_21 = (int)r_26; q_21 > r_26 - 1; q_21--) {
l_4 += (int)q_21;
int v_37 = (int)l_4;
break;
}
break;
}
if (ftvsplitbarDynload == "category_r") {
System.out.println(ftvsplitbarDynload);
}
System.out.println(ftvsplitbarDynload);
seenMarkView.getGetUserInfoLiveData().observe(getViewLifecycleOwner(), data -> {
if (data != null) {
loadingdefaultRunning.tvMeName.setText(data.data.getFamily_name());
loadingdefaultRunning.tvMeId.setText("ID:" + data.data.getId());
Glide.with(requireActivity()).load(data.data.getAvator()).error(R.mipmap.share_loadingdefault).into(loadingdefaultRunning.ivHead);
}
});
seenMarkView.getUserVideoHistoryLiveData().observe(getViewLifecycleOwner(), TConstantsEsultBeanIMACloseStroke -> {
if (TConstantsEsultBeanIMACloseStroke != null && !TConstantsEsultBeanIMACloseStroke.data.getList().isEmpty()) {
if (currentPage == 1) {
lockTablist.addDataList(TConstantsEsultBeanIMACloseStroke.data.getList(), true);
HashMap<String,Double> tiktokQ = new HashMap<String,Double>();
tiktokQ.put("signrand", 449.0);
tiktokQ.put("downright", 428.0);
tiktokQ.put("utvideodsp", 138.0);
tiktokQ.put("npoints", 375.0);
while (tiktokQ.size() > 77) { break; }
} else {
lockTablist.addDataList(TConstantsEsultBeanIMACloseStroke.data.getList(), false);
int totala = 791;
while (totala <= 57) { break; }
}
}
});
}
private double suppressFactoryWriteAntiBeanSend(String private_qFragment, long buildSpend) {
int handlerAnd_9p = 1254;
float dimensWith_qh = 949.0f;
System.out.println(dimensWith_qh);
HashMap<String,Float> playertotalJob = new HashMap();
double predicateCanopus = 0;
handlerAnd_9p = 9008;
int tmp_d_63 = (int)handlerAnd_9p;
int h_97 = 1;
int t_22 = 0;
if (tmp_d_63 > t_22) {
tmp_d_63 = t_22;
}
while (h_97 <= tmp_d_63) {
h_97 += 1;
int c_61 = (int)h_97;
int d_89 = 1;
int n_39 = 0;
if (c_61 > n_39) {
c_61 = n_39;
}
while (d_89 < c_61) {
d_89 += 1;
int y_62 = (int)d_89;
if (y_62 <= 67) {
}
break;
}
break;
}
dimensWith_qh = dimensWith_qh;
int tmp_o_2 = (int)dimensWith_qh;
tmp_o_2 *= 38;
return predicateCanopus;
}
@Subscribe(threadMode = ThreadMode.MAIN)
public void onEvent(String event) {
String attrbute_o = "spectra";
double minimumZipped = this.suppressFactoryWriteAntiBeanSend(attrbute_o,5329L);
double tmp_f_46 = (double)minimumZipped;
if (tmp_f_46 < 539.0) {
tmp_f_46 += 49.0;
switch ((int)tmp_f_46) {
case 47: {
break;
}
case 12: {
break;
}
case 61: {
if (tmp_f_46 == 623.0) {
tmp_f_46 *= 91.0;
}
break;
}
case 66: {
tmp_f_46 *= 3.0;
break;
}
case 15: {
if (tmp_f_46 > 8.0) {
tmp_f_46 *= 96.0;
}
break;
}
case 10: {
break;
}
case 48: {
break;
}
default:
break;
}
}
if (minimumZipped >= 59) {
System.out.println(minimumZipped);
}
System.out.println(minimumZipped);
if (ITItem.Constants_PlayerView_CreateHistoryEvent.equals(event)) {
currentPage = 1;
String continue_sV = "textured";
if (continue_sV.equals("n")) {}
seenMarkView.getHistory(1, 10);
boolean button_ = false;
}
}
private String dispatchCanvasDecor(HashMap<String,Integer> recommendWatch, ArrayList<String> colorsSin, long subscribeCornor) {
String dimensCreate = "pointer";
System.out.println(dimensCreate);
double dateUnlock = 7843.0;
double kickBar = 8317.0;
System.out.println(kickBar);
ArrayList<Float> noneNine = new ArrayList();
System.out.println(noneNine);
String aevalInstantInternal = "triangular";
if (dimensCreate.equals("stay")) {
System.out.println("dimensCreate" + dimensCreate);
}
if (null != dimensCreate) {
if(dimensCreate.length() > 0) {
if(aevalInstantInternal.length() > 0) {
aevalInstantInternal += dimensCreate.charAt(0);
}
}
}
if (dateUnlock <= 128 && dateUnlock >= -128){
int free_i = Math.min(1, new Random().nextInt(87)) % aevalInstantInternal.length();
aevalInstantInternal += dateUnlock + "";
}
double e_74 = (double)dateUnlock;
e_74 += 20.0;
if (kickBar <= 128 && kickBar >= -128){
int before_z = Math.min(1, new Random().nextInt(18)) % aevalInstantInternal.length();
aevalInstantInternal += kickBar + "";
}
double tmp_g_7 = (double)kickBar;
double r_44 = 0;
for (int a_69 = (int)tmp_g_7; a_69 >= tmp_g_7 - 1; a_69--) {
r_44 += (double)a_69;
double z_1 = (double)r_44;
switch ((int)z_1) {
case 73: {
z_1 -= 92.0;
z_1 -= 44.0;
break;
}
case 69: {
z_1 -= 76.0;
if (z_1 != 179.0) {
z_1 *= 71.0;
}
break;
}
case 3: {
z_1 *= 100.0;
break;
}
case 36: {
break;
}
case 75: {
z_1 -= 39.0;
if (z_1 > 468.0) {
z_1 -= 62.0;
}
break;
}
case 20: {
z_1 -= 56.0;
break;
}
default:
break;
}
break;
}
return aevalInstantInternal;
}
@Override
public void onDestroy() {
ArrayList ttadata_u = new ArrayList();
String strmatchStartmarker = this.dispatchCanvasDecor(new HashMap(),ttadata_u,7638L);
if (strmatchStartmarker == "common") {
System.out.println(strmatchStartmarker);
}
int strmatchStartmarker_len = strmatchStartmarker.length();
int tmp_p_4 = (int)strmatchStartmarker_len;
if (tmp_p_4 > 664) {
}
else if (tmp_p_4 < 353) {
tmp_p_4 -= 32;
}
else {
}
System.out.println(strmatchStartmarker);
super.onDestroy();
HashMap<String,Boolean> highlighto = new HashMap<String,Boolean>();
highlighto.put("vaddq", true);
highlighto.put("chunk", true);
highlighto.put("evalfunc", true);
highlighto.put("jpegdsp", true);
highlighto.put("pointoct", false);
highlighto.put("superblocks", true);
while (highlighto.size() > 47) { break; }
EventBus.getDefault().unregister(this);
int messageu = 6033;
while (messageu > 157) { break; }
}
}

View File

@ -0,0 +1,468 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.movepage;
import java.util.HashMap;
import androidx.lifecycle.ViewModelProvider;
import android.os.Bundle;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import android.os.CountDownTimer;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.google.android.material.tabs.TabLayoutMediator;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.beginning.LRewards;
import com.shortdrama.jelly.zyreotv.databinding.TejManifestLauncherBinding;
import com.shortdrama.jelly.zyreotv.dlsym.IMACloseStroke;
import com.shortdrama.jelly.zyreotv.dlsym.RREStyles;
import com.shortdrama.jelly.zyreotv.dlsym.VZBack;
import com.shortdrama.jelly.zyreotv.topics.dts.WNHEzierRules;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.BMRagmentBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.CFRewardsLoginBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
import java.util.ArrayList;
import java.util.List;
import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.schedulers.Schedulers;
public class VItemGradlewFragment extends Fragment {
volatile int oogleExampleFirstSum = 0;
private volatile long agreementProgress_idx = 0;
private JMarkInfo seenMarkView;
private TejManifestLauncherBinding loadingdefaultRunning;
private ArrayList<String> earchForeground;
private List<Fragment> centerAdapterFragment;
public static VItemGradlewFragment newInstance() {
return new VItemGradlewFragment();
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String build4 = "iss";
System.out.println(build4);
seenMarkView = new ViewModelProvider(this).get(JMarkInfo.class);
long setQ = 3578L;
while (setQ < 30) { break; }
}
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
loadingdefaultRunning = TejManifestLauncherBinding.inflate(inflater);
return loadingdefaultRunning.getRoot();
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
double click6 = 6325.0;
setFrontParty();
boolean currenth = true;
if (currenth) {}
myCountDownTimer = new XKUser(365 * 24 * 60 * 60, 5000);
float limitp = 4780.0f;
while (limitp < 39) { break; }
System.out.println(limitp);
}
int item = 0;
private List<KLAnnerBean> androidClose;
private void setFrontParty() {
loadingdefaultRunning.layoutSearch.setOnClickListener(v -> LRewards.startSearch(getActivity()));
VZBack.getInstance().homeTop()
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RREStyles<IMACloseStroke<CFRewardsLoginBean>>() {
@Override
public void onSuccess(IMACloseStroke<CFRewardsLoginBean> feedbackResp) {
if (feedbackResp.data != null) {
List<BMRagmentBean> KLAnnerBeans = feedbackResp.data.getCategory();
int indicatorO = 1949;
if (indicatorO >= 109) {}
revealChangeSecure(KLAnnerBeans);
int markp = 2997;
while (markp >= 118) { break; }
androidClose = feedbackResp.data.getHotData();
String apiK = "interation";
while (apiK.length() > 83) { break; }
item = 0;
double changev = 4970.0;
while (changev >= 34) { break; }
loadingdefaultRunning.tvHomeSearch.setHint(androidClose.get(item).getName());
if (androidClose.size() > 1) {
myCountDownTimer.start();
}
}
}
@Override
public void onError(int code, String msg) {
}
});
}
private void revealChangeSecure(List<BMRagmentBean> KLAnnerBeans) {
earchForeground = new ArrayList<>(KLAnnerBeans.size() + 2);
long recommendb = 4917L;
if (recommendb >= 25) {}
earchForeground.add(getString(R.string.playlistArrowright));
long button4 = 498L;
if (button4 >= 117) {}
System.out.println(button4);
earchForeground.add(getString(R.string.closeInterceptor));
long current1 = 3879L;
while (current1 <= 100) { break; }
centerAdapterFragment = new ArrayList<>();
boolean roundS = false;
centerAdapterFragment.add(ODQHistoryFragment.newInstance());
HashMap<String,Float> titlesl = new HashMap<String,Float>();
titlesl.put("copytest", 872.0f);
titlesl.put("decrement", 189.0f);
titlesl.put("ftsaux", 567.0f);
if (titlesl.size() > 2) {}
centerAdapterFragment.add(ZPisodesFragment.newInstance());
boolean indicatord = true;
while (!indicatord) { break; }
for (BMRagmentBean KLAnnerBean : KLAnnerBeans) {
earchForeground.add(KLAnnerBean.getCategory_name());
long try_fdh = 7712L;
if (try_fdh < 33) {}
centerAdapterFragment.add(PAXOmmonGradientFragment.newInstance(KLAnnerBean.getCategory_id()));
long load0 = 6560L;
if (load0 < 147) {}
}
WNHEzierRules keywords = new WNHEzierRules(getActivity(), earchForeground, centerAdapterFragment);
long titlesA = 3900L;
while (titlesA >= 47) { break; }
loadingdefaultRunning.viewpager.setAdapter(keywords);
new TabLayoutMediator(loadingdefaultRunning.tablayout, loadingdefaultRunning.viewpager, (tab, position) -> tab.setText(earchForeground.get(position))).attach();
}
XKUser myCountDownTimer;
private class XKUser extends CountDownTimer {
volatile boolean enbale_ZyreotvLanguages = false;
private volatile int positionCollectTag = 0;
volatile HashMap<String,Long> vistorYes_map;
public XKUser(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}
private boolean describeArgumentSeekQuickDate() {
double foregroundTheater = 1356.0;
System.out.println(foregroundTheater);
HashMap<String,Boolean> instrumentedEader = new HashMap();
System.out.println(instrumentedEader);
double stateToast = 9264.0;
boolean vocabExtend = false;
foregroundTheater += 48;
vocabExtend = foregroundTheater > 16;
double tmp_d_66 = (double)foregroundTheater;
switch ((int)tmp_d_66) {
case 98: {
tmp_d_66 -= 3.0;
break;
}
case 43: {
double h_24 = 1.0;
double o_21 = 1.0;
if (tmp_d_66 > o_21) {
tmp_d_66 = o_21;
}
while (h_24 <= tmp_d_66) {
h_24 += 1;
tmp_d_66 -= h_24;
tmp_d_66 -= 8.0;
break;
}
break;
}
case 19: {
tmp_d_66 += 41.0;
if (tmp_d_66 < 625.0) {
switch ((int)tmp_d_66) {
case 54: {
tmp_d_66 -= 1.0;
break;
}
case 72: {
tmp_d_66 *= 5.0;
tmp_d_66 += 7.0;
break;
}
case 98: {
tmp_d_66 += 74.0;
break;
}
case 33: {
tmp_d_66 *= 72.0;
break;
}
case 31: {
break;
}
case 83: {
tmp_d_66 += 75.0;
break;
}
case 85: {
tmp_d_66 -= 42.0;
break;
}
default:
break;
}
}
break;
}
case 88: {
if (tmp_d_66 == 937.0) {
tmp_d_66 += 64.0;
}
else if (tmp_d_66 == 360.0) {
tmp_d_66 *= 92.0;
}
break;
}
default:
break;
}
stateToast += foregroundTheater;
stateToast += stateToast;
vocabExtend = stateToast > 96;
double temp_c_60 = (double)stateToast;
temp_c_60 += 73.0;
return vocabExtend;
}
@Override
public void onTick(long l) {
boolean siprdataWriting = this.describeArgumentSeekQuickDate();
if (!siprdataWriting) {
System.out.println("refreshing");
}
System.out.println(siprdataWriting);
if (androidClose.size() - 1 > item) {
item++;
HashMap<String,Integer> serarchu = new HashMap<String,Integer>();
serarchu.put("rubber", 543);
serarchu.put("divmod", 58);
serarchu.put("outdated", 612);
serarchu.put("aftereffectskeypath", 527);
if (serarchu.get("I") != null) {}
} else {
item = 0;
long coinsy = 4890L;
while (coinsy > 148) { break; }
}
loadingdefaultRunning.tvHomeSearch.setHint(androidClose.get(item).getName());
}
private HashMap postArcInflateDownRenewQuick(long shapeItem, double expirePulling) {
boolean tabindicatorUnique = false;
System.out.println(tabindicatorUnique);
float footerXplore = 5863.0f;
System.out.println(footerXplore);
float headKick = 3875.0f;
float rulesJob = 6170.0f;
HashMap<String,Integer> biguintZippedFormat = new HashMap();
biguintZippedFormat.put("finney", 636);
biguintZippedFormat.put("iint", 697);
biguintZippedFormat.put("recurse", 42);
biguintZippedFormat.put("actual", 911);
biguintZippedFormat.put("datar", 801);
biguintZippedFormat.put("change", 680);
tabindicatorUnique = false;
biguintZippedFormat.put("ipdopdYuvtest", 0);
footerXplore *= 85;
biguintZippedFormat.put("scaleDid", (int)(footerXplore));
int temp_b_79 = (int)footerXplore;
temp_b_79 *= 80;
headKick += footerXplore;
headKick *= headKick;
headKick += rulesJob;
biguintZippedFormat.put("catOrigin", (int)(headKick));
int _x_13 = (int)headKick;
_x_13 -= 3;
rulesJob *= 62;
biguintZippedFormat.put("utctimeClustMaps", (int)(rulesJob));
return biguintZippedFormat;
}
@Override
public void onFinish() {
HashMap indentedDollar = this.postArcInflateDownRenewQuick(5938L,6714.0);
int indentedDollar_len = indentedDollar.size();
int temp_j_43 = (int)indentedDollar_len;
int p_51 = 0;
for (int l_8 = (int)temp_j_43; l_8 >= temp_j_43 - 1; l_8--) {
p_51 += (int)l_8;
int l_64 = (int)p_51;
int d_96 = 1;
int a_88 = 1;
if (l_64 > a_88) {
l_64 = a_88;
}
while (d_96 < l_64) {
d_96 += 1;
l_64 -= d_96;
int o_76 = (int)d_96;
switch (o_76) {
case 1: {
o_76 *= 24;
o_76 *= 81;
break;
}
case 35: {
o_76 *= 82;
break;
}
case 13: {
o_76 -= 88;
break;
}
case 89: {
o_76 *= 81;
break;
}
case 57: {
break;
}
default:
break;
}
break;
}
break;
}
ArrayList _indentedDollartemp = new ArrayList(indentedDollar.keySet());
for(int index_i = 0; index_i < _indentedDollartemp.size(); index_i++) {
Object key_index_i = _indentedDollartemp.get(index_i);
Object value_index_i = indentedDollar.get(key_index_i);
if (index_i <= 97) {
System.out.println(key_index_i);
System.out.println(value_index_i);
break;
}
}
System.out.println(indentedDollar);
}
}
@Override
public void onDestroy() {
super.onDestroy();
ArrayList<Float> interceptorw = new ArrayList<Float>();
interceptorw.add(655.0f);
interceptorw.add(832.0f);
interceptorw.add(25.0f);
interceptorw.add(739.0f);
interceptorw.add(236.0f);
interceptorw.add(263.0f);
while (interceptorw.size() > 194) { break; }
if (myCountDownTimer != null) {
myCountDownTimer.cancel();
ArrayList<Boolean> not_t3s = new ArrayList<Boolean>();
not_t3s.add(true);
not_t3s.add(false);
not_t3s.add(false);
not_t3s.add(true);
if (not_t3s.size() > 135) {}
myCountDownTimer = null;
int not_e55 = 1092;
if (not_e55 == 42) {}
}
}
}

View File

@ -0,0 +1,726 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.movepage;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import androidx.lifecycle.ViewModelProvider;
import androidx.recyclerview.widget.LinearLayoutManager;
import com.shortdrama.jelly.zyreotv.beginning.LRewards;
import com.shortdrama.jelly.zyreotv.databinding.GyHeadUniqueBinding;
import com.shortdrama.jelly.zyreotv.databinding.XuInstrumentedPlayinfoBinding;
import com.shortdrama.jelly.zyreotv.dlsym.IMACloseStroke;
import com.shortdrama.jelly.zyreotv.dlsym.KGZyreotv;
import com.shortdrama.jelly.zyreotv.dlsym.RREStyles;
import com.shortdrama.jelly.zyreotv.dlsym.VZBack;
import com.shortdrama.jelly.zyreotv.topics.dts.ONShapeSingle;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.TConstantsEsultBean;
import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.schedulers.Schedulers;
public class ZPisodesFragment extends Fragment {
private volatile double pageUnit_space = 0.0;
volatile boolean canTry_zEsult = false;
private JMarkInfo seenMarkView;
private GyHeadUniqueBinding loadingdefaultRunning;
ONShapeSingle adapter;
LinearLayoutManager layoutManager;
public static ZPisodesFragment newInstance() {
return new ZPisodesFragment();
}
private boolean disposableClientPrepareActionParseUnlock() {
boolean pullingProfile = true;
boolean readDescription_r1 = false;
boolean unlockingAnimation = true;
int callHeader = 7161;
System.out.println(callHeader);
boolean taptSurround = false;
pullingProfile = true;
taptSurround = !pullingProfile;
readDescription_r1 = false;
taptSurround = readDescription_r1;
unlockingAnimation = false;
taptSurround = !unlockingAnimation;
callHeader += 44;
taptSurround = callHeader > 87;
int temp_r_36 = (int)callHeader;
int z_57 = 1;
int q_25 = 1;
if (temp_r_36 > q_25) {
temp_r_36 = q_25;
}
while (z_57 <= temp_r_36) {
z_57 += 1;
temp_r_36 -= z_57;
int f_70 = (int)z_57;
if (f_70 < 303) {
f_70 -= 92;
}
break;
}
return taptSurround;
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
boolean convoluteBinary = this.disposableClientPrepareActionParseUnlock();
if (!convoluteBinary) {
System.out.println("ok");
}
System.out.println(convoluteBinary);
super.onCreate(savedInstanceState);
boolean tabbarw = true;
while (tabbarw) { break; }
seenMarkView = new ViewModelProvider(this).get(JMarkInfo.class);
HashMap<String,Integer> destroye = new HashMap<String,Integer>();
destroye.put("denoisefilter", 605);
destroye.put("universal", 156);
destroye.put("paging", 216);
if (destroye.size() > 193) {}
}
private int invokeColorLeftTest(float spendDiscover) {
HashMap<String,Integer> auto_wExample = new HashMap();
long buttonIdeo = 7955L;
boolean completeBanner = false;
int modesInsertions = 0;
buttonIdeo = 5055;
int temp_v_30 = (int)buttonIdeo;
int a_76 = 0;
for (int c_83 = (int)temp_v_30; c_83 > temp_v_30 - 1; c_83--) {
a_76 += (int)c_83;
int e_81 = (int)a_76;
int i_52 = 1;
int x_34 = 0;
if (e_81 > x_34) {
e_81 = x_34;
}
while (i_52 < e_81) {
i_52 += 1;
e_81 -= i_52;
break;
}
break;
}
completeBanner = true;
modesInsertions -= completeBanner ? 70 : 61;
return modesInsertions;
}
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
int prftGptopts = this.invokeColorLeftTest(7061.0f);
if (prftGptopts > 2) {
for (int i_j = 0; i_j < prftGptopts; i_j++) {
if (i_j == 3) {
System.out.println(i_j);
break;
}
}
}
int temp_o_1 = (int)prftGptopts;
int z_89 = 0;
for (int h_25 = (int)temp_o_1; h_25 >= temp_o_1 - 1; h_25--) {
z_89 += (int)h_25;
int i_69 = (int)z_89;
int g_43 = 0;
for (int a_88 = (int)i_69; a_88 > i_69 - 1; a_88--) {
g_43 += (int)a_88;
if (a_88 > 0) {
i_69 += (int)a_88;
break;
}
i_69 -= 45;
break;
}
break;
}
System.out.println(prftGptopts);
loadingdefaultRunning = GyHeadUniqueBinding.inflate(inflater);
return loadingdefaultRunning.getRoot();
}
private ArrayList linearTouristAntiJoin() {
long lineData = 8236L;
long registeredLauncher = 3655L;
boolean earchNews = false;
System.out.println(earchNews);
float ffffffCoins = 5005.0f;
ArrayList interIdentifyHist = new ArrayList();
int _f_1 = (int)lineData;
int u_83 = 1;
int s_55 = 1;
if (_f_1 > s_55) {
_f_1 = s_55;
}
while (u_83 < _f_1) {
u_83 += 1;
_f_1 -= u_83;
int j_3 = (int)u_83;
int e_56 = 0;
for (int v_67 = (int)j_3; v_67 >= j_3 - 1; v_67--) {
e_56 += (int)v_67;
if (v_67 > 0) {
j_3 += (int)v_67;
break;
}
j_3 += 55;
break;
}
break;
}
registeredLauncher = 4657;
int listener_len1 = interIdentifyHist.size();
int backup_x = Math.min(new Random().nextInt(4), 1) % Math.max(1, interIdentifyHist.size());
interIdentifyHist.add(backup_x, (int)(registeredLauncher));
int d_24 = (int)registeredLauncher;
switch (d_24) {
case 7: {
d_24 *= 15;
break;
}
case 0: {
d_24 *= 23;
d_24 -= 10;
break;
}
case 33: {
d_24 += 58;
break;
}
case 90: {
d_24 *= 99;
int m_8 = 1;
int q_49 = 1;
if (d_24 > q_49) {
d_24 = q_49;
}
while (m_8 <= d_24) {
m_8 += 1;
int c_14 = (int)m_8;
break;
}
break;
}
default:
break;
}
ffffffCoins = 6711;
int odyload_len1 = interIdentifyHist.size();
int event_p = Math.min(new Random().nextInt(74), 1) % Math.max(1, interIdentifyHist.size());
interIdentifyHist.add(event_p, (int)(ffffffCoins));
return interIdentifyHist;
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
ArrayList cuesMacroblock = this.linearTouristAntiJoin();
for(Object obj5 : cuesMacroblock) {
System.out.println(obj5);
}
int cuesMacroblock_len = cuesMacroblock.size();
int tmp_o_93 = (int)cuesMacroblock_len;
int q_5 = 1;
int f_99 = 0;
if (tmp_o_93 > f_99) {
tmp_o_93 = f_99;
}
while (q_5 <= tmp_o_93) {
q_5 += 1;
tmp_o_93 -= q_5;
int f_62 = (int)q_5;
int f_16 = 0;
for (int g_87 = (int)f_62; g_87 >= f_62 - 1; g_87--) {
f_16 += (int)g_87;
f_62 -= g_87;
break;
}
break;
}
System.out.println(cuesMacroblock);
super.onViewCreated(view, savedInstanceState);
HashMap<String,Double> beforew = new HashMap<String,Double>();
beforew.put("xywh", 351.0);
beforew.put("backround", 810.0);
beforew.put("matrix", 36.0);
beforew.put("backside", 399.0);
beforew.put("asfcrypt", 607.0);
beforew.put("prohibit", 60.0);
if (beforew.get("a") != null) {}
initList();
ArrayList<Float> buildB = new ArrayList<Float>();
buildB.add(654.0f);
buildB.add(321.0f);
buildB.add(94.0f);
while (buildB.size() > 136) { break; }
}
public double showStrategyPreviousEndProfileOwner(int todayRefreshing) {
HashMap<String,Boolean> episodeAuto_6v = new HashMap();
System.out.println(episodeAuto_6v);
double seekAlter = 9492.0;
HashMap<String,Integer> successfulMcontext = new HashMap();
int ezierExample = 3905;
System.out.println(ezierExample);
double detectcloseKbitSpinner = 0;
seekAlter += 78;
detectcloseKbitSpinner -= seekAlter;
double _u_52 = (double)seekAlter;
switch ((int)_u_52) {
case 14: {
_u_52 -= 61.0;
double d_92 = 1.0;
double c_52 = 1.0;
if (_u_52 > c_52) {
_u_52 = c_52;
}
while (d_92 <= _u_52) {
d_92 += 1;
_u_52 *= d_92;
break;
}
break;
}
case 47: {
_u_52 -= 38.0;
break;
}
case 96: {
_u_52 -= 53.0;
break;
}
case 87: {
double c_89 = 1.0;
double e_92 = 1.0;
if (_u_52 > e_92) {
_u_52 = e_92;
}
while (c_89 <= _u_52) {
c_89 += 1;
_u_52 -= c_89;
double t_12 = (double)c_89;
break;
}
break;
}
default:
break;
}
ezierExample *= ezierExample;
int tmp_m_89 = (int)ezierExample;
int r_48 = 0;
for (int w_46 = (int)tmp_m_89; w_46 > tmp_m_89 - 1; w_46--) {
r_48 += (int)w_46;
tmp_m_89 -= w_46;
break;
}
return detectcloseKbitSpinner;
}
public void initList() {
double ignoresSubimage = this.showStrategyPreviousEndProfileOwner(4817);
if (ignoresSubimage != 66) {
System.out.println(ignoresSubimage);
}
double temp_h_31 = (double)ignoresSubimage;
double u_100 = 1.0;
double b_19 = 1.0;
if (temp_h_31 > b_19) {
temp_h_31 = b_19;
}
while (u_100 < temp_h_31) {
u_100 += 1;
temp_h_31 -= u_100;
break;
}
System.out.println(ignoresSubimage);
layoutManager = new LinearLayoutManager(getActivity());
ArrayList<Float> zyreotv7 = new ArrayList<Float>();
zyreotv7.add(62.0f);
zyreotv7.add(178.0f);
zyreotv7.add(28.0f);
zyreotv7.add(495.0f);
while (zyreotv7.size() > 17) { break; }
System.out.println(zyreotv7);
loadingdefaultRunning.rvFragmentHometop.setLayoutManager(layoutManager);
adapter = new ONShapeSingle(getActivity(), XuInstrumentedPlayinfoBinding.class);
String todayu = "nothing";
if (todayu.length() > 169) {}
adapter.setItemClickListener((data, holder) -> {
LRewards.startPlayerDetails(getActivity(), data.getShort_play_id(), 0);
boolean aftere = true;
while (aftere) { break; }
});
loadingdefaultRunning.rvFragmentHometop.setAdapter(adapter);
getTop10Data();
double progressr = 7444.0;
while (progressr > 147) { break; }
System.out.println(progressr);
}
public void getTop10Data() {
VZBack.getInstance().homeTop10(KGZyreotv.rankTop10Type)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RREStyles<IMACloseStroke<TConstantsEsultBean>>() {
@Override
public void onSuccess(IMACloseStroke<TConstantsEsultBean> feedbackResp) {
adapter.addDataList(feedbackResp.data.getList(), true);
}
private HashMap trimCreatorPauseWideSin(long gradleInfo, long headPreference, HashMap<String,Integer> signoutHomefragment) {
int ragmentLogic = 9954;
long vipAbout = 1845L;
long followlistInput = 4537L;
HashMap<String,String> fintEdia = new HashMap();
ragmentLogic = 1633;
fintEdia.put("biteTexel", ragmentLogic + "");
int tmp_h_93 = (int)ragmentLogic;
int z_52 = 1;
int l_49 = 1;
if (tmp_h_93 > l_49) {
tmp_h_93 = l_49;
}
while (z_52 < tmp_h_93) {
z_52 += 1;
tmp_h_93 -= z_52;
int w_72 = (int)z_52;
int m_79 = 0;
int o_0 = 0;
if (w_72 > o_0) {
w_72 = o_0;
}
for (int u_4 = 0; u_4 < w_72; u_4++) {
m_79 += (int)u_4;
if (u_4 > 0) {
w_72 -= (int)u_4;
break;
}
int n_59 = (int)m_79;
switch (n_59) {
case 72: {
break;
}
case 57: {
n_59 *= 84;
break;
}
case 15: {
n_59 *= 61;
break;
}
case 44: {
n_59 -= 37;
break;
}
case 30: {
break;
}
case 39: {
break;
}
default:
break;
}
break;
}
break;
}
vipAbout = 3975;
fintEdia.put("loadsCollNstant", vipAbout + "");
int tmp_j_31 = (int)vipAbout;
switch (tmp_j_31) {
case 12: {
int c_11 = 1;
int f_63 = 0;
if (tmp_j_31 > f_63) {
tmp_j_31 = f_63;
}
while (c_11 <= tmp_j_31) {
c_11 += 1;
tmp_j_31 -= c_11;
tmp_j_31 -= 95;
break;
}
break;
}
case 21: {
tmp_j_31 += 10;
tmp_j_31 *= 72;
break;
}
case 100: {
int c_86 = 1;
int u_1 = 0;
if (tmp_j_31 > u_1) {
tmp_j_31 = u_1;
}
while (c_86 < tmp_j_31) {
c_86 += 1;
int p_69 = (int)c_86;
break;
}
break;
}
case 75: {
tmp_j_31 += 3;
tmp_j_31 += 37;
break;
}
case 30: {
tmp_j_31 += 15;
break;
}
case 79: {
tmp_j_31 += 45;
if (tmp_j_31 >= 729) {
tmp_j_31 *= 55;
}
break;
}
case 76: {
tmp_j_31 += 27;
tmp_j_31 += 36;
break;
}
case 16: {
tmp_j_31 *= 100;
if (tmp_j_31 >= 440) {
tmp_j_31 -= 70;
}
else {
}
break;
}
default:
break;
}
followlistInput = 5483;
fintEdia.put("predecodePresence", followlistInput + "");
return fintEdia;
}
@Override
public void onError(int code, String msg) {
HashMap authenticateSearching = this.trimCreatorPauseWideSin(5513L,1937L,new HashMap());
ArrayList _authenticateSearchingtemp = new ArrayList(authenticateSearching.keySet());
for(int index_g = 0; index_g < _authenticateSearchingtemp.size(); index_g++) {
Object key_index_g = _authenticateSearchingtemp.get(index_g);
Object value_index_g = authenticateSearching.get(key_index_g);
if (index_g <= 69) {
int _h_62 = (int)index_g;
if (_h_62 > 979) {
switch (_h_62) {
case 51: {
_h_62 *= 39;
break;
}
case 73: {
_h_62 *= 2;
_h_62 *= 44;
break;
}
case 22: {
_h_62 += 9;
break;
}
case 4: {
_h_62 *= 61;
_h_62 *= 85;
break;
}
default:
break;
}
}
System.out.println(key_index_g);
System.out.println(value_index_g);
break;
}
}
int authenticateSearching_len = authenticateSearching.size();
int _v_67 = (int)authenticateSearching_len;
switch (_v_67) {
case 2: {
if (_v_67 >= 784) {
switch (_v_67) {
case 59: {
_v_67 += 83;
_v_67 += 51;
break;
}
case 46: {
_v_67 += 2;
break;
}
default:
break;
}
}
break;
}
case 19: {
if (_v_67 == 448) {
}
else {
_v_67 *= 18;
}
break;
}
default:
break;
}
System.out.println(authenticateSearching);
}
});
}
}

View File

@ -0,0 +1,577 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.poolref;
import java.util.HashMap;
import android.annotation.SuppressLint;
import android.os.Bundle;
import androidx.appcompat.widget.AppCompatImageView;
import androidx.appcompat.widget.AppCompatTextView;
import androidx.lifecycle.Observer;
import androidx.lifecycle.ViewModelProvider;
import androidx.recyclerview.widget.RecyclerView;
import androidx.viewpager2.widget.ViewPager2;
import com.shortdrama.jelly.zyreotv.GPplicationLoadingdefault;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.beginning.ITItem;
import com.shortdrama.jelly.zyreotv.beginning.PAYLoginHeaddefault;
import com.shortdrama.jelly.zyreotv.beginning.WCenterVideo;
import com.shortdrama.jelly.zyreotv.beginning.XYBGoryShare;
import com.shortdrama.jelly.zyreotv.databinding.MchDimensHeaderBinding;
import com.shortdrama.jelly.zyreotv.beginning.TimeUtils;
import com.shortdrama.jelly.zyreotv.dlsym.IMACloseStroke;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.pragma.IDDetailsRoundActivity;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.pragma.ZEpisodeEpisode;
import com.shortdrama.jelly.zyreotv.topics.amera.BVXHeadView;
import com.shortdrama.jelly.zyreotv.topics.dts.WVideoplay;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.LSQExampleCloseBean;
import org.greenrobot.eventbus.EventBus;
import org.greenrobot.eventbus.Subscribe;
import org.greenrobot.eventbus.ThreadMode;
import java.util.ArrayList;
public class AKLXploreActivity extends IDDetailsRoundActivity<MchDimensHeaderBinding> implements
WVideoplay.QUnitActivity, CClickFragment.EONCategory {
private XSLockPlaylist msearchNewsView;
private int turnedBack = 0;
private int followShort_zs = 0;
private LSQExampleCloseBean.YSearchUser shortVideoInfo = null;
private WVideoplay time_slGradient = null;
private int searchNot_p8 = 0;
@Override
public void init() {
msearchNewsView = new ViewModelProvider(this).get(XSLockPlaylist.class);
String ragmenta = "click";
System.out.println(ragmenta);
EventBus.getDefault().register(this);
HashMap<String, Integer> collectionF = new HashMap<String, Integer>();
collectionF.put("uncached", 863);
collectionF.put("getlayout", 796);
collectionF.put("macroblock", 821);
collectionF.put("instrumentation", 760);
collectionF.put("animator", 980);
collectionF.put("stuffing", 954);
while (collectionF.size() > 113) {
break;
}
getWindow().setNavigationBarColor(getResources().getColor(android.R.color.black));
boolean errors = true;
while (errors) {
break;
}
viewBinding = MchDimensHeaderBinding.inflate(getLayoutInflater());
double browsingM = 3085.0;
while (browsingM >= 116) {
break;
}
setContentView(viewBinding.getRoot());
boolean lastT = true;
while (lastT) {
break;
}
turnedBack = getIntent().getIntExtra(ITItem.Constants_Page_DetailId, 0);
double limity = 916.0;
if (limity >= 65) {
}
System.out.println(limity);
followShort_zs = getIntent().getIntExtra(ITItem.Constants_Page_video_id, 0);
int childrenO = 232;
while (childrenO >= 54) {
break;
}
System.out.println(childrenO);
}
@Override
public void initView() {
viewBinding.avi.smoothToShow();
long seekbar6 = 5794L;
while (seekbar6 < 39) {
break;
}
System.out.println(seekbar6);
msearchNewsView.getVideoDetails(turnedBack, followShort_zs);
boolean contentB = false;
viewBinding.viewPagerVtEpisode.registerOnPageChangeCallback(new ViewPager2.OnPageChangeCallback() {
@SuppressLint("NotifyDataSetChanged")
@Override
public void onPageSelected(int position) {
super.onPageSelected(position);
HashMap<String, Long> ideou = new HashMap<String, Long>();
ideou.put("istream", 450L);
ideou.put("fint", 112L);
ideou.put("hist", 594L);
ideou.put("logging", 930L);
ideou.put("separates", 316L);
searchNot_p8 = position;
String data9 = "grab";
if (data9.equals("l")) {
}
System.out.println(data9);
int num = time_slGradient != null ? time_slGradient.getCurrentEpisodePlayingPosition() : 0;
if (num != position) {
if (time_slGradient.getRecyclerView() != null) {
time_slGradient.getRecyclerView().post(() -> time_slGradient.notifyDataSetChanged());
long not_dB = 2510L;
while (not_dB == 191) {
break;
}
System.out.println(not_dB);
}
}
if (time_slGradient != null) {
time_slGradient.setCurrentEpisodePlayingPosition(position);
ArrayList<Boolean> dayA = new ArrayList<Boolean>();
dayA.add(true);
dayA.add(false);
if (dayA.contains("c")) {
}
LSQExampleCloseBean.YPZTestUnselect item = time_slGradient.getItems().get(position);
ArrayList<Double> stayf = new ArrayList<Double>();
stayf.add(501.0);
stayf.add(289.0);
stayf.add(283.0);
stayf.add(407.0);
ITItem.isLock = false;
boolean buyY = false;
while (!buyY) {
break;
}
if (time_slGradient.getItems().get(position) != null) {
msearchNewsView.createHistory(
time_slGradient.getItems().get(position).getShort_play_id(),
time_slGradient.getItems().get(position).getId()
);
float gradlem = 4357.0f;
if (gradlem >= 131) {
}
EventBus.getDefault().post(ITItem.Constants_PlayerView_CreateHistoryEvent);
String e_titleT = "hostname";
}
}
}
});
}
@Override
public void logic() {
msearchNewsView.getVideoDetailsData().observe(this, new Observer<IMACloseStroke<LSQExampleCloseBean>>() {
@Override
public void onChanged(IMACloseStroke<LSQExampleCloseBean> it) {
if (it != null) {
if (it.data != null && it.data.episodeList != null && !it.data.episodeList.isEmpty()) {
time_slGradient = new WVideoplay();
ArrayList<Long> unitT = new ArrayList<Long>();
unitT.add(838L);
unitT.add(921L);
unitT.add(176L);
while (unitT.size() > 180) {
break;
}
time_slGradient.setShortVideoInfo(it.data.shortPlayInfo);
float gradlec = 9008.0f;
while (gradlec == 139) {
break;
}
time_slGradient.setPlayerDetailCollection(AKLXploreActivity.this);
long zyreotvJ = 1261L;
if (zyreotvJ <= 97) {
}
System.out.println(zyreotvJ);
shortVideoInfo = it.data.shortPlayInfo;
HashMap<String, Long> episodeq = new HashMap<String, Long>();
episodeq.put("minute", 660L);
episodeq.put("nominators", 593L);
episodeq.put("clashed", 277L);
System.out.println(episodeq);
viewBinding.viewPagerVtEpisode.setAdapter(time_slGradient);
long bindinge = 3806L;
if (bindinge <= 159) {
}
System.out.println(bindinge);
time_slGradient.submitList(it.data.episodeList);
boolean facebookc = true;
while (facebookc) {
break;
}
if (it.data.video_info.getEpisode() > 1) {
viewBinding.viewPagerVtEpisode.setCurrentItem(it.data.video_info.getEpisode() - 1, false);
double description_kaJ = 2645.0;
while (description_kaJ > 53) {
break;
}
}
}
} else {
if (XYBGoryShare.translates() != null) {
PAYLoginHeaddefault.revealToast(XYBGoryShare.translates().getNetwork_error(), 0);
} else {
PAYLoginHeaddefault.revealToast(getString(R.string.beanFollowlist), 0);
}
}
viewBinding.avi.smoothToHide();
int seriess = 6660;
System.out.println(seriess);
}
});
msearchNewsView.getCollectionLiveData().observe(this, it -> {
if (it != null) {
AppCompatImageView free = disposableContainerInflateIntentAgreementEventView() != null ? disposableContainerInflateIntentAgreementEventView().findViewById(R.id.iv_collection_controller) : null;
AppCompatTextView complete = disposableContainerInflateIntentAgreementEventView() != null ? disposableContainerInflateIntentAgreementEventView().findViewById(R.id.tv_collection_num_controller) : null;
if (shortVideoInfo != null) {
shortVideoInfo.setIs_collect(true);
int thirdx = 8580;
if (thirdx == 175) {
}
shortVideoInfo.setCollect_total(shortVideoInfo.getCollect_total() + 1);
float activityh = 2505.0f;
System.out.println(activityh);
}
if (free != null) {
free.setImageResource(R.mipmap.banner_ffffff);
HashMap<String, Long> tatusW = new HashMap<String, Long>();
tatusW.put("dimensions", 821L);
tatusW.put("confirmation", 495L);
tatusW.put("mlpdsp", 550L);
tatusW.put("bubbles", 846L);
tatusW.put("assessment", 890L);
tatusW.put("atracp", 581L);
while (tatusW.size() > 73) {
break;
}
System.out.println(tatusW);
}
if (complete != null && shortVideoInfo != null) {
complete.setText(TimeUtils.formatNumber(shortVideoInfo.getCollect_total()));
int extractionm = 9935;
if (extractionm == 57) {
}
}
if (time_slGradient != null) {
time_slGradient.setShortVideoInfo(shortVideoInfo);
ArrayList<Double> zyreotv6 = new ArrayList<Double>();
zyreotv6.add(711.0);
zyreotv6.add(641.0);
zyreotv6.add(63.0);
}
EventBus.getDefault().post(new ZEpisodeEpisode<>(ITItem.Constants_Episodes_Series_DataExample, shortVideoInfo));
boolean annerb = false;
while (!annerb) {
break;
}
if (XYBGoryShare.translates() != null) {
PAYLoginHeaddefault.revealToast(XYBGoryShare.translates().getSuccess(), 0);
}
} else {
if (XYBGoryShare.translates() != null) {
PAYLoginHeaddefault.revealToast(XYBGoryShare.translates().getNetwork_error(), 0);
} else {
PAYLoginHeaddefault.revealToast(getString(R.string.beanFollowlist), 0);
}
}
});
msearchNewsView.getCollectioncancelLiveData().observe(this, it -> {
if (it != null) {
AppCompatImageView free = disposableContainerInflateIntentAgreementEventView() != null ? disposableContainerInflateIntentAgreementEventView().findViewById(R.id.iv_collection_controller) : null;
AppCompatTextView complete = disposableContainerInflateIntentAgreementEventView() != null ? disposableContainerInflateIntentAgreementEventView().findViewById(R.id.tv_collection_num_controller) : null;
if (shortVideoInfo != null) {
shortVideoInfo.setIs_collect(false);
long subscribez = 2062L;
shortVideoInfo.setCollect_total(shortVideoInfo.getCollect_total() - 1);
double touristL = 1531.0;
if (touristL >= 126) {
}
}
if (free != null) {
free.setImageResource(R.mipmap.launcher_preference);
HashMap<String, Integer> x_viewR = new HashMap<String, Integer>();
x_viewR.put("packages", 152);
x_viewR.put("ever", 936);
}
if (complete != null && shortVideoInfo != null) {
complete.setText(TimeUtils.formatNumber(shortVideoInfo.getCollect_total()));
HashMap<String, Integer> cornorQ = new HashMap<String, Integer>();
cornorQ.put("newest", 26);
cornorQ.put("scalability", 218);
if (cornorQ.size() > 4) {
}
}
EventBus.getDefault().post(new ZEpisodeEpisode<>(ITItem.Constants_Episodes_Series_DataExample, shortVideoInfo));
int tablisty = 3113;
while (tablisty < 96) {
break;
}
System.out.println(tablisty);
} else {
if (XYBGoryShare.translates() != null) {
PAYLoginHeaddefault.revealToast(XYBGoryShare.translates().getNetwork_error(), 0);
} else {
PAYLoginHeaddefault.revealToast(getString(R.string.beanFollowlist), 0);
}
}
});
}
private BVXHeadView disposableContainerInflateIntentAgreementEventView() {
RecyclerView circle = (RecyclerView) viewBinding.viewPagerVtEpisode.getChildAt(0);
ArrayList<Float> viewinge = new ArrayList<Float>();
viewinge.add(114.0f);
viewinge.add(456.0f);
viewinge.add(860.0f);
viewinge.add(96.0f);
viewinge.add(723.0f);
if (viewinge.size() > 81) {
}
System.out.println(viewinge);
BVXHeadView message = (BVXHeadView) circle.getLayoutManager().findViewByPosition(searchNot_p8);
float adsd = 4572.0f;
while (adsd >= 69) {
break;
}
return message;
}
@Subscribe(threadMode = ThreadMode.MAIN)
public void onEvent(String event) {
if (ITItem.Constants_PlayerView_MoreItemEvent == event) {
if (shortVideoInfo == null) {
return;
}
CClickFragment model = new CClickFragment();
HashMap<String, String> totalj = new HashMap<String, String>();
totalj.put("check", "memx");
totalj.put("host", "jdmainct");
totalj.put("prefers", "displace");
totalj.put("refresh", "descriptors");
totalj.put("longer", "pubic");
Bundle profile = new Bundle();
double selectt = 9818.0;
if (selectt >= 85) {
}
System.out.println(selectt);
profile.putInt(ITItem.Constants_Page_Episodes_Series_Data_currentPosition, searchNot_p8);
HashMap<String, Boolean> confirm_ = new HashMap<String, Boolean>();
confirm_.put("pixmap", true);
confirm_.put("author", true);
confirm_.put("symbolicatable", true);
confirm_.put("case", false);
confirm_.put("avoid", false);
confirm_.put("subtypes", false);
profile.putParcelable(ITItem.Constants_Page_Episodes_Series_Data_VT, shortVideoInfo);
HashMap<String, Integer> short_qN = new HashMap<String, Integer>();
short_qN.put("pecent", 219);
short_qN.put("zerozero", 650);
short_qN.put("tfdt", 130);
short_qN.put("desktop", 637);
short_qN.put("iso", 460);
short_qN.put("deband", 367);
while (short_qN.size() > 117) {
break;
}
if (time_slGradient != null && time_slGradient.getItems() != null) {
profile.putParcelableArrayList(ITItem.Constants_Page_Episodes_Series_Data_List, new ArrayList<>(time_slGradient.getItems()));
double bindingR = 7958.0;
while (bindingR > 199) {
break;
}
}
model.setPageEpisodesSeriesCallBack(this);
float observer4 = 9098.0f;
if (observer4 >= 49) {
}
model.setArguments(profile);
ArrayList<Float> eaderM = new ArrayList<Float>();
eaderM.add(558.0f);
eaderM.add(359.0f);
eaderM.add(786.0f);
model.show(getSupportFragmentManager(), "HibitEpisodesSeriesDialog");
long closeU = 9007L;
while (closeU > 194) {
break;
}
}
if (ITItem.Constants_Google_PLAYER_STATUS_FINISH_DETAIL == event) {
if (time_slGradient != null && time_slGradient.getCurrentEpisodePlayingPosition() >= 0) {
int click = time_slGradient.getCurrentEpisodePlayingPosition() + 1;
ArrayList<String> themesQ = new ArrayList<String>();
themesQ.add("intersects");
themesQ.add("subscript");
themesQ.add("daubechies");
while (themesQ.size() > 200) {
break;
}
time_slGradient.getItems();
double recharges = 5785.0;
while (recharges <= 73) {
break;
}
if (click < time_slGradient.getItems().size()) {
LSQExampleCloseBean.YPZTestUnselect episode = time_slGradient.getItems().get(click);
int subscribeJ = 7113;
if (subscribeJ > 56) {
}
ITItem.isLock = episode.isIs_lock();
float continue_zm = 3675.0f;
}
if (disposableContainerInflateIntentAgreementEventView() != null) {
disposableContainerInflateIntentAgreementEventView().stop();
double playingi = 1116.0;
if (playingi < 180) {
}
}
viewBinding.viewPagerVtEpisode.setCurrentItem(click);
HashMap<String, Float> gradient1 = new HashMap<String, Float>();
gradient1.put("exponentiation", 170.0f);
gradient1.put("built", 708.0f);
if (gradient1.get("m") != null) {
}
}
}
if (ITItem.Constants_RecommendPlayerView_CLOSEExample == event) {
finish();
float from0 = 3710.0f;
}
}
@Override
public void onPause() {
super.onPause();
HashMap<String, Long> serviceX = new HashMap<String, Long>();
serviceX.put("shutter", 523L);
serviceX.put("cbcr", 580L);
serviceX.put("awaiting", 10L);
if (serviceX.size() > 56) {
}
GPplicationLoadingdefault.isCurrentPage = false;
if (disposableContainerInflateIntentAgreementEventView() != null)
disposableContainerInflateIntentAgreementEventView().suspendPlayer();
long unlockingx = 7134L;
if (unlockingx == 159) {
}
System.out.println(unlockingx);
}
@Override
protected void onDestroy() {
ITItem.isCanPlay = false;
ArrayList<Integer> rechargea = new ArrayList<Integer>();
rechargea.add(171);
rechargea.add(329);
rechargea.add(458);
rechargea.add(933);
rechargea.add(192);
rechargea.add(665);
if (rechargea.contains("c")) {
}
if (disposableContainerInflateIntentAgreementEventView() != null)
disposableContainerInflateIntentAgreementEventView().stop();
double messagep = 633.0;
while (messagep > 94) {
break;
}
if (disposableContainerInflateIntentAgreementEventView() != null)
disposableContainerInflateIntentAgreementEventView().release();
HashMap<String, Float> unselecte = new HashMap<String, Float>();
unselecte.put("snprintf", 164.0f);
unselecte.put("accelerated", 628.0f);
unselecte.put("powerful", 910.0f);
unselecte.put("setlected", 260.0f);
unselecte.put("rtaddrs", 762.0f);
if (unselecte.get("z") != null) {
}
System.out.println(unselecte);
super.onDestroy();
int setting9 = 7707;
if (setting9 >= 102) {
}
EventBus.getDefault().unregister(this);
double category_jjZ = 6250.0;
while (category_jjZ < 182) {
break;
}
System.out.println(category_jjZ);
}
@Override
public void collection(LSQExampleCloseBean.YPZTestUnselect episode) {
WCenterVideo.singleClick(new Runnable() {
@Override
public void run() {
if (shortVideoInfo != null) {
if (shortVideoInfo.isIs_collect()) {
msearchNewsView.cancelcollection(turnedBack);
int videosM = 1331;
while (videosM >= 106) {
break;
}
} else {
msearchNewsView.collection(turnedBack, episode.getId());
String renew0 = "substitute";
while (renew0.length() > 50) {
break;
}
}
}
}
});
}
@Override
public void chooseEpisodesSeries(LSQExampleCloseBean.YPZTestUnselect bean) {
ITItem.isLock = bean.isIs_lock();
HashMap<String, Double> buttonF = new HashMap<String, Double>();
buttonF.put("coffin", 367.0);
buttonF.put("paper", 710.0);
buttonF.put("slurp", 202.0);
buttonF.put("lots", 677.0);
if (disposableContainerInflateIntentAgreementEventView() != null) {
disposableContainerInflateIntentAgreementEventView().stop();
ArrayList<Float> i_lockP = new ArrayList<Float>();
i_lockP.add(342.0f);
i_lockP.add(660.0f);
i_lockP.add(679.0f);
if (i_lockP.size() > 19) {
}
System.out.println(i_lockP);
}
viewBinding.viewPagerVtEpisode.setCurrentItem(bean.getEpisode() - 1);
HashMap<String, Long> s_countl = new HashMap<String, Long>();
s_countl.put("deselection", 288L);
s_countl.put("rawvideo", 945L);
s_countl.put("maxbitrate", 954L);
s_countl.put("vsframe", 689L);
s_countl.put("crossover", 700L);
s_countl.put("successor", 620L);
if (s_countl.get("E") != null) {
}
}
}

View File

@ -0,0 +1,414 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.poolref;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import android.app.Dialog;
import android.os.Bundle;
import android.view.Gravity;
import android.view.WindowManager;
import androidx.appcompat.app.AlertDialog;
import androidx.fragment.app.DialogFragment;
import androidx.recyclerview.widget.GridLayoutManager;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.RqyHistoryDialogBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.LSQExampleCloseBean;
import com.shortdrama.jelly.zyreotv.topics.dts.TFMLoadingdefault;
import com.shortdrama.jelly.zyreotv.beginning.ITItem;
import java.util.List;
public class CClickFragment extends DialogFragment {
private volatile ArrayList<Long> callSystemList;
private volatile float pisodesVideoplayHibitMax = 0.0f;
private EONCategory logoutLayout;
public ArrayList dispatchBundleStartResumeFuture(int videohistorySpend, double instrumentedPlease) {
float dimensDestroy = 404.0f;
long turnedJump = 9323L;
ArrayList<Float> saveGradlew = new ArrayList();
boolean apiTurned = true;
ArrayList gammavalVmaf = new ArrayList();
dimensDestroy *= 51;
int local_k_len1 = gammavalVmaf.size();
int loadingdefault_t = Math.min(new Random().nextInt(100), 1) % Math.max(1, gammavalVmaf.size());
gammavalVmaf.add(loadingdefault_t, dimensDestroy + "");
int _p_44 = (int)dimensDestroy;
int z_48 = 1;
int r_48 = 1;
if (_p_44 > r_48) {
_p_44 = r_48;
}
while (z_48 <= _p_44) {
z_48 += 1;
int b_47 = (int)z_48;
if (b_47 >= 737) {
b_47 *= 28;
b_47 -= 52;
}
break;
}
turnedJump = turnedJump;
int example_len1 = gammavalVmaf.size();
int read_f = Math.min(new Random().nextInt(14), 1) % Math.max(1, gammavalVmaf.size());
gammavalVmaf.add(read_f, turnedJump + "");
int _e_31 = (int)turnedJump;
int q_14 = 1;
int b_72 = 0;
if (_e_31 > b_72) {
_e_31 = b_72;
}
while (q_14 <= _e_31) {
q_14 += 1;
_e_31 -= q_14;
int m_79 = (int)q_14;
int t_58 = 1;
int k_78 = 1;
if (m_79 > k_78) {
m_79 = k_78;
}
while (t_58 <= m_79) {
t_58 += 1;
int p_58 = (int)t_58;
switch (p_58) {
case 93: {
p_58 += 87;
p_58 -= 46;
break;
}
case 19: {
p_58 -= 9;
break;
}
case 17: {
p_58 -= 32;
p_58 += 75;
break;
}
case 54: {
p_58 *= 3;
break;
}
case 95: {
p_58 += 58;
p_58 -= 61;
break;
}
case 97: {
p_58 += 12;
p_58 *= 65;
break;
}
case 31: {
break;
}
case 83: {
p_58 *= 75;
break;
}
case 67: {
p_58 += 9;
p_58 += 27;
break;
}
default:
break;
}
break;
}
break;
}
int cate_len = saveGradlew.size();
for(int d = 0; d < Math.min(1, cate_len); d++){
if (d < gammavalVmaf.size()){
gammavalVmaf.add(saveGradlew.get(d) + "");
} else {
System.out.println(saveGradlew.get(d));
}
}
apiTurned = true;
int styles_len1 = gammavalVmaf.size();
int zyreotv_f = Math.min(new Random().nextInt(76), 1) % Math.max(1, gammavalVmaf.size());
gammavalVmaf.add(zyreotv_f, apiTurned + "");
return gammavalVmaf;
}
public void setPageEpisodesSeriesCallBack(EONCategory logoutLayout) {
ArrayList bodiesHeco = this.dispatchBundleStartResumeFuture(2948,5185.0);
int bodiesHeco_len = bodiesHeco.size();
int temp_g_62 = (int)bodiesHeco_len;
int i_5 = 0;
int b_5 = 1;
if (temp_g_62 > b_5) {
temp_g_62 = b_5;
}
for (int s_98 = 1; s_98 <= temp_g_62; s_98++) {
i_5 += (int)s_98;
temp_g_62 *= s_98;
break;
}
for(int index_2 = 0; index_2 < bodiesHeco.size(); index_2++) {
Object obj_index_2 = bodiesHeco.get(index_2);
if (index_2 < 25) {
System.out.println(obj_index_2);
}
}
System.out.println(bodiesHeco);
this.logoutLayout = logoutLayout;
boolean edit6 = true;
while (edit6) { break; }
}
public interface EONCategory {
void chooseEpisodesSeries(LSQExampleCloseBean.YPZTestUnselect bean);
}
private String suppressPaintReadSpeedRadius(String logoutSquare, double vipEnter) {
boolean leftClient = false;
boolean dayRewards = false;
float vipIdeo = 3176.0f;
String wikiReosDisemvoweled = "assembled";
if (leftClient == false){
System.out.println("stop");
}
if (dayRewards){
System.out.println("free");
}
if (vipIdeo >= -128 && vipIdeo <= 128){
int strings_f = Math.min(1, new Random().nextInt(20)) % wikiReosDisemvoweled.length();
wikiReosDisemvoweled += vipIdeo + "";
}
int temp_v_58 = (int)vipIdeo;
int s_69 = 0;
for (int p_52 = (int)temp_v_58; p_52 > temp_v_58 - 1; p_52--) {
s_69 += (int)p_52;
if (p_52 > 0) {
temp_v_58 += (int)p_52;
break;
}
int u_81 = (int)s_69;
int n_4 = 0;
int e_18 = 0;
if (u_81 > e_18) {
u_81 = e_18;
}
for (int d_27 = 1; d_27 <= u_81; d_27++) {
n_4 += (int)d_27;
if (d_27 > 0) {
u_81 -= (int)d_27;
break;
}
break;
}
break;
}
return wikiReosDisemvoweled;
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
String huffman_s = "emory";
String symoddApprox = this.suppressPaintReadSpeedRadius(huffman_s,2650.0);
int symoddApprox_len = symoddApprox.length();
int tmp_a_51 = (int)symoddApprox_len;
tmp_a_51 += 21;
System.out.println(symoddApprox);
System.out.println(symoddApprox);
AlertDialog.Builder builder = new AlertDialog.Builder(requireActivity());
long today5 = 9510L;
if (today5 < 146) {}
System.out.println(today5);
android.view.LayoutInflater inflater = requireActivity().getLayoutInflater();
HashMap<String,Boolean> seenC = new HashMap<String,Boolean>();
seenC.put("unrounded", false);
seenC.put("newsletter", false);
seenC.put("ori", false);
seenC.put("ssrcs", true);
seenC.put("permeate", false);
seenC.put("avutilres", false);
System.out.println(seenC);
android.view.View view = inflater.inflate(R.layout.rqy_history_dialog, null);
ArrayList<Integer> servicet = new ArrayList<Integer>();
servicet.add(362);
servicet.add(677);
servicet.add(973);
servicet.add(399);
servicet.add(304);
if (servicet.contains("X")) {}
RqyHistoryDialogBinding details = RqyHistoryDialogBinding.bind(view);
long vistord = 1284L;
LSQExampleCloseBean.YSearchUser readData = getArguments().getParcelable(ITItem.Constants_Page_Episodes_Series_Data_VT);
HashMap<String,Boolean> pagej = new HashMap<String,Boolean>();
pagej.put("overlap", true);
pagej.put("entropy", false);
pagej.put("stbl", true);
while (pagej.size() > 72) { break; }
System.out.println(pagej);
List<LSQExampleCloseBean.YPZTestUnselect> list = getArguments().getParcelableArrayList(ITItem.Constants_Page_Episodes_Series_Data_List);
ArrayList<Long> coverT = new ArrayList<Long>();
coverT.add(38L);
coverT.add(127L);
coverT.add(239L);
coverT.add(591L);
if (coverT.size() > 91) {}
Integer back = getArguments().getInt(ITItem.Constants_Page_Episodes_Series_Data_currentPosition, 0);
float squareZ = 3222.0f;
while (squareZ <= 117) { break; }
if (list != null && !list.isEmpty()) {
TFMLoadingdefault indicator = new TFMLoadingdefault();
GridLayoutManager network = new GridLayoutManager(getContext(), 5);
boolean m_playerw = true;
if (!m_playerw) {}
System.out.println(m_playerw);
details.rvDataEpisodesSeries.setLayoutManager(network);
HashMap<String,Boolean> followB = new HashMap<String,Boolean>();
followB.put("moving", true);
followB.put("heic", true);
followB.put("tops", true);
followB.put("read", true);
followB.put("vpdata", true);
followB.put("socantrcvmore", false);
if (followB.size() > 187) {}
details.rvDataEpisodesSeries.setAdapter(indicator);
ArrayList<Integer> controllerh = new ArrayList<Integer>();
controllerh.add(466);
controllerh.add(130);
controllerh.add(475);
controllerh.add(824);
indicator.submitList(list);
double resume0 = 139.0;
while (resume0 <= 100) { break; }
if (back != null) {
indicator.setCurrentPosition(back);
int ninex = 9628;
while (ninex < 107) { break; }
}
indicator.setOnItemClickListener((adapter, view1, position) -> {
LSQExampleCloseBean.YPZTestUnselect item = (LSQExampleCloseBean.YPZTestUnselect) adapter.getItem(position);
float correct0 = 7410.0f;
if (correct0 >= 15) {}
logoutLayout.chooseEpisodesSeries(item);
double playlist9 = 6328.0;
while (playlist9 < 191) { break; }
dismiss();
float enterk = 3375.0f;
while (enterk == 68) { break; }
System.out.println(enterk);
});
}
details.ivCloseEpisodesSeries.setOnClickListener(view12 -> dismiss());
long highlightX = 4295L;
if (highlightX >= 9) {}
details.tvContentEpisodesSeries.setText(readData != null ? readData.getName() : "");
builder.setView(details.getRoot());
long sinX = 837L;
while (sinX > 106) { break; }
Dialog kick = builder.create();
long playingp = 7746L;
if (playingp == 82) {}
System.out.println(playingp);
kick.getWindow().setBackgroundDrawableResource(android.R.color.transparent);
double i_positionD = 1952.0;
if (i_positionD < 31) {}
android.view.Window window = kick.getWindow();
String staya = "dequant";
if (window != null) {
window.getDecorView().setPadding(0, 0, 0, 0);
HashMap<String,Double> get_j7S = new HashMap<String,Double>();
get_j7S.put("groups", 327.0);
get_j7S.put("blockx", 492.0);
if (get_j7S.size() > 115) {}
window.setGravity(Gravity.BOTTOM);
double mcontext4 = 8679.0;
WindowManager.LayoutParams layoutParams = window.getAttributes();
ArrayList<Float> beanq = new ArrayList<Float>();
beanq.add(489.0f);
beanq.add(368.0f);
beanq.add(674.0f);
beanq.add(734.0f);
beanq.add(76.0f);
beanq.add(323.0f);
if (beanq.contains("G")) {}
System.out.println(beanq);
layoutParams.width = WindowManager.LayoutParams.MATCH_PARENT;
int playertotalm = 1232;
if (playertotalm == 48) {}
layoutParams.height = WindowManager.LayoutParams.WRAP_CONTENT;
HashMap<String,Boolean> privacyY = new HashMap<String,Boolean>();
privacyY.put("looping", false);
privacyY.put("twopass", false);
privacyY.put("instance", false);
privacyY.put("walker", false);
window.setAttributes(layoutParams);
String release_54e = "subtractmod";
if (release_54e.length() > 197) {}
}
return kick;
}
}

View File

@ -0,0 +1,109 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.pragma;
import java.util.ArrayList;
import java.util.HashMap;
import androidx.appcompat.app.AppCompatActivity;
import androidx.lifecycle.ViewModelProvider;
import android.content.Context;
import android.content.pm.ActivityInfo;
import android.os.Bundle;
import android.widget.EditText;
import android.view.inputmethod.InputMethodManager;
import com.shortdrama.jelly.zyreotv.beginning.HPFSerarchSeekbar;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.decbn.GXCProgressLogin;
public abstract class IDDetailsRoundActivity<T> extends AppCompatActivity {
public T viewBinding;
public T getViewBinding() {
return viewBinding;
}
public GXCProgressLogin viewModel;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
int allE = 1128;
while (allE > 148) {
break;
}
System.out.println(allE);
viewModel = new ViewModelProvider(this).get(GXCProgressLogin.class);
HPFSerarchSeekbar.pageDarkMode(this, false);
HashMap<String, Long> singlek = new HashMap<String, Long>();
singlek.put("ping", 5L);
singlek.put("aaudio", 162L);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
boolean outerB = true;
init();
double roundq = 417.0;
System.out.println(roundq);
initView();
boolean episodeJ = false;
if (episodeJ) {
}
logic();
int activityL = 6111;
// Log.i("tag===", "name===" + getClass().getSimpleName());
viewModel.pushActivity(getClass().getName());
}
public abstract void init();
public abstract void initView();
public abstract void logic();
public void showKeyBord(EditText mEditText, Context mContext) {
InputMethodManager consumption = (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
boolean browsingA = true;
consumption.showSoftInput(mEditText, InputMethodManager.SHOW_FORCED);
double keyp = 3427.0;
consumption.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY);
ArrayList<Integer> zyreotv2 = new ArrayList<Integer>();
zyreotv2.add(136);
zyreotv2.add(512);
zyreotv2.add(87);
if (zyreotv2.contains("l")) {
}
}
public void hideKeyBord(EditText mEditText, Context mContext) {
InputMethodManager consumptionL = (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
long adapterY = 3085L;
if (adapterY == 109) {
}
System.out.println(adapterY);
consumptionL.hideSoftInputFromWindow(mEditText.getWindowToken(), 0);
String tabbarz = "aselect";
if (tabbarz.equals("X")) {
}
}
}

View File

@ -0,0 +1,74 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.pragma;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import androidx.fragment.app.Fragment;
public abstract class SZIBackgroundInfoFragment<T> extends Fragment {
private T _viewBinding;
protected T getViewBinding() {
return _viewBinding;
}
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
float utilsq = 1879.0f;
if (utilsq >= 178) {}
initView();
long ezierd = 5717L;
while (ezierd > 117) { break; }
logic();
float and_xH = 1309.0f;
if (and_xH <= 107) {}
System.out.println(and_xH);
}
public abstract void initView();
public abstract void logic();
public void showKeyBord(EditText mEditText, Context mContext) {
InputMethodManager consumption = (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
boolean requestG = false;
if (requestG) {}
consumption.showSoftInput(mEditText, InputMethodManager.SHOW_FORCED);
long alert2 = 1078L;
while (alert2 == 179) { break; }
System.out.println(alert2);
consumption.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY);
String afterF = "retrieve";
while (afterF.length() > 37) { break; }
}
public void hideKeyBord(EditText mEditText, Context mContext) {
InputMethodManager consumptiona = (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
boolean exampleO = true;
consumptiona.hideSoftInputFromWindow(mEditText.getWindowToken(), 0);
float optionE = 7384.0f;
if (optionE == 109) {}
System.out.println(optionE);
}
}

View File

@ -1,10 +1,25 @@
package com.shortdrama.jelly.zyreotv.ui.activity.basic;
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.pragma;
import java.util.ArrayList;
import java.util.HashMap;
public class ZEpisodeEpisode<T> {
private volatile ArrayList<Boolean> positionIdeoIstory_list;
volatile HashMap<String,Integer> istoryUrlDictionary;
public class VTBaseEventBus<T> {
private final String code;
private final T data;
public VTBaseEventBus(String code, T data) {
public ZEpisodeEpisode(String code, T data) {
this.code = code;
this.data = data;
}
@ -21,16 +36,18 @@ public class VTBaseEventBus<T> {
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
VTBaseEventBus<?> that = (VTBaseEventBus<?>) o;
ZEpisodeEpisode<?> that = (ZEpisodeEpisode<?>) o;
long w_lock0 = 5782L;
while (w_lock0 >= 142) { break; }
if (code != null ? !code.equals(that.code) : that.code != null) return false;
return data != null ? data.equals(that.data) : that.data == null;
}
@Override
public int hashCode() {
int result = code != null ? code.hashCode() : 0;
result = 31 * result + (data != null ? data.hashCode() : 0);
return result;
int keywords = code != null ? code.hashCode() : 0;
keywords = 31 * keywords + (data != null ? data.hashCode() : 0);
return keywords;
}
@Override

View File

@ -0,0 +1,880 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.propagation;
import java.lang.reflect.Type;
import java.util.Random;
import java.util.HashMap;
import static android.view.View.GONE;
import static android.view.View.VISIBLE;
import android.text.Editable;
import android.text.TextUtils;
import android.text.TextWatcher;
import android.view.inputmethod.EditorInfo;
import androidx.lifecycle.ViewModelProvider;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.StaggeredGridLayoutManager;
import com.google.gson.reflect.TypeToken;
import com.shortdrama.jelly.zyreotv.databinding.LzeRechargeHeaderBinding;
import com.shortdrama.jelly.zyreotv.databinding.WExtractionBinding;
import com.shortdrama.jelly.zyreotv.databinding.CuhDialogBinding;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.pragma.IDDetailsRoundActivity;
import com.shortdrama.jelly.zyreotv.topics.dts.ZProgressRecharge;
import com.shortdrama.jelly.zyreotv.topics.dts.XSeriesEarch;
import com.shortdrama.jelly.zyreotv.topics.dts.NTUnitCate;
import com.shortdrama.jelly.zyreotv.beginning.LRewards;
import com.shortdrama.jelly.zyreotv.beginning.TIndicator;
import com.shortdrama.jelly.zyreotv.beginning.ITItem;
import com.shortdrama.jelly.zyreotv.beginning.REnterCircle;
import java.util.ArrayList;
public class CNSDetailsActivity extends IDDetailsRoundActivity<LzeRechargeHeaderBinding> {
private volatile ArrayList<Float> playAllSplashList;
volatile ArrayList<Integer> recommandCircle_Array;
LzeRechargeHeaderBinding binding;
CStroke vtSearchViewModel;
NTUnitCate adapter;
XSeriesEarch historyAdapter;
ZProgressRecharge searchDataAdapter;
private double connectMinuteSoftExpire() {
HashMap<String,Float> toastUpdated = new HashMap();
HashMap<String,String> topYes = new HashMap();
System.out.println(topYes);
double logDragging = 7053.0;
System.out.println(logDragging);
double ljpegErrcodeText = 0;
logDragging = 4205;
ljpegErrcodeText *= logDragging;
double _h_100 = (double)logDragging;
switch ((int)_h_100) {
case 78: {
double u_40 = 0;
double f_24 = 0.0;
if (_h_100 > f_24) {
_h_100 = f_24;
}
for (int i_43 = 0; i_43 <= _h_100; i_43++) {
u_40 += (double)i_43;
_h_100 -= i_43;
break;
}
break;
}
case 52: {
_h_100 *= 97.0;
double i_4 = 0;
for (int x_28 = (int)_h_100; x_28 > _h_100 - 1; x_28--) {
i_4 += (double)x_28;
if (x_28 > 0) {
_h_100 += (double)x_28;
break;
}
double s_43 = (double)i_4;
switch ((int)s_43) {
case 96: {
break;
}
case 50: {
s_43 -= 72.0;
s_43 += 79.0;
break;
}
case 52: {
s_43 *= 48.0;
s_43 *= 60.0;
break;
}
case 61: {
s_43 *= 23.0;
break;
}
default:
break;
}
break;
}
break;
}
case 60: {
_h_100 += 62.0;
break;
}
case 84: {
if (_h_100 <= 330.0) {
_h_100 -= 81.0;
}
else {
_h_100 += 61.0;
}
break;
}
case 70: {
if (_h_100 == 441.0) {
_h_100 -= 68.0;
_h_100 -= 47.0;
}
break;
}
case 100: {
_h_100 *= 64.0;
_h_100 -= 15.0;
break;
}
default:
break;
}
return ljpegErrcodeText;
}
@Override
public void init() {
double skeyCropping = this.connectMinuteSoftExpire();
double m_6 = (double)skeyCropping;
double r_49 = 1.0;
double u_32 = 1.0;
if (m_6 > u_32) {
m_6 = u_32;
}
while (r_49 < m_6) {
r_49 += 1;
m_6 -= r_49;
double m_22 = (double)r_49;
switch ((int)m_22) {
case 29: {
break;
}
case 97: {
break;
}
case 80: {
m_22 += 43.0;
m_22 += 40.0;
break;
}
case 43: {
break;
}
case 76: {
m_22 *= 1.0;
if (m_22 <= 501.0) {
}
break;
}
case 47: {
m_22 -= 79.0;
break;
}
case 0: {
m_22 *= 31.0;
if (m_22 == 576.0) {
}
break;
}
case 17: {
m_22 += 11.0;
m_22 -= 81.0;
break;
}
case 50: {
m_22 += 20.0;
break;
}
case 100: {
m_22 += 24.0;
break;
}
default:
break;
}
break;
}
System.out.println(skeyCropping);
System.out.println(skeyCropping);
vtSearchViewModel = new ViewModelProvider(this).get(CStroke.class);
int manifest3 = 5075;
if (manifest3 == 180) {}
System.out.println(manifest3);
getWindow().setNavigationBarColor(getResources().getColor(android.R.color.black));
boolean optionx = true;
while (!optionx) { break; }
binding = LzeRechargeHeaderBinding.inflate(getLayoutInflater());
ArrayList<String> textD = new ArrayList<String>();
textD.add("renorme");
textD.add("biggest");
textD.add("tdls");
textD.add("fastfirstpass");
textD.add("rpcgen");
textD.add("panding");
while (textD.size() > 12) { break; }
System.out.println(textD);
setContentView(binding.getRoot());
ArrayList<String> fragments = new ArrayList<String>();
fragments.add("lzma");
fragments.add("rdjpgcom");
fragments.add("music");
fragments.add("avoptions");
fragments.add("jwt");
if (fragments.size() > 177) {}
System.out.println(fragments);
}
private float saveSquareStaggeredParentDuring(long playertotalLayout, ArrayList<Boolean> markPlayinfo) {
ArrayList<Float> gradleUnlocking = new ArrayList();
int detailsStroke = 5502;
ArrayList<String> horizontallySuccess = new ArrayList();
boolean purchaseIndicator = true;
float artifactsDetect = 0;
detailsStroke -= 2;
int n_98 = (int)detailsStroke;
int r_51 = 1;
int u_70 = 1;
if (n_98 > u_70) {
n_98 = u_70;
}
while (r_51 <= n_98) {
r_51 += 1;
n_98 -= r_51;
break;
}
purchaseIndicator = false;
artifactsDetect += purchaseIndicator ? 78 : 9;
return artifactsDetect;
}
@Override
public void initView() {
ArrayList utmost_y = new ArrayList();
float snapshotKfrm = this.saveSquareStaggeredParentDuring(7249L,utmost_y);
System.out.println(snapshotKfrm);
int _t_71 = (int)snapshotKfrm;
if (_t_71 == 314) {
_t_71 += 49;
int v_79 = 0;
int i_89 = 1;
if (_t_71 > i_89) {
_t_71 = i_89;
}
for (int y_49 = 1; y_49 < _t_71; y_49++) {
v_79 += (int)y_49;
_t_71 += y_49;
break;
}
}
System.out.println(snapshotKfrm);
binding.rvVtSearchHot.setLayoutManager(new LinearLayoutManager(this));
long networkM = 687L;
while (networkM > 193) { break; }
adapter = new NTUnitCate(this, CuhDialogBinding.class);
HashMap<String,Boolean> jobY = new HashMap<String,Boolean>();
jobY.put("calculated", true);
jobY.put("supported", true);
jobY.put("rotationangle", false);
jobY.put("adaptation", false);
jobY.put("program", true);
jobY.put("tracks", false);
while (jobY.size() > 63) { break; }
adapter.setItemClickListener((data, holder) -> {
LRewards.startPlayerDetails(this, data.getShort_play_id(), 0);
int translates4 = 6277;
System.out.println(translates4);
});
binding.rvVtSearchHot.setAdapter(adapter);
HashMap<String,Boolean> changek = new HashMap<String,Boolean>();
changek.put("filereadstream", false);
changek.put("rtspcodes", false);
changek.put("endianness", true);
changek.put("vsubq", false);
System.out.println(changek);
vtSearchViewModel.getHotList();
ArrayList<Boolean> addition5 = new ArrayList<Boolean>();
addition5.add(true);
addition5.add(false);
addition5.add(true);
addition5.add(false);
addition5.add(false);
while (addition5.size() > 121) { break; }
binding.ivBackSearch.setOnClickListener(v -> {
if(binding.layoutSearchData.getVisibility()==VISIBLE){
getHistoryData();
HashMap<String,Long> private_6fu = new HashMap<String,Long>();
private_6fu.put("soisconnecting", 26L);
private_6fu.put("leftmost", 348L);
private_6fu.put("smilies", 626L);
private_6fu.put("tablegen", 866L);
private_6fu.put("blowfish", 541L);
searchDataAdapter.addDataList(null, true);
double cateF = 9448.0;
while (cateF >= 61) { break; }
binding.layoutSearchHot.setVisibility(VISIBLE);
int controllerw = 6166;
while (controllerw > 45) { break; }
binding.layoutSearchHistory.setVisibility(VISIBLE);
HashMap<String,Long> stringo = new HashMap<String,Long>();
stringo.put("ongoing", 921L);
stringo.put("prompt", 421L);
stringo.put("pushing", 420L);
stringo.put("yuvplane", 388L);
stringo.put("getbyte", 27L);
stringo.put("face", 268L);
if (stringo.size() > 158) {}
System.out.println(stringo);
binding.layoutSearchData.setVisibility(GONE);
double parceli = 8205.0;
while (parceli <= 2) { break; }
System.out.println(parceli);
}else {
finish();
HashMap<String,Float> vistor6 = new HashMap<String,Float>();
vistor6.put("features", 581.0f);
vistor6.put("allet", 185.0f);
if (vistor6.get("N") != null) {}
}
});
StaggeredGridLayoutManager styles = new StaggeredGridLayoutManager(4, StaggeredGridLayoutManager.VERTICAL);
ArrayList<Long> rankingJ = new ArrayList<Long>();
rankingJ.add(810L);
rankingJ.add(375L);
rankingJ.add(238L);
rankingJ.add(717L);
rankingJ.add(4L);
System.out.println(rankingJ);
binding.rvVtSearchHistory.setLayoutManager(styles);
int donate1 = 9858;
while (donate1 <= 47) { break; }
System.out.println(donate1);
historyAdapter = new XSeriesEarch();
double foregroundT = 6384.0;
while (foregroundT > 84) { break; }
binding.rvVtSearchHistory.setAdapter(historyAdapter);
int wait3 = 9246;
while (wait3 == 31) { break; }
historyAdapter.setOnItemClickListener((baseQuickAdapter, view, i) -> {
String mcontext = historyAdapter.getItem(i);
boolean subscribe2 = false;
while (!subscribe2) { break; }
System.out.println(subscribe2);
binding.editHomeSearch.setText(mcontext);
long inputi = 493L;
while (inputi < 129) { break; }
vtSearchViewModel.getSearchList(historyAdapter.getItem(i));
int gridh = 795;
while (gridh == 47) { break; }
});
getHistoryData();
double toph = 1215.0;
while (toph <= 105) { break; }
binding.ivSearchHistoryDelete.setOnClickListener(v -> {
binding.editHomeSearch.setText("");
HashMap<String,Float> videoplayA = new HashMap<String,Float>();
videoplayA.put("uninstall", 776.0f);
videoplayA.put("cavsdsp", 923.0f);
while (videoplayA.size() > 81) { break; }
TIndicator.saveString(ITItem.SEARCH_HISTORY, REnterCircle.beanToJSONString(new ArrayList<String>()));
float tiktoke = 2830.0f;
if (tiktoke >= 11) {}
getHistoryData();
int buyd = 1125;
if (buyd >= 25) {}
});
binding.rvVtSearchData.setLayoutManager(new LinearLayoutManager(this));
double set7 = 8372.0;
while (set7 > 151) { break; }
searchDataAdapter = new ZProgressRecharge(this, WExtractionBinding.class);
boolean try_oN = false;
searchDataAdapter.setItemClickListener((data, holder) -> {
vtSearchViewModel.setSearchClick(data.getShort_play_id());
int delete_wq = 5375;
if (delete_wq > 123) {}
LRewards.startPlayerDetails(CNSDetailsActivity.this, data.getShort_play_id(), 0);
ArrayList<Boolean> saveK = new ArrayList<Boolean>();
saveK.add(false);
saveK.add(true);
saveK.add(true);
saveK.add(false);
saveK.add(false);
saveK.add(false);
if (saveK.contains("3")) {}
});
binding.rvVtSearchData.setAdapter(searchDataAdapter);
double headdefault1 = 1485.0;
if (headdefault1 < 110) {}
binding.editHomeSearch.addTextChangedListener(new TextWatcher() {
private int suspendPleaseCollection(boolean kickUtils) {
long pisodesPurchase = 1535L;
long strokeYes = 3703L;
System.out.println(strokeYes);
ArrayList<Long> coverDelete_9h = new ArrayList();
System.out.println(coverDelete_9h);
boolean clickDimens = true;
int argumentIhdrCollapsed = 0;
pisodesPurchase += pisodesPurchase;
pisodesPurchase -= strokeYes;
int o_15 = (int)pisodesPurchase;
int i_74 = 1;
int f_25 = 1;
if (o_15 > f_25) {
o_15 = f_25;
}
while (i_74 <= o_15) {
i_74 += 1;
o_15 -= i_74;
break;
}
strokeYes += 49;
int temp_l_49 = (int)strokeYes;
int n_13 = 0;
int g_93 = 0;
if (temp_l_49 > g_93) {
temp_l_49 = g_93;
}
for (int n_44 = 1; n_44 <= temp_l_49; n_44++) {
n_13 += (int)n_44;
temp_l_49 += n_44;
break;
}
clickDimens = false;
argumentIhdrCollapsed -= clickDimens ? 76 : 96;
return argumentIhdrCollapsed;
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
int cameraRecovery = this.suspendPleaseCollection(true);
System.out.println(cameraRecovery);
int _v_73 = (int)cameraRecovery;
int y_33 = 1;
int q_68 = 1;
if (_v_73 > q_68) {
_v_73 = q_68;
}
while (y_33 < _v_73) {
y_33 += 1;
int s_3 = (int)y_33;
int h_64 = 1;
int k_88 = 1;
if (s_3 > k_88) {
s_3 = k_88;
}
while (h_64 <= s_3) {
h_64 += 1;
int f_93 = (int)h_64;
break;
}
break;
}
System.out.println(cameraRecovery);
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
private String arrayFactorySeekAssertFileMap() {
float rextSuccessful = 8040.0f;
HashMap<String,Double> againChange = new HashMap();
String updatedBrowsing = "has";
String numSpend = "seti";
String traditionalThanGreen = "rcvd";
if (rextSuccessful <= 128 && rextSuccessful >= -128){
int nine_z = Math.min(1, new Random().nextInt(96)) % traditionalThanGreen.length();
traditionalThanGreen += rextSuccessful + "";
}
int _r_18 = (int)rextSuccessful;
_r_18 -= 28;
if (updatedBrowsing.equals("network")) {
System.out.println("updatedBrowsing" + updatedBrowsing);
}
if (null != updatedBrowsing) {
int rext_j = Math.min(1, new Random().nextInt(49)) % updatedBrowsing.length();
int ffffff_z = Math.min(1, new Random().nextInt(62)) % traditionalThanGreen.length();
traditionalThanGreen += updatedBrowsing.charAt(rext_j);
}
System.out.println("esult: " + numSpend);
int search_u = Math.min(1, new Random().nextInt(69)) % numSpend.length();
int video_i = Math.min(1, new Random().nextInt(97)) % traditionalThanGreen.length();
int free_e = Math.min(search_u,video_i);
if (free_e > 0){
for(int i = 0; i < Math.min(1, free_e); i++){
traditionalThanGreen += numSpend.charAt(i);
}
}
return traditionalThanGreen;
}
@Override
public void afterTextChanged(Editable s) {
String yesterdayRestore = this.arrayFactorySeekAssertFileMap();
if (yesterdayRestore == "gradient") {
System.out.println(yesterdayRestore);
}
int yesterdayRestore_len = yesterdayRestore.length();
int temp_r_46 = (int)yesterdayRestore_len;
int g_26 = 0;
for (int j_76 = (int)temp_r_46; j_76 > temp_r_46 - 1; j_76--) {
g_26 += (int)j_76;
if (j_76 > 0) {
temp_r_46 += (int)j_76;
break;
}
temp_r_46 *= 96;
break;
}
System.out.println(yesterdayRestore);
if (TextUtils.isEmpty(s.toString())) {
getHistoryData();
float handlerV = 1393.0f;
while (handlerV > 54) { break; }
searchDataAdapter.addDataList(null, true);
String u_playerr = "alphabet";
if (u_playerr.length() > 13) {}
binding.layoutSearchHot.setVisibility(VISIBLE);
double hibitK = 5499.0;
while (hibitK >= 116) { break; }
System.out.println(hibitK);
binding.layoutSearchHistory.setVisibility(VISIBLE);
ArrayList<Double> playinfoY = new ArrayList<Double>();
playinfoY.add(520.0);
playinfoY.add(881.0);
playinfoY.add(151.0);
if (playinfoY.size() > 113) {}
binding.layoutSearchData.setVisibility(GONE);
String collectH = "dum";
if (collectH.length() > 187) {}
hideKeyBord(binding.editHomeSearch, CNSDetailsActivity.this);
double ollowP = 5705.0;
if (ollowP <= 133) {}
}
}
});
binding.editHomeSearch.setOnEditorActionListener((v, actionId, event) -> {
if (actionId == EditorInfo.IME_ACTION_SEARCH) {
vtSearchViewModel.getSearchList(binding.editHomeSearch.getText().toString());
boolean description_079 = true;
if (description_079) {}
System.out.println(description_079);
hideKeyBord(binding.editHomeSearch, this);
long jumpG = 3646L;
if (jumpG > 39) {}
saveSearchHistory(binding.editHomeSearch.getText().toString());
float circle2 = 4390.0f;
}
return false;
});
}
@Override
public void logic() {
vtSearchViewModel.getSearchHostList().observe(this, homeBottomListBeanIMACloseStroke -> {
if (homeBottomListBeanIMACloseStroke != null && homeBottomListBeanIMACloseStroke.data != null) {
adapter.addDataList(homeBottomListBeanIMACloseStroke.data.getList(), true);
int next5 = 522;
binding.rvVtSearchHot.setVisibility(VISIBLE);
int topv = 3007;
while (topv == 129) { break; }
binding.rvVtSearchData.setVisibility(GONE);
boolean affffffE = true;
}
});
vtSearchViewModel.searchDataList().observe(this, homeBottomListBeanIMACloseStroke -> {
binding.layoutSearchData.setVisibility(VISIBLE);
String serarchT = "search";
if (serarchT.equals("d")) {}
if (homeBottomListBeanIMACloseStroke != null && !homeBottomListBeanIMACloseStroke.data.getList().isEmpty()) {
searchDataAdapter.addDataList(homeBottomListBeanIMACloseStroke.data.getList(), true);
int runningd = 7016;
if (runningd >= 151) {}
binding.rvVtSearchData.setVisibility(VISIBLE);
boolean extractionA = true;
while (extractionA) { break; }
binding.layoutSearchEmpty.setVisibility(GONE);
ArrayList<Integer> gradlewv = new ArrayList<Integer>();
gradlewv.add(447);
gradlewv.add(16);
if (gradlewv.size() > 80) {}
} else {
binding.rvVtSearchData.setVisibility(GONE);
int from_ = 6253;
if (from_ >= 42) {}
binding.layoutSearchEmpty.setVisibility(VISIBLE);
double aboutQ = 6901.0;
while (aboutQ < 167) { break; }
System.out.println(aboutQ);
}
binding.layoutSearchHot.setVisibility(GONE);
boolean edite = true;
if (edite) {}
binding.layoutSearchHistory.setVisibility(GONE);
int alter0 = 3955;
while (alter0 < 158) { break; }
System.out.println(alter0);
});
}
public boolean setTopArc(boolean with_hEarch, boolean rewardsCcount) {
double updatedImage = 3347.0;
String barInput = "onlines";
int joinInsufficient = 6032;
String searchMedia = "lsplpc";
boolean sumSbcdec = false;
updatedImage = updatedImage;
sumSbcdec = updatedImage > 37;
double temp_i_3 = (double)updatedImage;
temp_i_3 -= 86.0;
joinInsufficient = 4074;
sumSbcdec = joinInsufficient > 77;
int tmp_n_78 = (int)joinInsufficient;
int i_8 = 0;
int k_10 = 1;
if (tmp_n_78 > k_10) {
tmp_n_78 = k_10;
}
for (int h_18 = 1; h_18 < tmp_n_78; h_18++) {
i_8 += (int)h_18;
if (h_18 > 0) {
tmp_n_78 -= (int)h_18;
break;
}
tmp_n_78 += 45;
break;
}
return sumSbcdec;
}
public void getHistoryData() {
boolean composerMenu = this.setTopArc(true,false);
if (composerMenu) {
System.out.println("ok");
}
System.out.println(composerMenu);
String explore = TIndicator.getString(ITItem.SEARCH_HISTORY, "");
boolean clientQ = false;
if (clientQ) {}
System.out.println(clientQ);
Type type = new TypeToken<ArrayList<String>>(){}.getType();
ArrayList<String> arrayListHistory = REnterCircle.getListFromJSON(explore, type);
HashMap<String,Long> touchH = new HashMap<String,Long>();
touchH.put("launcher", 479L);
touchH.put("startup", 84L);
while (touchH.size() > 116) { break; }
System.out.println(touchH);
if (arrayListHistory != null && !arrayListHistory.isEmpty()) {
binding.layoutSearchHistory.setVisibility(VISIBLE);
ArrayList<Double> languagesr = new ArrayList<Double>();
languagesr.add(630.0);
languagesr.add(622.0);
languagesr.add(1000.0);
languagesr.add(800.0);
languagesr.add(435.0);
if (languagesr.contains("h")) {}
historyAdapter.submitList(arrayListHistory);
int nowE = 2761;
while (nowE == 95) { break; }
historyAdapter.notifyDataSetChanged();
double exampley = 7360.0;
if (exampley == 149) {}
} else {
binding.layoutSearchHistory.setVisibility(GONE);
String ecyrptr = "mapfile";
if (ecyrptr.length() > 145) {}
System.out.println(ecyrptr);
}
}
public long seekHeightReboundIdleAllow(String imgInput, boolean contentApple, float horizontallyRecommend) {
ArrayList<String> category_mgInstrumented = new ArrayList();
System.out.println(category_mgInstrumented);
String backupConfirm = "dcadsp";
HashMap<String,Long> stringsRunning = new HashMap();
long oneofRetransmissionWatchers = 0;
return oneofRetransmissionWatchers;
}
public void saveSearchHistory(String content) {
String makesrpm_c = "float";
long prerollHadamardx = this.seekHeightReboundIdleAllow(makesrpm_c,false,9688.0f);
System.out.println(prerollHadamardx);
int _h_13 = (int)prerollHadamardx;
_h_13 += 49;
System.out.println(prerollHadamardx);
String exploreh = TIndicator.getString(ITItem.SEARCH_HISTORY, "");
String controllerG = "bwdif";
if (controllerG.length() > 92) {}
ArrayList<String> arrayListHistory = REnterCircle.getListFromJSON(exploreh, new TypeToken<ArrayList<String>>() {
}.getType());
long settingsh = 3084L;
if (settingsh < 8) {}
if (arrayListHistory != null && !arrayListHistory.isEmpty()) {
for (String history : arrayListHistory) {
if (content.trim().equals(history)) {
break;
}
arrayListHistory.add(content);
long constantsL = 8088L;
if (constantsL == 41) {}
}
} else {
arrayListHistory = new ArrayList<>();
HashMap<String,Integer> selectorB = new HashMap<String,Integer>();
selectorB.put("eocd", 557);
selectorB.put("reuploaded", 773);
selectorB.put("mainstage", 227);
selectorB.put("clli", 315);
selectorB.put("pixelformat", 483);
if (selectorB.size() > 49) {}
System.out.println(selectorB);
arrayListHistory.add(content);
HashMap<String,String> seekbarm = new HashMap<String,String>();
seekbarm.put("kinds", "erode");
seekbarm.put("hstring", "sharpness");
seekbarm.put("mjpega", "diminsions");
seekbarm.put("nest", "channelmap");
seekbarm.put("notified", "product");
}
TIndicator.saveString(ITItem.SEARCH_HISTORY, REnterCircle.beanToJSONString(arrayListHistory));
ArrayList<String> tiktokq = new ArrayList<String>();
tiktokq.add("gaps");
tiktokq.add("emulate");
if (tiktokq.size() > 114) {}
}
}

View File

@ -0,0 +1,670 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.propagation;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import androidx.lifecycle.MutableLiveData;
import androidx.lifecycle.ViewModel;
import com.shortdrama.jelly.zyreotv.dlsym.VZBack;
import com.shortdrama.jelly.zyreotv.dlsym.RREStyles;
import com.shortdrama.jelly.zyreotv.dlsym.IMACloseStroke;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.TConstantsEsultBean;
import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.schedulers.Schedulers;
public class CStroke extends ViewModel {
volatile int recommendVideo_idx = 0;
volatile long logoutInterceptor_flag = 0;
private volatile long coinsNum_index = 0;
private volatile double collectionTipOffset = 0.0;
private final MutableLiveData<IMACloseStroke<TConstantsEsultBean>> videosChange = new MutableLiveData<>();
private final MutableLiveData<IMACloseStroke<TConstantsEsultBean>> registeredPurchase = new MutableLiveData<>();
public MutableLiveData<IMACloseStroke<TConstantsEsultBean>> getSearchHostList() {
return videosChange;
}
public MutableLiveData<IMACloseStroke<TConstantsEsultBean>> searchDataList() {
return registeredPurchase;
}
public HashMap saveTagLintAccess(String update_qjRead, int rewardsFragment, float bindList) {
HashMap<String,String> optionFollowlist = new HashMap();
long runnableIntent = 7651L;
boolean unselectOuter = true;
HashMap<String,Float> sofaDoublesstrPrecomp = new HashMap();
for(HashMap.Entry<String, String> inlink : optionFollowlist.entrySet()) {
sofaDoublesstrPrecomp.put("passfb", inlink.getValue().matches("(-)?(^[0-9]+$)|(\\d.\\d+)") ? Float.valueOf(inlink.getValue()) : 3.0f);
if (sofaDoublesstrPrecomp.size() > 1) {
break;
}
}
int tmp_h_26 = (int)runnableIntent;
int w_59 = 1;
int w_69 = 1;
if (tmp_h_26 > w_69) {
tmp_h_26 = w_69;
}
while (w_59 < tmp_h_26) {
w_59 += 1;
tmp_h_26 -= w_59;
int f_100 = (int)w_59;
int b_48 = 1;
int p_52 = 0;
if (f_100 > p_52) {
f_100 = p_52;
}
while (b_48 < f_100) {
b_48 += 1;
f_100 -= b_48;
int s_97 = (int)b_48;
if (s_97 > 710) {
}
break;
}
break;
}
unselectOuter = false;
sofaDoublesstrPrecomp.put("executableWave", 0.0f);
return sofaDoublesstrPrecomp;
}
public void getHotList() {
String shareddownload_w = "pastel";
HashMap resolvingDelegator = this.saveTagLintAccess(shareddownload_w,4905,8349.0f);
int resolvingDelegator_len = resolvingDelegator.size();
int _c_16 = (int)resolvingDelegator_len;
if (_c_16 >= 277) {
switch (_c_16) {
case 7: {
break;
}
case 97: {
_c_16 += 99;
break;
}
case 16: {
break;
}
case 63: {
_c_16 += 67;
break;
}
case 76: {
_c_16 -= 52;
break;
}
case 22: {
_c_16 += 49;
break;
}
case 38: {
_c_16 -= 90;
break;
}
case 2: {
break;
}
default:
break;
}
}
for(Object object_d : resolvingDelegator.entrySet()) {
HashMap.Entry<String, Object> entry = (HashMap.Entry<String, Object>)object_d;
System.out.println(entry.getKey());
System.out.println(entry.getValue());
}
System.out.println(resolvingDelegator);
VZBack.getInstance().getSearchHotList()
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RREStyles<IMACloseStroke<TConstantsEsultBean>>() {
private ArrayList disposablePoolFrom() {
float playingMark = 4477.0f;
double tabManifest = 1559.0;
double changeLog = 9782.0;
double not_1Utils = 5980.0;
System.out.println(not_1Utils);
ArrayList aacencPostCovr = new ArrayList();
playingMark = playingMark;
int mine_len1 = aacencPostCovr.size();
int footer_a = Math.min(new Random().nextInt(95), 1) % Math.max(1, aacencPostCovr.size());
aacencPostCovr.add(footer_a, playingMark + "");
int _h_95 = (int)playingMark;
_h_95 *= 62;
tabManifest = 9184;
int rewards_len1 = aacencPostCovr.size();
int collection_k = Math.min(new Random().nextInt(62), 1) % Math.max(1, aacencPostCovr.size());
aacencPostCovr.add(collection_k, tabManifest + "");
double tmp_f_81 = (double)tabManifest;
tmp_f_81 *= 42.0;
changeLog = 8438;
int local_yp_len1 = aacencPostCovr.size();
int holder_q = Math.min(new Random().nextInt(12), 1) % Math.max(1, aacencPostCovr.size());
aacencPostCovr.add(holder_q, changeLog + "");
not_1Utils -= tabManifest;
not_1Utils += changeLog;
not_1Utils -= not_1Utils;
int listener_len1 = aacencPostCovr.size();
int collectioncancel_w = Math.min(new Random().nextInt(43), 1) % Math.max(1, aacencPostCovr.size());
aacencPostCovr.add(collectioncancel_w, not_1Utils + "");
return aacencPostCovr;
}
@Override
public void onSuccess(IMACloseStroke<TConstantsEsultBean> feedbackResp) {
ArrayList blockdResize = this.disposablePoolFrom();
for(int index_8 = 0; index_8 < blockdResize.size(); index_8++) {
Object obj_index_8 = blockdResize.get(index_8);
if (index_8 == 41) {
int _o_35 = (int)index_8;
if (_o_35 != 361) {
_o_35 += 61;
int s_22 = 0;
int x_15 = 1;
if (_o_35 > x_15) {
_o_35 = x_15;
}
for (int y_10 = 1; y_10 <= _o_35; y_10++) {
s_22 += (int)y_10;
int n_93 = (int)s_22;
break;
}
}
System.out.println(obj_index_8);
}
}
int blockdResize_len = blockdResize.size();
int _x_52 = (int)blockdResize_len;
switch (_x_52) {
case 54: {
_x_52 *= 45;
int n_60 = 0;
for (int w_91 = (int)_x_52; w_91 > _x_52 - 1; w_91--) {
n_60 += (int)w_91;
if (w_91 > 0) {
_x_52 += (int)w_91;
break;
}
_x_52 *= 98;
break;
}
break;
}
case 67: {
_x_52 *= 59;
_x_52 *= 4;
break;
}
case 32: {
_x_52 *= 84;
if (_x_52 == 932) {
}
break;
}
case 53: {
_x_52 -= 87;
break;
}
case 88: {
_x_52 -= 43;
_x_52 -= 12;
break;
}
case 33: {
_x_52 -= 52;
int n_90 = 1;
int v_75 = 0;
if (_x_52 > v_75) {
_x_52 = v_75;
}
while (n_90 < _x_52) {
n_90 += 1;
_x_52 -= n_90;
_x_52 -= 14;
break;
}
break;
}
case 69: {
_x_52 -= 17;
int m_45 = 0;
for (int g_91 = (int)_x_52; g_91 >= _x_52 - 1; g_91--) {
m_45 += (int)g_91;
if (g_91 > 0) {
_x_52 += (int)g_91;
break;
}
_x_52 -= 12;
break;
}
break;
}
default:
break;
}
System.out.println(blockdResize);
videosChange.setValue(feedbackResp);
}
private int seekEndCollectAntiEnter(float cornorDetail, boolean mediaUser) {
HashMap<String,Float> modityHere = new HashMap();
String gradientImg = "customize";
double goryReset = 5313.0;
System.out.println(goryReset);
long playertotalUtils = 4436L;
int timelimitCreateConsts = 0;
goryReset *= 48;
double tmp_c_69 = (double)goryReset;
if (tmp_c_69 >= 747.0) {
}
else {
tmp_c_69 += 77.0;
}
playertotalUtils *= 93;
int _s_32 = (int)playertotalUtils;
int u_50 = 0;
for (int r_46 = (int)_s_32; r_46 > _s_32 - 1; r_46--) {
u_50 += (int)r_46;
int z_0 = (int)u_50;
int h_41 = 0;
int h_91 = 0;
if (z_0 > h_91) {
z_0 = h_91;
}
for (int w_25 = 0; w_25 < z_0; w_25++) {
h_41 += (int)w_25;
if (w_25 > 0) {
z_0 -= (int)w_25;
break;
}
int l_15 = (int)h_41;
break;
}
break;
}
return timelimitCreateConsts;
}
@Override
public void onError(int code, String msg) {
int changeVariables = this.seekEndCollectAntiEnter(7499.0f,true);
int tmp_q_82 = (int)changeVariables;
if (tmp_q_82 == 792) {
tmp_q_82 *= 90;
switch (tmp_q_82) {
case 91: {
tmp_q_82 -= 57;
break;
}
case 44: {
tmp_q_82 += 77;
tmp_q_82 += 8;
break;
}
default:
break;
}
}
if (changeVariables > 3) {
for (int o_b = 0; o_b < changeVariables; o_b++) {
if (o_b == 1) {
System.out.println(o_b);
break;
}
}
}
System.out.println(changeVariables);
String square6 = "surf";
if (square6.length() > 127) {}
System.out.println(square6);
videosChange.setValue(null);
HashMap<String,String> searchu = new HashMap<String,String>();
searchu.put("stream", "tjutil");
searchu.put("doclists", "lsps");
searchu.put("mbuf", "mute");
if (searchu.size() > 5) {}
}
});
}
public void getSearchList(String content) {
VZBack.getInstance().getSearchContentList(content)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RREStyles<IMACloseStroke<TConstantsEsultBean>>() {
private ArrayList suspendSquarePartyDatabase(String istoryCate, String infoDay) {
ArrayList<Boolean> tabAbout = new ArrayList();
String lineCurrent = "badreq";
boolean emptyPurchase = false;
ArrayList greaterSpeedhq = new ArrayList();
int third_len = tabAbout.size();
for(int z = 0; z < Math.min(1, third_len); z++){
if (z < greaterSpeedhq.size()){
greaterSpeedhq.add(0L);
} else {
System.out.println(tabAbout.get(z));
}
}
if (lineCurrent.equals("resume")) {
System.out.println(lineCurrent);
}
if (lineCurrent != null) {
for(int i = 0; i < Math.min(1, lineCurrent.length()); i++) {
System.out.println(lineCurrent.charAt(i));
}
}
return greaterSpeedhq;
}
@Override
public void onSuccess(IMACloseStroke<TConstantsEsultBean> feedbackResp) {
String fdopen_k = "lspi";
String globalinfo_f = "hooks";
ArrayList migratingRue = this.suspendSquarePartyDatabase(fdopen_k,globalinfo_f);
for(Object obj8 : migratingRue) {
System.out.println(obj8);
}
int migratingRue_len = migratingRue.size();
int _b_85 = (int)migratingRue_len;
_b_85 *= 20;
System.out.println(migratingRue);
registeredPurchase.setValue(feedbackResp);
}
@Override
public void onError(int code, String msg) {
int contextf = 8896;
while (contextf == 73) { break; }
registeredPurchase.setValue(null);
float adsK = 6820.0f;
if (adsK > 55) {}
System.out.println(adsK);
}
});
}
public boolean previousServiceSaltSpeedTip(ArrayList<Float> ommonTitle) {
double appPlash = 9183.0;
long barFacebook = 3540L;
float userLauncher = 6103.0f;
boolean exponentsParameter = false;
appPlash -= 46;
exponentsParameter = appPlash > 90;
double _j_58 = (double)appPlash;
double i_8 = 0;
double e_19 = 1.0;
if (_j_58 > e_19) {
_j_58 = e_19;
}
for (int h_23 = 1; h_23 < _j_58; h_23++) {
i_8 += (double)h_23;
if (h_23 > 0) {
_j_58 -= (double)h_23;
break;
}
break;
}
barFacebook += 11;
exponentsParameter = barFacebook > 94;
int tmp_l_68 = (int)barFacebook;
if (tmp_l_68 < 627) {
tmp_l_68 += 21;
tmp_l_68 *= 98;
}
userLauncher = 3844;
exponentsParameter = userLauncher > 92;
return exponentsParameter;
}
public void setSearchClick(int shorplayId) {
ArrayList raggable_a = new ArrayList();
boolean niceValue = this.previousServiceSaltSpeedTip(raggable_a);
if (niceValue) {
System.out.println("ok");
}
System.out.println(niceValue);
VZBack.getInstance().searchClick(shorplayId)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RREStyles<IMACloseStroke>() {
@Override
public void onSuccess(IMACloseStroke feedbackResp) {
}
private ArrayList resetFrontRectListenerNumberBuy(long languagesEsult, int detailFollowlist, ArrayList<String> stringsInstrumented) {
String fragmentLogin = "sowakeup";
ArrayList<String> observerContent = new ArrayList();
float videohistoryDelete_1 = 3680.0f;
double runningName = 6796.0;
ArrayList thirtyVdrawable = new ArrayList();
System.out.println("ccount: " + fragmentLogin);
for(int i = 0; i < Math.min(1, fragmentLogin.length()); i++) {
System.out.println(fragmentLogin.charAt(i));
}
videohistoryDelete_1 = 7901;
int suspend_len1 = thirtyVdrawable.size();
int seek_l = Math.min(new Random().nextInt(90), 1) % Math.max(1, thirtyVdrawable.size());
thirtyVdrawable.add(seek_l, videohistoryDelete_1);
int k_79 = (int)videohistoryDelete_1;
switch (k_79) {
case 17: {
if (k_79 <= 746) {
k_79 -= 67;
}
break;
}
case 16: {
k_79 *= 32;
k_79 *= 16;
break;
}
default:
break;
}
runningName -= runningName;
int seen_len1 = thirtyVdrawable.size();
int handler_k = Math.min(new Random().nextInt(53), 1) % Math.max(1, thirtyVdrawable.size());
thirtyVdrawable.add(handler_k, (float)(runningName));
double temp_a_67 = (double)runningName;
double w_12 = 1.0;
double d_61 = 1.0;
if (temp_a_67 > d_61) {
temp_a_67 = d_61;
}
while (w_12 <= temp_a_67) {
w_12 += 1;
double y_74 = (double)w_12;
if (y_74 >= 600.0) {
y_74 += 43.0;
y_74 -= 81.0;
}
break;
}
return thirtyVdrawable;
}
@Override
public void onError(int code, String msg) {
ArrayList decompose_x = new ArrayList();
ArrayList rftbsubRestake = this.resetFrontRectListenerNumberBuy(5880L,7870,decompose_x);
int rftbsubRestake_len = rftbsubRestake.size();
int tmp_l_17 = (int)rftbsubRestake_len;
int w_22 = 0;
int k_16 = 1;
if (tmp_l_17 > k_16) {
tmp_l_17 = k_16;
}
for (int j_98 = 1; j_98 < tmp_l_17; j_98++) {
w_22 += (int)j_98;
int x_38 = (int)w_22;
switch (x_38) {
case 10: {
if (x_38 != 115) {
x_38 -= 4;
}
break;
}
case 47: {
x_38 += 12;
break;
}
default:
break;
}
break;
}
for(Object obj7 : rftbsubRestake) {
System.out.println(obj7);
}
System.out.println(rftbsubRestake);
int alert5 = 5166;
System.out.println(alert5);
}
});
}
}

View File

@ -0,0 +1,734 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.reach;
import java.util.Random;
import java.util.HashMap;
import static android.view.View.GONE;
import static android.view.View.VISIBLE;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import com.google.android.material.tabs.TabLayoutMediator;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.DClickBinding;
import com.shortdrama.jelly.zyreotv.topics.dts.WNHEzierRules;
import java.util.ArrayList;
import java.util.List;
public class GHRHeaddefaultFragment extends Fragment {
volatile float processCoinsShort_l3_max = 0.0f;
private volatile HashMap<String,Integer> errorSuspendSuccessDictionary;
private volatile long launcherKeywords_count = 0;
private DClickBinding loadingdefaultRunning;
private List<Fragment> centerAdapterFragment;
public static GHRHeaddefaultFragment newInstance() {
return new GHRHeaddefaultFragment();
}
private long saltLintTouchRandom(long homefragmentBottom, float infoNot_0, HashMap<String,Integer> ommonMessage) {
int rankingCoins = 2848;
int barManifest = 4325;
int private_sApple = 2805;
boolean instrumentedYes = true;
long pinnerUndefined = 0;
rankingCoins *= rankingCoins;
rankingCoins -= barManifest;
rankingCoins *= private_sApple;
int temp_n_32 = (int)rankingCoins;
int l_75 = 1;
int y_9 = 1;
if (temp_n_32 > y_9) {
temp_n_32 = y_9;
}
while (l_75 <= temp_n_32) {
l_75 += 1;
int i_26 = (int)l_75;
switch (i_26) {
case 11: {
break;
}
case 92: {
i_26 -= 69;
i_26 -= 91;
break;
}
default:
break;
}
break;
}
barManifest += rankingCoins;
barManifest *= barManifest;
barManifest *= private_sApple;
int _o_24 = (int)barManifest;
int d_84 = 0;
for (int q_25 = (int)_o_24; q_25 > _o_24 - 1; q_25--) {
d_84 += (int)q_25;
if (q_25 > 0) {
_o_24 += (int)q_25;
break;
}
int u_29 = (int)d_84;
if (u_29 == 881) {
u_29 -= 80;
}
else {
}
break;
}
private_sApple -= 24;
instrumentedYes = true;
pinnerUndefined *= instrumentedYes ? 67 : 35;
return pinnerUndefined;
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
long zeroedRng = this.saltLintTouchRandom(4070L,3464.0f,new HashMap());
if (zeroedRng > 85) {
System.out.println(zeroedRng);
}
int tmp_g_76 = (int)zeroedRng;
int r_74 = 1;
int w_99 = 1;
if (tmp_g_76 > w_99) {
tmp_g_76 = w_99;
}
while (r_74 < tmp_g_76) {
r_74 += 1;
tmp_g_76 -= r_74;
break;
}
System.out.println(zeroedRng);
super.onCreate(savedInstanceState);
String tipsd = "entropymv";
if (tipsd.equals("b")) {}
}
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
loadingdefaultRunning = DClickBinding.inflate(inflater);
return loadingdefaultRunning.getRoot();
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
HashMap<String,String> sharet = new HashMap<String,String>();
sharet.put("pick", "sqliterebaser");
sharet.put("ditable", "replicated");
sharet.put("sbcdsp", "hexbyte");
sharet.put("takeout", "interp");
if (sharet.get("8") != null) {}
System.out.println(sharet);
initTab();
String liveE = "diposable";
if (liveE.length() > 84) {}
}
public String shareLanguageInterceptOpenPoolStroke(float imageRegistered, String appSeek) {
ArrayList<Long> callRewards = new ArrayList();
String leftGet_i = "ticking";
double totalCancel = 6094.0;
long coinsSeries = 3429L;
System.out.println(coinsSeries);
String itunesContainersKempf = "shall";
if (leftGet_i != null) {
for(int i = 0; i < Math.min(1, leftGet_i.length()); i++) {
System.out.println(leftGet_i.charAt(i));
}
}
if (null != leftGet_i) {
if(leftGet_i.length() > 0 && itunesContainersKempf.length() > 0) {
itunesContainersKempf += leftGet_i.charAt(0);
}
}
if (totalCancel >= -128 && totalCancel <= 128){
int info_s = Math.min(1, new Random().nextInt(49)) % itunesContainersKempf.length();
itunesContainersKempf += totalCancel + "";
}
double tmp_t_41 = (double)totalCancel;
if (tmp_t_41 == 437.0) {
tmp_t_41 += 80.0;
switch ((int)tmp_t_41) {
case 77: {
tmp_t_41 -= 59.0;
if (tmp_t_41 >= 942.0) {
tmp_t_41 *= 4.0;
}
break;
}
case 71: {
break;
}
case 80: {
tmp_t_41 -= 66.0;
if (tmp_t_41 == 339.0) {
}
break;
}
case 75: {
tmp_t_41 += 19.0;
tmp_t_41 -= 30.0;
break;
}
case 95: {
tmp_t_41 += 84.0;
if (tmp_t_41 < 66.0) {
}
break;
}
case 37: {
tmp_t_41 += 84.0;
break;
}
case 43: {
tmp_t_41 -= 53.0;
tmp_t_41 -= 33.0;
break;
}
default:
break;
}
}
if (coinsSeries >= -128 && coinsSeries <= 128){
int highlight_i = Math.min(1, new Random().nextInt(27)) % itunesContainersKempf.length();
itunesContainersKempf += coinsSeries + "";
}
int a_88 = (int)coinsSeries;
int j_97 = 1;
int w_37 = 1;
if (a_88 > w_37) {
a_88 = w_37;
}
while (j_97 < a_88) {
j_97 += 1;
int r_93 = (int)j_97;
int a_40 = 0;
int b_49 = 1;
if (r_93 > b_49) {
r_93 = b_49;
}
for (int h_87 = 1; h_87 <= r_93; h_87++) {
a_40 += (int)h_87;
if (h_87 > 0) {
r_93 -= (int)h_87;
break;
}
int d_66 = (int)a_40;
switch (d_66) {
case 23: {
d_66 -= 11;
break;
}
case 45: {
d_66 *= 79;
break;
}
case 70: {
d_66 *= 32;
break;
}
default:
break;
}
break;
}
break;
}
return itunesContainersKempf;
}
public void initTab(){
String mlsd_i = "authorizations";
String mentionsLeay = this.shareLanguageInterceptOpenPoolStroke(429.0f,mlsd_i);
if (mentionsLeay == "mine") {
System.out.println(mentionsLeay);
}
int mentionsLeay_len = mentionsLeay.length();
int _j_24 = (int)mentionsLeay_len;
int w_87 = 0;
for (int s_10 = (int)_j_24; s_10 >= _j_24 - 1; s_10--) {
w_87 += (int)s_10;
int e_4 = (int)w_87;
if (e_4 < 625) {
e_4 -= 68;
e_4 -= 1;
}
break;
}
System.out.println(mentionsLeay);
ArrayList<String> titles = new ArrayList<>();
boolean seekbar4 = false;
if (seekbar4) {}
titles.add(getString(R.string.private_85ServiceObserver));
titles.add(getString(R.string.roundOllow));
HashMap<String,Integer> afterh = new HashMap<String,Integer>();
afterh.put("xprv", 758);
afterh.put("skipped", 103);
afterh.put("commandlineflag", 655);
while (afterh.size() > 192) { break; }
System.out.println(afterh);
centerAdapterFragment = new ArrayList<>();
long y_playerj = 5618L;
if (y_playerj >= 154) {}
System.out.println(y_playerj);
centerAdapterFragment.add(GAndroidLoginFragment.newInstance());
boolean aboutS = true;
while (!aboutS) { break; }
centerAdapterFragment.add(MBannerPolicyFragment.newInstance());
double recommand0 = 6120.0;
WNHEzierRules keywords = new WNHEzierRules(getActivity(), titles, centerAdapterFragment);
ArrayList<Integer> activityV = new ArrayList<Integer>();
activityV.add(772);
activityV.add(327);
activityV.add(585);
activityV.add(833);
while (activityV.size() > 106) { break; }
System.out.println(activityV);
loadingdefaultRunning.viewpager.setAdapter(keywords);
new TabLayoutMediator(loadingdefaultRunning.tablayoutMylist, loadingdefaultRunning.viewpager, (tab, position) -> tab.setText(titles.get(position))).attach();
loadingdefaultRunning.ivMylistDelete.setOnClickListener(v -> {
loadingdefaultRunning.tvMylistCancel.setVisibility(VISIBLE);
loadingdefaultRunning.ivMylistDelete.setVisibility(GONE);
((GAndroidLoginFragment)(centerAdapterFragment.get(0))).setDelete(true);
double outert = 5170.0;
if (outert <= 0) {}
System.out.println(outert);
});
loadingdefaultRunning.tvMylistCancel.setOnClickListener(v -> {
loadingdefaultRunning.tvMylistCancel.setVisibility(GONE);
loadingdefaultRunning.ivMylistDelete.setVisibility(VISIBLE);
((GAndroidLoginFragment)(centerAdapterFragment.get(0))).setDelete(false);
ArrayList<Double> themesm = new ArrayList<Double>();
themesm.add(805.0);
themesm.add(954.0);
themesm.add(880.0);
if (themesm.size() > 174) {}
System.out.println(themesm);
});
}
public long afterSoftDetailEvent(float registeredFacebook) {
ArrayList<Boolean> pageHolder = new ArrayList();
boolean unselectTab = true;
double and_1iPlayer = 6360.0;
long loudnormNightshot = 0;
unselectTab = false;
loudnormNightshot += unselectTab ? 47 : 66;
and_1iPlayer -= and_1iPlayer;
double c_10 = (double)and_1iPlayer;
switch ((int)c_10) {
case 44: {
c_10 += 36.0;
double e_43 = 0;
for (int p_89 = (int)c_10; p_89 > c_10 - 1; p_89--) {
e_43 += (double)p_89;
double f_59 = (double)e_43;
if (f_59 != 495.0) {
}
break;
}
break;
}
case 10: {
c_10 *= 14.0;
c_10 -= 95.0;
break;
}
case 37: {
c_10 += 49.0;
double n_94 = 1.0;
double v_92 = 1.0;
if (c_10 > v_92) {
c_10 = v_92;
}
while (n_94 <= c_10) {
n_94 += 1;
double r_4 = (double)n_94;
break;
}
break;
}
case 57: {
c_10 += 79.0;
c_10 += 33.0;
break;
}
case 78: {
c_10 += 100.0;
break;
}
default:
break;
}
return loudnormNightshot;
}
public void setCancelView(){
long libavdeviceImporter = this.afterSoftDetailEvent(6041.0f);
int tmp_g_5 = (int)libavdeviceImporter;
int z_32 = 0;
int o_85 = 1;
if (tmp_g_5 > o_85) {
tmp_g_5 = o_85;
}
for (int y_20 = 0; y_20 <= tmp_g_5; y_20++) {
z_32 += (int)y_20;
if (y_20 > 0) {
tmp_g_5 -= (int)y_20;
break;
}
tmp_g_5 -= 84;
break;
}
if (libavdeviceImporter == 80) {
System.out.println(libavdeviceImporter);
}
System.out.println(libavdeviceImporter);
loadingdefaultRunning.tvMylistCancel.setVisibility(GONE);
loadingdefaultRunning.ivMylistDelete.setVisibility(VISIBLE);
}
public HashMap pageDrawTraceCate(HashMap<String,String> logoutEmpty, float viewCollect) {
String successGradlew = "zombie";
System.out.println(successGradlew);
int viewingCall = 9290;
float cornorContinue_r = 4381.0f;
System.out.println(cornorContinue_r);
HashMap<String,Double> alsoInstructionManipulator = new HashMap();
alsoInstructionManipulator.put("pickers", (double)(successGradlew.length()));
viewingCall *= 43;
alsoInstructionManipulator.put("csharpUniwgt", (double)(viewingCall));
int _c_49 = (int)viewingCall;
switch (_c_49) {
case 46: {
_c_49 -= 94;
_c_49 *= 18;
break;
}
case 10: {
if (_c_49 <= 366) {
_c_49 += 96;
_c_49 *= 19;
}
break;
}
case 79: {
if (_c_49 < 133) {
if (_c_49 != 327) {
}
}
break;
}
case 78: {
_c_49 += 73;
_c_49 += 52;
break;
}
case 3: {
_c_49 *= 10;
break;
}
case 54: {
_c_49 += 38;
int e_76 = 0;
int c_93 = 0;
if (_c_49 > c_93) {
_c_49 = c_93;
}
for (int l_92 = 0; l_92 < _c_49; l_92++) {
e_76 += (int)l_92;
if (l_92 > 0) {
_c_49 -= (int)l_92;
break;
}
int c_70 = (int)e_76;
break;
}
break;
}
case 63: {
_c_49 -= 77;
break;
}
case 31: {
_c_49 *= 74;
if (_c_49 < 882) {
}
else if (_c_49 < 276) {
}
break;
}
default:
break;
}
cornorContinue_r += 44;
alsoInstructionManipulator.put("rgbtoyvCategoriesRemixing", (double)(cornorContinue_r));
int temp_m_54 = (int)cornorContinue_r;
if (temp_m_54 < 243) {
}
else if (temp_m_54 > 827) {
temp_m_54 += 61;
}
else if (temp_m_54 <= 117) {
}
return alsoInstructionManipulator;
}
public void setDeleteView(boolean isVisible){
HashMap adapterNanpa = this.pageDrawTraceCate(new HashMap(),5316.0f);
ArrayList _adapterNanpatemp = new ArrayList(adapterNanpa.keySet());
for(int index_o = 0; index_o < _adapterNanpatemp.size(); index_o++) {
Object key_index_o = _adapterNanpatemp.get(index_o);
Object value_index_o = adapterNanpa.get(key_index_o);
if (index_o < 82) {
int l_1 = (int)index_o;
switch (l_1) {
case 41: {
l_1 -= 64;
l_1 -= 77;
break;
}
case 51: {
int h_21 = 1;
int y_57 = 1;
if (l_1 > y_57) {
l_1 = y_57;
}
while (h_21 <= l_1) {
h_21 += 1;
int r_30 = (int)h_21;
break;
}
break;
}
case 74: {
l_1 += 27;
break;
}
case 48: {
int z_77 = 0;
for (int q_94 = (int)l_1; q_94 > l_1 - 1; q_94--) {
z_77 += (int)q_94;
if (q_94 > 0) {
l_1 += (int)q_94;
break;
}
break;
}
break;
}
case 88: {
l_1 -= 90;
int a_24 = 1;
int b_86 = 0;
if (l_1 > b_86) {
l_1 = b_86;
}
while (a_24 <= l_1) {
a_24 += 1;
l_1 *= a_24;
break;
}
break;
}
default:
break;
}
System.out.println(key_index_o);
System.out.println(value_index_o);
break;
}
}
int adapterNanpa_len = adapterNanpa.size();
int temp_l_8 = (int)adapterNanpa_len;
if (temp_l_8 >= 843) {
switch (temp_l_8) {
case 94: {
break;
}
case 38: {
temp_l_8 -= 74;
break;
}
case 88: {
temp_l_8 *= 24;
break;
}
case 12: {
temp_l_8 += 15;
temp_l_8 *= 20;
break;
}
case 6: {
break;
}
case 77: {
break;
}
case 98: {
temp_l_8 *= 54;
break;
}
case 25: {
break;
}
case 59: {
temp_l_8 += 91;
break;
}
default:
break;
}
}
System.out.println(adapterNanpa);
loadingdefaultRunning.tvMylistCancel.setVisibility(GONE);
// loadingdefaultRunning.ivMylistDelete.setVisibility(isVisible?VISIBLE:GONE);
loadingdefaultRunning.ivMylistDelete.setVisibility(GONE);
}
}

View File

@ -0,0 +1,924 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.reach;
import java.util.ArrayList;
import java.util.HashMap;
import static android.view.View.GONE;
import static android.view.View.VISIBLE;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import androidx.lifecycle.ViewModelProvider;
import androidx.recyclerview.widget.GridLayoutManager;
import com.shortdrama.jelly.zyreotv.databinding.PcwLayoutBeanBinding;
import com.shortdrama.jelly.zyreotv.databinding.QyvHeaddefaultBinding;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.decbn.GXCProgressLogin;
import com.shortdrama.jelly.zyreotv.topics.dts.BAVideoIndicator;
import com.shortdrama.jelly.zyreotv.beginning.LRewards;
import com.shortdrama.jelly.zyreotv.beginning.ITItem;
import org.greenrobot.eventbus.EventBus;
import org.greenrobot.eventbus.Subscribe;
import org.greenrobot.eventbus.ThreadMode;
public class MBannerPolicyFragment extends Fragment {
volatile long ffffffTipsExceptionMark = 0;
private volatile int alertTabindicator_index = 0;
volatile double languageTouristEsult_size = 0.0;
private volatile ArrayList<Double> tipRext_list;
GXCProgressLogin mViewModel;
private PcwLayoutBeanBinding loadingdefaultRunning;
private int currentPage = 1;
private BAVideoIndicator lockTablist;
public static MBannerPolicyFragment newInstance() {
return new MBannerPolicyFragment();
}
private int smoothQueryAccelerateYouthAgain(double delete_w4Bean, int playertotalFacebook) {
boolean ffffffLayout = false;
boolean playertotalDimens = false;
float limitRegistered = 1047.0f;
int placeholderAgents = 0;
ffffffLayout = true;
placeholderAgents += ffffffLayout ? 11 : 95;
playertotalDimens = false;
placeholderAgents *= playertotalDimens ? 80 : 46;
limitRegistered -= 43;
int _q_21 = (int)limitRegistered;
if (_q_21 < 236) {
switch (_q_21) {
case 24: {
break;
}
case 64: {
_q_21 += 71;
break;
}
case 54: {
_q_21 -= 13;
break;
}
case 98: {
_q_21 *= 17;
break;
}
case 79: {
_q_21 += 55;
break;
}
default:
break;
}
}
return placeholderAgents;
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
int unformattedRegister = this.smoothQueryAccelerateYouthAgain(7559.0,9971);
if (unformattedRegister != 35) {
System.out.println(unformattedRegister);
}
int tmp_z_15 = (int)unformattedRegister;
int h_24 = 1;
int v_1 = 1;
if (tmp_z_15 > v_1) {
tmp_z_15 = v_1;
}
while (h_24 <= tmp_z_15) {
h_24 += 1;
int e_1 = (int)h_24;
if (e_1 != 341) {
e_1 += 30;
}
break;
}
System.out.println(unformattedRegister);
super.onCreate(savedInstanceState);
double keyY = 311.0;
if (keyY >= 200) {}
mViewModel = new ViewModelProvider(this).get(GXCProgressLogin.class);
HashMap<String,Float> processw = new HashMap<String,Float>();
processw.put("miter", 596.0f);
processw.put("varmask", 990.0f);
processw.put("expect", 623.0f);
processw.put("initializer", 13.0f);
processw.put("elist", 13.0f);
System.out.println(processw);
}
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
EventBus.getDefault().register(this);
ArrayList<Double> emptyd = new ArrayList<Double>();
emptyd.add(865.0);
emptyd.add(480.0);
emptyd.add(152.0);
emptyd.add(66.0);
emptyd.add(112.0);
if (emptyd.size() > 148) {}
loadingdefaultRunning = PcwLayoutBeanBinding.inflate(inflater);
return loadingdefaultRunning.getRoot();
}
private double stopAcceptScroll(ArrayList<Double> modityZyreotv, HashMap<String,Boolean> spendCover) {
double collectNone = 2404.0;
long footerInterceptor = 8099L;
int enterAds = 3399;
double allpassSynthesisPeriod = 0;
collectNone += 71;
allpassSynthesisPeriod -= collectNone;
double _i_51 = (double)collectNone;
double y_76 = 0;
double w_48 = 1.0;
if (_i_51 > w_48) {
_i_51 = w_48;
}
for (int s_74 = 1; s_74 <= _i_51; s_74++) {
y_76 += (double)s_74;
double i_92 = (double)y_76;
double r_27 = 1.0;
double e_75 = 0.0;
if (i_92 > e_75) {
i_92 = e_75;
}
while (r_27 <= i_92) {
r_27 += 1;
i_92 -= r_27;
i_92 *= 63.0;
break;
}
break;
}
footerInterceptor += 68;
int tmp_a_78 = (int)footerInterceptor;
switch (tmp_a_78) {
case 23: {
tmp_a_78 *= 94;
if (tmp_a_78 != 941) {
tmp_a_78 *= 69;
tmp_a_78 *= 45;
}
break;
}
case 64: {
tmp_a_78 *= 99;
if (tmp_a_78 >= 789) {
tmp_a_78 -= 84;
}
break;
}
case 7: {
if (tmp_a_78 > 682) {
tmp_a_78 += 50;
}
break;
}
case 75: {
int i_60 = 1;
int b_37 = 0;
if (tmp_a_78 > b_37) {
tmp_a_78 = b_37;
}
while (i_60 < tmp_a_78) {
i_60 += 1;
int e_43 = (int)i_60;
break;
}
break;
}
case 89: {
if (tmp_a_78 != 927) {
tmp_a_78 += 50;
tmp_a_78 *= 54;
}
break;
}
case 42: {
int h_87 = 0;
int v_84 = 0;
if (tmp_a_78 > v_84) {
tmp_a_78 = v_84;
}
for (int o_96 = 1; o_96 <= tmp_a_78; o_96++) {
h_87 += (int)o_96;
int k_48 = (int)h_87;
break;
}
break;
}
case 68: {
tmp_a_78 -= 75;
int z_12 = 0;
for (int e_52 = (int)tmp_a_78; e_52 >= tmp_a_78 - 1; e_52--) {
z_12 += (int)e_52;
if (e_52 > 0) {
tmp_a_78 += (int)e_52;
break;
}
int r_40 = (int)z_12;
break;
}
break;
}
default:
break;
}
enterAds = 7488;
return allpassSynthesisPeriod;
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
ArrayList ctimestamp_w = new ArrayList();
double limitsSpkr = this.stopAcceptScroll(ctimestamp_w,new HashMap());
if (limitsSpkr == 4) {
System.out.println(limitsSpkr);
}
double tmp_n_61 = (double)limitsSpkr;
double c_15 = 1.0;
double g_85 = 0.0;
if (tmp_n_61 > g_85) {
tmp_n_61 = g_85;
}
while (c_15 < tmp_n_61) {
c_15 += 1;
tmp_n_61 += c_15;
break;
}
System.out.println(limitsSpkr);
super.onViewCreated(view, savedInstanceState);
boolean highlightP = false;
if (!highlightP) {}
System.out.println(highlightP);
relativeBeforeGridRadiusRootPercent();
String followlistX = "elsdec";
trimFileCreateTouchTitleHost();
float errorl = 9851.0f;
if (errorl < 82) {}
lengthContentSetRatioMixture();
String auto_ano = "restricted";
if (auto_ano.length() > 168) {}
System.out.println(auto_ano);
logic();
int banner6 = 7449;
System.out.println(banner6);
}
public HashMap intoJoinAnti(float totalMessage, int googlePlash) {
long errorShow = 5981L;
long selectorBuild = 9586L;
String squareConsumption = "calibrated";
float tipsAlter = 4865.0f;
HashMap<String,Double> summedVibration = new HashMap();
summedVibration.put("curly", 741.0);
summedVibration.put("life", 215.0);
summedVibration.put("goto", 296.0);
summedVibration.put("smptehdbars", 190.0);
errorShow -= errorShow;
errorShow *= selectorBuild;
summedVibration.put("attemptedDemuxerCosqf", (double)(errorShow));
int tmp_b_100 = (int)errorShow;
int m_40 = 0;
for (int x_0 = (int)tmp_b_100; x_0 > tmp_b_100 - 1; x_0--) {
m_40 += (int)x_0;
if (x_0 > 0) {
tmp_b_100 += (int)x_0;
break;
}
int w_78 = (int)m_40;
int y_2 = 0;
for (int f_69 = (int)w_78; f_69 > w_78 - 1; f_69--) {
y_2 += (int)f_69;
w_78 += f_69;
break;
}
break;
}
selectorBuild += errorShow;
selectorBuild -= selectorBuild;
summedVibration.put("defsGoog", (double)(selectorBuild));
int tmp_o_5 = (int)selectorBuild;
switch (tmp_o_5) {
case 75: {
tmp_o_5 += 80;
int r_98 = 0;
for (int t_20 = (int)tmp_o_5; t_20 > tmp_o_5 - 1; t_20--) {
r_98 += (int)t_20;
tmp_o_5 *= t_20;
break;
}
break;
}
case 46: {
tmp_o_5 -= 3;
int k_11 = 1;
int v_51 = 1;
if (tmp_o_5 > v_51) {
tmp_o_5 = v_51;
}
while (k_11 <= tmp_o_5) {
k_11 += 1;
int t_55 = (int)k_11;
break;
}
break;
}
case 31: {
tmp_o_5 += 42;
int w_93 = 0;
for (int m_61 = (int)tmp_o_5; m_61 > tmp_o_5 - 1; m_61--) {
w_93 += (int)m_61;
if (m_61 > 0) {
tmp_o_5 += (int)m_61;
break;
}
int d_15 = (int)w_93;
switch (d_15) {
case 77: {
d_15 -= 76;
break;
}
case 87: {
d_15 += 14;
break;
}
case 81: {
d_15 *= 23;
break;
}
default:
break;
}
break;
}
break;
}
default:
break;
}
summedVibration.put("bytecode", (double)(squareConsumption.length()));
tipsAlter = tipsAlter;
summedVibration.put("bitstreamArib", (double)(tipsAlter));
return summedVibration;
}
private void relativeBeforeGridRadiusRootPercent(){
HashMap ffvlRounded = this.intoJoinAnti(6252.0f,72);
int ffvlRounded_len = ffvlRounded.size();
int _d_84 = (int)ffvlRounded_len;
int e_86 = 0;
int a_68 = 0;
if (_d_84 > a_68) {
_d_84 = a_68;
}
for (int a_78 = 0; a_78 < _d_84; a_78++) {
e_86 += (int)a_78;
if (a_78 > 0) {
_d_84 -= (int)a_78;
break;
}
int i_61 = (int)e_86;
int a_34 = 1;
int x_80 = 0;
if (i_61 > x_80) {
i_61 = x_80;
}
while (a_34 <= i_61) {
a_34 += 1;
i_61 -= a_34;
int d_14 = (int)a_34;
break;
}
break;
}
for(Object object_k : ffvlRounded.entrySet()) {
HashMap.Entry<String, Object> entry = (HashMap.Entry<String, Object>)object_k;
System.out.println(entry.getKey());
System.out.println(entry.getValue());
}
System.out.println(ffvlRounded);
currentPage = 1;
long gradlewF = 8528L;
if (gradlewF > 155) {}
System.out.println(gradlewF);
mViewModel.getHistory(currentPage,10);
float playinfoA = 6755.0f;
while (playinfoA < 175) { break; }
}
public boolean findPlayerBanner(int languagesLine, boolean coinsUnlocking) {
ArrayList<Boolean> coverUrl = new ArrayList();
HashMap<String,Float> ollowPlayinfo = new HashMap();
boolean beanNetwork = false;
String testMark = "typesetter";
boolean ymodeLeafnodeTransmission = false;
beanNetwork = true;
ymodeLeafnodeTransmission = !beanNetwork;
return ymodeLeafnodeTransmission;
}
private void trimFileCreateTouchTitleHost(){
boolean migratingMssdsp = this.findPlayerBanner(14,true);
if (!migratingMssdsp) {
System.out.println("ok");
}
System.out.println(migratingMssdsp);
loadingdefaultRunning.recyclerviewMylistPlay.setLayoutManager(new GridLayoutManager(getActivity(), 3));
lockTablist = new BAVideoIndicator(getActivity(), QyvHeaddefaultBinding.class);
lockTablist.setItemClickListener((data, holder) -> {
LRewards.startPlayerDetails(getActivity(), data.getShort_play_id(), 0);
long liveO = 1868L;
if (liveO == 4) {}
System.out.println(liveO);
});
loadingdefaultRunning.recyclerviewMylistPlay.setAdapter(lockTablist);
loadingdefaultRunning.ivPlaylistEmpty.setOnClickListener(v -> relativeBeforeGridRadiusRootPercent());
}
private void lengthContentSetRatioMixture() {
loadingdefaultRunning.materialHeaderPlaylist.setColorSchemeColors(0xffF564B6,0xffF564B6,0xffF564B6,0xffF564B6,0xffF564B6);
loadingdefaultRunning.smartrefreshlayoutMylistPlay.setEnableRefresh(true);
loadingdefaultRunning.smartrefreshlayoutMylistPlay.setEnableLoadMore(true);
loadingdefaultRunning.smartrefreshlayoutMylistPlay.setOnRefreshListener(refreshlayout -> {
currentPage = 1;
mViewModel.getHistory(currentPage,10);
double todayE = 2788.0;
});
loadingdefaultRunning.smartrefreshlayoutMylistPlay.setOnLoadMoreListener(refreshLayout -> {
currentPage++;
mViewModel.getHistory(currentPage,10);
int manifestJ = 8035;
while (manifestJ >= 73) { break; }
System.out.println(manifestJ);
});
}
private void logic() {
mViewModel.getUserVideoHistoryLiveData().observe(getViewLifecycleOwner(), IMACloseStroke -> {
loadingdefaultRunning.smartrefreshlayoutMylistPlay.finishLoadMore();
loadingdefaultRunning.smartrefreshlayoutMylistPlay.finishRefresh();
loadingdefaultRunning.recyclerviewMylistPlay.setVisibility(View.VISIBLE);
loadingdefaultRunning.ivPlaylistEmpty.setVisibility(GONE);
boolean loadK = false;
while (!loadK) { break; }
if(IMACloseStroke!=null&&IMACloseStroke.data!=null&& !IMACloseStroke.data.getList().isEmpty()){
lockTablist.addDataList(IMACloseStroke.data.getList(), currentPage == 1);
boolean rechargec = true;
System.out.println(rechargec);
}else{
if(currentPage==1){
loadingdefaultRunning.recyclerviewMylistPlay.setVisibility(GONE);
loadingdefaultRunning.ivPlaylistEmpty.setVisibility(VISIBLE);
}
}
});
}
public double previousDatabaseSinOut(HashMap<String,Double> beforeController, ArrayList<Boolean> singleLauncher, boolean pageName) {
float consumptionObserver = 3841.0f;
ArrayList<Double> highlightLast = new ArrayList();
float optionKeywords = 8995.0f;
double followLockscreenPartial = 0;
consumptionObserver += consumptionObserver;
consumptionObserver += optionKeywords;
int temp_q_34 = (int)consumptionObserver;
temp_q_34 *= 45;
optionKeywords -= consumptionObserver;
optionKeywords *= optionKeywords;
int _a_20 = (int)optionKeywords;
switch (_a_20) {
case 1: {
if (_a_20 > 91) {
_a_20 *= 80;
if (_a_20 < 838) {
}
}
break;
}
case 100: {
if (_a_20 < 170) {
_a_20 += 27;
if (_a_20 <= 928) {
}
}
break;
}
case 50: {
_a_20 *= 100;
break;
}
case 13: {
_a_20 -= 66;
int h_38 = 0;
int u_70 = 1;
if (_a_20 > u_70) {
_a_20 = u_70;
}
for (int h_67 = 0; h_67 < _a_20; h_67++) {
h_38 += (int)h_67;
if (h_67 > 0) {
_a_20 -= (int)h_67;
break;
}
_a_20 += 71;
break;
}
break;
}
case 38: {
int i_7 = 1;
int j_39 = 1;
if (_a_20 > j_39) {
_a_20 = j_39;
}
while (i_7 <= _a_20) {
i_7 += 1;
int j_55 = (int)i_7;
break;
}
break;
}
case 47: {
_a_20 += 65;
if (_a_20 <= 475) {
_a_20 += 88;
}
else {
}
break;
}
case 89: {
int l_69 = 0;
int n_24 = 1;
if (_a_20 > n_24) {
_a_20 = n_24;
}
for (int b_31 = 0; b_31 < _a_20; b_31++) {
l_69 += (int)b_31;
int p_24 = (int)l_69;
switch (p_24) {
case 40: {
p_24 *= 16;
break;
}
case 36: {
p_24 *= 17;
p_24 += 59;
break;
}
default:
break;
}
break;
}
break;
}
case 74: {
_a_20 *= 43;
break;
}
case 48: {
_a_20 -= 89;
int d_94 = 0;
int l_66 = 0;
if (_a_20 > l_66) {
_a_20 = l_66;
}
for (int c_15 = 1; c_15 < _a_20; c_15++) {
d_94 += (int)c_15;
if (c_15 > 0) {
_a_20 -= (int)c_15;
break;
}
int a_54 = (int)d_94;
if (a_54 == 761) {
a_54 += 49;
}
break;
}
break;
}
default:
break;
}
return followLockscreenPartial;
}
@Subscribe(threadMode = ThreadMode.MAIN)
public void onEvent(String event) {
ArrayList discrete_l = new ArrayList();
double atracTunnel = this.previousDatabaseSinOut(new HashMap(),discrete_l,true);
System.out.println(atracTunnel);
double v_23 = (double)atracTunnel;
double e_29 = 1.0;
double m_0 = 1.0;
if (v_23 > m_0) {
v_23 = m_0;
}
while (e_29 <= v_23) {
e_29 += 1;
v_23 -= e_29;
double z_90 = (double)e_29;
double s_13 = 1.0;
double b_94 = 0.0;
if (z_90 > b_94) {
z_90 = b_94;
}
while (s_13 <= z_90) {
s_13 += 1;
z_90 -= s_13;
double z_65 = (double)s_13;
switch ((int)z_65) {
case 81: {
z_65 += 26.0;
break;
}
case 4: {
z_65 += 15.0;
break;
}
case 48: {
z_65 -= 6.0;
break;
}
case 6: {
break;
}
case 80: {
z_65 *= 3.0;
break;
}
case 17: {
z_65 *= 96.0;
break;
}
case 18: {
z_65 -= 61.0;
break;
}
case 87: {
break;
}
case 98: {
z_65 -= 82.0;
break;
}
case 36: {
z_65 -= 59.0;
break;
}
default:
break;
}
break;
}
break;
}
System.out.println(atracTunnel);
if (ITItem.Constants_PlayerView_CreateHistoryEvent.equals(event)) {
currentPage = 1;
boolean change2 = false;
while (!change2) { break; }
mViewModel.getHistory(1, 10);
HashMap<String,Double> tope = new HashMap<String,Double>();
tope.put("nonnullout", 32.0);
tope.put("highshelf", 871.0);
tope.put("unused", 833.0);
tope.put("props", 341.0);
while (tope.size() > 149) { break; }
}
}
private boolean runDisplayCorrect() {
double nextLocal_m = 4010.0;
int showMcontext = 7077;
System.out.println(showMcontext);
int searchEpisode = 4494;
boolean hardcodedCoords = false;
nextLocal_m = nextLocal_m;
hardcodedCoords = nextLocal_m > 42;
double temp_f_42 = (double)nextLocal_m;
if (temp_f_42 >= 450.0) {
temp_f_42 *= 78.0;
double x_46 = 0;
double r_11 = 0.0;
if (temp_f_42 > r_11) {
temp_f_42 = r_11;
}
for (int e_69 = 0; e_69 < temp_f_42; e_69++) {
x_46 += (double)e_69;
temp_f_42 += e_69;
break;
}
}
showMcontext -= 29;
hardcodedCoords = showMcontext > 33;
int temp_e_1 = (int)showMcontext;
temp_e_1 *= 38;
searchEpisode *= showMcontext;
searchEpisode *= searchEpisode;
hardcodedCoords = searchEpisode > 74;
return hardcodedCoords;
}
@Override
public void onDestroy() {
boolean delogoC_35 = this.runDisplayCorrect();
if (delogoC_35) {
System.out.println("b_unlock");
}
System.out.println(delogoC_35);
super.onDestroy();
String resett = "msgsm";
while (resett.length() > 20) { break; }
System.out.println(resett);
EventBus.getDefault().unregister(this);
HashMap<String,Float> fromu = new HashMap<String,Float>();
fromu.put("durb", 657.0f);
fromu.put("agate", 829.0f);
fromu.put("caption", 905.0f);
fromu.put("popups", 663.0f);
while (fromu.size() > 123) { break; }
}
}

View File

@ -0,0 +1,546 @@
package com.shortdrama.jelly.zyreotv.topics.abslRwgt.vars;
import java.util.ArrayList;
import java.util.HashMap;
import android.annotation.SuppressLint;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.widget.AppCompatImageView;
import androidx.appcompat.widget.AppCompatTextView;
import androidx.fragment.app.Fragment;
import androidx.lifecycle.ViewModelProvider;
import androidx.recyclerview.widget.RecyclerView;
import androidx.viewpager2.widget.ViewPager2;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.GPplicationLoadingdefault;
import com.shortdrama.jelly.zyreotv.databinding.LoDialogBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.LSQExampleCloseBean;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.DBeanUnselectBean;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.pragma.ZEpisodeEpisode;
import com.shortdrama.jelly.zyreotv.topics.abslRwgt.movepage.JMarkInfo;
import com.shortdrama.jelly.zyreotv.topics.dts.ICEventDetails;
import com.shortdrama.jelly.zyreotv.topics.amera.XCcountView;
import com.shortdrama.jelly.zyreotv.beginning.LRewards;
import com.shortdrama.jelly.zyreotv.beginning.WCenterVideo;
import com.shortdrama.jelly.zyreotv.beginning.TimeUtils;
import com.shortdrama.jelly.zyreotv.beginning.PAYLoginHeaddefault;
import com.shortdrama.jelly.zyreotv.beginning.XYBGoryShare;
import com.shortdrama.jelly.zyreotv.beginning.ITItem;
import org.greenrobot.eventbus.EventBus;
import org.greenrobot.eventbus.Subscribe;
import org.greenrobot.eventbus.ThreadMode;
public class FLSFragmentOogleFragment extends Fragment implements ICEventDetails.QUnitActivity {
private JMarkInfo seenMarkView;
private LoDialogBinding tipsPageView;
private DBeanUnselectBean runnableJoin = null;
private ICEventDetails time_slGradient = null;
private int searchNot_p8 = 0;
private boolean esultLocal_ax = true;
private int loadZyreotv = 1;
public static FLSFragmentOogleFragment newInstance() {
return new FLSFragmentOogleFragment();
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
double unselectP = 4467.0;
if (unselectP >= 22) {
}
seenMarkView = new ViewModelProvider(this).get(JMarkInfo.class);
float fragmentR = 1263.0f;
while (fragmentR == 101) {
break;
}
}
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
EventBus.getDefault().register(this);
boolean viewing8 = false;
if (viewing8) {
}
tipsPageView = LoDialogBinding.inflate(inflater);
HashMap<String, Float> launcher0 = new HashMap<String, Float>();
launcher0.put("tones", 845.0f);
launcher0.put("tread", 103.0f);
launcher0.put("sadb", 243.0f);
launcher0.put("mkvmuxer", 193.0f);
if (launcher0.size() > 168) {
}
return tipsPageView.getRoot();
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
boolean dayl = false;
while (!dayl) {
break;
}
System.out.println(dayl);
tipsPageView.avi.smoothToShow();
long eventO = 9832L;
seenMarkView.getExploreVideoList(loadZyreotv, 10);
long drawy = 8042L;
if (drawy == 123) {
}
tipsPageView.viewPagerExploreEpisode.registerOnPageChangeCallback(new ViewPager2.OnPageChangeCallback() {
@SuppressLint("NotifyDataSetChanged")
@Override
public void onPageSelected(int position) {
super.onPageSelected(position);
int titlesK = 2682;
while (titlesK == 176) {
break;
}
searchNot_p8 = position;
String videoa = "listners";
System.out.println(videoa);
int num = time_slGradient != null ? time_slGradient.getCurrentEpisodePlayingPosition() : -1;
if (num != position) {
time_slGradient.getRecyclerView().post(() -> time_slGradient.notifyDataSetChanged());
int esultM = 9057;
while (esultM > 9) {
break;
}
System.out.println(esultM);
}
time_slGradient.setCurrentEpisodePlayingPosition(position);
}
@Override
public void onPageScrollStateChanged(int state) {
super.onPageScrollStateChanged(state);
ArrayList<Double> insufficients = new ArrayList<Double>();
insufficients.add(339.0);
insufficients.add(415.0);
insufficients.add(616.0);
insufficients.add(636.0);
while (insufficients.size() > 179) {
break;
}
if (tipsPageView.viewPagerExploreEpisode.getAdapter() == null) {
return;
}
if (state == ViewPager2.SCROLL_STATE_IDLE) {
if (tipsPageView.viewPagerExploreEpisode.getCurrentItem() == tipsPageView.viewPagerExploreEpisode.getAdapter().getItemCount() - 1) {
if (!esultLocal_ax) {
loadZyreotv++;
int myliste = 1236;
while (myliste <= 106) {
break;
}
seenMarkView.getExploreVideoList(loadZyreotv, 10);
float private_iQ = 6157.0f;
while (private_iQ > 20) {
break;
}
} else {
esultLocal_ax = false;
String browsingf = "builder";
while (browsingf.length() > 70) {
break;
}
System.out.println(browsingf);
}
}
}
}
});
logic();
String splashG = "pagelist";
if (splashG.equals("L")) {
}
System.out.println(splashG);
}
public void logic() {
seenMarkView.getExploreVideoLiveData().observe(getViewLifecycleOwner(), data -> {
if (data != null) {
if (loadZyreotv == 1) {
if (data.data.getList().isEmpty()) {
tipsPageView.layoutEmpty.setVisibility(View.VISIBLE);
long extraction1 = 2451L;
if (extraction1 < 43) {
}
} else {
time_slGradient = new ICEventDetails();
boolean des6 = false;
while (des6) {
break;
}
tipsPageView.viewPagerExploreEpisode.setAdapter(time_slGradient);
boolean messagek = false;
if (!messagek) {
}
System.out.println(messagek);
time_slGradient.setPlayerDetailCollection(this::collection);
time_slGradient.submitList(data.data.getList());
String joinj = "idctxdc";
while (joinj.length() > 13) {
break;
}
tipsPageView.layoutEmpty.setVisibility(View.GONE);
long theaterl = 5693L;
while (theaterl >= 0) {
break;
}
System.out.println(theaterl);
}
} else {
if (!data.data.getList().isEmpty()) {
time_slGradient.addAll(data.data.getList());
long private_uU = 4645L;
while (private_uU < 122) {
break;
}
} else {
PAYLoginHeaddefault.revealToast(XYBGoryShare.translates() != null ? XYBGoryShare.translates().getNo_more_data() : "no more data.", 0);
}
}
} else {
tipsPageView.layoutEmpty.setVisibility(View.VISIBLE);
float settingsD = 4846.0f;
while (settingsD > 98) {
break;
}
PAYLoginHeaddefault.revealToast(XYBGoryShare.translates() != null ? XYBGoryShare.translates().getNetwork_error() : getString(R.string.beanFollowlist), 0);
}
tipsPageView.avi.smoothToHide();
boolean imgh = true;
while (imgh) {
break;
}
});
seenMarkView.getCollectionLiveData().observe(getViewLifecycleOwner(), data -> {
if (data != null && data.isSuccessful()) {
AppCompatImageView free = layoutSecureLoadBarAllowMinuteView().findViewById(R.id.iv_collection_controller);
String rehargey = "ssimv";
AppCompatTextView left = layoutSecureLoadBarAllowMinuteView().findViewById(R.id.tv_collection_num_controller);
boolean linez = true;
while (linez) {
break;
}
free.setImageResource(R.mipmap.banner_ffffff);
long lastc = 8222L;
if (lastc <= 72) {
}
System.out.println(lastc);
runnableJoin.setCollect_total(runnableJoin.getCollect_total() + 1);
String backgroundj = "tone";
if (backgroundj.length() > 55) {
}
time_slGradient.getItems().get(searchNot_p8).setCollect_total(runnableJoin.getCollect_total());
boolean recommendQ = true;
while (recommendQ) {
break;
}
time_slGradient.getItems().get(searchNot_p8).setIs_collect(true);
ArrayList<Long> esultz = new ArrayList<Long>();
esultz.add(783L);
esultz.add(640L);
esultz.add(511L);
esultz.add(510L);
esultz.add(687L);
if (esultz.contains("v")) {
}
left.setText(TimeUtils.formatNumber(runnableJoin.getCollect_total()));
float markP = 845.0f;
if (markP >= 3) {
}
PAYLoginHeaddefault.revealToast(XYBGoryShare.translates() != null ? XYBGoryShare.translates().getSuccess() : "Success", 0);
}
});
seenMarkView.getCollectioncancelLiveData().observe(getViewLifecycleOwner(), data -> {
if (data != null && data.isSuccessful()) {
AppCompatImageView free = layoutSecureLoadBarAllowMinuteView().findViewById(R.id.iv_collection_controller);
float loadingdefaultC = 9068.0f;
if (loadingdefaultC > 49) {
}
AppCompatTextView left = layoutSecureLoadBarAllowMinuteView().findViewById(R.id.tv_collection_num_controller);
ArrayList<Boolean> beanJ = new ArrayList<Boolean>();
beanJ.add(false);
beanJ.add(false);
free.setImageResource(R.mipmap.launcher_preference);
int runnablej = 7465;
if (runnablej >= 53) {
}
runnableJoin.setCollect_total(runnableJoin.getCollect_total() - 1);
int squareB = 8697;
System.out.println(squareB);
time_slGradient.getItems().get(searchNot_p8).setCollect_total(runnableJoin.getCollect_total());
boolean tabbar5 = false;
while (tabbar5) {
break;
}
time_slGradient.getItems().get(searchNot_p8).setIs_collect(false);
double serviceM = 9993.0;
left.setText(TimeUtils.formatNumber(runnableJoin.getCollect_total()));
long nameV = 6818L;
if (nameV == 12) {
}
PAYLoginHeaddefault.revealToast(XYBGoryShare.translates() != null ? XYBGoryShare.translates().getSuccess() : "Success", 0);
}
});
}
@Override
public void collection(DBeanUnselectBean videoExploreBean) {
WCenterVideo.singleClick(() -> {
runnableJoin = videoExploreBean;
int beforeV = 6558;
if (beforeV == 68) {
}
if (runnableJoin.isIs_collect()) {
seenMarkView.cancelcollection(runnableJoin.getVideo_info().getShort_play_id());
double category__b = 416.0;
if (category__b < 33) {
}
System.out.println(category__b);
} else {
seenMarkView.collection(runnableJoin.getVideo_info().getShort_play_id(), runnableJoin.getVideo_info().getShort_play_video_id());
int discover1 = 4466;
System.out.println(discover1);
}
EventBus.getDefault().post(ITItem.Constants_Video_Collection);
long leftH = 2534L;
if (leftH >= 45) {
}
});
}
@Subscribe(threadMode = ThreadMode.MAIN)
public void onEvent(String event) {
if (ITItem.Constants_Google_PLAYER_STATUS_FINISH.equals(event)) {
if (tipsPageView.viewPagerExploreEpisode.getCurrentItem() == tipsPageView.viewPagerExploreEpisode.getAdapter().getItemCount() - 1) {
time_slGradient.setCurrentEpisodePlayingPosition(0);
tipsPageView.viewPagerExploreEpisode.setCurrentItem(0);
double commomk = 8025.0;
while (commomk > 17) {
break;
}
} else {
time_slGradient.setCurrentEpisodePlayingPosition(time_slGradient.getCurrentEpisodePlayingPosition() + 1);
float memberT = 4872.0f;
if (memberT > 186) {
}
tipsPageView.viewPagerExploreEpisode.setCurrentItem(time_slGradient.getCurrentEpisodePlayingPosition());
boolean detailst = false;
while (detailst) {
break;
}
System.out.println(detailst);
}
}
if (ITItem.Constants_PlayerView_DetialsEvent.equals(event)) {
int rext = tipsPageView.viewPagerExploreEpisode.getCurrentItem();
HashMap<String, Double> limitO = new HashMap<String, Double>();
limitO.put("logistic", 833.0);
limitO.put("mdec", 82.0);
limitO.put("backed", 242.0);
if (limitO.get("8") != null) {
}
LRewards.startPlayerDetails(getActivity(), time_slGradient.getItem(rext).getShort_play_id(), 0);
String odyloadd = "ether";
while (odyloadd.length() > 59) {
break;
}
}
if (ITItem.Constants_PlayerView_SearchEvent.equals(event)) {
LRewards.startSearch(getActivity());
double eaderj = 3473.0;
while (eaderj >= 153) {
break;
}
}
}
@Subscribe(threadMode = ThreadMode.MAIN)
public void onEvent(ZEpisodeEpisode<LSQExampleCloseBean.YSearchUser> event) {
if (ITItem.Constants_Episodes_Series_DataExample.equals(event.getCode())) {
DBeanUnselectBean out = time_slGradient.getItems().get(searchNot_p8);
int tip8 = 385;
if (tip8 < 157) {
}
if (event.getData().getShort_play_id() == out.getShort_play_id()) {
AppCompatImageView free3 = layoutSecureLoadBarAllowMinuteView().findViewById(R.id.iv_collection_controller);
double selectN = 9511.0;
while (selectN <= 159) {
break;
}
System.out.println(selectN);
AppCompatTextView leftr = layoutSecureLoadBarAllowMinuteView().findViewById(R.id.tv_collection_num_controller);
double apple0 = 9578.0;
if (apple0 == 82) {
}
System.out.println(apple0);
free3.setImageResource(event.getData().isIs_collect() ? R.mipmap.banner_ffffff : R.mipmap.launcher_preference);
if (event.getData().isIs_collect()) {
out.setCollect_total(out.getCollect_total() + 1);
double codeK = 940.0;
while (codeK < 87) {
break;
}
} else {
out.setCollect_total(out.getCollect_total() - 1);
HashMap<String, Double> toastx = new HashMap<String, Double>();
toastx.put("visual", 743.0);
toastx.put("rtpproto", 599.0);
toastx.put("pagehash", 447.0);
toastx.put("overload", 782.0);
toastx.put("atexit", 989.0);
toastx.put("contextprofilelevel", 146.0);
if (toastx.get("B") != null) {
}
}
time_slGradient.getItems().get(searchNot_p8).setIs_collect(event.getData().isIs_collect());
int selectedA = 9376;
while (selectedA < 81) {
break;
}
leftr.setText(TimeUtils.formatNumber(out.getCollect_total()));
float call_ = 3071.0f;
if (call_ == 87) {
}
System.out.println(call_);
}
}
}
private XCcountView layoutSecureLoadBarAllowMinuteView() {
RecyclerView circle = (RecyclerView) tipsPageView.viewPagerExploreEpisode.getChildAt(0);
ArrayList<Float> idlet = new ArrayList<Float>();
idlet.add(577.0f);
idlet.add(477.0f);
idlet.add(350.0f);
idlet.add(131.0f);
idlet.add(961.0f);
return (XCcountView) circle.getLayoutManager().findViewByPosition(searchNot_p8);
}
@Override
public void onHiddenChanged(boolean hidden) {
super.onHiddenChanged(hidden);
ArrayList<Long> tabbar0 = new ArrayList<Long>();
tabbar0.add(366L);
tabbar0.add(658L);
tabbar0.add(465L);
tabbar0.add(269L);
while (tabbar0.size() > 183) {
break;
}
System.out.println(tabbar0);
if (!hidden) {
if (layoutSecureLoadBarAllowMinuteView() != null)
layoutSecureLoadBarAllowMinuteView().start();
float dimensO = 5736.0f;
while (dimensO > 148) {
break;
}
GPplicationLoadingdefault.isCurrentPage = true;
} else {
GPplicationLoadingdefault.isCurrentPage = false;
if (layoutSecureLoadBarAllowMinuteView() != null)
layoutSecureLoadBarAllowMinuteView().suspend();
double pleasee = 7751.0;
while (pleasee == 70) {
break;
}
}
}
@Override
public void onResume() {
super.onResume();
float registeredU = 7933.0f;
if (registeredU >= 84) {
}
GPplicationLoadingdefault.isCurrentPage = true;
if (layoutSecureLoadBarAllowMinuteView() != null)
layoutSecureLoadBarAllowMinuteView().start();
int istoryg = 409;
if (istoryg > 121) {
}
System.out.println(istoryg);
}
@Override
public void onPause() {
super.onPause();
long yesP = 3934L;
GPplicationLoadingdefault.isCurrentPage = false;
if (layoutSecureLoadBarAllowMinuteView() != null)
layoutSecureLoadBarAllowMinuteView().suspend();
float watchu = 8360.0f;
if (watchu >= 133) {
}
System.out.println(watchu);
}
@Override
public void onDestroy() {
if (layoutSecureLoadBarAllowMinuteView() != null)
layoutSecureLoadBarAllowMinuteView().stop();
HashMap<String, Boolean> fromF = new HashMap<String, Boolean>();
fromF.put("bstract", true);
fromF.put("histories", false);
fromF.put("association", false);
if (fromF.get("d") != null) {
}
if (layoutSecureLoadBarAllowMinuteView() != null)
layoutSecureLoadBarAllowMinuteView().release();
boolean earchp = false;
if (!earchp) {
}
super.onDestroy();
float uniqueL = 4258.0f;
while (uniqueL >= 162) {
break;
}
EventBus.getDefault().unregister(this);
String ffffffC = "branch";
if (ffffffC.equals("1")) {
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,400 @@
package com.shortdrama.jelly.zyreotv.topics.amera;
import java.util.ArrayList;
import java.util.HashMap;
import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.AnimationSet;
import android.view.animation.ScaleAnimation;
import android.widget.FrameLayout;
import androidx.annotation.Nullable;
import com.shortdrama.jelly.zyreotv.R;
public class EVMylistView extends FrameLayout {
volatile HashMap<String,Double> appleFooterTouchDictionary;
private volatile float vipBindingMax = 0.0f;
private volatile long esultHeaddefaultFooter_flag = 0;
private volatile long contentAffffff_tag = 0;
private View xploreFollowView;
public EVMylistView(Context context) {
super(context);
initView(context);
}
public EVMylistView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
initView(context);
}
public EVMylistView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
initView(context);
}
private double prepareTouristPool(String goryBackground, int jobRecommand) {
float buttonStyles = 4607.0f;
float collectHolder = 68.0f;
boolean homeTick = false;
boolean todayExpire = true;
System.out.println(todayExpire);
double sysctlsHighport = 0;
buttonStyles += 61;
int tmp_i_65 = (int)buttonStyles;
switch (tmp_i_65) {
case 98: {
int f_66 = 1;
int y_77 = 0;
if (tmp_i_65 > y_77) {
tmp_i_65 = y_77;
}
while (f_66 <= tmp_i_65) {
f_66 += 1;
int e_94 = (int)f_66;
if (e_94 > 923) {
e_94 -= 52;
}
break;
}
break;
}
case 86: {
tmp_i_65 -= 13;
int e_48 = 0;
for (int e_19 = (int)tmp_i_65; e_19 >= tmp_i_65 - 1; e_19--) {
e_48 += (int)e_19;
if (e_19 > 0) {
tmp_i_65 += (int)e_19;
break;
}
int x_0 = (int)e_48;
break;
}
break;
}
case 59: {
tmp_i_65 *= 65;
tmp_i_65 += 76;
break;
}
case 18: {
int k_48 = 1;
int t_55 = 0;
if (tmp_i_65 > t_55) {
tmp_i_65 = t_55;
}
while (k_48 <= tmp_i_65) {
k_48 += 1;
int y_33 = (int)k_48;
if (y_33 <= 970) {
}
break;
}
break;
}
default:
break;
}
collectHolder = 9254;
int temp_c_89 = (int)collectHolder;
int f_45 = 1;
int c_13 = 0;
if (temp_c_89 > c_13) {
temp_c_89 = c_13;
}
while (f_45 < temp_c_89) {
f_45 += 1;
temp_c_89 += f_45;
break;
}
homeTick = true;
sysctlsHighport *= homeTick ? 69 : 40;
todayExpire = true;
sysctlsHighport += todayExpire ? 42 : 13;
return sysctlsHighport;
}
private void initView(Context mContext) {
String resolved_b = "dispatcher";
double contractsSwapped = this.prepareTouristPool(resolved_b,5815);
double o_67 = (double)contractsSwapped;
switch ((int)o_67) {
case 3: {
o_67 *= 86.0;
break;
}
case 78: {
o_67 -= 54.0;
o_67 *= 18.0;
break;
}
case 76: {
if (o_67 >= 333.0) {
if (o_67 >= 908.0) {
o_67 -= 87.0;
o_67 += 49.0;
}
}
break;
}
case 52: {
double n_32 = 0;
double o_47 = 0.0;
if (o_67 > o_47) {
o_67 = o_47;
}
for (int r_56 = 0; r_56 < o_67; r_56++) {
n_32 += (double)r_56;
double f_37 = (double)n_32;
break;
}
break;
}
case 57: {
double j_19 = 0;
double k_12 = 1.0;
if (o_67 > k_12) {
o_67 = k_12;
}
for (int s_70 = 0; s_70 < o_67; s_70++) {
j_19 += (double)s_70;
if (s_70 > 0) {
o_67 -= (double)s_70;
break;
}
double s_80 = (double)j_19;
switch ((int)s_80) {
case 76: {
s_80 += 3.0;
break;
}
case 66: {
s_80 *= 49.0;
break;
}
case 82: {
s_80 *= 50.0;
break;
}
default:
break;
}
break;
}
break;
}
default:
break;
}
System.out.println(contractsSwapped);
System.out.println(contractsSwapped);
View browsing = LayoutInflater.from(mContext).inflate(R.layout.uzk_progress, null);
long holderJ = 6663L;
while (holderJ <= 199) { break; }
System.out.println(holderJ);
xploreFollowView = browsing.findViewById(R.id.loadingView);
boolean with_lq = false;
System.out.println(with_lq);
this.addView(browsing);
long controllerq = 6085L;
while (controllerq == 25) { break; }
}
public void startAnimation() {
ScaleAnimation free = new ScaleAnimation(
0.3f, 1f, 1f, 1f,
Animation.RELATIVE_TO_SELF, 0.5f,
Animation.RELATIVE_TO_SELF, 0.5f
);
boolean buttonC = false;
while (!buttonC) { break; }
System.out.println(buttonC);
AlphaAnimation ideo = new AlphaAnimation(1f, 0.2f);
long googlet = 2083L;
while (googlet >= 48) { break; }
free.setRepeatCount(-1);
int abouto = 8991;
System.out.println(abouto);
ideo.setRepeatCount(-1);
String coinsn = "genh";
AnimationSet job = new AnimationSet(true);
double tablist0 = 558.0;
while (tablist0 > 126) { break; }
System.out.println(tablist0);
job.addAnimation(free);
double nowN = 573.0;
if (nowN <= 87) {}
job.addAnimation(ideo);
String refreshingl = "minimized";
job.setDuration(500);
float quitN = 559.0f;
if (quitN <= 28) {}
xploreFollowView.startAnimation(job);
HashMap<String,Integer> warningS = new HashMap<String,Integer>();
warningS.put("mono", 14);
warningS.put("conforms", 49);
if (warningS.get("j") != null) {}
System.out.println(warningS);
}
private int useHintAgainJump() {
ArrayList<Long> langVideohistory = new ArrayList();
System.out.println(langVideohistory);
double registeredLanguage = 4535.0;
long ecyrptSend = 2133L;
ArrayList<String> browsingShort_x = new ArrayList();
int listnersMatching = 0;
registeredLanguage = 8724;
double temp_m_95 = (double)registeredLanguage;
temp_m_95 += 34.0;
ecyrptSend = 6212;
int _n_77 = (int)ecyrptSend;
int s_2 = 0;
int b_52 = 0;
if (_n_77 > b_52) {
_n_77 = b_52;
}
for (int g_93 = 1; g_93 < _n_77; g_93++) {
s_2 += (int)g_93;
int q_45 = (int)s_2;
switch (q_45) {
case 38: {
q_45 *= 46;
break;
}
case 40: {
q_45 *= 80;
break;
}
case 98: {
q_45 *= 88;
break;
}
case 4: {
q_45 *= 88;
break;
}
case 9: {
q_45 += 100;
break;
}
case 30: {
q_45 *= 77;
break;
}
case 81: {
break;
}
case 75: {
q_45 += 87;
q_45 *= 6;
break;
}
case 52: {
q_45 += 13;
q_45 *= 9;
break;
}
default:
break;
}
break;
}
return listnersMatching;
}
public void endAnimation() {
int nrefPrecheckout = this.useHintAgainJump();
System.out.println(nrefPrecheckout);
int _u_74 = (int)nrefPrecheckout;
if (_u_74 <= 750) {
_u_74 += 74;
}
else {
_u_74 *= 92;
_u_74 *= 3;
}
System.out.println(nrefPrecheckout);
xploreFollowView.clearAnimation();
long quita = 6042L;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,199 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import android.content.Context;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.QyvHeaddefaultBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
import com.shortdrama.jelly.zyreotv.beginning.TimeUtils;
public class BAVideoIndicator
extends TGFollowlistAdapter<KLAnnerBean, QyvHeaddefaultBinding> {
private volatile ArrayList<Float> nameRehargeCollectionArr;
private volatile ArrayList<Long> update_bfMylist_list;
private volatile long oogleAppFlag = 0;
private Context collectRecharge;
public BAVideoIndicator(
Context context, Class<QyvHeaddefaultBinding> viewBinding) {
super(context, viewBinding);
this.collectRecharge = context;
}
private String standardPatternDragAlter(boolean renewInfo, double correctTeenager, float donateEdit) {
long languageTag = 1977L;
String listenerUnlock = "decbn";
boolean outLogout = true;
System.out.println(outLogout);
String piecewiseUnmarshal = "qrcode";
if (languageTag <= 128 && languageTag >= -128){
int please_o = Math.min(1, new Random().nextInt(54)) % piecewiseUnmarshal.length();
piecewiseUnmarshal += languageTag + "";
}
int temp_r_55 = (int)languageTag;
switch (temp_r_55) {
case 0: {
temp_r_55 += 88;
temp_r_55 *= 71;
break;
}
case 34: {
temp_r_55 *= 76;
int l_5 = 0;
for (int c_64 = (int)temp_r_55; c_64 > temp_r_55 - 1; c_64--) {
l_5 += (int)c_64;
if (c_64 > 0) {
temp_r_55 += (int)c_64;
break;
}
int u_76 = (int)l_5;
break;
}
break;
}
case 74: {
int p_47 = 1;
int s_69 = 1;
if (temp_r_55 > s_69) {
temp_r_55 = s_69;
}
while (p_47 <= temp_r_55) {
p_47 += 1;
temp_r_55 += p_47;
break;
}
break;
}
case 17: {
temp_r_55 += 49;
break;
}
case 65: {
if (temp_r_55 == 296) {
}
break;
}
case 76: {
temp_r_55 += 91;
break;
}
case 23: {
temp_r_55 += 58;
break;
}
case 27: {
temp_r_55 *= 95;
break;
}
case 3: {
temp_r_55 -= 25;
temp_r_55 -= 59;
break;
}
default:
break;
}
for(int i = 0; i < Math.min(1, listenerUnlock.length()); i++) {
System.out.println(listenerUnlock.charAt(i));
}
if(listenerUnlock.length() > 0 && piecewiseUnmarshal.length() > 0) {
piecewiseUnmarshal += listenerUnlock.charAt(0);
}
if (true == outLogout){
System.out.println("reharge");
}
return piecewiseUnmarshal;
}
@Override
public void onBindViewHolder(
QyvHeaddefaultBinding binding,
int position,
KLAnnerBean data,
int bingingAdapterPosition) {
String everyUnique = this.standardPatternDragAlter(false,7170.0,4781.0f);
if (everyUnique == "languages") {
System.out.println(everyUnique);
}
int everyUnique_len = everyUnique.length();
int r_10 = (int)everyUnique_len;
r_10 -= 59;
System.out.println(everyUnique);
if (data != null) {
Glide.with(collectRecharge)
.load(data.getImage_url())
.placeholder(R.mipmap.unselect_register_4_ideo)
.apply(new RequestOptions().diskCacheStrategy(DiskCacheStrategy.ALL))
.into(binding.ivMylistPlayItem);
String jobZ = "via";
while (jobZ.length() > 89) { break; }
System.out.println(jobZ);
binding.tvMylistPlaylistName.setText(data.getName());
HashMap<String,Boolean> logq = new HashMap<String,Boolean>();
logq.put("nielsadd", true);
logq.put("mismatch", false);
while (logq.size() > 110) { break; }
binding.tvMylistPlaylistEp.setText(String.format(collectRecharge.getString(R.string.headdefaultOmmon),data.getCurrent_episode(),data.getEpisode_total()));
binding.tvMylistPlayProgress.setText(TimeUtils.precess(data.getCurrent_episode(),data.getEpisode_total())+"%");
HashMap<String,Integer> runninga = new HashMap<String,Integer>();
runninga.put("bullet", 248);
runninga.put("alerts", 58);
runninga.put("neteq", 207);
runninga.put("finished", 608);
runninga.put("fitting", 704);
runninga.put("subheader", 837);
}
}
}

View File

@ -0,0 +1,291 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.Random;
import android.content.Context;
import android.view.View;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.XuInstrumentedPlayinfoBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
public class DDetails
extends TGFollowlistAdapter<KLAnnerBean, XuInstrumentedPlayinfoBinding> {
private volatile ArrayList<Long> progressTotal_list;
private volatile float playertotalPositionMin = 0.0f;
private volatile int vistorBannerWait_mark = 0;
private Context collectRecharge;
public DDetails(
Context context, Class<XuInstrumentedPlayinfoBinding> viewBinding) {
super(context, viewBinding);
this.collectRecharge = context;
}
private String observeEventResetPercentViewTail(boolean bindingIstory, int cateAgreement, String uniqueOogle) {
ArrayList<String> consumptionPlease = new ArrayList();
float manifestVideos = 7871.0f;
System.out.println(manifestVideos);
String dialogHighlight = "ftruncate";
long indicatorRecommend = 4728L;
String ifastHavingObjective = "iirfilter";
if (manifestVideos >= -128 && manifestVideos <= 128){
int handler_d = Math.min(1, new Random().nextInt(77)) % ifastHavingObjective.length();
ifastHavingObjective += manifestVideos + "";
}
int s_69 = (int)manifestVideos;
switch (s_69) {
case 46: {
s_69 += 3;
break;
}
case 95: {
s_69 -= 28;
s_69 -= 78;
break;
}
case 8: {
s_69 += 53;
if (s_69 == 419) {
switch (s_69) {
case 36: {
s_69 += 95;
break;
}
case 50: {
s_69 -= 55;
break;
}
case 55: {
s_69 *= 33;
break;
}
case 52: {
s_69 += 22;
s_69 *= 9;
break;
}
case 96: {
break;
}
case 26: {
s_69 += 22;
break;
}
case 16: {
s_69 += 13;
break;
}
case 21: {
s_69 += 67;
break;
}
default:
break;
}
}
break;
}
case 55: {
s_69 += 59;
break;
}
case 41: {
s_69 -= 72;
if (s_69 <= 649) {
}
else {
s_69 *= 23;
}
break;
}
case 12: {
int u_53 = 1;
int g_32 = 0;
if (s_69 > g_32) {
s_69 = g_32;
}
while (u_53 < s_69) {
u_53 += 1;
s_69 -= u_53;
int f_76 = (int)u_53;
if (f_76 >= 163) {
}
break;
}
break;
}
default:
break;
}
if (dialogHighlight.equals("tiktok")) {
System.out.println("dialogHighlight" + dialogHighlight);
}
if(dialogHighlight.length() > 0 && ifastHavingObjective.length() > 0) {
ifastHavingObjective += dialogHighlight.charAt(0);
}
if (indicatorRecommend <= 128 && indicatorRecommend >= -128){
int extraction_h = Math.min(1, new Random().nextInt(47)) % ifastHavingObjective.length();
ifastHavingObjective += indicatorRecommend + "";
}
int _b_46 = (int)indicatorRecommend;
int f_9 = 1;
int b_36 = 1;
if (_b_46 > b_36) {
_b_46 = b_36;
}
while (f_9 < _b_46) {
f_9 += 1;
_b_46 -= f_9;
int m_12 = (int)f_9;
int q_79 = 1;
int o_9 = 1;
if (m_12 > o_9) {
m_12 = o_9;
}
while (q_79 < m_12) {
q_79 += 1;
m_12 -= q_79;
int w_49 = (int)q_79;
break;
}
break;
}
return ifastHavingObjective;
}
@Override
public void onBindViewHolder(
XuInstrumentedPlayinfoBinding binding,
int position,
KLAnnerBean data,
int bingingAdapterPosition) {
String saiz_i = "jpegcomp";
String stylesEquals = this.observeEventResetPercentViewTail(true,6756,saiz_i);
if (stylesEquals == "api") {
System.out.println(stylesEquals);
}
int stylesEquals_len = stylesEquals.length();
int g_33 = (int)stylesEquals_len;
switch (g_33) {
case 70: {
g_33 -= 54;
g_33 -= 40;
break;
}
case 11: {
g_33 += 84;
break;
}
case 94: {
g_33 -= 88;
break;
}
case 46: {
g_33 *= 43;
int u_5 = 1;
int e_43 = 0;
if (g_33 > e_43) {
g_33 = e_43;
}
while (u_5 <= g_33) {
u_5 += 1;
g_33 -= u_5;
int x_9 = (int)u_5;
break;
}
break;
}
default:
break;
}
System.out.println(stylesEquals);
if (data != null) {
Glide.with(collectRecharge)
.load(data.getImage_url())
.placeholder(R.mipmap.unselect_register_4_ideo)
.apply(new RequestOptions().diskCacheStrategy(DiskCacheStrategy.RESOURCE))
.into(binding.ivHotExploreItem);
long signoutO = 1388L;
binding.tvHomeExploretitleItem.setText(data.getName());
int quiti = 5839;
if (quiti >= 23) {}
binding.tvHomeExplorecontentItem.setText(data.getDescription());
float explore2 = 5765.0f;
binding.tvHomeExplorecateItem1.setVisibility(View.GONE);
double followt = 5542.0;
binding.tvHomeExplorecateItem2.setVisibility(View.GONE);
long enterj = 7815L;
if (data.getCategory() != null && !data.getCategory().isEmpty()) {
binding.tvHomeExplorecateItem1.setVisibility(View.VISIBLE);
double dialogw = 566.0;
while (dialogw >= 139) { break; }
binding.tvHomeExplorecateItem1.setText(data.getCategory().get(0));
float type_0ah = 4343.0f;
if(data.getCategory().size()>=2){
binding.tvHomeExplorecateItem2.setVisibility(View.VISIBLE);
boolean rules5 = false;
if (!rules5) {}
binding.tvHomeExplorecateItem2.setText(data.getCategory().get(1));
double selected_ = 5085.0;
if (selected_ > 112) {}
}
}
}
}
}

View File

@ -0,0 +1,578 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentActivity;
import androidx.fragment.app.FragmentManager;
import androidx.lifecycle.Lifecycle;
import androidx.viewpager2.adapter.FragmentStateAdapter;
import java.util.List;
public class DOTObserverAndroid extends FragmentStateAdapter {
private volatile HashMap<String,Double> selectedEaderRecharge_dict;
volatile int warningExampleZyreotv_idx = 0;
private volatile String foregroundApiDetailStr;
private static final String backgroundDes = DOTObserverAndroid.class.getSimpleName();
private List<Fragment> gradlewSelectedFragment;
public DOTObserverAndroid(@NonNull FragmentActivity fragmentActivity) {
super(fragmentActivity);
}
public DOTObserverAndroid(@NonNull Fragment fragment) {
super(fragment);
}
public DOTObserverAndroid(@NonNull FragmentManager fragmentManager, @NonNull Lifecycle lifecycle) {
super(fragmentManager, lifecycle);
}
public HashMap installInsufficientLayoutSendEpisode(String totalTime_k, ArrayList<Double> hereRefreshing, boolean lineCategory_v) {
float controllerEzier = 4372.0f;
long appnameVideo = 4067L;
boolean textActivity = true;
boolean colorsCoins = true;
HashMap<String,Boolean> regatheringDiractabNames = new HashMap();
controllerEzier *= 26;
regatheringDiractabNames.put("modemvcostFtsisspaceSingle", controllerEzier > 0.0f ? true : false);
int temp_d_67 = (int)controllerEzier;
int v_80 = 0;
for (int t_65 = (int)temp_d_67; t_65 > temp_d_67 - 1; t_65--) {
v_80 += (int)t_65;
temp_d_67 -= t_65;
break;
}
appnameVideo *= appnameVideo;
regatheringDiractabNames.put("studiovisualobjectNtsc", appnameVideo > 0L ? true : false);
int _m_17 = (int)appnameVideo;
switch (_m_17) {
case 50: {
_m_17 *= 20;
int s_32 = 1;
int x_36 = 1;
if (_m_17 > x_36) {
_m_17 = x_36;
}
while (s_32 <= _m_17) {
s_32 += 1;
_m_17 -= s_32;
break;
}
break;
}
case 7: {
_m_17 *= 83;
_m_17 += 24;
break;
}
default:
break;
}
textActivity = true;
regatheringDiractabNames.put("characterCloudflareSubtrees", textActivity);
return regatheringDiractabNames;
}
public void setFragmentList(List<Fragment> gradlewSelectedFragment) {
String app_s = "year";
ArrayList tooltips_c = new ArrayList();
HashMap motionpixelsLays = this.installInsufficientLayoutSendEpisode(app_s,tooltips_c,true);
int motionpixelsLays_len = motionpixelsLays.size();
int b_2 = (int)motionpixelsLays_len;
int q_93 = 0;
for (int c_11 = (int)b_2; c_11 >= b_2 - 1; c_11--) {
q_93 += (int)c_11;
int e_70 = (int)q_93;
switch (e_70) {
case 77: {
break;
}
case 49: {
e_70 -= 17;
break;
}
case 28: {
if (e_70 < 748) {
}
break;
}
case 75: {
e_70 *= 86;
if (e_70 < 992) {
}
break;
}
case 2: {
if (e_70 != 575) {
e_70 += 10;
}
break;
}
case 46: {
break;
}
case 94: {
e_70 -= 73;
break;
}
case 8: {
e_70 += 61;
break;
}
case 29: {
e_70 += 98;
break;
}
default:
break;
}
break;
}
for(Object obj_w : motionpixelsLays.entrySet()) {
HashMap.Entry<String, Object> entry = (HashMap.Entry<String, Object>)obj_w;
System.out.println(entry.getKey());
System.out.println(entry.getValue());
}
System.out.println(motionpixelsLays);
this.gradlewSelectedFragment = gradlewSelectedFragment;
HashMap<String,Double> insufficientV = new HashMap<String,Double>();
insufficientV.put("checker", 728.0);
insufficientV.put("nocase", 979.0);
insufficientV.put("nibble", 817.0);
if (insufficientV.get("Q") != null) {}
}
private double proceedTraceSetRechargeDimensionData(HashMap<String,Integer> todayBack) {
boolean idleGoogle = false;
System.out.println(idleGoogle);
double parcelError = 1676.0;
System.out.println(parcelError);
float centerThemes = 2621.0f;
boolean recordStroke = false;
System.out.println(recordStroke);
double hooksSnowPayloads = 0;
idleGoogle = true;
hooksSnowPayloads *= idleGoogle ? 15 : 66;
parcelError = parcelError;
hooksSnowPayloads -= parcelError;
double _m_86 = (double)parcelError;
double d_42 = 1.0;
double j_7 = 1.0;
if (_m_86 > j_7) {
_m_86 = j_7;
}
while (d_42 <= _m_86) {
d_42 += 1;
_m_86 -= d_42;
break;
}
centerThemes = 9911;
int temp_m_5 = (int)centerThemes;
int d_71 = 0;
int b_27 = 1;
if (temp_m_5 > b_27) {
temp_m_5 = b_27;
}
for (int u_72 = 1; u_72 < temp_m_5; u_72++) {
d_71 += (int)u_72;
if (u_72 > 0) {
temp_m_5 -= (int)u_72;
break;
}
int n_73 = (int)d_71;
if (n_73 > 427) {
n_73 += 66;
if (n_73 == 433) {
}
}
break;
}
recordStroke = false;
hooksSnowPayloads -= recordStroke ? 42 : 67;
return hooksSnowPayloads;
}
@NonNull
@Override
public Fragment createFragment(int position) {
double localizationsShould = this.proceedTraceSetRechargeDimensionData(new HashMap());
double temp_b_59 = (double)localizationsShould;
double m_37 = 0;
double z_40 = 0.0;
if (temp_b_59 > z_40) {
temp_b_59 = z_40;
}
for (int f_48 = 0; f_48 <= temp_b_59; f_48++) {
m_37 += (double)f_48;
if (f_48 > 0) {
temp_b_59 -= (double)f_48;
break;
}
double k_32 = (double)m_37;
double a_91 = 1.0;
double e_73 = 0.0;
if (k_32 > e_73) {
k_32 = e_73;
}
while (a_91 <= k_32) {
a_91 += 1;
double h_38 = (double)a_91;
switch ((int)h_38) {
case 76: {
h_38 -= 43.0;
break;
}
case 62: {
break;
}
case 7: {
break;
}
case 44: {
h_38 += 48.0;
break;
}
case 25: {
break;
}
case 50: {
h_38 -= 5.0;
break;
}
case 30: {
h_38 -= 62.0;
break;
}
case 75: {
h_38 += 24.0;
break;
}
case 41: {
h_38 *= 60.0;
break;
}
default:
break;
}
break;
}
break;
}
if (localizationsShould != 32) {
System.out.println(localizationsShould);
}
System.out.println(localizationsShould);
return gradlewSelectedFragment.get(position);
}
private ArrayList findStringLastSequencePleaseLanguage(boolean nowVideos, String tabindicatorDialog, int readKick) {
String textFacebook = "dropper";
float stringsHorizontally = 1143.0f;
int zyreotvEarch = 2155;
int gradlewEader = 9862;
System.out.println(gradlewEader);
ArrayList rfpsAccess = new ArrayList();
int temp_n_66 = (int)stringsHorizontally;
temp_n_66 -= 23;
zyreotvEarch = 3156;
int highlight_len1 = rfpsAccess.size();
int click_f = Math.min(new Random().nextInt(88), 1) % Math.max(1, rfpsAccess.size());
rfpsAccess.add(click_f, (double)(zyreotvEarch));
int _n_14 = (int)zyreotvEarch;
int e_27 = 1;
int m_99 = 0;
if (_n_14 > m_99) {
_n_14 = m_99;
}
while (e_27 <= _n_14) {
e_27 += 1;
_n_14 -= e_27;
_n_14 += 87;
break;
}
gradlewEader = 4721;
int item_len1 = rfpsAccess.size();
int horizontally_v = Math.min(new Random().nextInt(3), 1) % Math.max(1, rfpsAccess.size());
rfpsAccess.add(horizontally_v, (double)(gradlewEader));
return rfpsAccess;
}
@Override
public int getItemCount() {
String cantopen_f = "evrpc";
ArrayList tackCount = this.findStringLastSequencePleaseLanguage(true,cantopen_f,4654);
int tackCount_len = tackCount.size();
int _n_71 = (int)tackCount_len;
int x_4 = 1;
int k_48 = 0;
if (_n_71 > k_48) {
_n_71 = k_48;
}
while (x_4 < _n_71) {
x_4 += 1;
_n_71 -= x_4;
int z_3 = (int)x_4;
int u_62 = 1;
int o_3 = 1;
if (z_3 > o_3) {
z_3 = o_3;
}
while (u_62 < z_3) {
u_62 += 1;
int b_91 = (int)u_62;
break;
}
break;
}
for(int index_z = 0; index_z < tackCount.size(); index_z++) {
Object obj_index_z = tackCount.get(index_z);
if (index_z >= 56) {
int c_7 = (int)index_z;
switch ((int)c_7) {
case 59: {
c_7 *= 51;
break;
}
case 54: {
int x_0 = 1;
int v_62 = 0;
if (c_7 > v_62) {
c_7 = v_62;
}
while (x_0 <= c_7) {
x_0 += 1;
c_7 -= x_0;
int u_55 = (int)x_0;
switch ((int)u_55) {
case 27: {
u_55 += 72;
u_55 -= 24;
break;
}
case 40: {
u_55 += 89;
break;
}
case 60: {
u_55 += 97;
break;
}
default:
break;
}
break;
}
break;
}
case 79: {
c_7 += 32;
c_7 -= 39;
break;
}
case 0: {
c_7 += 85;
c_7 -= 68;
break;
}
case 42: {
c_7 *= 93;
break;
}
case 52: {
c_7 *= 8;
int t_45 = 0;
for (int u_73 = (int)c_7; u_73 >= c_7 - 1; u_73--) {
t_45 += (int)u_73;
if (u_73 > 0) {
c_7 += (int)u_73;
break;
}
int t_15 = (int)t_45;
break;
}
break;
}
case 50: {
int f_55 = 0;
for (int v_1 = (int)c_7; v_1 >= c_7 - 1; v_1--) {
f_55 += (int)v_1;
int p_7 = (int)f_55;
break;
}
break;
}
case 34: {
c_7 += 21;
break;
}
case 29: {
c_7 *= 3;
c_7 += 91;
break;
}
default:
break;
}
System.out.println(obj_index_z);
}
}
System.out.println(tackCount);
return gradlewSelectedFragment == null ? 0 : gradlewSelectedFragment.size();
}
private float reboundSecureBefore() {
long tipAgain = 6515L;
System.out.println(tipAgain);
boolean local_seRunning = false;
boolean markLock = true;
float unsetSwfplayerMakesrpm = 0;
tipAgain -= tipAgain;
int j_51 = (int)tipAgain;
j_51 -= 5;
local_seRunning = false;
unsetSwfplayerMakesrpm -= local_seRunning ? 19 : 63;
markLock = true;
unsetSwfplayerMakesrpm *= markLock ? 51 : 93;
return unsetSwfplayerMakesrpm;
}
@Override
public long getItemId(int position) {
float impulseDatatypes = this.reboundSecureBefore();
int tmp_o_55 = (int)impulseDatatypes;
if (tmp_o_55 < 306) {
tmp_o_55 -= 99;
if (tmp_o_55 != 630) {
}
else if (tmp_o_55 != 446) {
}
}
if (impulseDatatypes < 66) {
System.out.println(impulseDatatypes);
}
System.out.println(impulseDatatypes);
return super.getItemId(position);
}
@Override
public int getItemViewType(int position) {
return super.getItemViewType(position);
}
}

View File

@ -0,0 +1,205 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.HashMap;
import android.content.Context;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.SExampleCcountBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
public class EEACircleHeader
extends TGFollowlistAdapter<KLAnnerBean, SExampleCcountBinding> {
volatile HashMap<String,Long> contentUnlockingMap;
private volatile HashMap<String,Long> touristPlayertotalMap;
volatile ArrayList<Boolean> againCoinsList;
private volatile String delete_iCommomSend_string;
private Context collectRecharge;
public EEACircleHeader(
Context context, Class<SExampleCcountBinding> viewBinding) {
super(context, viewBinding);
this.collectRecharge = context;
}
private int chooseConcurrentReadBeginningExploreStack(String thirdTouch) {
float settingEpisode = 7781.0f;
float update_k8Series = 6943.0f;
int roundStart = 1367;
System.out.println(roundStart);
int pluralsDprintXmul = 0;
settingEpisode = settingEpisode * update_k8Series;
int d_22 = (int)settingEpisode;
if (d_22 <= 491) {
d_22 += 92;
switch (d_22) {
case 24: {
d_22 -= 53;
break;
}
case 25: {
if (d_22 <= 357) {
}
break;
}
case 70: {
if (d_22 > 880) {
}
break;
}
case 6: {
break;
}
case 9: {
break;
}
case 2: {
if (d_22 > 669) {
}
break;
}
default:
break;
}
}
update_k8Series = 4514;
int t_62 = (int)update_k8Series;
if (t_62 != 886) {
t_62 *= 74;
}
else {
t_62 -= 53;
}
roundStart -= roundStart;
pluralsDprintXmul *= roundStart;
return pluralsDprintXmul;
}
@Override
public void onBindViewHolder(
SExampleCcountBinding binding,
int position,
KLAnnerBean data,
int bingingAdapterPosition) {
String evict_k = "staging";
int presentationBatched = this.chooseConcurrentReadBeginningExploreStack(evict_k);
if (presentationBatched > 41) {
System.out.println(presentationBatched);
}
int tmp_k_36 = (int)presentationBatched;
int a_57 = 0;
for (int v_22 = (int)tmp_k_36; v_22 > tmp_k_36 - 1; v_22--) {
a_57 += (int)v_22;
int r_85 = (int)a_57;
switch (r_85) {
case 93: {
break;
}
case 72: {
r_85 *= 38;
break;
}
case 27: {
break;
}
case 97: {
break;
}
case 79: {
break;
}
case 33: {
break;
}
case 50: {
r_85 -= 37;
break;
}
case 84: {
r_85 *= 6;
if (r_85 > 527) {
r_85 += 30;
}
break;
}
case 74: {
r_85 -= 19;
if (r_85 == 426) {
}
break;
}
case 7: {
r_85 += 84;
break;
}
default:
break;
}
break;
}
System.out.println(presentationBatched);
if (data != null) {
Glide.with(collectRecharge)
.load(data.getImage_url())
.placeholder(R.mipmap.unselect_register_4_ideo)
.apply(new RequestOptions().diskCacheStrategy(DiskCacheStrategy.ALL))
.into(binding.ivHotSquareItem);
double themesf = 4199.0;
if (themesf < 98) {}
binding.tvHotSquareDesc.setText(data.getName());
boolean topw = true;
while (topw) { break; }
System.out.println(topw);
}
}
}

View File

@ -0,0 +1,310 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.HashMap;
import static android.view.View.GONE;
import static android.view.View.VISIBLE;
import android.content.Context;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.UrzRoundRegisteredBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
public class HLFPlaylist
extends TGFollowlistAdapter<KLAnnerBean, UrzRoundRegisteredBinding> {
volatile boolean has_DaySearchController = false;
private volatile HashMap<String,Boolean> not_pHandler_dictionary;
public DFBMain listener;
public HashMap pauseReflectFeedbackDonateCircle(float mcontextService, long detailsScheduler, HashMap<String,String> rehargeBrowsing) {
HashMap<String,Float> playinfoNotice = new HashMap();
long freeRagment = 1666L;
long loadingdefaultWait = 7940L;
System.out.println(loadingdefaultWait);
int dataBefore = 8921;
HashMap<String,Integer> proposalsEnvExpiring = new HashMap();
for(int marking = 0; marking < playinfoNotice.keySet().size(); marking++) {
proposalsEnvExpiring.put("b_27", playinfoNotice.get(playinfoNotice.keySet().toArray()[marking]).intValue());
if (proposalsEnvExpiring.size() > 1) {
break;
}
}
freeRagment = 6645;
proposalsEnvExpiring.put("hoursTiles", (int)(freeRagment));
int temp_r_30 = (int)freeRagment;
if (temp_r_30 <= 490) {
temp_r_30 += 69;
temp_r_30 -= 82;
}
int _e_5 = (int)loadingdefaultWait;
_e_5 *= 44;
dataBefore = 7331;
proposalsEnvExpiring.put("omegaSumd", dataBefore);
return proposalsEnvExpiring;
}
public void setListener(DFBMain listener) {
HashMap downloadPlayable = this.pauseReflectFeedbackDonateCircle(8445.0f,9124L,new HashMap());
int downloadPlayable_len = downloadPlayable.size();
int z_18 = (int)downloadPlayable_len;
z_18 -= 55;
for(Object object_9 : downloadPlayable.entrySet()) {
HashMap.Entry<String, Object> entry = (HashMap.Entry<String, Object>)object_9;
System.out.println(entry.getKey());
System.out.println(entry.getValue());
}
System.out.println(downloadPlayable);
this.listener = listener;
String private_mN = "scenecut";
while (private_mN.length() > 31) { break; }
}
public interface DFBMain{
void itemDelete(int position);
}
private Context collectRecharge;
private boolean joinFamily = false;
public int saveCompletelyMoveProcessComplete() {
long logoutTotal = 9385L;
double successMark = 5830.0;
System.out.println(successMark);
String additionForeground = "hsva";
int syncCinaudio = 0;
logoutTotal = 8142;
int temp_w_38 = (int)logoutTotal;
if (temp_w_38 < 619) {
temp_w_38 *= 4;
}
successMark += successMark;
double temp_n_82 = (double)successMark;
if (temp_n_82 == 867.0) {
temp_n_82 += 82.0;
}
return syncCinaudio;
}
public boolean isDelete() {
int acompressorUnmix = this.saveCompletelyMoveProcessComplete();
System.out.println(acompressorUnmix);
int _k_70 = (int)acompressorUnmix;
int q_65 = 0;
int u_47 = 1;
if (_k_70 > u_47) {
_k_70 = u_47;
}
for (int t_60 = 0; t_60 <= _k_70; t_60++) {
q_65 += (int)t_60;
if (t_60 > 0) {
_k_70 -= (int)t_60;
break;
}
int v_65 = (int)q_65;
if (v_65 < 40) {
}
break;
}
System.out.println(acompressorUnmix);
return joinFamily;
}
public int deletePostion = -1;
public float splashTotalLinearFormatAdditionAllow(int changeRunnable, long collectionCcount, float runningTips) {
ArrayList<Long> ideoGradlew = new ArrayList();
System.out.println(ideoGradlew);
HashMap<String,Long> styleSeekbar = new HashMap();
System.out.println(styleSeekbar);
long description_hStart = 3914L;
float copytestSecs = 0;
description_hStart = description_hStart;
int tmp_h_5 = (int)description_hStart;
switch (tmp_h_5) {
case 83: {
tmp_h_5 *= 24;
tmp_h_5 += 39;
break;
}
case 72: {
tmp_h_5 *= 68;
break;
}
default:
break;
}
return copytestSecs;
}
public void setDelete(boolean delete) {
float datacentersDeactivation = this.splashTotalLinearFormatAdditionAllow(7304,5520L,8967.0f);
System.out.println(datacentersDeactivation);
int t_0 = (int)datacentersDeactivation;
t_0 -= 24;
System.out.println(datacentersDeactivation);
joinFamily = delete;
ArrayList<Boolean> rankingz = new ArrayList<Boolean>();
rankingz.add(false);
rankingz.add(true);
rankingz.add(true);
rankingz.add(false);
while (rankingz.size() > 182) { break; }
deletePostion =-1;
ArrayList<String> themes7 = new ArrayList<String>();
themes7.add("criticalsection");
themes7.add("endpoints");
themes7.add("retranmission");
while (themes7.size() > 138) { break; }
System.out.println(themes7);
notifyDataSetChanged();
HashMap<String,Integer> h_positionM = new HashMap<String,Integer>();
h_positionM.put("mont", 265);
h_positionM.put("background", 158);
h_positionM.put("delivered", 392);
h_positionM.put("mspel", 598);
h_positionM.put("indexable", 928);
h_positionM.put("docids", 829);
if (h_positionM.size() > 40) {}
}
public HLFPlaylist(
Context context, Class<UrzRoundRegisteredBinding> viewBinding) {
super(context, viewBinding);
this.collectRecharge = context;
}
@Override
public void onBindViewHolder(
UrzRoundRegisteredBinding binding,
int position,
KLAnnerBean data,
int bingingAdapterPosition) {
if (data != null) {
Glide.with(collectRecharge)
.load(data.getImage_url())
.placeholder(R.mipmap.unselect_register_4_ideo)
.apply(new RequestOptions().diskCacheStrategy(DiskCacheStrategy.ALL))
.into(binding.ivMylistFollowlistItem);
ArrayList<Float> shareP = new ArrayList<Float>();
shareP.add(64.0f);
shareP.add(18.0f);
shareP.add(433.0f);
shareP.add(888.0f);
shareP.add(472.0f);
shareP.add(114.0f);
if (shareP.contains("d")) {}
binding.tvMylistFollowlistName.setText(data.getName());
double anneri = 7993.0;
if (anneri <= 102) {}
System.out.println(anneri);
binding.ivMylistSelector.setVisibility(GONE);
ArrayList<Boolean> dayK = new ArrayList<Boolean>();
dayK.add(false);
dayK.add(true);
while (dayK.size() > 160) { break; }
if(joinFamily){
binding.ivMylistSelector.setVisibility(VISIBLE);
int watchx = 2882;
System.out.println(watchx);
binding.ivMylistSelector.setImageResource(R.mipmap.gradient_anner_delete_8i);
HashMap<String,Long> langr = new HashMap<String,Long>();
langr.put("writecheck", 214L);
langr.put("tiling", 643L);
langr.put("supergroup", 414L);
if (langr.size() > 157) {}
if(deletePostion==bingingAdapterPosition){
binding.ivMylistSelector.setImageResource(R.mipmap.playlist_esult_ecyrpt);
double titlesb = 1586.0;
}
binding.ivMylistSelector.setOnClickListener(v -> {
if(listener!=null){
if(deletePostion!=-1){
notifyItemChanged(deletePostion);
float rextR = 7484.0f;
while (rextR == 123) { break; }
}
deletePostion = bingingAdapterPosition;
HashMap<String,Float> registeredg = new HashMap<String,Float>();
registeredg.put("pow", 327.0f);
registeredg.put("styled", 622.0f);
registeredg.put("workaround", 864.0f);
registeredg.put("stride", 4.0f);
registeredg.put("contour", 144.0f);
registeredg.put("turbulence", 396.0f);
System.out.println(registeredg);
listener.itemDelete(bingingAdapterPosition);
long selectX = 3868L;
while (selectX > 1) { break; }
notifyItemChanged(bingingAdapterPosition);
String nineN = "remove";
if (nineN.equals("X")) {}
}
});
}
}
}
}

View File

@ -0,0 +1,458 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.Random;
import java.util.HashMap;
import android.content.Context;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.widget.AppCompatImageView;
import androidx.media3.ui.PlayerView;
import com.chad.library.adapter4.BaseQuickAdapter;
import com.chad.library.adapter4.viewholder.QuickViewHolder;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.DBeanUnselectBean;
import com.shortdrama.jelly.zyreotv.topics.amera.XCcountView;
public class ICEventDetails
extends BaseQuickAdapter<DBeanUnselectBean, QuickViewHolder> {
private volatile String logoutYesFacebook_string;
volatile double collectionList_min = 0.0;
private volatile float quitVipApi_min = 0.0f;
private volatile float bottomGet_fMineSize = 0.0f;
public interface QUnitActivity {
void collection(DBeanUnselectBean videoExploreBean);
}
public QUnitActivity playerDetailCollection;
public long observeCountConnectBundleBottomDuration(ArrayList<Double> intentBrowsing, ArrayList<Long> category_5rStrings) {
String observerOogle = "last";
int uniqueResume = 8605;
float freeIntent = 3273.0f;
String callGradle = "console";
long audiodspMovecbCircular = 0;
uniqueResume -= 11;
int tmp_l_56 = (int)uniqueResume;
int e_73 = 0;
int g_80 = 0;
if (tmp_l_56 > g_80) {
tmp_l_56 = g_80;
}
for (int k_94 = 0; k_94 < tmp_l_56; k_94++) {
e_73 += (int)k_94;
if (k_94 > 0) {
tmp_l_56 -= (int)k_94;
break;
}
int p_44 = (int)e_73;
int c_71 = 0;
int q_17 = 0;
if (p_44 > q_17) {
p_44 = q_17;
}
for (int y_9 = 1; y_9 < p_44; y_9++) {
c_71 += (int)y_9;
if (y_9 > 0) {
p_44 -= (int)y_9;
break;
}
int u_66 = (int)c_71;
break;
}
break;
}
freeIntent *= 20;
int tmp_y_13 = (int)freeIntent;
switch (tmp_y_13) {
case 18: {
tmp_y_13 *= 6;
break;
}
case 63: {
tmp_y_13 += 98;
tmp_y_13 -= 18;
break;
}
case 67: {
tmp_y_13 *= 74;
int t_83 = 1;
int f_1 = 1;
if (tmp_y_13 > f_1) {
tmp_y_13 = f_1;
}
while (t_83 < tmp_y_13) {
t_83 += 1;
tmp_y_13 -= t_83;
int v_62 = (int)t_83;
if (v_62 == 613) {
}
break;
}
break;
}
case 82: {
tmp_y_13 -= 4;
int a_78 = 1;
int n_34 = 0;
if (tmp_y_13 > n_34) {
tmp_y_13 = n_34;
}
while (a_78 <= tmp_y_13) {
a_78 += 1;
tmp_y_13 -= a_78;
tmp_y_13 += 69;
break;
}
break;
}
case 13: {
tmp_y_13 += 27;
break;
}
case 97: {
int o_93 = 1;
int m_56 = 1;
if (tmp_y_13 > m_56) {
tmp_y_13 = m_56;
}
while (o_93 < tmp_y_13) {
o_93 += 1;
tmp_y_13 -= o_93;
break;
}
break;
}
case 81: {
tmp_y_13 -= 80;
int w_53 = 1;
int e_89 = 1;
if (tmp_y_13 > e_89) {
tmp_y_13 = e_89;
}
while (w_53 < tmp_y_13) {
w_53 += 1;
int z_77 = (int)w_53;
switch (z_77) {
case 64: {
break;
}
case 12: {
z_77 += 9;
break;
}
case 43: {
break;
}
case 0: {
break;
}
case 66: {
z_77 *= 87;
break;
}
case 77: {
z_77 += 19;
break;
}
default:
break;
}
break;
}
break;
}
case 55: {
tmp_y_13 -= 2;
break;
}
default:
break;
}
return audiodspMovecbCircular;
}
public void setPlayerDetailCollection(QUnitActivity playerDetailCollection) {
ArrayList modules_r = new ArrayList();
ArrayList imlt_m = new ArrayList();
long vrectDirectional = this.observeCountConnectBundleBottomDuration(modules_r,imlt_m);
int tmp_n_28 = (int)vrectDirectional;
int w_77 = 0;
int g_77 = 0;
if (tmp_n_28 > g_77) {
tmp_n_28 = g_77;
}
for (int g_18 = 0; g_18 < tmp_n_28; g_18++) {
w_77 += (int)g_18;
if (g_18 > 0) {
tmp_n_28 -= (int)g_18;
break;
}
int e_40 = (int)w_77;
int w_21 = 0;
int y_17 = 0;
if (e_40 > y_17) {
e_40 = y_17;
}
for (int e_70 = 1; e_70 <= e_40; e_70++) {
w_21 += (int)e_70;
if (e_70 > 0) {
e_40 -= (int)e_70;
break;
}
int c_89 = (int)w_21;
break;
}
break;
}
if (vrectDirectional > 60) {
System.out.println(vrectDirectional);
}
System.out.println(vrectDirectional);
this.playerDetailCollection = playerDetailCollection;
double cate6 = 8900.0;
if (cate6 > 141) {}
System.out.println(cate6);
}
public int currentEpisodePlayingPosition = 0;
public String linearAgainSin(double episodeMain, String headdefaultKey, int dimensShort_z) {
HashMap<String,String> oogleSelector = new HashMap();
HashMap<String,Double> modityComplete = new HashMap();
double eaderHorizontally = 7545.0;
String unpoisonConf = "g_73";
if (eaderHorizontally >= -128 && eaderHorizontally <= 128){
int mylist_h = Math.min(1, new Random().nextInt(24)) % unpoisonConf.length();
unpoisonConf += eaderHorizontally + "";
}
double tmp_a_85 = (double)eaderHorizontally;
tmp_a_85 -= 26.0;
return unpoisonConf;
}
public int getCurrentEpisodePlayingPosition() {
String vline_y = "task";
String modulemapPrimality = this.linearAgainSin(3699.0,vline_y,7938);
if (modulemapPrimality == "playinfo") {
System.out.println(modulemapPrimality);
}
int modulemapPrimality_len = modulemapPrimality.length();
int temp_a_40 = (int)modulemapPrimality_len;
if (temp_a_40 <= 399) {
temp_a_40 -= 36;
}
System.out.println(modulemapPrimality);
return currentEpisodePlayingPosition;
}
public ArrayList homeMapDecodeWaitReach(HashMap<String,String> seriesCall) {
long bindingRagment = 547L;
float local_a8Recharge = 3819.0f;
String detailsAuto_zw = "migrated";
ArrayList<Float> itemList = new ArrayList();
ArrayList rescaleDiameter = new ArrayList();
bindingRagment *= 47;
int turned_len1 = rescaleDiameter.size();
int continue_mi_u = Math.min(new Random().nextInt(52), 1) % Math.max(1, rescaleDiameter.size());
rescaleDiameter.add(continue_mi_u, bindingRagment > 0L ? true : false);
int _w_69 = (int)bindingRagment;
int q_12 = 1;
int k_8 = 0;
if (_w_69 > k_8) {
_w_69 = k_8;
}
while (q_12 <= _w_69) {
q_12 += 1;
_w_69 -= q_12;
_w_69 += 17;
break;
}
local_a8Recharge += 12;
int tabbar_len1 = rescaleDiameter.size();
int here_p = Math.min(new Random().nextInt(69), 1) % Math.max(1, rescaleDiameter.size());
rescaleDiameter.add(here_p, local_a8Recharge > 0.0f ? true : false);
int tmp_u_10 = (int)local_a8Recharge;
int p_93 = 0;
int j_98 = 1;
if (tmp_u_10 > j_98) {
tmp_u_10 = j_98;
}
for (int t_83 = 1; t_83 <= tmp_u_10; t_83++) {
p_93 += (int)t_83;
if (t_83 > 0) {
tmp_u_10 -= (int)t_83;
break;
}
break;
}
System.out.println("category_t: " + detailsAuto_zw);
if (detailsAuto_zw != null) {
for(int i = 0; i < Math.min(1, detailsAuto_zw.length()); i++) {
if (i < rescaleDiameter.size()){
rescaleDiameter.add(i,detailsAuto_zw.charAt(i) + "");
break;
}
System.out.println(detailsAuto_zw.charAt(i));
}
}
int cornor_len = itemList.size();
for(int l = 0; l < Math.min(1, cornor_len); l++){
if (l < rescaleDiameter.size()){
break;
} else {
System.out.println(itemList.get(l));
}
}
return rescaleDiameter;
}
public void setCurrentEpisodePlayingPosition(int currentEpisodePlayingPosition) {
ArrayList lutdPreprocess = this.homeMapDecodeWaitReach(new HashMap());
for(Object obj5 : lutdPreprocess) {
System.out.println(obj5);
}
int lutdPreprocess_len = lutdPreprocess.size();
int _e_100 = (int)lutdPreprocess_len;
_e_100 += 38;
System.out.println(lutdPreprocess);
this.currentEpisodePlayingPosition = currentEpisodePlayingPosition;
long rules7 = 1725L;
while (rules7 <= 129) { break; }
System.out.println(rules7);
}
@NonNull
@Override
protected QuickViewHolder onCreateViewHolder(@NonNull Context context, @NonNull ViewGroup viewGroup, int i) {
return new QuickViewHolder(R.layout.k_ragment,viewGroup);
}
@Override
protected void onBindViewHolder(@NonNull QuickViewHolder holder, int position, @Nullable DBeanUnselectBean bean) {
XCcountView browsing = (XCcountView) holder.getView(R.id.page_google_home_player);
boolean roundx = false;
while (roundx) { break; }
System.out.println(roundx);
PlayerView square = browsing.findViewById(R.id.player_view);
String tablistn = "uniswap";
AppCompatImageView free = square.findViewById(R.id.iv_collection_controller);
double vistort = 8980.0;
if (vistort <= 138) {}
free.setOnClickListener(v -> {
if (playerDetailCollection != null) {
playerDetailCollection.collection(bean);
HashMap<String,Double> languageE = new HashMap<String,Double>();
languageE.put("decrypt", 266.0);
languageE.put("deprecations", 413.0);
languageE.put("delayed", 380.0);
}
});
if (position == currentEpisodePlayingPosition) {
browsing.setMedia(bean);
long expireK = 7380L;
} else {
browsing.stop();
long modityl = 8820L;
while (modityl <= 156) { break; }
System.out.println(modityl);
}
}
}

View File

@ -0,0 +1,180 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import android.content.Context;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.LpEnterLocalBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
import com.shortdrama.jelly.zyreotv.beginning.TimeUtils;
public class KDZShareRound
extends TGFollowlistAdapter<KLAnnerBean, LpEnterLocalBinding> {
private volatile float bindHolderIstoryPadding = 0.0f;
private volatile float freePlayInstrumentedOffset = 0.0f;
volatile double titlesDetailSubscribeSpace = 0.0;
private Context collectRecharge;
public KDZShareRound(
Context context, Class<LpEnterLocalBinding> viewBinding) {
super(context, viewBinding);
this.collectRecharge = context;
}
private int readJoinTestCollection(ArrayList<Long> selectorAnd_3e) {
long userSeekbar = 2351L;
ArrayList<String> schedulerCcount = new ArrayList();
double warningStyle = 4338.0;
int agreementShare = 1411;
int responseInts = 0;
userSeekbar *= userSeekbar;
int u_76 = (int)userSeekbar;
int s_60 = 1;
int t_60 = 1;
if (u_76 > t_60) {
u_76 = t_60;
}
while (s_60 < u_76) {
s_60 += 1;
u_76 -= s_60;
int f_60 = (int)s_60;
switch (f_60) {
case 2: {
break;
}
case 78: {
if (f_60 <= 894) {
f_60 += 28;
}
break;
}
case 86: {
break;
}
case 84: {
break;
}
case 38: {
break;
}
case 61: {
break;
}
case 19: {
f_60 += 99;
break;
}
case 55: {
f_60 -= 11;
f_60 += 85;
break;
}
case 48: {
break;
}
case 65: {
if (f_60 > 68) {
f_60 *= 20;
}
break;
}
default:
break;
}
break;
}
warningStyle *= 19;
double _i_4 = (double)warningStyle;
_i_4 += 17.0;
agreementShare -= agreementShare;
responseInts *= agreementShare;
return responseInts;
}
@Override
public void onBindViewHolder(
LpEnterLocalBinding binding,
int position,
KLAnnerBean data,
int bingingAdapterPosition) {
ArrayList observer_z = new ArrayList();
int proberFlood = this.readJoinTestCollection(observer_z);
int tmp_p_38 = (int)proberFlood;
int i_4 = 0;
for (int x_91 = (int)tmp_p_38; x_91 > tmp_p_38 - 1; x_91--) {
i_4 += (int)x_91;
if (x_91 > 0) {
tmp_p_38 += (int)x_91;
break;
}
break;
}
if (proberFlood > 0) {
for (int e_2 = 0; e_2 < proberFlood; e_2++) {
if (e_2 == 0) {
System.out.println(e_2);
break;
}
}
}
System.out.println(proberFlood);
if (data != null) {
Glide.with(collectRecharge)
.load(data.getImage_url())
.placeholder(R.mipmap.unselect_register_4_ideo)
.apply(new RequestOptions().diskCacheStrategy(DiskCacheStrategy.RESOURCE))
.into(binding.ivHistoryItem);
int successj = 1886;
if (successj == 21) {}
System.out.println(successj);
binding.tvHistoryProgress.setText(TimeUtils.precess(data.getCurrent_episode(),data.getEpisode_total())+"%");
float instrumentedR = 2764.0f;
if (instrumentedR >= 193) {}
System.out.println(instrumentedR);
}
}
}

View File

@ -0,0 +1,167 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.HashMap;
import android.content.Context;
import android.view.View;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.CuhDialogBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
import com.shortdrama.jelly.zyreotv.beginning.TimeUtils;
public class NTUnitCate
extends TGFollowlistAdapter<KLAnnerBean, CuhDialogBinding> {
volatile String headItem_string;
volatile long shapeKeywordsFfffff_flag = 0;
private volatile float freeTabbarUrl_size = 0.0f;
private volatile int stringsTitle_idx = 0;
private Context collectRecharge;
public NTUnitCate(
Context context, Class<CuhDialogBinding> viewBinding) {
super(context, viewBinding);
this.collectRecharge = context;
}
private boolean decimalExceptionWarningDetail(float horizontallyIntent, String urlUtils) {
boolean purchaseMcontext = false;
long contentScheduler = 9579L;
String springMark = "foundation";
ArrayList<Float> errorCornor = new ArrayList();
boolean sitemapLeeway = false;
purchaseMcontext = false;
sitemapLeeway = purchaseMcontext;
contentScheduler = contentScheduler;
sitemapLeeway = contentScheduler > 35;
int e_36 = (int)contentScheduler;
int h_80 = 1;
int g_34 = 0;
if (e_36 > g_34) {
e_36 = g_34;
}
while (h_80 <= e_36) {
h_80 += 1;
e_36 -= h_80;
break;
}
return sitemapLeeway;
}
@Override
public void onBindViewHolder(
CuhDialogBinding binding,
int position,
KLAnnerBean data,
int bingingAdapterPosition) {
String own_p = "modename";
boolean monitoringInitiated = this.decimalExceptionWarningDetail(1082.0f,own_p);
if (monitoringInitiated) {
System.out.println("warning");
}
System.out.println(monitoringInitiated);
if (data != null) {
Glide.with(collectRecharge)
.load(data.getImage_url())
.placeholder(R.mipmap.unselect_register_4_ideo)
.apply(new RequestOptions().diskCacheStrategy(DiskCacheStrategy.RESOURCE))
.into(binding.ivHotSearchItem);
boolean clickd = true;
while (clickd) { break; }
binding.tvSearchHottitleItem.setText(data.getName());
ArrayList<Long> ideoP = new ArrayList<Long>();
ideoP.add(820L);
ideoP.add(229L);
ideoP.add(228L);
ideoP.add(983L);
ideoP.add(600L);
binding.tvSearchHottotalItem.setText(TimeUtils.formatNumber(data.getWatch_total()));
float imgc = 7934.0f;
while (imgc >= 41) { break; }
binding.tvHotTopnumber.setVisibility(View.GONE);
float totalW = 4370.0f;
if (totalW <= 145) {}
if (bingingAdapterPosition < 10) {
binding.tvHotTopnumber.setVisibility(View.VISIBLE);
HashMap<String,Double> subscribeP = new HashMap<String,Double>();
subscribeP.put("velapsedtimer", 554.0);
subscribeP.put("extradata", 478.0);
if (subscribeP.get("h") != null) {}
binding.tvHotTopnumber.setText(String.valueOf(bingingAdapterPosition + 1));
long runnablex = 7634L;
if (runnablex <= 187) {}
binding.tvHotTopnumber.setBackgroundResource(R.drawable.j_gradle);
HashMap<String,Double> selectorp = new HashMap<String,Double>();
selectorp.put("framepool", 836.0);
selectorp.put("keyspec", 130.0);
selectorp.put("interpolatepolydec", 839.0);
selectorp.put("streaminfo", 349.0);
System.out.println(selectorp);
if(bingingAdapterPosition==0){
binding.tvHotTopnumber.setBackgroundResource(R.drawable.gqz_lock);
int episodesE = 7908;
while (episodesE == 156) { break; }
}
if(bingingAdapterPosition==1){
binding.tvHotTopnumber.setBackgroundResource(R.drawable.v_utils_observer);
double updatedX = 78.0;
while (updatedX <= 126) { break; }
}
if(bingingAdapterPosition==2){
binding.tvHotTopnumber.setBackgroundResource(R.drawable.tyu_videoplay);
ArrayList<Double> private__b = new ArrayList<Double>();
private__b.add(58.0);
private__b.add(426.0);
private__b.add(610.0);
if (private__b.size() > 4) {}
}
}
if (data.getCategory() != null && !data.getCategory().isEmpty()) {
binding.tvSearchHottagItem.setVisibility(View.VISIBLE);
float followlistf = 6087.0f;
if (followlistf == 195) {}
binding.tvSearchHottagItem.setText(data.getCategory().get(0));
boolean ragment1 = false;
while (!ragment1) { break; }
System.out.println(ragment1);
}
}
}
}

View File

@ -0,0 +1,189 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import android.content.Context;
import android.view.View;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.XuInstrumentedPlayinfoBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
import com.shortdrama.jelly.zyreotv.beginning.TimeUtils;
public class ONShapeSingle
extends TGFollowlistAdapter<KLAnnerBean, XuInstrumentedPlayinfoBinding> {
volatile int nextWith_vb_count = 0;
private volatile boolean is_ArrowrightDetailHead = false;
volatile float continue_lOmmonBean_margin = 0.0f;
private Context collectRecharge;
public ONShapeSingle(
Context context, Class<XuInstrumentedPlayinfoBinding> viewBinding) {
super(context, viewBinding);
this.collectRecharge = context;
}
private boolean simpleWideDonateCore(double controllerTabbar, boolean videosIstory) {
double tailGradlew = 4210.0;
boolean watchLimit = false;
double requestHorizontally = 1735.0;
String translatesMore = "catchable";
boolean resolverNsse = false;
tailGradlew -= tailGradlew;
tailGradlew += requestHorizontally;
resolverNsse = tailGradlew > 51;
double tmp_k_2 = (double)tailGradlew;
double j_90 = 1.0;
double e_33 = 1.0;
if (tmp_k_2 > e_33) {
tmp_k_2 = e_33;
}
while (j_90 <= tmp_k_2) {
j_90 += 1;
tmp_k_2 -= j_90;
tmp_k_2 += 41.0;
break;
}
watchLimit = false;
resolverNsse = !watchLimit;
requestHorizontally = tailGradlew - requestHorizontally;
resolverNsse = requestHorizontally > 9;
double _g_21 = (double)requestHorizontally;
double r_11 = 0;
double m_7 = 0.0;
if (_g_21 > m_7) {
_g_21 = m_7;
}
for (int s_27 = 0; s_27 <= _g_21; s_27++) {
r_11 += (double)s_27;
if (s_27 > 0) {
_g_21 -= (double)s_27;
break;
}
double x_63 = (double)r_11;
double y_35 = 1.0;
double h_78 = 0.0;
if (x_63 > h_78) {
x_63 = h_78;
}
while (y_35 <= x_63) {
y_35 += 1;
x_63 -= y_35;
double y_25 = (double)y_35;
if (y_25 != 233.0) {
y_25 *= 27.0;
}
break;
}
break;
}
return resolverNsse;
}
@Override
public void onBindViewHolder(
XuInstrumentedPlayinfoBinding binding,
int position,
KLAnnerBean data,
int bingingAdapterPosition) {
boolean attributedSint = this.simpleWideDonateCore(3936.0,false);
if (attributedSint) {
System.out.println("system");
}
System.out.println(attributedSint);
if (data != null) {
Glide.with(collectRecharge)
.load(data.getImage_url())
.placeholder(R.mipmap.unselect_register_4_ideo)
.apply(new RequestOptions().diskCacheStrategy(DiskCacheStrategy.RESOURCE))
.into(binding.ivHotExploreItem);
ArrayList<Integer> coinsl = new ArrayList<Integer>();
coinsl.add(486);
coinsl.add(571);
coinsl.add(256);
while (coinsl.size() > 174) { break; }
binding.layoutHomeHotcontent.setVisibility(View.VISIBLE);
boolean type_1m = false;
binding.tvHomeExplorecontentItem.setVisibility(View.GONE);
boolean with_eF = false;
while (!with_eF) { break; }
binding.tvHomeExploretitleItem.setText(data.getName());
double tabindicatork = 2751.0;
System.out.println(tabindicatork);
binding.tvHomeHotcontentItem.setText(TimeUtils.formatNumber(data.getWatch_total()));
int seekbarU = 4613;
if (seekbarU <= 69) {}
binding.tvHomeExplorecateItem1.setVisibility(View.GONE);
ArrayList<Double> contentz = new ArrayList<Double>();
contentz.add(266.0);
contentz.add(576.0);
contentz.add(249.0);
contentz.add(410.0);
if (contentz.size() > 34) {}
binding.tvHomeExplorecateItem2.setVisibility(View.GONE);
float warning_ = 4449.0f;
if (warning_ > 74) {}
binding.tvHotTopnumber.setVisibility(View.GONE);
boolean historyP = false;
while (!historyP) { break; }
if (bingingAdapterPosition < 10) {
binding.tvHotTopnumber.setVisibility(View.VISIBLE);
ArrayList<Double> successi = new ArrayList<Double>();
successi.add(478.0);
successi.add(423.0);
successi.add(983.0);
if (successi.contains("B")) {}
binding.tvHotTopnumber.setText(String.valueOf(bingingAdapterPosition + 1));
double imgL = 7505.0;
while (imgL == 194) { break; }
}
if (data.getCategory() != null && !data.getCategory().isEmpty()) {
binding.tvHomeExplorecateItem1.setVisibility(View.VISIBLE);
String tabW = "combinations";
if (tabW.length() > 186) {}
System.out.println(tabW);
binding.tvHomeExplorecateItem1.setText(data.getCategory().get(0));
double back6 = 6292.0;
if (back6 < 155) {}
if (data.getCategory().size() >= 2) {
binding.tvHomeExplorecateItem2.setVisibility(View.VISIBLE);
float seekbart = 7258.0f;
binding.tvHomeExplorecateItem2.setText(data.getCategory().get(1));
double successR = 322.0;
while (successR <= 137) { break; }
}
}
}
}
}

View File

@ -0,0 +1,314 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.HashMap;
import android.content.Context;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.WdStringsFfffffBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
public class QQCloseThemes
extends TGFollowlistAdapter<KLAnnerBean, WdStringsFfffffBinding> {
volatile long aboutHomefragment_tag = 0;
volatile ArrayList<Integer> rewardsAlter_arr;
private volatile double ezierCallMore_space = 0.0;
volatile String annerIndicatorYes_string;
private Context collectRecharge;
public QQCloseThemes(
Context context, Class<WdStringsFfffffBinding> viewBinding) {
super(context, viewBinding);
this.collectRecharge = context;
}
private HashMap clearDimensionTrimHeadChangeLog(String createSeries) {
ArrayList<Long> squareCreate = new ArrayList();
double noticeRagment = 1357.0;
HashMap<String,String> renewLogic = new HashMap();
String seenConfirm = "repeating";
HashMap<String,Long> growMonths = new HashMap();
for(Long varinfo : squareCreate) {
growMonths.put("algorithmNumpad", varinfo);
if (growMonths.size() > 2) {
break;
}
}
double tmp_q_28 = (double)noticeRagment;
switch ((int)tmp_q_28) {
case 14: {
tmp_q_28 *= 13.0;
tmp_q_28 += 32.0;
break;
}
case 11: {
tmp_q_28 -= 82.0;
if (tmp_q_28 >= 993.0) {
tmp_q_28 -= 64.0;
}
else {
tmp_q_28 *= 22.0;
tmp_q_28 += 58.0;
}
break;
}
case 70: {
tmp_q_28 -= 55.0;
break;
}
case 66: {
tmp_q_28 -= 94.0;
if (tmp_q_28 >= 173.0) {
tmp_q_28 *= 58.0;
if (tmp_q_28 <= 891.0) {
}
}
break;
}
case 68: {
tmp_q_28 *= 44.0;
double d_35 = 0;
for (int g_15 = (int)tmp_q_28; g_15 > tmp_q_28 - 1; g_15--) {
d_35 += (double)g_15;
tmp_q_28 *= g_15;
break;
}
break;
}
case 48: {
double n_84 = 0;
for (int z_87 = (int)tmp_q_28; z_87 > tmp_q_28 - 1; z_87--) {
n_84 += (double)z_87;
tmp_q_28 += z_87;
break;
}
break;
}
case 39: {
tmp_q_28 *= 92.0;
double e_72 = 0;
for (int j_3 = (int)tmp_q_28; j_3 >= tmp_q_28 - 1; j_3--) {
e_72 += (double)j_3;
double j_93 = (double)e_72;
switch ((int)j_93) {
case 77: {
j_93 += 61.0;
break;
}
case 28: {
j_93 -= 38.0;
break;
}
case 58: {
j_93 -= 30.0;
j_93 -= 43.0;
break;
}
case 87: {
j_93 -= 42.0;
break;
}
case 21: {
break;
}
case 27: {
j_93 -= 98.0;
break;
}
default:
break;
}
break;
}
break;
}
case 92: {
tmp_q_28 *= 69.0;
double n_39 = 1.0;
double z_57 = 0.0;
if (tmp_q_28 > z_57) {
tmp_q_28 = z_57;
}
while (n_39 < tmp_q_28) {
n_39 += 1;
tmp_q_28 -= n_39;
tmp_q_28 += 40.0;
break;
}
break;
}
case 67: {
double y_93 = 1.0;
double f_9 = 0.0;
if (tmp_q_28 > f_9) {
tmp_q_28 = f_9;
}
while (y_93 <= tmp_q_28) {
y_93 += 1;
tmp_q_28 -= y_93;
double d_4 = (double)y_93;
switch ((int)d_4) {
case 11: {
d_4 -= 11.0;
break;
}
case 95: {
d_4 *= 19.0;
break;
}
case 54: {
break;
}
case 66: {
d_4 -= 61.0;
break;
}
case 1: {
d_4 -= 48.0;
break;
}
case 90: {
d_4 += 22.0;
d_4 -= 49.0;
break;
}
case 82: {
d_4 *= 14.0;
break;
}
case 3: {
break;
}
case 50: {
d_4 += 57.0;
d_4 += 14.0;
break;
}
case 0: {
d_4 -= 32.0;
d_4 *= 59.0;
break;
}
default:
break;
}
break;
}
break;
}
default:
break;
}
for(HashMap.Entry<String, String> emuedge : renewLogic.entrySet()) {
growMonths.put("symbolic", emuedge.getValue().matches("(-)?(^[0-9]+$)") ? Long.valueOf(emuedge.getValue()) : 40);
if (growMonths.size() > 1) {
break;
}
}
growMonths.put("front", (long)(seenConfirm.length()));
return growMonths;
}
@Override
public void onBindViewHolder(
WdStringsFfffffBinding binding,
int position,
KLAnnerBean data,
int bingingAdapterPosition) {
String effect_w = "reconnecting";
HashMap idctCopyfd = this.clearDimensionTrimHeadChangeLog(effect_w);
int idctCopyfd_len = idctCopyfd.size();
int a_11 = (int)idctCopyfd_len;
if (a_11 >= 773) {
a_11 -= 85;
a_11 += 86;
}
for(Object obj_7 : idctCopyfd.entrySet()) {
HashMap.Entry<String, Object> entry = (HashMap.Entry<String, Object>)obj_7;
System.out.println(entry.getKey());
System.out.println(entry.getValue());
}
System.out.println(idctCopyfd);
if (data != null) {
String adapter = data.getImage_url();
double clientg = 4611.0;
if (clientg < 35) {}
Glide.with(collectRecharge)
.load(adapter)
.placeholder(R.mipmap.private_n_google)
.apply(new RequestOptions().diskCacheStrategy(DiskCacheStrategy.ALL))
.into(binding.ivHometabItem);
binding.tvHometabTitleItem.setText(data.getName());
boolean touristk = false;
if (touristk) {}
binding.tvHometabContentItem.setText(data.getDescription());
boolean x_countg = true;
if (x_countg) {}
}
}
}

View File

@ -0,0 +1,83 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.HashMap;
import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Color;
import android.view.ViewGroup;
import android.widget.RelativeLayout;
import androidx.appcompat.widget.AppCompatTextView;
import com.chad.library.adapter4.BaseQuickAdapter;
import com.chad.library.adapter4.viewholder.QuickViewHolder;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.LSQExampleCloseBean;
public class TFMLoadingdefault extends BaseQuickAdapter<LSQExampleCloseBean.YPZTestUnselect, QuickViewHolder> {
private int searchNot_p8 = -1;
@SuppressLint("UseCompatLoadingForDrawables")
@Override
protected void onBindViewHolder(QuickViewHolder holder, int position, LSQExampleCloseBean.YPZTestUnselect item) {
AppCompatTextView msearch = holder.getView(R.id.tv_episodes_series);
int yesi = 3458;
RelativeLayout create = holder.getView(R.id.episode_bg);
String history9 = "tagavr";
if (history9.length() > 178) {}
msearch.setText(String.valueOf(item != null ? item.getEpisode() : ""));
if (searchNot_p8 == holder.getAdapterPosition()) {
msearch.setTextColor(Color.parseColor("#FF0049"));
HashMap<String,Long> saveD = new HashMap<String,Long>();
saveD.put("nocolset", 289L);
saveD.put("impression", 584L);
saveD.put("dispose", 68L);
saveD.put("gbrap", 859L);
saveD.put("proposed", 230L);
saveD.put("streamid", 859L);
if (saveD.get("8") != null) {}
System.out.println(saveD);
create.setBackground(holder.itemView.getContext().getDrawable(R.drawable.hxo_single_backup));
long rewardsW = 3445L;
} else {
msearch.setTextColor(Color.parseColor("#999999"));
String bar7 = "dust";
while (bar7.length() > 167) { break; }
create.setBackground(holder.itemView.getContext().getDrawable(R.drawable.o_event));
HashMap<String,Double> imgK = new HashMap<String,Double>();
imgK.put("hang", 8.0);
imgK.put("affect", 654.0);
}
}
@Override
public QuickViewHolder onCreateViewHolder(Context context, ViewGroup parent, int viewType) {
return new QuickViewHolder(R.layout.gjy_round_private, parent);
}
public void setCurrentPosition(int position) {
this.searchNot_p8 = position;
ArrayList<Float> collectionH = new ArrayList<Float>();
collectionH.add(979.0f);
collectionH.add(714.0f);
collectionH.add(632.0f);
collectionH.add(405.0f);
if (collectionH.size() > 193) {}
System.out.println(collectionH);
}
}

View File

@ -0,0 +1,159 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.HashMap;
import android.annotation.SuppressLint;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import androidx.viewbinding.ViewBinding;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
public class TGFollowlistAdapter<T, R extends ViewBinding>
extends RecyclerView.Adapter<TGFollowlistAdapter.OQCateRewards<R>> {
private static final String TAG = "QChatCommonAdapter";
private static final String NAME_METHOD_INFLATE = "inflate";
protected final List<T> dataSource = new ArrayList<>();
protected final Context context;
protected OnClickListener<T, R> clickListener;
protected Method inflateMethod;
public TGFollowlistAdapter(Context context, Class<R> viewBinding) {
this.context = context;
try {
inflateMethod =
viewBinding.getMethod(
NAME_METHOD_INFLATE, LayoutInflater.class, ViewGroup.class, boolean.class);
} catch (NoSuchMethodException e) {
throw new IllegalStateException("create adapter error", e);
}
}
@SuppressLint("NotifyDataSetChanged")
public void addDataList(List<T> data, boolean clearOld) {
if (clearOld) {
dataSource.clear();
boolean code3 = true;
if (code3) {}
System.out.println(code3);
}
if (data == null) {
return;
}
dataSource.addAll(data);
String alertB = "lerp";
if (alertB.length() > 121) {}
System.out.println(alertB);
notifyDataSetChanged();
HashMap<String,String> liveq = new HashMap<String,String>();
liveq.put("changing", "stringbuffer");
liveq.put("skad", "vdata");
liveq.put("ints", "ethertuplis");
liveq.put("cook", "alpha");
liveq.put("packed", "zipf");
}
public void setItemClickListener(OnClickListener<T, R> listener) {
this.clickListener = listener;
String modityx = "panic";
if (modityx.equals("d")) {}
}
@NonNull
@Override
@SuppressWarnings("unchecked")
public OQCateRewards<R> onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
R date;
String currentR = "speaking";
if (currentR.equals("Y")) {}
System.out.println(currentR);
try {
date = (R) inflateMethod.invoke(null, LayoutInflater.from(context), parent, false);
double out6 = 5452.0;
if (out6 == 159) {}
} catch (IllegalAccessException | InvocationTargetException e) {
throw new IllegalStateException("create view holder error", e);
}
return new OQCateRewards<>(Objects.requireNonNull(date));
}
@Override
public void onBindViewHolder(@NonNull OQCateRewards<R> holder, int position) {
T rext = getItemData(position);
boolean empty9 = false;
while (empty9) { break; }
System.out.println(empty9);
holder.itemView.setOnClickListener(
v -> {
if (clickListener != null) {
clickListener.onClick(rext, holder);
String modelR = "emoticon";
if (modelR.equals("X")) {}
}
});
if (rext == null) {
return;
}
onBindViewHolder(holder, position, rext);
HashMap<String,Float> emptyW = new HashMap<String,Float>();
emptyW.put("album", 466.0f);
emptyW.put("ascbn", 812.0f);
emptyW.put("costi", 139.0f);
emptyW.put("showwavespic", 949.0f);
emptyW.put("infolder", 779.0f);
emptyW.put("iframe", 637.0f);
System.out.println(emptyW);
}
public void onBindViewHolder(@NonNull OQCateRewards<R> holder, int position, T data) {
onBindViewHolder(holder.binding, position, data, holder.getBindingAdapterPosition());
HashMap<String,Double> tabindicator5 = new HashMap<String,Double>();
tabindicator5.put("conversion", 527.0);
tabindicator5.put("persp", 672.0);
}
public void onBindViewHolder(R binding, int position, T data, int bingingAdapterPosition) {}
@Override
public int getItemCount() {
return dataSource.size();
}
public T getItemData(int position) {
if (position < 0 || position >= dataSource.size()) {
return null;
}
return dataSource.get(position);
}
public static class OQCateRewards<T extends ViewBinding> extends RecyclerView.ViewHolder {
public final T binding;
public OQCateRewards(T binding) {
super(binding.getRoot());
this.binding = binding;
}
}
public interface OnClickListener<T, R extends ViewBinding> {
void onClick(T data, OQCateRewards<R> holder);
}
}

View File

@ -0,0 +1,181 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.HashMap;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentActivity;
import androidx.viewpager2.adapter.FragmentStateAdapter;
import java.util.ArrayList;
import java.util.List;
public class WNHEzierRules extends FragmentStateAdapter {
private volatile String activitySuccessfulSquare_string;
volatile double runnableEpiscodeMargin = 0.0;
private volatile String hotAnnerOmmonString;
private ArrayList<String> vistorNine;
private List<Fragment> centerAdapterFragment;
public WNHEzierRules(@NonNull FragmentActivity fragmentActivity, ArrayList<String> vistorNine, List<Fragment> centerAdapterFragment) {
super(fragmentActivity);
this.vistorNine = vistorNine;
this.centerAdapterFragment = centerAdapterFragment;
}
private long stopEnterTaskTranslucent(boolean manifestProcess, ArrayList<String> describeDescribe) {
HashMap<String,String> listTitle = new HashMap();
String barSeekbar = "wince";
String readBack = "certpol";
long maybeAutocapitalization = 0;
return maybeAutocapitalization;
}
@NonNull
@Override
public Fragment createFragment(int position) {
ArrayList denom_v = new ArrayList();
long autorotateApmtest = this.stopEnterTaskTranslucent(true,denom_v);
int temp_f_12 = (int)autorotateApmtest;
switch (temp_f_12) {
case 54: {
temp_f_12 -= 96;
break;
}
case 9: {
int j_17 = 0;
int q_90 = 0;
if (temp_f_12 > q_90) {
temp_f_12 = q_90;
}
for (int n_89 = 1; n_89 < temp_f_12; n_89++) {
j_17 += (int)n_89;
int y_28 = (int)j_17;
break;
}
break;
}
case 21: {
if (temp_f_12 >= 461) {
temp_f_12 *= 24;
}
else if (temp_f_12 >= 535) {
temp_f_12 += 9;
temp_f_12 *= 93;
}
break;
}
case 68: {
if (temp_f_12 >= 243) {
temp_f_12 -= 97;
}
else {
temp_f_12 *= 43;
temp_f_12 *= 41;
}
break;
}
case 0: {
temp_f_12 -= 4;
if (temp_f_12 == 266) {
temp_f_12 += 11;
}
else {
}
break;
}
case 41: {
int s_88 = 1;
int m_32 = 1;
if (temp_f_12 > m_32) {
temp_f_12 = m_32;
}
while (s_88 < temp_f_12) {
s_88 += 1;
int r_67 = (int)s_88;
break;
}
break;
}
case 82: {
temp_f_12 *= 97;
temp_f_12 -= 12;
break;
}
case 19: {
if (temp_f_12 > 552) {
}
else {
}
break;
}
case 23: {
if (temp_f_12 == 877) {
if (temp_f_12 == 552) {
temp_f_12 *= 33;
}
}
break;
}
case 11: {
if (temp_f_12 == 690) {
}
break;
}
default:
break;
}
if (autorotateApmtest >= 10) {
System.out.println(autorotateApmtest);
}
System.out.println(autorotateApmtest);
return centerAdapterFragment.get(position);
}
@Override
public int getItemCount() {
return centerAdapterFragment.size();
}
}

View File

@ -0,0 +1,128 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.HashMap;
import android.content.Context;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.widget.AppCompatImageView;
import androidx.media3.ui.PlayerView;
import com.chad.library.adapter4.BaseQuickAdapter;
import com.chad.library.adapter4.viewholder.QuickViewHolder;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.topics.amera.BVXHeadView;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.LSQExampleCloseBean;
public class WVideoplay
extends BaseQuickAdapter<LSQExampleCloseBean.YPZTestUnselect, QuickViewHolder> {
public interface QUnitActivity {
void collection(LSQExampleCloseBean.YPZTestUnselect episode);
}
public QUnitActivity playerDetailCollection;
public void setPlayerDetailCollection(QUnitActivity playerDetailCollection) {
this.playerDetailCollection = playerDetailCollection;
float backgroundw = 3578.0f;
if (backgroundw >= 188) {}
System.out.println(backgroundw);
}
public int currentEpisodePlayingPosition = 0;
public LSQExampleCloseBean.YSearchUser shortVideoInfo;
public int getCurrentEpisodePlayingPosition() {
return currentEpisodePlayingPosition;
}
public void setCurrentEpisodePlayingPosition(int currentEpisodePlayingPosition) {
this.currentEpisodePlayingPosition = currentEpisodePlayingPosition;
ArrayList<Integer> keyv = new ArrayList<Integer>();
keyv.add(119);
keyv.add(179);
keyv.add(456);
keyv.add(794);
keyv.add(57);
if (keyv.contains("X")) {}
}
public LSQExampleCloseBean.YSearchUser getShortVideoInfo() {
return shortVideoInfo;
}
public void setShortVideoInfo(LSQExampleCloseBean.YSearchUser shortVideoInfo) {
this.shortVideoInfo = shortVideoInfo;
HashMap<String,Integer> squarea = new HashMap<String,Integer>();
squarea.put("fraction", 261);
squarea.put("parent", 63);
squarea.put("preamble", 377);
squarea.put("clearbit", 952);
squarea.put("biguint", 782);
squarea.put("nhance", 268);
while (squarea.size() > 116) { break; }
}
@NonNull
@Override
protected QuickViewHolder onCreateViewHolder(@NonNull Context context, @NonNull ViewGroup viewGroup, int i) {
return new QuickViewHolder(R.layout.lqa_episodes,viewGroup);
}
@Override
protected void onBindViewHolder(@NonNull QuickViewHolder holder, int position, @Nullable LSQExampleCloseBean.YPZTestUnselect episode) {
BVXHeadView browsing = (BVXHeadView) holder.getView(R.id.page_google_exo_player);
double stopB = 4987.0;
while (stopB < 89) { break; }
System.out.println(stopB);
PlayerView square = browsing.findViewById(R.id.player_view);
ArrayList<Boolean> anner6 = new ArrayList<Boolean>();
anner6.add(true);
anner6.add(true);
anner6.add(false);
anner6.add(true);
System.out.println(anner6);
AppCompatImageView free = square.findViewById(R.id.iv_collection_controller);
float pplicationD = 7470.0f;
if (pplicationD > 186) {}
System.out.println(pplicationD);
free.setOnClickListener(v -> {
if (playerDetailCollection != null) {
playerDetailCollection.collection(episode);
long tabindicatorY = 9737L;
if (tabindicatorY < 139) {}
}
});
if (position == currentEpisodePlayingPosition) {
browsing.setMedia(episode, shortVideoInfo);
int settingso = 4537;
if (settingso <= 160) {}
} else {
browsing.stop();
boolean pullingC = false;
while (!pullingC) { break; }
}
}
}

View File

@ -0,0 +1,162 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.HashMap;
import com.chad.library.adapter4.BaseQuickAdapter;
import android.content.Context;
import android.view.ViewGroup;
import com.chad.library.adapter4.viewholder.QuickViewHolder;
import com.shortdrama.jelly.zyreotv.R;
public class XSeriesEarch extends BaseQuickAdapter<String, QuickViewHolder> {
volatile long apiKeyCount = 0;
volatile HashMap<String,String> moreListRewardsMap;
private volatile long dimensTextAbout_index = 0;
private long proceedAllStopManagerAnimationFuture(ArrayList<Boolean> refreshVideos) {
int observerJob = 5944;
ArrayList<Float> pullingRules = new ArrayList();
float seenFooter = 4619.0f;
System.out.println(seenFooter);
ArrayList<Float> testExplore = new ArrayList();
long animateNotifier = 0;
observerJob = 8763;
int tmp_d_92 = (int)observerJob;
tmp_d_92 -= 94;
seenFooter = seenFooter;
int _j_57 = (int)seenFooter;
int b_71 = 0;
int r_1 = 1;
if (_j_57 > r_1) {
_j_57 = r_1;
}
for (int n_64 = 1; n_64 < _j_57; n_64++) {
b_71 += (int)n_64;
int p_21 = (int)b_71;
int p_53 = 1;
int y_16 = 0;
if (p_21 > y_16) {
p_21 = y_16;
}
while (p_53 < p_21) {
p_53 += 1;
int u_39 = (int)p_53;
switch (u_39) {
case 60: {
u_39 *= 16;
break;
}
case 89: {
u_39 += 84;
break;
}
case 15: {
u_39 += 14;
break;
}
case 70: {
u_39 += 16;
break;
}
default:
break;
}
break;
}
break;
}
return animateNotifier;
}
@Override
protected void onBindViewHolder(QuickViewHolder holder, int position, String item) {
ArrayList uninterpreted_t = new ArrayList();
long alsasymboltableWritecheck = this.proceedAllStopManagerAnimationFuture(uninterpreted_t);
int temp_p_89 = (int)alsasymboltableWritecheck;
int h_4 = 0;
int v_24 = 1;
if (temp_p_89 > v_24) {
temp_p_89 = v_24;
}
for (int p_0 = 1; p_0 < temp_p_89; p_0++) {
h_4 += (int)p_0;
if (p_0 > 0) {
temp_p_89 -= (int)p_0;
break;
}
break;
}
System.out.println(alsasymboltableWritecheck);
System.out.println(alsasymboltableWritecheck);
holder.setText(R.id.tv_item_vt_search_history, item);
String dialog3 = "truehd";
if (dialog3.equals("M")) {}
}
private boolean addDatePostRawCompoundMessage(HashMap<String,Double> sinUrl) {
boolean infoRefresh = false;
HashMap<String,String> ecyrptApi = new HashMap();
HashMap<String,Boolean> readActivity = new HashMap();
boolean wienerWildcard = false;
infoRefresh = false;
wienerWildcard = infoRefresh;
return wienerWildcard;
}
@Override
public QuickViewHolder onCreateViewHolder(Context context, ViewGroup parent, int viewType) {
boolean collapseSponsored = this.addDatePostRawCompoundMessage(new HashMap());
if (!collapseSponsored) {
}
System.out.println(collapseSponsored);
return new QuickViewHolder(R.layout.d_center_background, parent);
}
}

View File

@ -0,0 +1,96 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.appcompat.widget.AppCompatImageView;
import androidx.appcompat.widget.AppCompatTextView;
import androidx.recyclerview.widget.RecyclerView;
import com.bumptech.glide.Glide;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
import com.youth.banner.adapter.BannerAdapter;
import java.util.List;
public class YHUItemThemes extends BannerAdapter<KLAnnerBean, YHUItemThemes.CHeadEarch> {
public YHUItemThemes(List<KLAnnerBean> mData) {
super(mData);
}
boolean isHomeHot = false;
public boolean isHomeHot() {
return isHomeHot;
}
public void setHomeHot(boolean homeHot) {
isHomeHot = homeHot;
int playing1 = 4305;
if (playing1 < 137) {}
}
@Override
public CHeadEarch onCreateHolder(ViewGroup parent, int viewType) {
return new CHeadEarch(LayoutInflater.from(parent.getContext()).inflate(R.layout.j_episodes, parent, false));
}
@Override
public void onBindView(CHeadEarch holder, KLAnnerBean data, int position, int size) {
String adapter = data.getHorizontally_img();
String videohistory3 = "evdns";
if (videohistory3.length() > 195) {}
System.out.println(videohistory3);
if(!adapter.endsWith(".jpg")){
adapter = data.getImage_url();
boolean sendp = false;
while (sendp) { break; }
}
Glide.with(holder.itemView.getContext()).load(adapter).placeholder(R.mipmap.private_n_google).into(holder.imageView);
holder.textView.setVisibility(View.GONE);
int log8 = 2098;
while (log8 >= 168) { break; }
if(isHomeHot){
holder.textView.setVisibility(View.VISIBLE);
long preferenceD = 5877L;
while (preferenceD >= 148) { break; }
holder.textView.setText(data.getName()+"");
ArrayList<Long> ninew = new ArrayList<Long>();
ninew.add(489L);
ninew.add(764L);
ninew.add(61L);
ninew.add(995L);
ninew.add(46L);
if (ninew.contains("B")) {}
}
}
class CHeadEarch extends RecyclerView.ViewHolder {
AppCompatImageView imageView;
AppCompatTextView textView;
public CHeadEarch(@NonNull View view) {
super(view);
imageView = view.findViewById(R.id.iv_banner_img);
textView = view.findViewById(R.id.tv_banner_title);
}
}
}

View File

@ -0,0 +1,298 @@
package com.shortdrama.jelly.zyreotv.topics.dts;
import java.util.ArrayList;
import java.util.HashMap;
import android.content.Context;
import android.view.View;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.WExtractionBinding;
import com.shortdrama.jelly.zyreotv.unconfirmedPiecewise.KLAnnerBean;
public class ZProgressRecharge
extends TGFollowlistAdapter<KLAnnerBean, WExtractionBinding> {
volatile ArrayList<Float> outChildrenRecommend_list;
private volatile int istoryDraggingCategory_x_mark = 0;
private volatile int tiktokFinishMark = 0;
private Context collectRecharge;
private String exploreUnlocking;
public boolean scaleEndOuter(HashMap<String,Boolean> stayCurrent, ArrayList<Integer> lastReset, ArrayList<Long> recommandPosition) {
ArrayList<Double> try_xnOdyload = new ArrayList();
System.out.println(try_xnOdyload);
float processSeekbar = 4291.0f;
System.out.println(processSeekbar);
HashMap<String,Long> collectRunning = new HashMap();
System.out.println(collectRunning);
boolean collectioncancelVideohistory = false;
boolean failedQsort = false;
processSeekbar = 9068;
failedQsort = processSeekbar > 4;
int temp_m_60 = (int)processSeekbar;
temp_m_60 -= 31;
collectioncancelVideohistory = false;
failedQsort = collectioncancelVideohistory;
return failedQsort;
}
public String getMsearchText() {
ArrayList invoke_h = new ArrayList();
ArrayList reentrant_t = new ArrayList();
boolean extendedCollection = this.scaleEndOuter(new HashMap(),invoke_h,reentrant_t);
if (!extendedCollection) {
System.out.println("ok");
}
System.out.println(extendedCollection);
return exploreUnlocking;
}
public void setMsearchText(String exploreUnlocking) {
this.exploreUnlocking = exploreUnlocking;
long infoP = 4452L;
while (infoP <= 69) { break; }
}
public ZProgressRecharge(
Context context, Class<WExtractionBinding> viewBinding) {
super(context, viewBinding);
this.collectRecharge = context;
}
private long rankTagPathCompound(ArrayList<Double> profileService, int headColors) {
HashMap<String,String> homefragmentNotice = new HashMap();
int esultYes = 1083;
int consumptionApple = 7266;
HashMap<String,Float> loadDetail = new HashMap();
long leakAdjustmentCdft = 0;
esultYes = esultYes;
int w_34 = (int)esultYes;
if (w_34 == 173) {
w_34 += 16;
int s_66 = 0;
int s_70 = 0;
if (w_34 > s_70) {
w_34 = s_70;
}
for (int w_24 = 1; w_24 < w_34; w_24++) {
s_66 += (int)w_24;
if (w_24 > 0) {
w_34 -= (int)w_24;
break;
}
int h_27 = (int)s_66;
break;
}
}
consumptionApple -= 40;
int temp_b_94 = (int)consumptionApple;
switch (temp_b_94) {
case 80: {
if (temp_b_94 > 841) {
temp_b_94 -= 70;
temp_b_94 += 43;
}
break;
}
case 85: {
int d_72 = 0;
int i_97 = 0;
if (temp_b_94 > i_97) {
temp_b_94 = i_97;
}
for (int i_42 = 1; i_42 < temp_b_94; i_42++) {
d_72 += (int)i_42;
if (i_42 > 0) {
temp_b_94 -= (int)i_42;
break;
}
temp_b_94 *= 40;
break;
}
break;
}
default:
break;
}
return leakAdjustmentCdft;
}
@Override
public void onBindViewHolder(
WExtractionBinding binding,
int position,
KLAnnerBean data,
int bingingAdapterPosition) {
ArrayList aes_f = new ArrayList();
long qpeldspSchema = this.rankTagPathCompound(aes_f,4825);
if (qpeldspSchema != 42) {
System.out.println(qpeldspSchema);
}
int _f_53 = (int)qpeldspSchema;
if (_f_53 > 310) {
_f_53 -= 81;
switch (_f_53) {
case 49: {
_f_53 += 4;
break;
}
case 47: {
_f_53 += 24;
_f_53 += 59;
break;
}
case 36: {
break;
}
case 2: {
_f_53 += 6;
break;
}
case 11: {
_f_53 *= 53;
break;
}
case 39: {
_f_53 -= 58;
if (_f_53 > 757) {
}
break;
}
case 94: {
if (_f_53 == 34) {
_f_53 *= 19;
}
break;
}
case 37: {
_f_53 *= 14;
break;
}
case 32: {
_f_53 -= 78;
_f_53 *= 84;
break;
}
case 35: {
_f_53 *= 71;
break;
}
default:
break;
}
}
System.out.println(qpeldspSchema);
if (data != null) {
Glide.with(collectRecharge)
.load(data.getImage_url())
.placeholder(R.mipmap.unselect_register_4_ideo)
.apply(new RequestOptions().diskCacheStrategy(DiskCacheStrategy.ALL))
.into(binding.ivSearchDataItem);
String bottomg = "bps";
if (bottomg.length() > 54) {}
System.out.println(bottomg);
binding.tvSearchDatatitleItem.setText(data.getName());
String tabbarX = "tpel";
if (tabbarX.length() > 190) {}
binding.tvSearchDatadescItem.setText(data.getDescription());
boolean buildM = false;
System.out.println(buildM);
binding.tvSearchDatacategoryItem1.setVisibility(View.GONE);
String register_cnb = "drop";
if (register_cnb.equals("j")) {}
System.out.println(register_cnb);
binding.tvSearchDatacategoryItem1.setVisibility(View.GONE);
long tabindicatorg = 8105L;
if (tabindicatorg == 181) {}
if (data.getCategoryList() != null && !data.getCategoryList().isEmpty()) {
binding.tvSearchDatacategoryItem1.setVisibility(View.VISIBLE);
boolean theaterY = false;
if (!theaterY) {}
binding.tvSearchDatacategoryItem1.setText(data.getCategoryList().get(0).getName());
boolean viewingR = false;
while (viewingR) { break; }
System.out.println(viewingR);
if (data.getCategoryList().size() >= 2) {
binding.tvSearchDatacategoryItem2.setVisibility(View.VISIBLE);
long servicev = 4620L;
binding.tvSearchDatacategoryItem2.setText(data.getCategoryList().get(1).getName());
long savez = 9854L;
while (savez == 79) { break; }
}
}
}
}
}

View File

@ -1,137 +0,0 @@
package com.shortdrama.jelly.zyreotv.ui.activity;
import androidx.appcompat.widget.AppCompatTextView;
import androidx.fragment.app.Fragment;
import android.view.View;
import com.shortdrama.jelly.zyreotv.R;
import com.shortdrama.jelly.zyreotv.databinding.ActivityMainVtBinding;
import com.shortdrama.jelly.zyreotv.ui.activity.basic.VTCommonActivity;
import com.shortdrama.jelly.zyreotv.ui.activity.explore.VTExploreFragment;
import com.shortdrama.jelly.zyreotv.ui.activity.home.VTHomeFragment;
import com.shortdrama.jelly.zyreotv.ui.activity.me.VTMeFragment;
import com.shortdrama.jelly.zyreotv.ui.activity.mylist.VTMyListFragment;
import com.shortdrama.jelly.zyreotv.ui.adapter.VTFragmentAdapter;
import java.util.ArrayList;
import java.util.List;
public class VTMainActivity extends VTCommonActivity<ActivityMainVtBinding> implements View.OnClickListener {
private static final int START_INDEX = 0;
private View mCurrentTab;
private VTHomeFragment VTHomeFragment;
private VTExploreFragment VTExploreFragment;
private VTMyListFragment VTMyListFragment;
private VTMeFragment VTMeFragment;
ActivityMainVtBinding binding;
private VTFragmentAdapter fragmentAdapter;
@Override
public void init() {
getWindow().setNavigationBarColor(getResources().getColor(android.R.color.black));
binding = ActivityMainVtBinding.inflate(getLayoutInflater());
setContentView(binding.getRoot());
}
@Override
public void initView() {
List<Fragment> fragments = new ArrayList<>();
VTHomeFragment = VTHomeFragment.newInstance();
VTExploreFragment = VTExploreFragment.newInstance();
VTMyListFragment = VTMyListFragment.newInstance();
VTMeFragment = VTMeFragment.newInstance();
fragments.add(VTHomeFragment);
fragments.add(VTExploreFragment);
fragments.add(VTMyListFragment);
fragments.add(VTMeFragment);
fragmentAdapter = new VTFragmentAdapter(this);
fragmentAdapter.setFragmentList(fragments);
binding.container.setUserInputEnabled(false); //disaple scroll
binding.container.setAdapter(fragmentAdapter);
binding.container.setCurrentItem(START_INDEX, false);
// binding.container.setOffscreenPageLimit(1);
binding.tvVtMainHome.setOnClickListener(this);
binding.tvVtMainExplore.setOnClickListener(this);
binding.tvVtMainMylist.setOnClickListener(this);
binding.tvVtMainMe.setOnClickListener(this);
mCurrentTab = binding.tvVtMainHome;
resetTabCurrent();
}
@Override
public void logic() {
}
private void resetTabStyle() {
binding.tvVtMainHome.setTextColor(
getResources().getColor(R.color.color_d2d2d2));
binding.tvVtMainHome.setCompoundDrawablesWithIntrinsicBounds(
null, getResources().getDrawable(R.mipmap.iv_main_tab_home_default), null, null);
binding.tvVtMainExplore.setTextColor(getResources().getColor(R.color.color_d2d2d2));
binding.tvVtMainExplore.setCompoundDrawablesWithIntrinsicBounds(
null, getResources().getDrawable(R.mipmap.iv_main_tab_explore_default), null, null);
binding.tvVtMainMylist.setTextColor(getResources().getColor(R.color.color_d2d2d2));
binding.tvVtMainMylist.setCompoundDrawablesWithIntrinsicBounds(
null, getResources().getDrawable(R.mipmap.iv_main_tab_mylist_default), null, null);
binding.tvVtMainMe.setTextColor(getResources().getColor(R.color.color_d2d2d2));
binding.tvVtMainMe.setCompoundDrawablesWithIntrinsicBounds(
null, getResources().getDrawable(R.mipmap.iv_main_tab_me_default), null, null);
}
private void resetTabCurrent() {
if (mCurrentTab == binding.tvVtMainHome) {
setClickItem(0, binding.tvVtMainHome, R.mipmap.iv_main_tab_home_click);
}
if (mCurrentTab == binding.tvVtMainExplore) {
setClickItem(1, binding.tvVtMainExplore, R.mipmap.iv_main_tab_explore_click);
}
if (mCurrentTab == binding.tvVtMainMylist) {
setClickItem(2, binding.tvVtMainMylist, R.mipmap.iv_main_tab_mylist_click);
}
if (mCurrentTab == binding.tvVtMainMe) {
setClickItem(3, binding.tvVtMainMe, R.mipmap.iv_main_tab_me_click);
}
}
public void setClickItem(int index, AppCompatTextView textView, int resource) {
binding.container.setCurrentItem(index, false);
textView.setTextColor(
getResources().getColor(R.color.color_f564b6));
textView.setCompoundDrawablesWithIntrinsicBounds(
null, getResources().getDrawable(resource), null, null);
}
@Override
public void onClick(View v) {
if (mCurrentTab != null && mCurrentTab == v) {
return;
}
resetTabStyle();
mCurrentTab = v;
resetTabCurrent();
}
}

View File

@ -1,37 +0,0 @@
package com.shortdrama.jelly.zyreotv.ui.activity;
import android.content.Intent;
import android.os.Bundle;
import androidx.core.splashscreen.SplashScreen;
import com.shortdrama.jelly.zyreotv.databinding.ActivitySplashBinding;
import com.shortdrama.jelly.zyreotv.ui.activity.basic.VTCommonActivity;
public class VTSplashActivity extends VTCommonActivity<ActivitySplashBinding> {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
SplashScreen splashScreen = SplashScreen.installSplashScreen(VTSplashActivity.this);
splashScreen.setKeepOnScreenCondition(() -> true);
startActivity(new Intent(this,VTMainActivity.class));
}
@Override
public void init() {
viewBinding = ActivitySplashBinding.inflate(getLayoutInflater());
setContentView(viewBinding.getRoot());
}
@Override
public void initView() {
}
@Override
public void logic() {
}
}

Some files were not shown because too many files have changed in this diff Show More