public void onClick(View view) {
popupWindow1.dismiss();
}
});
Button btn_one = (Button) popupWindowView.findViewById(R.id.tvTwo);
btn_one.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
tv_buy.setText("已购买");
rl_select_car.setVisibility(View.VISIBLE);
// Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(
// Environment.getExternalStorageDirectory(), "androidapp.jpg")));
// ((Activity) mContext).startActivityForResult(intent, 2);
popupWindow1.dismiss();
}
});
Button btn_two = (Button) popupWindowView.findViewById(R.id.tvThree);
btn_two.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
tv_buy.setText("未购买");
rl_select_car.setVisibility(View.GONE);
// Intent intent = new Intent(Intent.ACTION_PICK, null);
// intent.setDataAndType(
// MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
// "image/*");
// startActivityForResult(intent, 1);
popupWindow1.dismiss();
}
});
popupWindow1.showAtLocation(cancleButton, Gravity.CENTER, 0, 0);
break;
case R.id.onclick:
@ -542,29 +392,25 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
dialog.show();
}
break;
case R.id.go_certificate:
// 1 去认证 2审核中 3认证车主
if (certificateStatus == 0) {
getCarOwnerCertificateList(true);
} else if (certificateStatus == 1) {
startActivity(new Intent(getApplication(), CarOwnerCertificateActivity.class));
}
break;
}
}
private boolean checkText() {
String nickName = et_nickName.getText().toString().trim();
String isBuy = tv_buy.getText().toString().trim();
String carType = et_che.getText().toString().trim();
if (TextUtils.isEmpty(nickName)) {
Toast.makeText(this, "请输入您的昵称", Toast.LENGTH_SHORT).show();
return false;
}
if (TextUtils.isEmpty(isBuy)) {
Toast.makeText(this, "请选择您是否购买了新能源汽车", Toast.LENGTH_SHORT).show();
return false;
}
if (isBuy.equals("已购买")) {
if (TextUtils.isEmpty(carType)) {
Toast.makeText(this, "请选择您购买的车型", Toast.LENGTH_SHORT).show();
return false;
}
}
return true;
}
@ -659,15 +505,6 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
String token = String.valueOf(updatetime);
Log.i("token---", token);
if (tv_buy.getText().toString().equals("未购买")) {
havecar = "待购";
} else {
if (car_brand != null && null != car_type) {
havecar = car_brand + "$$" + car_type;
}
}
nocar = "";
try {
if (null != photo) {
Bitmap bm = imageZoom(photo);
@ -683,10 +520,6 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
par.put("username", et_realName.getText().toString());
par.put("nickname", et_nickName.getText().toString());
par.put("sex", sex);
par.put("chexing", havecar);
par.put("yichexing", nocar);
Log.e("chexing", havecar);
Log.e("yichexing", nocar);
try {
par.put("token", DES3.encode(token));
@ -842,14 +675,6 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
switch (requestCode) {
// 如果是直接从相册获取
case REQUSET:
select_pinpai = data.getStringExtra("pinpai");
select_chexing = data.getStringExtra("chexing");
et_che.setText(select_pinpai + " " + select_chexing);
car_brand = select_pinpai;
car_type = select_chexing;
break;
case 1:
if (SDCardUtil.hasSdcard()) {
cropImageUri = Uri.fromFile(fileCropUri);
@ -916,8 +741,6 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
matrix.postScale(scaleWidth, scaleHeight);
Bitmap bitmap = Bitmap.createBitmap(bgimage, 0, 0, (int) width,
(int) height, matrix, true);
// iv_2.setImageBitmap(bitmap);
// tv_2.setText(bitmap.getRowBytes() * bitmap.getHeight() + "");
return bitmap;
}
@ -1040,66 +863,13 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
}
/*
*bitmap转base64
*/
// public static Bitmap base64ToBitmap(String base64String){
// byte[] bytes = Base64.decode(base64String);
// Bitmap bitmap= BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
// return bitmap;
// }
Handler handle = new Handler() {
public void handleMessage(Message msg) {
switch (msg.what) {
case StatusConstants.REQUEST_WHAT_SUCCESS:
LogUtils.getLogger().e(msg.obj.toString());
// Toast.makeText(UserInfoActivity.this, msg.obj.toString(), 1).show();
break;
case 1:
//
// Gson g = new Gson();
// pr.clear();
// pr = g.fromJson(msg.obj.toString(), new TypeToken<List<Province>>() {
// }.getType());
// String s=msg.obj.toString();
// JSONObject
// Province p= new Province(s.get, code, cities)
// pr.add(arg0)
// spinner();
// if (!chexing.equals("") && yichexing.equals("")){
// String[] strarray=chexing.split("\\$\\$");
//
// if(strarray.length>1){
// name0=strarray[0];//江淮
// name1=strarray[1];//iEV3
// }
// Log.e("name0+name1",name0+name1);
// et_che.setText(name0 + " - " + name1);
// Log.e(TAG, "handleMessage: "+ et_che.getText().toString());
// if (et_che.getText().toString().equals(" - ")){
// tv_buy.setText("未购买");
// rl_select_car.setVisibility(View.GONE);
// }else {
// tv_buy.setText("已购买");
// rl_select_car.setVisibility(View.VISIBLE);
// }
// car_brand = name0;
// car_type = name1;
// }else if(chexing.equals("") && !yichexing.equals("")){
// String[] strarray=yichexing.split("\\$\\$");
//
// if(strarray.length>1){
// name0=strarray[0];//江淮
// name1=strarray[1];//iEV3
// }
// Log.e("name0+name1",name0+name1);
// et_che.setText(name0 + " - " + name1);
// car_brand = name0;
// car_type = name1;
// }
try {
JSONArray jsonary = new JSONArray(msg.obj.toString());
for (int i = 0; i < jsonary.length(); i++) {
@ -1124,24 +894,12 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
pr.remove(prov);
pr.add(prov);
// spinnerProvince.setSelection(de);
// spinnerCity
}
} catch (JSONException e) {
e.printStackTrace();
}
// pr =(List<Province>) JsonUtils.parseToObjectBean(msg.obj.toString(), Province.class);
// Log.e("pe", pr.size()+"");
// Log.e("pe", pr.get(0).getCities().size()+"");
// Log.e("pe", pr.get(1).getCities().size()+"");
// Log.e("pe", pr.get(2).getCities().size()+"");
// Log.e("pe", pr.get(3).getCities().size()+"");
// Log.e("pe", pr.size()+"");
// Log.e("pe", pr.size()+"");
//
ArrayAdapter<Province> provinceAdapter = new ArrayAdapter<Province>(UserInfoActivity.this, R.layout.simple_spinner_item, pr);
spinnerProvince.setAdapter(provinceAdapter);
provinceAdapter.notifyDataSetChanged();
@ -1166,38 +924,15 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
if (rtnCode.equals("01")) {
dialog.cancel();
// SharedPreferences mySharedPreferences= getSharedPreferences("userInfo",
// Activity.MODE_PRIVATE);
// SharedPreferences.Editor editor = mySharedPreferences.edit();
// editor.putString("nickname", et_nickName.getText().toString());
// editor.putString("username", et_realName.getText().toString());
// editor.putString("sex", sex);
// editor.putString("chexing", havecar);
// editor.putString("yichexing", nocar);
//
//// String data = JsonUtils.getKeyResult(msg.obj.toString(),"data");
//// String userid = JsonUtils.getKeyResult(data,"userid");
//// String username = JsonUtils.getKeyResult(data,"username");
//// String userpic = JsonUtils.getKeyResult(data,"userpic");
//// String nickname = JsonUtils.getKeyResult(data,"nickname");
//// LogUtils.getLogger().e(userid+"---"+username+"---"+userpic+"---"+nickname);
//// Log.e(TAG, "handleMessage: "+userid+"---"+username+"---"+userpic+"---"+nickname );
//
// editor.commit();
String picurl = JsonUtils.getKeyResult(msg.obj.toString(), "picurl");
MainApplication.userIcon = MainApplication.url + picurl;
ProfileManager.getInstance().setUsericon(getApplicationContext(), MainApplication.userIcon);
MainApplication.userCar = havecar;
ProfileManager.getInstance().setUsercar(getApplicationContext(), havecar);
MainApplication.userNickname = et_nickName.getText().toString();
ProfileManager.getInstance().setNickname(getApplicationContext(), et_nickName.getText().toString());
Intent intent = new Intent();
intent.putExtra("nickname", et_nickName.getText().toString().trim());
intent.putExtra("userphoto", ss);
setResult(RESULT_SUCCESS, intent);
// MainApplication.userIcon="V";
// ProfileManager.getInstance().setUsericon(UserInfoActivity.this, "V");
// ImageTools.saveImageToGallery(getApplicationContext(),photo,"user_icon");
String plusScore = jsonObject.getString("plusScore");
if (!plusScore.equals("")) {
@ -1209,12 +944,6 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
rl_point.setVisibility(View.GONE);
}
}, 1000);
// if (photo != null) {
// photo.recycle();
// photo = null;
//// bitmap.recycle();
//
// }
new Handler().postDelayed(new Runnable() {
public void run() {
@ -1223,11 +952,6 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
}, 1500);
} else {
ToastUtil.showToast(UserInfoActivity.this, "保存成功", Toast.LENGTH_SHORT);
// if (photo != null) {
// photo.recycle();
// photo = null;
//
// }
UserInfoActivity.this.finish();
}
@ -1241,10 +965,7 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
} catch (JSONException e) {
e.printStackTrace();
}
// Toast.makeText(UserInfoActivity.this, msg.obj.toString(), Toast.LENGTH_SHORT).show();
break;
case 5:
Toast.makeText(UserInfoActivity.this, msg.obj.toString(), Toast.LENGTH_SHORT).show();
break;
@ -1314,6 +1035,7 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
protected void onResume() {
super.onResume();
MobclickAgent.onResume(this);
getCarOwnerCertificateList(false);
}
@Override
@ -1326,4 +1048,75 @@ public class UserInfoActivity extends Activity implements View.OnClickListener,
protected void onDestroy() {
super.onDestroy();
}
private void getCarOwnerCertificateList(Boolean showLoading) {
if (showLoading) {
loadDialog.show();
}
String url = MainApplication.url + "/zhannew/basic/web/index.php/car/my?userid=" + MainApplication.userId;
OkHttpUtils.get().url(url).build().connTimeOut(6000).readTimeOut(6000).execute(new StringCallback() {
@Override
public void onError(Call call, Exception e) {
e.printStackTrace();
loadDialog.dismiss();
Toast.makeText(getApplicationContext(), e.getLocalizedMessage(), Toast.LENGTH_SHORT).show();
go_title.setText("去认证车主(获得充电优惠)");
go_desc.setText("");
go_cursor.setVisibility(View.VISIBLE);
}
@Override
public void onResponse(String response) {
loadDialog.dismiss();
String rtnCode = JsonUtils.getKeyResult(response, "rtnCode");
if ("01".equals(rtnCode)) {
String data = JsonUtils.getKeyResult(response, "data");
List<CarOwnerCertificateBean> list = JsonUtils.parseToObjectList(data, CarOwnerCertificateBean.class);
CarSeriesEntity carSeriesEntity = null;
// 1 去认证 2审核中 3认证车主
if (list.size() == 0) {
certificateStatus = 1;
} else {
certificateStatus = 2;
for (CarOwnerCertificateBean bean : list) {
if (bean.getStatus() == 1 && bean.getMain() == 1) {
certificateStatus = 3;
Gson gson = new Gson();
carSeriesEntity = gson.fromJson(bean.getChexing(), CarSeriesEntity.class);
break;
}
}
}
if (certificateStatus == 2) {
go_title.setText("认证车主");
go_desc.setText("审核中");
go_cursor.setVisibility(View.GONE);
} else if (certificateStatus == 3) {
go_title.setText("认证车主");
if (carSeriesEntity != null) {
go_desc.setText(carSeriesEntity.getSeriesName());
}
go_cursor.setVisibility(View.GONE);
} else {
go_title.setText("去认证车主(获得充电优惠)");
go_desc.setText("");
go_cursor.setVisibility(View.VISIBLE);
}
if (certificateStatus == 1) {
startActivity(new Intent(getApplication(), CarOwnerCertificateActivity.class));
}
} else {
String rtnMsg = JsonUtils.getKeyResult(response, "rtnMsg");
Toast.makeText(getApplicationContext(), rtnMsg, Toast.LENGTH_SHORT).show();
go_title.setText("去认证车主(获得充电优惠)");
go_desc.setText("");
go_cursor.setVisibility(View.VISIBLE);
}
}
});
}
}
|
||
49 | 49 |
|
50 | 50 |
|
51 | 51 |
|
52 |
|
|
53 |
|
|
52 |
|
|
54 | 53 |
|
55 | 54 |
|
56 | 55 |
|
|
||
75 | 75 |
|
76 | 76 |
|
77 | 77 |
|
78 |
|
|
78 |
|
|
79 |
|
|
80 |
|
|
81 |
|
|
79 | 82 |
|
80 | 83 |
|
81 |
|
|
84 |
|
|
85 |
|
|
82 | 86 |
|
83 | 87 |
|
84 | 88 |
|
|
||
13 | 13 |
|
14 | 14 |
|
15 | 15 |
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 | 16 |
|
28 | 17 |
|
29 | 18 |
|
|
||
1 | 1 |
|
2 | 2 |
|
3 |
|
|
3 | 4 |
|
4 | 5 |
|
5 |
|
|
6 | 6 |
|
7 |
|
|
7 |
|
|
8 |
|
|
8 | 9 |
|
9 | 10 |
|
10 | 11 |
|
|
||
17 | 18 |
|
18 | 19 |
|
19 | 20 |
|
20 |
|
|
21 | 21 |
|
22 |
|
|
23 | 22 |
|
23 |
|
|
24 |
|
|
24 | 25 |
|
25 | 26 |
|
26 | 27 |
|
|
||
36 | 37 |
|
37 | 38 |
|
38 | 39 |
|
39 |
|
|
40 |
|
|
41 |
|
|
42 |
|
|
43 |
|
|
40 | 44 |
|
41 |
|
|
42 | 45 |
|
43 |
|
|
44 |
|
|
46 |
|
|
47 |
|
|
45 | 48 |
|
46 |
|
|
47 | 49 |
|
48 |
|
|
49 |
|
|
50 |
|
|
50 |
|
|
51 |
|
|
51 | 52 |
|
52 | 53 |
|
53 | 54 |
|
|
||
70 | 71 |
|
71 | 72 |
|
72 | 73 |
|
74 |
|
|
73 | 75 |
|
74 | 76 |
|
75 | 77 |
|
78 |
|
|
79 |
|
|
76 | 80 |
|
77 | 81 |
|
78 |
|
|
79 |
|
|
80 |
|
|
82 |
|
|
81 | 83 |
|
82 | 84 |
|
83 | 85 |
|
84 | 86 |
|
85 | 87 |
|
86 |
|
|
87 |
|
|
88 |
|
|
89 | 88 |
|
89 |
|
|
90 |
|
|
91 |
|
|
90 | 92 |
|
91 |
|
|
93 |
|
|
94 |
|
|
92 | 95 |
|
93 | 96 |
|
94 | 97 |
|
95 |
|
|
96 |
|
|
97 |
|
|
98 | 98 |
|
99 |
|
|
100 |
|
|
101 |
|
|
99 | 102 |
|
100 |
|
|
101 |
|
|
103 |
|
|
102 | 104 |
|
103 | 105 |
|
104 | 106 |
|
107 |
|
|
105 | 108 |
|
106 | 109 |
|
107 | 110 |
|
|
||
112 | 115 |
|
113 | 116 |
|
114 | 117 |
|
118 |
|
|
115 | 119 |
|
116 | 120 |
|
117 | 121 |
|
122 |
|
|
123 |
|
|
118 | 124 |
|
119 | 125 |
|
120 |
|
|
121 |
|
|
122 |
|
|
126 |
|
|
123 | 127 |
|
124 | 128 |
|
125 | 129 |
|
126 | 130 |
|
127 | 131 |
|
128 |
|
|
129 |
|
|
132 |
|
|
133 |
|
|
130 | 134 |
|
135 |
|
|
136 |
|
|
137 |
|
|
138 |
|
|
131 | 139 |
|
140 |
|
|
141 |
|
|
132 | 142 |
|
133 |
|
|
134 | 143 |
|
135 |
|
|
136 |
|
|
137 |
|
|
138 |
|
|
139 |
|
|
140 |
|
|
141 |
|
|
144 |
|
|
145 |
|
|
142 | 146 |
|
143 | 147 |
|
144 | 148 |
|
145 | 149 |
|
146 | 150 |
|
147 | 151 |
|
148 |
|
|
149 | 152 |
|
150 |
|
|
151 |
|
|
153 |
|
|
154 |
|
|
152 | 155 |
|
153 | 156 |
|
154 | 157 |
|
155 |
|
|
158 |
|
|
156 | 159 |
|
157 |
|
|
158 | 160 |
|
161 |
|
|
159 | 162 |
|
163 |
|
|
160 | 164 |
|
165 |
|
|
161 | 166 |
|
162 | 167 |
|
163 |
|
|
168 |
|
|
169 |
|
|
164 | 170 |
|
165 | 171 |
|
166 |
|
|
167 |
|
|
172 |
|
|
168 | 173 |
|
169 | 174 |
|
170 |
|
|
175 |
|
|
171 | 176 |
|
172 | 177 |
|
178 |
|
|
179 |
|
|
180 |
|
|
181 |
|
|
182 |
|
|
173 | 183 |
|
174 |
|
|
175 |
|
|
176 | 184 |
|
177 | 185 |
|
178 |
|
|
186 |
|
|
179 | 187 |
|
180 |
|
|
181 |
|
|
182 |
|
|
183 |
|
|
184 |
|
|
188 |
|
|
189 |
|
|
185 | 190 |
|
186 | 191 |
|
192 |
|
|
187 | 193 |
|
188 | 194 |
|
189 |
|
|
190 |
|
|
191 |
|
|
192 | 195 |
|
196 |
|
|
197 |
|
|
193 | 198 |
|
194 |
|
|
199 |
|
|
195 | 200 |
|
196 | 201 |
|
197 | 202 |
|
198 | 203 |
|
199 | 204 |
|
200 | 205 |
|
201 |
|
|
202 | 206 |
|
203 |
|
|
204 |
|
|
205 |
|
|
206 |
|
|
207 |
|
|
208 |
|
|
209 |
|
|
210 |
|
|
211 |
|
|
212 |
|
|
213 |
|
|
214 |
|
|
215 |
|
|
216 |
|
|
217 |
|
|
218 |
|
|
219 |
|
|
220 |
|
|
221 |
|
|
222 |
|
|
223 |
|
|
224 |
|
|
225 |
|
|
226 |
|
|
227 |
|
|
228 |
|
|
229 |
|
|
230 |
|
|
231 |
|
|
232 |
|
|
233 |
|
|
234 |
|
|
235 |
|
|
236 |
|
|
237 |
|
|
238 |
|
|
239 |
|
|
240 |
|
|
241 |
|
|
242 |
|
|
243 |
|
|
244 |
|
|
245 |
|
|
246 |
|
|
247 |
|
|
248 |
|
|
249 |
|
|
207 |
|
|
208 |
|
|
250 | 209 |
|
251 | 210 |
|
252 | 211 |
|
253 | 212 |
|
254 | 213 |
|
214 |
|
|
255 | 215 |
|
256 | 216 |
|
257 | 217 |
|
218 |
|
|
219 |
|
|
258 | 220 |
|
259 | 221 |
|
260 |
|
|
261 |
|
|
262 |
|
|
222 |
|
|
263 | 223 |
|
264 | 224 |
|
265 | 225 |
|
266 | 226 |
|
267 | 227 |
|
228 |
|
|
229 |
|
|
230 |
|
|
268 | 231 |
|
232 |
|
|
269 | 233 |
|
270 | 234 |
|
271 | 235 |
|
272 | 236 |
|
273 |
|
|
274 |
|
|
275 |
|
|
276 |
|
|
277 |
|
|
237 |
|
|
278 | 238 |
|
279 | 239 |
|
280 | 240 |
|
281 | 241 |
|
282 | 242 |
|
283 | 243 |
|
284 |
|
|
285 | 244 |
|
286 |
|
|
245 |
|
|
246 |
|
|
287 | 247 |
|
288 | 248 |
|
289 | 249 |
|
290 | 250 |
|
291 | 251 |
|
252 |
|
|
292 | 253 |
|
293 | 254 |
|
294 | 255 |
|
256 |
|
|
257 |
|
|
295 | 258 |
|
296 | 259 |
|
297 |
|
|
298 |
|
|
299 |
|
|
260 |
|
|
300 | 261 |
|
301 | 262 |
|
302 | 263 |
|
303 | 264 |
|
304 | 265 |
|
266 |
|
|
267 |
|
|
268 |
|
|
269 |
|
|
270 |
|
|
305 | 271 |
|
272 |
|
|
306 | 273 |
|
307 | 274 |
|
308 |
|
|
309 | 275 |
|
310 |
|
|
311 |
|
|
312 |
|
|
313 |
|
|
314 |
|
|
315 |
|
|
316 |
|
|
276 |
|
|
277 |
|
|
317 | 278 |
|
318 | 279 |
|
319 | 280 |
|
|
||
324 | 285 |
|
325 | 286 |
|
326 | 287 |
|
327 |
|
|
328 | 288 |
|
329 | 289 |
|
330 | 290 |
|
331 | 291 |
|
332 | 292 |
|
333 |
|
|
293 |
|
|
334 | 294 |
|
335 |
|
|
295 |
|
|
336 | 296 |
|
337 |
|
|
338 |
|
|
339 |
|
|
340 |
|
|
341 |
|
|
297 |
|
|
298 |
|
|
299 |
|
|
300 |
|
|
301 |
|
|
342 | 302 |
|
343 |
|
|
344 |
|
|
345 |
|
|
346 |
|
|
347 |
|
|
303 |
|
|
304 |
|
|
305 |
|
|
306 |
|
|
307 |
|
|
348 | 308 |
|
349 | 309 |
|
350 |
|
|
351 |
|
|
352 |
|
|
353 |
|
|
354 |
|
|
355 |
|
|
356 |
|
|
357 |
|
|
358 |
|
|
359 |
|
|
360 |
|
|
361 |
|
|
362 |
|
|
310 |
|
|
311 |
|
|
312 |
|
|
313 |
|
|
314 |
|
|
315 |
|
|
316 |
|
|
317 |
|
|
318 |
|
|
319 |
|
|
320 |
|
|
321 |
|
|
322 |
|
|
363 | 323 |
|
364 | 324 |
|
365 |
|
|
325 |
|
|
366 | 326 |
|
367 | 327 |
|
328 |
|
|
329 |
|
|
330 |
|
|
331 |
|
|
332 |
|
|
333 |
|
|
368 | 334 |
|
369 |
|
|
370 |
|
|
371 |
|
|
372 |
|
|
373 |
|
|
374 |
|
|
375 |
|
|
376 |
|
|
377 |
|
|
378 |
|
|
379 |
|
|
380 |
|
|
381 |
|
|
382 |
|
|
383 |
|
|
335 |
|
|
336 |
|
|
337 |
|
|
384 | 338 |
|
385 |
|
|
386 |
|
|
387 |
|
|
388 |
|
|
389 |
|
|
390 |
|
|
391 |
|
|
392 |
|
|
393 |
|
|
394 |
|
|
395 |
|
|
396 |
|
|
397 |
|
|
398 |
|
|
399 |
|
|
400 |
|
|
401 |
|
|
402 |
|
|
403 |
|
|
404 |
|
|
405 |
|
|
406 |
|
|
407 |
|
|
339 |
|
|
340 |
|
|
408 | 341 |
|
342 |
|
|
343 |
|
|
344 |
|
|
345 |
|
|
346 |
|
|
347 |
|
|
348 |
|
|
349 |
|
|
350 |
|
|
351 |
|
|
352 |
|
|
353 |
|
|
354 |
|
|
355 |
|
|
356 |
|
|
357 |
|
|
358 |
|
|
359 |
|
|
360 |
|
|
361 |
|
|
362 |
|
|
363 |
|
|
364 |
|
|
365 |
|
|
366 |
|
|
367 |
|
|
368 |
|
|
409 | 369 |
|
410 |
|
|
411 |
|
|
412 |
|
|
413 |
|
|
414 |
|
|
415 |
|
|
416 | 370 |
|
417 |
|
|
418 |
|
|
371 |
|
|
372 |
|
|
373 |
|
|
419 | 374 |
|
420 |
|
|
421 |
|
|
422 |
|
|
423 |
|
|
424 |
|
|
425 |
|
|
426 |
|
|
427 |
|
|
428 |
|
|
429 |
|
|
430 |
|
|
431 |
|
|
432 |
|
|
433 |
|
|
375 |
|
|
376 |
|
|
377 |
|
|
378 |
|
|
379 |
|
|
380 |
|
|
381 |
|
|
382 |
|
|
383 |
|
|
384 |
|
|
385 |
|
|
386 |
|
|
387 |
|
|
388 |
|
|
389 |
|
|
390 |
|
|
391 |
|
|
392 |
|
|
393 |
|
|
434 | 394 |
|
435 | 395 |
|
436 | 396 |
|
|
||
439 | 399 |
|
440 | 400 |
|
441 | 401 |
|
442 |
|
|
402 |
|
|
443 | 403 |
|
444 |
|
|
445 |
|
|
446 |
|
|
447 |
|
|
448 |
|
|
449 |
|
|
450 |
|
|
451 |
|
|
404 |
|
|
452 | 405 |
|
406 |
|
|
407 |
|
|
408 |
|
|
409 |
|
|
410 |
|
|
411 |
|
|
453 | 412 |
|
454 | 413 |
|
455 |
|
|
456 |
|
|
457 |
|
|
458 |
|
|
459 |
|
|
414 |
|
|
415 |
|
|
416 |
|
|
417 |
|
|
418 |
|
|
460 | 419 |
|
461 | 420 |
|
462 | 421 |
|
|
||
513 | 472 |
|
514 | 473 |
|
515 | 474 |
|
516 |
|
|
517 | 475 |
|
476 |
|
|
518 | 477 |
|
519 | 478 |
|
520 | 479 |
|
521 |
|
|
522 |
|
|
480 |
|
|
523 | 481 |
|
524 |
|
|
482 |
|
|
483 |
|
|
525 | 484 |
|
526 | 485 |
|
527 | 486 |
|
528 | 487 |
|
529 | 488 |
|
530 |
|
|
489 |
|
|
531 | 490 |
|
532 |
|
|
491 |
|
|
533 | 492 |
|
493 |
|
|
494 |
|
|
495 |
|
|
496 |
|
|
534 | 497 |
|
535 | 498 |
|
536 |
|
|
537 | 499 |
|
538 |
|
|
539 |
|
|
540 |
|
|
541 |
|
|
500 |
|
|
542 | 501 |
|
543 | 502 |
|
544 | 503 |
|
545 | 504 |
|
546 | 505 |
|
547 | 506 |
|
548 |
|
|
549 |
|
|
550 | 507 |
|
551 |
|
|
552 |
|
|
508 |
|
|
509 |
|
|
510 |
|
|
511 |
|
|
553 | 512 |
|
554 | 513 |
|
555 | 514 |
|
556 | 515 |
|
557 |
|
|
558 |
|
|
516 |
|
|
517 |
|
|
559 | 518 |
|
560 | 519 |
|
561 | 520 |
|
|
||
566 | 525 |
|
567 | 526 |
|
568 | 527 |
|
569 |
|
|
570 |
|
|
528 |
|
|
529 |
|
|
571 | 530 |
|
572 | 531 |
|
573 | 532 |
|
574 | 533 |
|
575 | 534 |
|
576 |
|
|
577 |
|
|
578 | 535 |
|
579 |
|
|
536 |
|
|
537 |
|
|
538 |
|
|
580 | 539 |
|
581 | 540 |
|
582 | 541 |
|
|
||
585 | 544 |
|
586 | 545 |
|
587 | 546 |
|
547 |
|
|
588 | 548 |
|
589 |
|
|
590 | 549 |
|
591 |
|
|
550 |
|
|
592 | 551 |
|
593 | 552 |
|
594 | 553 |
|
595 | 554 |
|
596 | 555 |
|
597 |
|
|
598 | 556 |
|
599 | 557 |
|
600 | 558 |
|