1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<classpath> | ||
3 | + <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> | ||
4 | + <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> | ||
5 | + <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> | ||
6 | + <classpathentry kind="src" path="src"/> | ||
7 | + <classpathentry kind="src" path="gen"/> | ||
8 | + <classpathentry kind="output" path="bin/classes"/> | ||
9 | +</classpath> |
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<projectDescription> | ||
3 | + <name>EasyGame_demo</name> | ||
4 | + <comment></comment> | ||
5 | + <projects> | ||
6 | + </projects> | ||
7 | + <buildSpec> | ||
8 | + <buildCommand> | ||
9 | + <name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name> | ||
10 | + <arguments> | ||
11 | + </arguments> | ||
12 | + </buildCommand> | ||
13 | + <buildCommand> | ||
14 | + <name>com.android.ide.eclipse.adt.PreCompilerBuilder</name> | ||
15 | + <arguments> | ||
16 | + </arguments> | ||
17 | + </buildCommand> | ||
18 | + <buildCommand> | ||
19 | + <name>org.eclipse.jdt.core.javabuilder</name> | ||
20 | + <arguments> | ||
21 | + </arguments> | ||
22 | + </buildCommand> | ||
23 | + <buildCommand> | ||
24 | + <name>com.android.ide.eclipse.adt.ApkBuilder</name> | ||
25 | + <arguments> | ||
26 | + </arguments> | ||
27 | + </buildCommand> | ||
28 | + </buildSpec> | ||
29 | + <natures> | ||
30 | + <nature>com.android.ide.eclipse.adt.AndroidNature</nature> | ||
31 | + <nature>org.eclipse.jdt.core.javanature</nature> | ||
32 | + </natures> | ||
33 | +</projectDescription> |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + package="com.platform7725.qile.tfws" | ||
4 | + android:versionCode="10001" | ||
5 | + android:versionName="1.0" > | ||
6 | + | ||
7 | + <uses-sdk | ||
8 | + android:minSdkVersion="14" | ||
9 | + android:targetSdkVersion="19" /> | ||
10 | +<!-- P7725 PERMISSION START. --> | ||
11 | + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
12 | + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | ||
13 | + <uses-permission android:name="android.permission.READ_PHONE_STATE" /> | ||
14 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
15 | + <uses-permission android:name="android.permission.INTERNET" /> | ||
16 | + <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
17 | + <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
18 | + <uses-permission android:name="android.permission.VIBRATE" /> | ||
19 | + <uses-permission android:name="com.android.vending.BILLING" /> | ||
20 | + <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> | ||
21 | + <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> | ||
22 | + <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> | ||
23 | + <uses-permission android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER" /> | ||
24 | + <uses-permission android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED" /> | ||
25 | + <uses-permission android:name="com.library.permission.SEND_DOWNLOAD_COMPLETED_INTENTS" /> | ||
26 | + <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" /> | ||
27 | + <uses-permission android:name="android.permission.WAKE_LOCK" /> | ||
28 | + | ||
29 | + <permission | ||
30 | + android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER" | ||
31 | + android:description="@string/permdesc_downloadManager" | ||
32 | + android:label="@string/permlab_downloadManager" | ||
33 | + android:protectionLevel="normal" /> | ||
34 | + <permission | ||
35 | + android:name="com.library.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED" | ||
36 | + android:description="@string/permdesc_downloadManagerAdvanced" | ||
37 | + android:label="@string/permlab_downloadManagerAdvanced" | ||
38 | + android:protectionLevel="normal" /> | ||
39 | + <permission | ||
40 | + android:name="com.library.permission.SEND_DOWNLOAD_COMPLETED_INTENTS" | ||
41 | + android:description="@string/permdesc_downloadCompletedIntent" | ||
42 | + android:label="@string/permlab_downloadCompletedIntent" | ||
43 | + android:protectionLevel="normal" /> | ||
44 | + <!-- P7725 PERMISSION END. --> | ||
45 | + | ||
46 | + | ||
47 | + <application | ||
48 | + android:allowBackup="true" | ||
49 | + android:icon="@drawable/icon" | ||
50 | + android:label="@string/app_name" | ||
51 | + android:theme="@style/AppTheme" > | ||
52 | + <activity | ||
53 | + android:name="com.youai.easygame.MainActivity" | ||
54 | + android:label="@string/app_name" > | ||
55 | + <intent-filter> | ||
56 | + <action android:name="android.intent.action.MAIN" /> | ||
57 | + | ||
58 | + <category android:name="android.intent.category.LAUNCHER" /> | ||
59 | + </intent-filter> | ||
60 | + </activity> | ||
61 | + | ||
62 | + <!-- P7725 ACTIVITY,SERVER,RECEIVER START --> | ||
63 | + | ||
64 | + <activity | ||
65 | + android:name="com.platform7725.gamesdk.CustomerServiceActivity" | ||
66 | + android:configChanges="keyboardHidden|orientation" | ||
67 | + android:theme="@style/p7725_full_screen" /> | ||
68 | + <activity | ||
69 | + android:name="com.platform7725.gamesdk.DepositsActivity" | ||
70 | + android:configChanges="keyboardHidden|orientation" | ||
71 | + android:theme="@style/p7725_full_screen" | ||
72 | + android:windowSoftInputMode="adjustResize" /> | ||
73 | + <activity | ||
74 | + android:name="com.platform7725.gamesdk.LoginProActivity" | ||
75 | + android:theme="@style/LoginPro" /> | ||
76 | + <activity | ||
77 | + android:name="com.platform7725.gamesdk.LoginActivity" | ||
78 | + android:theme="@style/Login" /> | ||
79 | + <activity | ||
80 | + android:name="com.platform7725.gamesdk.UserListActivity" | ||
81 | + android:theme="@style/UserList" /> | ||
82 | + <activity | ||
83 | + android:name="com.platform7725.gamesdk.ExitActivity" | ||
84 | + android:theme="@style/Login" /> | ||
85 | + <activity | ||
86 | + android:name="com.platform7725.gamesdk.ShareByFacebookActivity" | ||
87 | + android:theme="@style/UserList" /> | ||
88 | + <activity | ||
89 | + android:name="com.platform7725.gamesdk.ShareByLINEActivity" | ||
90 | + android:configChanges="keyboardHidden|orientation" | ||
91 | + android:theme="@style/p7725_full_screen" /> | ||
92 | + <activity | ||
93 | + android:name="com.platform7725.gamesdk.ClauseActivity" | ||
94 | + android:configChanges="keyboardHidden|orientation" | ||
95 | + android:theme="@style/p7725_full_screen" /> | ||
96 | + | ||
97 | + <receiver android:name="com.platform7725.gamesdk.receive.OtopGameReceiver" > | ||
98 | + <intent-filter> | ||
99 | + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | ||
100 | + <action android:name="android.intent.action.BATTERY_CHANGED" /> | ||
101 | + </intent-filter> | ||
102 | + </receiver> | ||
103 | + <receiver | ||
104 | + android:name="com.appsflyer.MultipleInstallBroadcastReceiver" | ||
105 | + android:exported="true" > | ||
106 | + <intent-filter> | ||
107 | + <action android:name="com.android.vending.INSTALL_REFERRER" /> | ||
108 | + </intent-filter> | ||
109 | + </receiver> | ||
110 | + <receiver | ||
111 | + android:name="com.platform7725.gamesdk.InstallReceiver" | ||
112 | + android:enabled="true" | ||
113 | + android:exported="true" > | ||
114 | + <intent-filter> | ||
115 | + <action android:name="com.android.vending.INSTALL_REFERRER" /> | ||
116 | + </intent-filter> | ||
117 | + </receiver> | ||
118 | + <receiver | ||
119 | + android:name="com.mobileapptracker.Tracker" | ||
120 | + android:exported="true" > | ||
121 | + <intent-filter> | ||
122 | + <action android:name="com.android.vending.INSTALL_REFERRER" /> | ||
123 | + </intent-filter> | ||
124 | + </receiver> | ||
125 | + | ||
126 | + <service android:name="com.kuadcpa.OpenUDID_service" > | ||
127 | + <intent-filter> | ||
128 | + <action android:name="org.openudid.GETUDID" /> | ||
129 | + </intent-filter> | ||
130 | + </service> | ||
131 | + <service android:name="com.platform7725.gamesdk.service.OtopGameService" > | ||
132 | + <intent-filter> | ||
133 | + <action android:name="com.platform7725.gamesdk.service.NOTICES_FILTER" /> | ||
134 | + </intent-filter> | ||
135 | + </service> | ||
136 | + | ||
137 | + | ||
138 | + <activity | ||
139 | + android:name="com.facebook.LoginActivity" | ||
140 | + android:label="@string/com_7725_app_name" | ||
141 | + android:theme="@android:style/Theme.Translucent.NoTitleBar" /> | ||
142 | + | ||
143 | + <meta-data | ||
144 | + android:name="com.facebook.sdk.ApplicationId" | ||
145 | + android:value="@string/com_7725_facebookSdkApplicationId" /> | ||
146 | + <meta-data | ||
147 | + android:name="com_7725_payment_flag" | ||
148 | + android:value="gash" /> | ||
149 | + <meta-data android:name="com.google.android.gms.version" | ||
150 | + android:value="@integer/google_play_services_version" /> | ||
151 | + <!-- P7725 ACTIVITY、SERVER、RECEIVER END. --> | ||
152 | + | ||
153 | + | ||
154 | + <!-- 下載相關的 Begin --> | ||
155 | + <activity | ||
156 | + android:name="com.library.providers.downloads.ui.DownloadListActivity" | ||
157 | + android:launchMode="singleTask" | ||
158 | + android:theme="@style/p7725_full_screen" /> | ||
159 | + <activity | ||
160 | + android:name="com.p7725.downloadmanager.DownloadManagerActivity" | ||
161 | + android:theme="@style/p7725_full_screen" /> | ||
162 | + | ||
163 | + <provider | ||
164 | + android:name="com.library.providers.downloads.DownloadProvider" | ||
165 | + android:authorities="com.platform7725.gamesdk" | ||
166 | + android:exported="false" /> | ||
167 | + | ||
168 | + <service android:name="com.library.providers.downloads.DownloadService" /> | ||
169 | + | ||
170 | + <receiver | ||
171 | + android:name="com.library.providers.downloads.DownloadReceiver" | ||
172 | + android:exported="false" > | ||
173 | + <intent-filter> | ||
174 | + <action android:name="android.intent.action.BOOT_COMPLETED" /> | ||
175 | + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | ||
176 | + </intent-filter> | ||
177 | + </receiver> | ||
178 | + <!-- 下載相關的 End --> | ||
179 | + | ||
180 | + </application> | ||
181 | + | ||
182 | +</manifest> |
1 | +<!DOCTYPE HTML> | ||
2 | +<html> | ||
3 | +<head> | ||
4 | +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
5 | +<title>error</title> | ||
6 | +<style type="text/css"> | ||
7 | +section{ width:100%; margin:0 auto; max-width:550px;} | ||
8 | +section img { max-width:100%; width:100%; height:auto; margin:15% auto} | ||
9 | +section a{ float:right; width:10%} | ||
10 | +</style> | ||
11 | + | ||
12 | +</head> | ||
13 | + | ||
14 | +<body> | ||
15 | + <section> | ||
16 | + <a href="#" title="" onClick="android.closeButton();"><img src="images/close1.png"></a> | ||
17 | + <img src="images/error1.png" /> | ||
18 | + </section> | ||
19 | + | ||
20 | +</body> | ||
21 | +</html> |

3.39 KB

28.9 KB
1 | +getSdkRuntimeConf_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=getSdkRuntimeConf&pvc=3 | ||
2 | +heartbeatReporting_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=heartbeatReporting&pvc=3 | ||
3 | +bindingCheck_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=bindingCheck&pvc=3 | ||
4 | +setRole_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=setRole&pvc=3 | ||
5 | +setServer_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=setServer&pvc=3 | ||
6 | +openid_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=openLogin&pvc=3 | ||
7 | +login_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=login&pvc=3 | ||
8 | +register_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=regist&pvc=3 | ||
9 | +register_quick_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=autoRegist&pvc=3 | ||
10 | +login_auto_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=autoLogin&pvc=3 | ||
11 | +change_password_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=changePassword&pvc=3 | ||
12 | +change_password_auto_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=changeAutoPassword&pvc=3 | ||
13 | +forget_password_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=forgetPassword&pvc=3 | ||
14 | +ignore_change_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=updatePasswordStatus&pvc=3 | ||
15 | +billing_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=billingOrderComfirm&pvc=3 | ||
16 | +billingCancelOrder_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=billingCancelOrder&pvc=3 | ||
17 | +deposit_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=payment&pvc=3 | ||
18 | +ads_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?a=adTracking&pvc=3 | ||
19 | +clock_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=getAlarmClockAdv&pvc=3&game= | ||
20 | +customer_url=http://sdk.easygame.hk/mgame_sdk_api/?m=service&pvc=3 | ||
21 | +deposit_head_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=instruct&pvc=3 | ||
22 | +agreement_url=http://sdk.easygame.hk/mgame_sdk_api/?a=clause&pvc=3&game= | ||
23 | +api_time_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?a=getTimestamp&pvc=3&game= | ||
24 | +webLogin_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=openLoginByWeb&pvc=3 | ||
25 | +binding_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=bindingAutoRegs&pvc=3 | ||
26 | +deposits_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=payRecord&pvc=3 | ||
27 | +game_list_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=games&pvc=3 | ||
28 | +game_detail_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=gameInfo&pvc=3 | ||
29 | +ad_list_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=advList&pvc=3 | ||
30 | +binding_account_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=bindingAccount&pvc=3 | ||
31 | +networkerror_url=http://sdk.easygame.hk/mgame_sdk_api/index.php?m=index&a=catchNetworkError&pvc=3 | ||
... | \ No newline at end of file | ... | \ No newline at end of file |

50.2 KB
1 | +doc=../../../docs/reference |
1 | +# To enable ProGuard in your project, edit project.properties | ||
2 | +# to define the proguard.config property as described in that file. | ||
3 | +# | ||
4 | +# Add project specific ProGuard rules here. | ||
5 | +# By default, the flags in this file are appended to flags specified | ||
6 | +# in ${sdk.dir}/tools/proguard/proguard-android.txt | ||
7 | +# You can edit the include path and order by changing the ProGuard | ||
8 | +# include property in project.properties. | ||
9 | +# | ||
10 | +# For more details, see | ||
11 | +# http://developer.android.com/guide/developing/tools/proguard.html | ||
12 | + | ||
13 | +# Add any project specific keep options here: | ||
14 | + | ||
15 | +# If your project uses WebView with JS, uncomment the following | ||
16 | +# and specify the fully qualified class name to the JavaScript interface | ||
17 | +# class: | ||
18 | +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
19 | +# public *; | ||
20 | +#} |
1 | +# This file is automatically generated by Android Tools. | ||
2 | +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! | ||
3 | +# | ||
4 | +# This file must be checked in Version Control Systems. | ||
5 | +# | ||
6 | +# To customize properties used by the Ant build system edit | ||
7 | +# "ant.properties", and override values to adapt the script to your | ||
8 | +# project structure. | ||
9 | +# | ||
10 | +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): | ||
11 | +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt | ||
12 | + | ||
13 | +# Project target. | ||
14 | +target=android-19 |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<!-- | ||
3 | +** Copyright 2010, Google Inc. | ||
4 | +** | ||
5 | +** Licensed under the Apache License, Version 2.0 (the "License"); | ||
6 | +** you may not use this file except in compliance with the License. | ||
7 | +** You may obtain a copy of the License at | ||
8 | +** | ||
9 | +** http://www.apache.org/licenses/LICENSE-2.0 | ||
10 | +** | ||
11 | +** Unless required by applicable law or agreed to in writing, software | ||
12 | +** distributed under the License is distributed on an "AS IS" BASIS, | ||
13 | +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
14 | +** See the License for the specific language governing permissions and | ||
15 | +** limitations under the License. | ||
16 | +*/ | ||
17 | +--> | ||
18 | + | ||
19 | +<set xmlns:android="http://schemas.android.com/apk/res/android" > | ||
20 | + <translate | ||
21 | + android:interpolator="@android:anim/decelerate_interpolator" | ||
22 | + android:fromYDelta="+12%p" | ||
23 | + android:toYDelta="0" | ||
24 | + android:duration="300" /> | ||
25 | +</set> |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<!-- | ||
3 | +** Copyright 2010, Google Inc. | ||
4 | +** | ||
5 | +** Licensed under the Apache License, Version 2.0 (the "License"); | ||
6 | +** you may not use this file except in compliance with the License. | ||
7 | +** You may obtain a copy of the License at | ||
8 | +** | ||
9 | +** http://www.apache.org/licenses/LICENSE-2.0 | ||
10 | +** | ||
11 | +** Unless required by applicable law or agreed to in writing, software | ||
12 | +** distributed under the License is distributed on an "AS IS" BASIS, | ||
13 | +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
14 | +** See the License for the specific language governing permissions and | ||
15 | +** limitations under the License. | ||
16 | +*/ | ||
17 | +--> | ||
18 | + | ||
19 | +<set xmlns:android="http://schemas.android.com/apk/res/android" > | ||
20 | + <translate | ||
21 | + android:interpolator="@android:anim/decelerate_interpolator" | ||
22 | + android:fromYDelta="0" | ||
23 | + android:toYDelta="+12%p" | ||
24 | + android:duration="300" /> | ||
25 | +</set> |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<alpha xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:interpolator="@android:anim/accelerate_interpolator" | ||
4 | + android:fromAlpha="0.0" android:toAlpha="1.0" | ||
5 | + android:duration="300" /> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<alpha xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:interpolator="@android:anim/accelerate_interpolator" | ||
4 | + android:fromAlpha="1.0" android:toAlpha="0.0" | ||
5 | + android:duration="300" /> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<set xmlns:android="http://schemas.android.com/apk/res/android" > | ||
3 | + | ||
4 | + <translate | ||
5 | + android:duration="1500" | ||
6 | + android:fromXDelta="100%p" | ||
7 | + android:toXDelta="-100%p" /> | ||
8 | + | ||
9 | + <alpha | ||
10 | + android:duration="1500" | ||
11 | + android:fromAlpha="0.1" | ||
12 | + android:toAlpha="1.0" /> | ||
13 | + | ||
14 | +</set> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |

15.9 KB

600 Bytes

554 Bytes

416 Bytes

549 Bytes

733 Bytes

624 Bytes

520 Bytes

385 Bytes

2.91 KB

2.89 KB

2.82 KB

322 Bytes

5.13 KB

255 Bytes

1.16 KB

76 Bytes

153 Bytes

1.55 KB

1.76 KB

1.55 KB

9.85 KB

158 Bytes

151 Bytes

158 Bytes

171 Bytes

557 Bytes

813 Bytes

358 Bytes

15.9 KB

14.8 KB

14.7 KB

459 Bytes

16.5 KB

14.9 KB

14.7 KB

459 Bytes

2.12 KB

16.2 KB

8.26 KB

25.2 KB

27.6 KB

27.5 KB

12 KB

12.7 KB

3.83 KB

2.59 KB

2.3 KB

4.08 KB

549 Bytes

491 Bytes

631 Bytes

764 Bytes

330 Bytes

6.09 KB

5.19 KB

8.39 KB

8.03 KB

8.46 KB

7.27 KB

5.23 KB

5.4 KB

7.36 KB

6.75 KB

683 Bytes

3.77 KB

3.38 KB

705 Bytes

759 Bytes

862 Bytes

3.66 KB

4.6 KB

26.1 KB

26.1 KB

25.4 KB

26.4 KB

823 Bytes

531 Bytes

22.4 KB

21.7 KB

20.1 KB

1.02 KB

954 Bytes

44.5 KB

3.88 KB

3.81 KB

2.2 KB

429 Bytes

426 Bytes

22.2 KB

20.1 KB

1.79 KB

2.06 KB

25.1 KB

25.1 KB

20.4 KB

20.3 KB

20 KB

19.8 KB

18.4 KB

15.5 KB

18.4 KB

15.5 KB

19.7 KB

16.7 KB

88 Bytes

4.27 KB

3.34 KB

5.66 KB

3.64 KB

6.62 KB

5.57 KB

4.45 KB

3.22 KB

2.41 KB

19.5 KB

19.5 KB

44.5 KB

18.4 KB

15.5 KB

18.4 KB

15.5 KB

19.7 KB

16.7 KB

19.5 KB

17.8 KB

19.5 KB

17.8 KB

24.7 KB

24.7 KB

1.05 KB

20.1 KB

25.5 KB

20.1 KB

20.1 KB

22.9 KB

21.7 KB

27.6 KB

28.7 KB

2.28 KB

2.89 KB

3.29 KB

2.91 KB

4.77 KB

3.43 KB

5.28 KB

222 Bytes

175 Bytes

659 Bytes

756 Bytes

3.71 KB

5.02 KB

383 Bytes

380 Bytes

323 Bytes

1.09 KB

510 Bytes

8.09 KB

805 Bytes

721 Bytes

548 Bytes

841 Bytes

714 Bytes

495 Bytes

5.42 KB

1.18 KB

12.6 KB

827 Bytes

26.1 KB

383 Bytes

380 Bytes

323 Bytes

549 Bytes

733 Bytes

462 Bytes

381 Bytes

303 Bytes

4.3 KB

226 Bytes

1.09 KB

153 Bytes

1.58 KB

1.76 KB

1.58 KB

6.27 KB

171 Bytes

813 Bytes

358 Bytes

3.85 KB

3.7 KB

7.48 KB

1.75 KB

1.73 KB

3.39 KB

28.9 KB

15.9 KB

600 Bytes

554 Bytes

416 Bytes

549 Bytes

733 Bytes

624 Bytes

520 Bytes

385 Bytes

2.91 KB

2.91 KB

2.89 KB

2.82 KB

322 Bytes

5.13 KB

255 Bytes

1.16 KB

76 Bytes

153 Bytes

1.55 KB

1.76 KB

1.55 KB

9.85 KB

158 Bytes

151 Bytes

158 Bytes

171 Bytes

557 Bytes

813 Bytes

358 Bytes

3.85 KB

3.7 KB

15.9 KB

14.8 KB

14.7 KB

459 Bytes

16.5 KB

14.9 KB

14.7 KB

459 Bytes

2.12 KB

16.2 KB

8.26 KB

25.2 KB

27.6 KB

27.5 KB

12 KB

12.7 KB

3.83 KB

2.59 KB

2.3 KB

4.08 KB

549 Bytes

491 Bytes

631 Bytes

764 Bytes

330 Bytes

6.09 KB

5.19 KB

8.39 KB

8.03 KB

8.46 KB

7.27 KB

5.23 KB

5.4 KB

7.36 KB

6.75 KB

683 Bytes

3.77 KB

3.38 KB

705 Bytes

759 Bytes

862 Bytes

3.66 KB

4.6 KB

26.1 KB

26.1 KB

25.4 KB

26.4 KB

823 Bytes

531 Bytes

22.4 KB

21.7 KB

20.1 KB

1.02 KB

954 Bytes

44.5 KB

3.88 KB

3.81 KB

2.2 KB

429 Bytes

426 Bytes

22.2 KB

20.1 KB

1.79 KB

2.06 KB

25.1 KB

25.1 KB

20.4 KB

20.3 KB

20 KB

19.8 KB

18.4 KB

15.5 KB

18.4 KB

15.5 KB

19.7 KB

16.7 KB

88 Bytes

4.27 KB

3.34 KB

5.66 KB

3.64 KB

6.62 KB

5.57 KB

4.45 KB

3.22 KB

2.41 KB

19.5 KB

19.5 KB

44.5 KB

18.4 KB

15.5 KB

18.4 KB

15.5 KB

19.7 KB

16.7 KB

19.5 KB

17.8 KB

19.5 KB

17.8 KB

24.7 KB

24.7 KB

1.05 KB

20.1 KB

25.5 KB

20.1 KB

20.1 KB

22.9 KB

21.7 KB

27.6 KB

28.7 KB

2.28 KB

2.89 KB

2.42 KB

3.29 KB

2.91 KB

4.77 KB

3.43 KB

5.28 KB

222 Bytes

175 Bytes

659 Bytes

756 Bytes

3.71 KB

5.02 KB

383 Bytes

380 Bytes

323 Bytes

1.09 KB

510 Bytes

8.09 KB

805 Bytes

721 Bytes

548 Bytes

841 Bytes

714 Bytes

495 Bytes

5.42 KB

1.18 KB

12.6 KB

827 Bytes

26.1 KB

383 Bytes

380 Bytes

323 Bytes

549 Bytes

733 Bytes

462 Bytes

381 Bytes

303 Bytes

4.3 KB

226 Bytes

1.09 KB

153 Bytes

1.58 KB

1.76 KB

1.58 KB

6.27 KB

171 Bytes

813 Bytes

358 Bytes

3.85 KB

3.7 KB

1.75 KB

1.73 KB
-
Please register or login to post a comment