-81">
// intent.putExtra("et_phone", et_phone.getText().toString());
// intent.putExtra("fast_num", fast_num.getText().toString());
// intent.putExtra("slow_num", slow_num.getText().toString());
// intent.putExtra("open_object", open_object.getText().toString());
// intent.putExtra("charge_cost", charge_cost.getText().toString());
// intent.putExtra("park_cost", park_cost.getText().toString());
// intent.putExtra("other_cost", other_cost.getText().toString());
// intent.putExtra("charge_style", charge_style.getText().toString());
// intent.putExtra("park_style", park_style.getText().toString());
// intent.putExtra("other_style", other_style.getText().toString());
// intent.putExtra("tv_operation_state", tv_operation_state.getText().toString());
// intent.putExtra("tv_suit_detail", tv_suit_detail.getText().toString());
// intent.putExtra("tv_belong_detail", tv_belong_detail.getText().toString());
// intent.putExtra("open_time", open_time.getText().toString());
// intent.putExtra("close_time", close_time.getText().toString());
// intent.putExtra("holiday_open", holiday_open.getText().toString());
// intent.putExtra("holiday_close", holiday_close.getText().toString());
// this.finish();
// }
case R.id.iv_back:
finish();
break;
// case R.id.rl_suit_car:
// String[] changeSelect = {"国标充电", "特斯拉", "德系"};
// new AlertDialog.Builder(AlterOneActivity.this)
// .setTitle("请选择")
// .setItems(changeSelect, new DialogInterface.OnClickListener() {
// @Override
// public void onClick(DialogInterface dialog, int which) {
// switch (which) {
// case 0:
// tv_suit_detail.setText("国标充电");
// break;
// case 1:
// tv_suit_detail.setText("特斯拉");
// break;
// case 2:
// tv_suit_detail.setText("德系");
// break;
// default:
// break;
// }
// }
// })
// .setNegativeButton("取消", new DialogInterface.OnClickListener() {
// @Override
// public void onClick(DialogInterface dialog, int which) {
// dialog.cancel();
// }
// }).show();
// break;
// case R.id.rl_state:
// final String[] operationSelect = {"正常", "故障", "废弃", "调试"};
// new AlertDialog.Builder(AlterOneActivity.this)
// .setTitle("请选择")
// .setItems(operationSelect, new DialogInterface.OnClickListener() {
// @Override
// public void onClick(DialogInterface dialog, int which) {
// switch (which) {
// case 0:
// tv_operation_state.setText(operationSelect[0]);
// break;
// case 1:
// tv_operation_state.setText(operationSelect[1]);
// break;
// case 2:
// tv_operation_state.setText(operationSelect[2]);
// break;
// case 3:
// tv_operation_state.setText(operationSelect[3]);
// default:
// break;
// }
// }
// })
// .setNegativeButton("取消", new DialogInterface.OnClickListener() {
// @Override
// public void onClick(DialogInterface dialog, int which) {
// dialog.cancel();
// }
// }).show();
// break;
// case R.id.rl_belong:
// final String[] belongSelect = {"企业", "私人"};
// new AlertDialog.Builder(AlterOneActivity.this)
// .setTitle("请选择")
// .setItems(belongSelect, new DialogInterface.OnClickListener() {
// @Override
// public void onClick(DialogInterface dialog, int which) {
// switch (which) {
// case 0:
// tv_belong_detail.setText(belongSelect[0]);
// break;
// case 1:
// tv_belong_detail.setText(belongSelect[1]);
//// tv_work_style.setText("联系人");
//// et_name.setText("王先生");
// break;
// default:
// break;
// }
// }
// })
// .setNegativeButton("取消", new DialogInterface.OnClickListener() {
// @Override
// public void onClick(DialogInterface dialog, int which) {
// dialog.cancel();
// }
// }).show();
// break;
// case R.id.iv_photo1:
// LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
// popupWindowView = inflater.inflate(R.layout.popupwindow_upload, null);
// popupWindow = new PopupWindow(popupWindowView,
// ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT,
// true);
// popupWindow.setBackgroundDrawable(new BitmapDrawable());
// // 设置PopupWindow的弹出和消失效果
// popupWindow.setAnimationStyle(R.style.popupAnimation);
//// confirmButton = (Button) popupWindowView
//// .findViewById(R.id.confirmButton);
//// confirmButton.setOnClickListener(new OnClickListener() {
//// @Override
//// public void onClick(View view) {
//// popupWindow.dismiss();
//// }
//// });
// cancleButton = (Button) popupWindowView
// .findViewById(R.id.cancleButton);
// cancleButton.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// popupWindow.dismiss();
// }
// });
// btn_one = (Button) popupWindowView.findViewById(R.id.tvTwo);
// btn_one.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(
// Environment.getExternalStorageDirectory(), "alterandroidapp.jpg")));
// ((Activity) mContext).startActivityForResult(intent, 2);
// popupWindow.dismiss();
// }
// });
// btn_two = (Button) popupWindowView.findViewById(R.id.tvThree);
// btn_two.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// Intent intent = new Intent(Intent.ACTION_PICK, null);
// intent.setDataAndType(
// MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
// "image/*");
// startActivityForResult(intent, 1);
// popupWindow.dismiss();
// }
// });
// popupWindow.showAtLocation(cancleButton, Gravity.CENTER, 0, 0);
//
//
// break;
// case R.id.iv_photo2:
// LayoutInflater inflater2 = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
// popupWindowView = inflater2.inflate(R.layout.popupwindow_upload, null);
// popupWindow = new PopupWindow(popupWindowView,
// ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT,
// true);
// popupWindow.setBackgroundDrawable(new BitmapDrawable());
// // 设置PopupWindow的弹出和消失效果
// popupWindow.setAnimationStyle(R.style.popupAnimation);
//// confirmButton = (Button) popupWindowView
//// .findViewById(R.id.confirmButton);
//// confirmButton.setOnClickListener(new OnClickListener() {
//// @Override
//// public void onClick(View view) {
//// popupWindow.dismiss();
//// }
//// });
// Button cancleButton2 = (Button) popupWindowView
// .findViewById(R.id.cancleButton);
// cancleButton2.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// popupWindow.dismiss();
// }
// });
// Button btn_one2 = (Button) popupWindowView.findViewById(R.id.tvTwo);
// btn_one2.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// 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, 5);
// popupWindow.dismiss();
// }
// });
// Button btn_two2 = (Button) popupWindowView.findViewById(R.id.tvThree);
// btn_two2.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// Intent intent = new Intent(Intent.ACTION_PICK, null);
// intent.setDataAndType(
// MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
// "image/*");
// startActivityForResult(intent, 4);
// popupWindow.dismiss();
// }
// });
// popupWindow.showAtLocation(cancleButton, Gravity.CENTER, 0, 0);
// break;
// case R.id.iv_photo3:
// LayoutInflater inflater3 = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
// popupWindowView = inflater3.inflate(R.layout.popupwindow_upload, null);
// popupWindow = new PopupWindow(popupWindowView,
// ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT,
// true);
// popupWindow.setBackgroundDrawable(new BitmapDrawable());
// // 设置PopupWindow的弹出和消失效果
// popupWindow.setAnimationStyle(R.style.popupAnimation);
//// confirmButton = (Button) popupWindowView
//// .findViewById(R.id.confirmButton);
//// confirmButton.setOnClickListener(new OnClickListener() {
//// @Override
//// public void onClick(View view) {
//// popupWindow.dismiss();
//// }
//// });
// Button cancleButton3 = (Button) popupWindowView
// .findViewById(R.id.cancleButton);
// cancleButton3.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// popupWindow.dismiss();
// }
// });
// Button btn_one3 = (Button) popupWindowView.findViewById(R.id.tvTwo);
// btn_one3.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// 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, 8);
// popupWindow.dismiss();
// }
// });
// Button btn_two3 = (Button) popupWindowView.findViewById(R.id.tvThree);
// btn_two3.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// Intent intent = new Intent(Intent.ACTION_PICK, null);
// intent.setDataAndType(
// MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
// "image/*");
// startActivityForResult(intent, 7);
// popupWindow.dismiss();
// }
// });
// popupWindow.showAtLocation(cancleButton, Gravity.CENTER, 0, 0);
// break;
}
|
||
| 91 | 91 |
|
| 92 | 92 |
|
| 93 | 93 |
|
| 94 |
|
|
| 95 | 94 |
|
| 96 | 95 |
|
| 97 | 96 |
|
|
||
| 144 | 143 |
|
| 145 | 144 |
|
| 146 | 145 |
|
| 147 |
|
|
| 148 | 146 |
|
| 149 | 147 |
|
| 150 | 148 |
|
|
||
| 154 | 152 |
|
| 155 | 153 |
|
| 156 | 154 |
|
| 157 |
|
|
| 158 | 155 |
|
| 159 | 156 |
|
| 160 | 157 |
|
|
||
| 228 | 225 |
|
| 229 | 226 |
|
| 230 | 227 |
|
| 231 |
|
|
| 232 | 228 |
|
| 233 | 229 |
|
| 234 | 230 |
|
| 235 | 231 |
|
| 236 |
|
|
| 237 | 232 |
|
| 238 | 233 |
|
| 239 | 234 |
|
|
||
| 271 | 266 |
|
| 272 | 267 |
|
| 273 | 268 |
|
| 274 |
|
|
| 275 | 269 |
|
| 276 | 270 |
|
| 277 | 271 |
|
|
||
| 53 | 53 |
|
| 54 | 54 |
|
| 55 | 55 |
|
| 56 |
|
|
| 56 | 57 |
|
| 57 | 58 |
|
| 58 | 59 |
|
|
||
| 68 | 69 |
|
| 69 | 70 |
|
| 70 | 71 |
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 71 | 76 |
|
| 72 | 77 |
|
| 73 | 78 |
|
|
||
| 155 | 160 |
|
| 156 | 161 |
|
| 157 | 162 |
|
| 163 |
|
|
| 158 | 164 |
|
| 159 | 165 |
|
| 160 | 166 |
|
|
||
| 553 | 559 |
|
| 554 | 560 |
|
| 555 | 561 |
|
| 556 |
|
|
| 557 |
|
|
| 558 |
|
|
| 559 |
|
|
| 560 |
|
|
| 561 |
|
|
| 562 |
|
|
| 563 |
|
|
| 562 |
|
|
| 563 |
|
|
| 564 |
|
|
| 565 |
|
|
| 566 |
|
|
| 567 |
|
|
| 568 |
|
|
| 569 |
|
|
| 564 | 570 |
|
| 565 | 571 |
|
| 566 | 572 |
|
|
||
| 570 | 576 |
|
| 571 | 577 |
|
| 572 | 578 |
|
| 573 |
|
|
| 579 |
|
|
| 574 | 580 |
|
| 575 | 581 |
|
| 576 | 582 |
|
|
||
| 590 | 596 |
|
| 591 | 597 |
|
| 592 | 598 |
|
| 593 |
|
|
| 594 |
|
|
| 595 |
|
|
| 596 |
|
|
| 597 |
|
|
| 598 |
|
|
| 599 |
|
|
| 600 |
|
|
| 601 |
|
|
| 602 |
|
|
| 603 |
|
|
| 599 |
|
|
| 600 |
|
|
| 601 |
|
|
| 602 |
|
|
| 603 |
|
|
| 604 |
|
|
| 605 |
|
|
| 604 | 606 |
|
| 605 | 607 |
|
| 606 |
|
|
| 607 | 608 |
|
| 608 |
|
|
| 609 |
|
|
| 609 | 610 |
|
| 610 | 611 |
|
| 611 | 612 |
|
|
||
| 1044 | 1045 |
|
| 1045 | 1046 |
|
| 1046 | 1047 |
|
| 1047 |
|
|
| 1048 |
|
|
| 1049 |
|
|
| 1050 | 1048 |
|
| 1051 |
|
|
| 1052 | 1049 |
|
| 1053 | 1050 |
|
| 1054 | 1051 |
|
| 1055 | 1052 |
|
| 1056 |
|
|
| 1053 |
|
|
| 1054 |
|
|
| 1057 | 1055 |
|
| 1058 | 1056 |
|
| 1059 | 1057 |
|
| 1060 | 1058 |
|
| 1061 | 1059 |
|
| 1062 | 1060 |
|
| 1063 |
|
|
| 1061 |
|
|
| 1062 |
|
|
| 1064 | 1063 |
|
| 1065 | 1064 |
|
| 1066 | 1065 |
|
|
||
| 581 | 581 |
|
| 582 | 582 |
|
| 583 | 583 |
|
| 584 |
|
|
| 585 |
|
|
| 586 |
|
|
| 587 |
|
|
| 588 |
|
|
| 589 |
|
|
| 590 |
|
|
| 591 |
|
|
| 592 |
|
|
| 593 |
|
|
| 594 |
|
|
| 595 |
|
|
| 596 |
|
|
| 597 |
|
|
| 598 |
|
|
| 599 |
|
|
| 600 |
|
|
| 601 |
|
|
| 602 |
|
|
| 603 |
|
|
| 604 |
|
|
| 605 |
|
|
| 606 |
|
|
| 607 |
|
|
| 608 |
|
|
| 609 |
|
|
| 610 |
|
|
| 611 |
|
|
| 612 |
|
|
| 613 |
|
|
| 614 |
|
|
| 615 |
|
|
| 616 |
|
|
| 617 |
|
|
| 618 |
|
|
| 619 |
|
|
| 620 |
|
|
| 621 |
|
|
| 622 |
|
|
| 623 |
|
|
| 624 |
|
|
| 625 |
|
|
| 626 |
|
|
| 627 |
|
|
| 628 |
|
|
| 629 |
|
|
| 630 |
|
|
| 631 |
|
|
| 632 |
|
|
| 633 |
|
|
| 634 |
|
|
| 635 |
|
|
| 636 |
|
|
| 637 |
|
|
| 638 |
|
|
| 639 |
|
|
| 640 |
|
|
| 641 |
|
|
| 642 |
|
|
| 643 |
|
|
| 644 |
|
|
| 645 |
|
|
| 646 |
|
|
| 647 |
|
|
| 648 |
|
|
| 649 |
|
|
| 650 |
|
|
| 651 |
|
|
| 652 |
|
|
| 653 |
|
|
| 654 |
|
|
| 655 |
|
|
| 656 |
|
|
| 657 |
|
|
| 658 |
|
|
| 659 |
|
|
| 660 |
|
|
| 661 |
|
|
| 662 |
|
|
| 663 |
|
|
| 664 |
|
|
| 665 |
|
|
| 666 |
|
|
| 667 |
|
|
| 668 |
|
|
| 669 |
|
|
| 670 |
|
|
| 671 |
|
|
| 672 |
|
|
| 673 |
|
|
| 674 |
|
|
| 675 |
|
|
| 676 |
|
|
| 677 |
|
|
| 678 |
|
|
| 679 |
|
|
| 680 |
|
|
| 681 |
|
|
| 682 |
|
|
| 683 |
|
|
| 684 |
|
|
| 685 |
|
|
| 686 |
|
|
| 687 |
|
|
| 688 |
|
|
| 689 |
|
|
| 690 |
|
|
| 691 |
|
|
| 692 |
|
|
| 693 |
|
|
| 694 |
|
|
| 695 |
|
|
| 696 |
|
|
| 697 |
|
|
| 698 |
|
|
| 699 |
|
|
| 700 |
|
|
| 701 |
|
|
| 702 |
|
|
| 703 |
|
|
| 704 |
|
|
| 705 |
|
|
| 706 |
|
|
| 707 |
|
|
| 708 |
|
|
| 709 |
|
|
| 710 |
|
|
| 711 |
|
|
| 712 |
|
|
| 713 |
|
|
| 714 |
|
|
| 715 |
|
|
| 716 |
|
|
| 717 |
|
|
| 718 |
|
|
| 719 |
|
|
| 720 |
|
|
| 721 |
|
|
| 722 |
|
|
| 723 |
|
|
| 724 |
|
|
| 725 |
|
|
| 726 |
|
|
| 727 |
|
|
| 728 |
|
|
| 729 |
|
|
| 730 |
|
|
| 731 |
|
|
| 732 |
|
|
| 733 |
|
|
| 734 |
|
|
| 735 |
|
|
| 736 |
|
|
| 737 |
|
|
| 738 |
|
|
| 739 |
|
|
| 740 |
|
|
| 741 |
|
|
| 742 |
|
|
| 743 |
|
|
| 744 |
|
|
| 745 |
|
|
| 746 |
|
|
| 747 |
|
|
| 748 |
|
|
| 749 |
|
|
| 750 |
|
|
| 751 |
|
|
| 752 |
|
|
| 753 |
|
|
| 754 |
|
|
| 755 |
|
|
| 756 | 584 |
|
| 757 | 585 |
|
| 758 | 586 |
|
|
||
| 7 | 7 |
|
| 8 | 8 |
|
| 9 | 9 |
|
| 10 |
|
|
| 10 | 11 |
|
| 11 | 12 |
|
| 13 |
|
|
| 12 | 14 |
|
| 15 |
|
|
| 13 | 16 |
|
| 14 | 17 |
|
| 15 | 18 |
|
|
||
| 28 | 31 |
|
| 29 | 32 |
|
| 30 | 33 |
|
| 34 |
|
|
| 35 |
|
|
| 31 | 36 |
|
| 32 | 37 |
|
| 33 | 38 |
|
|
||
| 37 | 42 |
|
| 38 | 43 |
|
| 39 | 44 |
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 40 | 49 |
|
| 41 | 50 |
|
| 42 | 51 |
|
|
||
| 78 | 87 |
|
| 79 | 88 |
|
| 80 | 89 |
|
| 90 |
|
|
| 81 | 91 |
|
| 82 |
|
|
| 92 |
|
|
| 83 | 93 |
|
| 84 | 94 |
|
| 85 | 95 |
|
|
||
| 177 | 187 |
|
| 178 | 188 |
|
| 179 | 189 |
|
| 180 |
|
|
| 181 | 190 |
|
| 182 | 191 |
|
| 183 | 192 |
|
|
||
| 206 | 215 |
|
| 207 | 216 |
|
| 208 | 217 |
|
| 209 |
|
|
| 210 | 218 |
|
| 211 | 219 |
|
| 212 |
|
|
| 213 | 220 |
|
| 214 | 221 |
|
| 215 | 222 |
|
|
||
| 255 | 262 |
|
| 256 | 263 |
|
| 257 | 264 |
|
| 258 |
|
|
| 259 |
|
|
| 260 |
|
|
| 261 | 265 |
|
| 262 |
|
|
| 263 | 266 |
|
| 264 | 267 |
|
| 265 | 268 |
|
| 266 |
|
|
| 267 |
|
|
| 268 | 269 |
|
| 269 | 270 |
|
| 270 | 271 |
|
|
||
| 274 | 275 |
|
| 275 | 276 |
|
| 276 | 277 |
|
| 277 |
|
|
| 278 | 278 |
|
| 279 | 279 |
|
| 280 | 280 |
|
| 281 |
|
|
| 282 |
|
|
| 283 | 281 |
|
| 284 | 282 |
|
| 285 |
|
|
| 286 |
|
|
| 287 |
|
|
| 288 |
|
|
| 289 | 283 |
|
| 290 | 284 |
|
| 291 | 285 |
|
|
||
| 304 | 298 |
|
| 305 | 299 |
|
| 306 | 300 |
|
| 307 |
|
|
| 308 |
|
|
| 301 |
|
|
| 309 | 302 |
|
| 310 | 303 |
|
| 311 | 304 |
|
|
||
| 323 | 316 |
|
| 324 | 317 |
|
| 325 | 318 |
|
| 326 |
|
|
| 327 |
|
|
| 328 |
|
|
| 329 |
|
|
| 319 |
|
|
| 330 | 320 |
|
| 331 | 321 |
|
| 332 | 322 |
|
|
||
| 344 | 334 |
|
| 345 | 335 |
|
| 346 | 336 |
|
| 347 |
|
|
| 348 |
|
|
| 349 |
|
|
| 350 |
|
|
| 351 |
|
|
| 352 |
|
|
| 353 |
|
|
| 354 |
|
|
| 355 |
|
|
| 356 |
|
|
| 357 |
|
|
| 358 |
|
|
| 359 |
|
|
| 360 |
|
|
| 361 |
|
|
| 362 |
|
|
| 363 |
|
|
| 364 |
|
|
| 365 |
|
|
| 366 |
|
|
| 367 |
|
|
| 337 |
|
|
| 338 |
|
|
| 339 |
|
|
| 340 |
|
|
| 341 |
|
|
| 342 |
|
|
| 343 |
|
|
| 344 |
|
|
| 345 |
|
|
| 346 |
|
|
| 347 |
|
|
| 348 |
|
|
| 368 | 349 |
|
| 369 | 350 |
|
| 370 | 351 |
|
|
||
| 378 | 359 |
|
| 379 | 360 |
|
| 380 | 361 |
|
| 381 |
|
|
| 362 |
|
|
| 363 |
|
|
| 382 | 364 |
|
| 383 | 365 |
|
| 384 | 366 |
|
| 385 | 367 |
|
| 386 | 368 |
|
| 387 |
|
|
| 388 | 369 |
|
| 389 | 370 |
|
| 390 | 371 |
|
|
||
| 402 | 383 |
|
| 403 | 384 |
|
| 404 | 385 |
|
| 405 |
|
|
| 406 | 386 |
|
| 407 |
|
|
| 408 | 387 |
|
| 409 | 388 |
|
| 410 | 389 |
|
| 411 |
|
|
| 412 | 390 |
|
| 413 | 391 |
|
| 414 | 392 |
|
| 415 | 393 |
|
| 416 |
|
|
| 417 |
|
|
| 418 | 394 |
|
| 419 | 395 |
|
| 420 | 396 |
|
|
||
| 426 | 402 |
|
| 427 | 403 |
|
| 428 | 404 |
|
| 429 |
|
|
| 430 |
|
|
| 431 | 405 |
|
| 432 |
|
|
| 433 |
|
|
| 434 | 406 |
|
| 435 | 407 |
|
| 436 | 408 |
|
|
||
| 439 | 411 |
|
| 440 | 412 |
|
| 441 | 413 |
|
| 442 |
|
|
| 414 |
|
|
| 443 | 415 |
|
| 444 | 416 |
|
| 445 | 417 |
|
| 446 | 418 |
|
| 447 | 419 |
|
| 448 |
|
|
| 449 | 420 |
|
| 450 | 421 |
|
| 451 | 422 |
|
| 452 | 423 |
|
| 453 | 424 |
|
| 454 | 425 |
|
| 455 |
|
|
| 456 | 426 |
|
| 457 | 427 |
|
| 458 | 428 |
|
| 459 | 429 |
|
| 460 | 430 |
|
| 431 |
|
|
| 432 |
|
|
| 433 |
|
|
| 434 |
|
|
| 435 |
|
|
| 436 |
|
|
| 437 |
|
|
| 438 |
|
|
| 439 |
|
|
| 440 |
|
|
| 441 |
|
|
| 442 |
|
|
| 443 |
|
|
| 461 | 444 |
|
| 445 |
|
|
| 446 |
|
|
| 447 |
|
|
| 448 |
|
|
| 449 |
|
|
| 450 |
|
|
| 451 |
|
|
| 452 |
|
|
| 453 |
|
|
| 454 |
|
|
| 455 |
|
|
| 456 |
|
|
| 457 |
|
|
| 458 |
|
|
| 462 | 459 |
|
| 463 | 460 |
|
| 464 | 461 |
|
|
||
| 506 | 503 |
|
| 507 | 504 |
|
| 508 | 505 |
|
| 509 |
|
|
| 510 |
|
|
| 511 |
|
|
| 512 |
|
|
| 513 |
|
|
| 514 |
|
|
| 515 |
|
|
| 506 |
|
|
| 507 |
|
|
| 508 |
|
|
| 509 |
|
|
| 510 |
|
|
| 511 |
|
|
| 512 |
|
|
| 513 |
|
|
| 516 | 514 |
|
| 517 | 515 |
|
| 518 | 516 |
|
|
||
| 522 | 520 |
|
| 523 | 521 |
|
| 524 | 522 |
|
| 525 |
|
|
| 523 |
|
|
| 526 | 524 |
|
| 527 | 525 |
|
| 528 | 526 |
|
|
||
| 543 | 541 |
|
| 544 | 542 |
|
| 545 | 543 |
|
| 546 |
|
|
| 547 | 544 |
|
| 548 | 545 |
|
| 549 | 546 |
|
|
||
| 577 | 574 |
|
| 578 | 575 |
|
| 579 | 576 |
|
| 580 |
|
|
| 581 | 577 |
|
| 582 | 578 |
|
| 583 | 579 |
|
|
||
| 622 | 618 |
|
| 623 | 619 |
|
| 624 | 620 |
|
| 625 |
|
|
| 626 | 621 |
|
| 627 |
|
|
| 628 |
|
|
| 629 | 622 |
|
| 630 | 623 |
|
| 631 | 624 |
|
|
||
| 645 | 638 |
|
| 646 | 639 |
|
| 647 | 640 |
|
| 648 |
|
|
| 649 | 641 |
|
| 650 | 642 |
|
| 651 | 643 |
|
| 652 | 644 |
|
| 653 |
|
|
| 654 | 645 |
|
| 655 | 646 |
|
| 656 | 647 |
|
| 657 | 648 |
|
| 658 | 649 |
|
| 659 | 650 |
|
| 660 |
|
|
| 661 |
|
|
| 662 |
|
|
| 663 | 651 |
|
| 664 |
|
|
| 665 | 652 |
|
| 666 | 653 |
|
| 667 | 654 |
|
| 668 | 655 |
|
| 669 |
|
|
| 656 |
|
|
| 657 |
|
|
| 670 | 658 |
|
| 671 | 659 |
|
| 672 | 660 |
|
| 673 | 661 |
|
| 674 | 662 |
|
| 675 | 663 |
|
| 676 |
|
|
| 664 |
|
|
| 665 |
|
|
| 677 | 666 |
|
| 678 | 667 |
|
| 679 | 668 |
|
|
||
| 115 | 115 |
|
| 116 | 116 |
|
| 117 | 117 |
|
| 118 |
|
|
| 118 |
|
|
| 119 | 119 |
|
| 120 | 120 |
|
| 121 | 121 |
|
|
||
| 1928 | 1928 |
|
| 1929 | 1929 |
|
| 1930 | 1930 |
|
| 1931 |
|
|
| 1932 | 1931 |
|
| 1933 | 1932 |
|
| 1934 | 1933 |
|
|
||
| 1949 | 1948 |
|
| 1950 | 1949 |
|
| 1951 | 1950 |
|
| 1952 |
|
|
| 1953 | 1951 |
|
| 1954 | 1952 |
|
| 1955 | 1953 |
|
|
||
| 971 | 971 |
|
| 972 | 972 |
|
| 973 | 973 |
|
| 974 |
|
|
| 974 |
|
|
| 975 |
|
|
| 975 | 976 |
|
| 976 | 977 |
|
| 977 | 978 |
|
| 978 | 979 |
|
| 979 | 980 |
|
| 980 | 981 |
|
| 981 |
|
|
| 982 |
|
|
| 983 |
|
|
| 982 | 984 |
|
| 983 | 985 |
|
| 984 | 986 |
|
|
||
| 553 | 553 |
|
| 554 | 554 |
|
| 555 | 555 |
|
| 556 |
|
|
| 557 | 556 |
|
| 558 | 557 |
|
| 559 | 558 |
|
|
||
| 635 | 634 |
|
| 636 | 635 |
|
| 637 | 636 |
|
| 638 |
|
|
| 639 |
|
|
| 640 |
|
|
| 641 |
|
|
| 642 |
|
|
| 643 |
|
|
| 644 |
|
|
| 645 |
|
|
| 646 | 637 |
|
| 647 | 638 |
|
| 648 | 639 |
|
|
||
| 702 | 693 |
|
| 703 | 694 |
|
| 704 | 695 |
|
| 705 |
|
|
| 706 |
|
|
| 707 |
|
|
| 708 |
|
|
| 709 | 696 |
|
| 710 | 697 |
|
| 711 | 698 |
|
|
||
| 762 | 749 |
|
| 763 | 750 |
|
| 764 | 751 |
|
| 765 |
|
|
| 766 |
|
|
| 767 | 752 |
|
| 768 | 753 |
|
| 769 | 754 |
|
|
||
| 804 | 789 |
|
| 805 | 790 |
|
| 806 | 791 |
|
| 807 |
|
|
| 808 |
|
|
| 809 |
|
|
| 810 | 792 |
|
| 811 | 793 |
|
| 812 | 794 |
|
|
||
| 51 | 51 |
|
| 52 | 52 |
|
| 53 | 53 |
|
| 54 |
|
|
| 54 | 55 |
|
| 55 | 56 |
|
| 56 | 57 |
|
|
||
| 64 | 65 |
|
| 65 | 66 |
|
| 66 | 67 |
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 67 | 72 |
|
| 68 | 73 |
|
| 69 | 74 |
|
|
||
| 138 | 143 |
|
| 139 | 144 |
|
| 140 | 145 |
|
| 146 |
|
|
| 141 | 147 |
|
| 142 | 148 |
|
| 143 | 149 |
|
|
||
| 543 | 549 |
|
| 544 | 550 |
|
| 545 | 551 |
|
| 546 |
|
|
| 547 |
|
|
| 548 |
|
|
| 549 |
|
|
| 550 |
|
|
| 551 |
|
|
| 552 |
|
|
| 553 |
|
|
| 554 |
|
|
| 555 |
|
|
| 552 |
|
|
| 553 |
|
|
| 554 |
|
|
| 555 |
|
|
| 556 |
|
|
| 557 |
|
|
| 558 |
|
|
| 559 |
|
|
| 556 | 560 |
|
| 557 | 561 |
|
| 558 | 562 |
|
|
||
| 562 | 566 |
|
| 563 | 567 |
|
| 564 | 568 |
|
| 565 |
|
|
| 569 |
|
|
| 566 | 570 |
|
| 567 | 571 |
|
| 568 | 572 |
|
|
||
| 581 | 585 |
|
| 582 | 586 |
|
| 583 | 587 |
|
| 584 |
|
|
| 585 |
|
|
| 586 |
|
|
| 587 |
|
|
| 588 |
|
|
| 589 |
|
|
| 590 |
|
|
| 591 |
|
|
| 592 |
|
|
| 593 |
|
|
| 594 |
|
|
| 588 |
|
|
| 589 |
|
|
| 590 |
|
|
| 591 |
|
|
| 592 |
|
|
| 593 |
|
|
| 594 |
|
|
| 595 | 595 |
|
| 596 | 596 |
|
| 597 |
|
|
| 598 | 597 |
|
| 599 |
|
|
| 600 |
|
|
| 601 |
|
|
| 598 |
|
|
| 602 | 599 |
|
| 603 | 600 |
|
| 604 | 601 |
|
|
||
| 629 | 626 |
|
| 630 | 627 |
|
| 631 | 628 |
|
| 632 |
|
|
| 629 |
|
|
| 630 |
|
|
| 633 | 631 |
|
| 634 | 632 |
|
| 635 | 633 |
|
|
||
| 950 | 948 |
|
| 951 | 949 |
|
| 952 | 950 |
|
| 953 |
|
|
| 954 |
|
|
| 955 |
|
|
| 956 | 951 |
|
| 957 | 952 |
|
| 958 | 953 |
|
| 959 | 954 |
|
| 960 | 955 |
|
| 961 | 956 |
|
| 962 |
|
|
| 957 |
|
|
| 958 |
|
|
| 963 | 959 |
|
| 964 | 960 |
|
| 965 | 961 |
|
| 966 | 962 |
|
| 967 | 963 |
|
| 968 | 964 |
|
| 969 |
|
|
| 965 |
|
|
| 966 |
|
|
| 970 | 967 |
|
| 971 | 968 |
|
| 972 | 969 |
|
|
||
| 140 | 140 |
|
| 141 | 141 |
|
| 142 | 142 |
|
| 143 |
|
|
| 144 | 143 |
|
| 145 |
|
|
| 146 | 144 |
|
| 147 | 145 |
|
| 148 | 146 |
|
|
||
| 9 | 9 |
|
| 10 | 10 |
|
| 11 | 11 |
|
| 12 |
|
|
| 12 | 13 |
|
| 13 | 14 |
|
| 14 | 15 |
|
| 15 | 16 |
|
| 17 |
|
|
| 16 | 18 |
|
| 17 | 19 |
|
| 18 | 20 |
|
|
||
| 209 | 211 |
|
| 210 | 212 |
|
| 211 | 213 |
|
| 214 |
|
|
| 215 |
|
|
| 216 |
|
|
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
|
|
| 222 |
|
|
| 212 | 223 |
|
|
||
| 136 | 136 |
|
| 137 | 137 |
|
| 138 | 138 |
|
| 139 |
|
|
| 139 |
|
|
| 140 | 140 |
|
| 141 | 141 |
|
| 142 | 142 |
|