Mercurial > hg > Members > kono > Cerium
changeset 662:b72663cf056a
merge
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 02 Dec 2009 20:44:01 +0900 |
parents | 6929d888fd69 (current diff) 68f0253f5a71 (diff) |
children | 8a807e2f64f8 |
files | TaskManager/kernel/ppe/MailManager.cc |
diffstat | 76 files changed, 97477 insertions(+), 178 deletions(-) [+] |
line wrap: on
line diff
--- a/Renderer/Engine/Application.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Engine/Application.h Wed Dec 02 20:44:01 2009 +0900 @@ -4,11 +4,13 @@ #include "SceneGraph.h" #include "MainLoop.h" #include "viewer.h" +#include "SgChange.h" typedef void (*Move_func)(SceneGraph* node, int screen_w, int screen_h); typedef void (*Coll_func)(SceneGraph* node, int screen_w, int screen_h, SceneGraphPtr tree); class Viewer; +class SgChange; class Application { public: @@ -16,7 +18,7 @@ virtual ~Application(); virtual MainLoopPtr init(Viewer *viewer, int w, int h) = 0; - + virtual MainLoopPtr init_only_sg(SgChange *sgchange, int w, int h) = 0; }; #endif
--- a/Renderer/Engine/Camera.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Engine/Camera.cc Wed Dec 02 20:44:01 2009 +0900 @@ -6,9 +6,13 @@ #include "show_time.h" #include "TaskManager.h" +//static SceneGraphRoot *sgroot; + +#if 1 static void -camera_move(SceneGraphPtr _node, int screen_w, int screen_h) +camera_move(SceneGraphPtr _node, void *sgroot_, int screen_w, int screen_h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); CameraPtr node = (CameraPtr)_node; @@ -62,9 +66,45 @@ } } +#endif + +#if 0 +static void +Camera::camera_move(SceneGraphPtr _node, int screen_w, int screen_h) +{ + Pad *pad = sgroot->getController(); + CameraPtr node = (CameraPtr)_node; + + if (pad->r1.isPush() || pad->r1.isHold()) { + node->xyz[2] += 10.0f; + } else if (pad->l1.isPush() || pad->l1.isHold()) { + node->xyz[2] -= 10.0f; + } + + if (pad->r2.isHold()) { + if (node->zd[0] <= 1.0f) { + node->zd[0] += 0.02f; + } + if (node->zd[2] >= 0.0f) { + node->zd[2] -= 0.02f; + } + } else if (pad->l2.isHold()) { + if (node->zd[0] > -1.0f) { + node->zd[0] -= -0.02f; + } + if (node->zd[2] >= 0.0f) { + node->zd[2] -= 0.02f; + } + } else { + node->zd[0] = 0.0f; + node->zd[2] = 1.0f; + } + +} +#endif static void -camera_collision(SceneGraphPtr node, int screen_w, int screen_h, +camera_collision(SceneGraphPtr node, void *sgroot_,int screen_w, int screen_h, SceneGraphPtr tree) { } @@ -73,10 +113,10 @@ * @param w Width of screen * @param h Height of screen */ -Camera::Camera(float w, float h) +Camera::Camera(float w, float h, SceneGraphRoot *sgroot_) { name = (char*)"Camera"; - + sgroot = sgroot_; fov = 60.0f; near = 0.0f; @@ -105,7 +145,7 @@ m_pers = new float[16]; m_screen = new float[16]; - this->set_move_collision(camera_move, camera_collision); + this->set_move_collision(camera_move, camera_collision, (void *)sgroot); } Camera::~Camera(void)
--- a/Renderer/Engine/Camera.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Engine/Camera.h Wed Dec 02 20:44:01 2009 +0900 @@ -3,10 +3,15 @@ #include "SceneGraph.h" +class SceneGraphRoot; + class Camera : public SceneGraph { public: - Camera(float w = 640, float h = 480); - ~Camera(void); + //Camera(float w = 640, float h = 480, SceneGraphRoot *sgroot); + Camera(float w, float h, SceneGraphRoot *sgroot); + ~Camera(void); + + SceneGraphRoot *sgroot; float zd[4]; // direction z float yd[4]; // direction y @@ -24,6 +29,8 @@ void setCamera(float *pose); void update(float screen_w, float screen_h); + + //void camera_move(SceneGraphPtr _node, int screen_w, int screen_h); }; typedef Camera *CameraPtr;
--- a/Renderer/Engine/Light.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Engine/Light.cc Wed Dec 02 20:44:01 2009 +0900 @@ -7,13 +7,13 @@ #include "TaskManager.h" static void -light_move(SceneGraphPtr node, int screen_w, int screen_h) +light_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { } static void -light_collision(SceneGraphPtr node, int screen_w, int screen_h, +light_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { }
--- a/Renderer/Engine/SceneGraph.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Engine/SceneGraph.cc Wed Dec 02 20:44:01 2009 +0900 @@ -21,10 +21,10 @@ extern int decode(char *cont, FILE *outfile); static void -no_move(SceneGraphPtr self, int screen_w, int screen_h) {} +no_move(SceneGraphPtr self, void *sgroot_, int screen_w, int screen_h) {} static void -no_collision(SceneGraphPtr self, int screen_w, int screen_h, +no_collision(SceneGraphPtr self, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) {} /** @@ -522,16 +522,17 @@ } } +/* move_func 実行 sgroot 渡す */ void SceneGraph::move_execute(int w, int h) { - (*move)(this, w, h); + (*move)(this, this->sgroot, w, h); } void SceneGraph::collision_check(int w, int h, SceneGraphPtr tree) { - (*collision)(this, w, h, tree); + (*collision)(this, this->sgroot, w, h, tree); } void @@ -590,6 +591,17 @@ this->collision = new_collision; } + +void +SceneGraph::set_move_collision(move_func new_move, + collision_func new_collision, void *sgroot_) +{ + this->move = new_move; + this->collision = new_collision; + // add + this->sgroot = sgroot_; +} + void SceneGraph::add_next(SceneGraphPtr next) {
--- a/Renderer/Engine/SceneGraph.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Engine/SceneGraph.h Wed Dec 02 20:44:01 2009 +0900 @@ -6,8 +6,11 @@ #include "TaskManager.h" class SceneGraph; -typedef void (*move_func)(SceneGraph* node, int screen_w, int screen_h); -typedef void (*collision_func)(SceneGraph* node, int screen_w, int screen_h, +//typedef void (*move_func)(SceneGraph* node, int screen_w, int screen_h); +typedef void (*move_func)(SceneGraph* node, void *sgroot, int screen_w, int screen_h); +//typedef void (*collision_func)(SceneGraph* node, int screen_w, int screen_h, +// SceneGraph* tree); +typedef void (*collision_func)(SceneGraph* node, void *sgroot, int screen_w, int screen_h, SceneGraph* tree); typedef SceneGraph* SceneGraphPtr; @@ -18,6 +21,9 @@ SceneGraph(SceneGraphPtr orig); ~SceneGraph(void); + // add + void *sgroot; + // Node がもつ状態変数(というべきか否か // xyz,angle ぐらいあればおk? float stack_xyz[3]; @@ -79,6 +85,7 @@ void set_move_collision(SceneGraphPtr node, move_func new_move, collision_func new_collision); void set_move_collision(move_func new_move, collision_func new_collision); + void set_move_collision(move_func new_move, collision_func new_collision, void *sgroot); void remove(void); SceneGraphPtr realRemoveFromTree(SceneGraphPtr tree); SceneGraphPtr realRemoveFromList(SceneGraphPtr list);
--- a/Renderer/Engine/SceneGraphRoot.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Engine/SceneGraphRoot.cc Wed Dec 02 20:44:01 2009 +0900 @@ -24,7 +24,7 @@ // sg_src = (SceneGraphPtr*) malloc(sizeof(SceneGraphPtr)*SGLIST_LENGTH); - camera = new Camera(w, h); + camera = new Camera(w, h, this); light = new Light(w, h); iterator = new SceneGraphIterator; controller = create_controller(); @@ -183,6 +183,9 @@ /* ユーザーにはオリジナルの clone を返す */ p = src->clone(); + /* move, collision に sgroot を渡したいのでここで sgroot を渡しておく*/ + p->sgroot = (void *)this; + addNext(p); return p; @@ -207,6 +210,9 @@ /* ユーザーにはオリジナルの clone を返す */ p = src->clone(); + + /* move, collision に sgroot を渡したいのでここで sgroot を渡しておく*/ + p->sgroot = (void *)this; addNext(p); @@ -240,6 +246,9 @@ { SceneGraphPtr p = new SceneGraph; + /* move, collision に sgroot を渡したいのでここで sgroot を渡しておく*/ + p->sgroot = (void *)this; + addNext(p); p->flag_drawable = 0; @@ -392,9 +401,8 @@ list->move_execute(screen_w, screen_h); list->collision_check(screen_w, screen_h, list); - list->frame++; + list->frame++; list = list->next; - } if(sg_exec_tree != NULL) {
--- a/Renderer/Engine/SceneGraphRoot.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Engine/SceneGraphRoot.h Wed Dec 02 20:44:01 2009 +0900 @@ -104,7 +104,9 @@ // 大域変数は無くすこと -extern SceneGraphRoot *sgroot; +//extern SceneGraphRoot *sgroot; +//extern SceneGraphRoot *sgroot_A; +//extern SceneGraphRoot *sgroot_B; #endif
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Renderer/Engine/SgChange.cc Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,166 @@ +#include <SDL.h> +#include "SgChange.h" +#include "viewer_types.h" +#include "SceneGraph.h" +#include "SceneGraphRoot.h" +#include "scene_graph_pack.h" +#include "sys.h" +#include "Func.h" +#include "error.h" +#include "TaskManager.h" +#include <wchar.h> +#include "Pad.h" +#include "Application.h" +#include "lindaapi.h" + +static void post2runLoop(SchedTask *s,void *viewer,void *s1); + +/* measure for FPS (Frame Per Second) */ +int start_time; +int this_time; +int frames; + +/* Data Pack sent to Other CPUs (ex. SPE) */ +SceneGraphPack *sgpack; +PolygonPack *ppack; +SpanPackPtr spackList; +SpanPackPtr *spackList_ptr; + +int spackList_length; +int spackList_length_align; + +/** + * + */ + +SgChange::SgChange(int b, int w, int h, int _num) +{ + bpp = b; + width = w; + height = h; + spe_num = _num; +} + +int +SgChange::get_ticks(void) +{ + int time; + time = SDL_GetTicks(); + return time; +} + +bool +SgChange::quit_check(void) +{ + SDL_Event event; + + while(SDL_PollEvent(&event)) { + if (event.type==SDL_QUIT) { + return true; + } + } + + Uint8 *keys=SDL_GetKeyState(NULL); + + if (keys[SDLK_q] == SDL_PRESSED) { + return true; + } + + return false; +} + +void +SgChange::quit(void) +{ + SDL_Quit(); +} + +void +SgChange::swap_buffers(void) +{ + SDL_GL_SwapBuffers(); +} + + +void +SgChange::run_init(TaskManager *manager, Application *app) +{ + this->manager = manager; + + start_time = get_ticks(); + this_time = 0; + frames = 0; + + // ココ! + sgroot_A = new SceneGraphRoot(this->width, this->height); + sgroot_A->tmanager = manager; + sgroot_B = new SceneGraphRoot(this->width, this->height); + sgroot_B->tmanager = manager; + + MainLoop *mainloop = app->init_only_sg(this, this->width, this->height); + + mainloop->mainLoop(); +} + +void +SgChange::mainLoop() +{ + HTaskPtr task_next = manager->create_task(Dummy); + + task_next->set_post(&post2runLoop, (void *)this, 0); // set_post(function(this->run_loop()), NULL) + task_next->spawn(); +} + +static void +post2runLoop(SchedTask *s, void *viewer_, void *arg) +{ + SgChange *viewer = (SgChange*)viewer_; + HTaskPtr task_next = viewer->manager->create_task(Dummy); + viewer->run_loop(task_next); + + psx_sync_n(); +} + +void +SgChange::exchange_sgroot() +{ + SceneGraphRoot *tmp; + tmp = sgroot_A; + sgroot_A = sgroot_B; + sgroot_B = tmp; +} + +void +SgChange::run_loop(HTaskPtr task_next) +{ + bool quit_flg; + quit_flg = quit_check(); + if (quit_flg == true) { + this_time = get_ticks(); + run_finish(); + return; + } + + sgroot_A->allExecute(width, height); + exchange_sgroot(); + + //printf("Sgroot = %x\n", sgroot_A); + + task_next->set_post(&post2runLoop, (void *)this, 0); + task_next->spawn(); +} + + +void +SgChange::run_finish(void) +{ + if (this_time != start_time) { + printf("%f FPS\n", (((float)frames)/(this_time-start_time))*1000.0); + } + + delete sgroot_A; + delete sgroot_B; + quit(); +} + +/* end */
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Renderer/Engine/SgChange.h Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,106 @@ +#ifndef INCLUDED_SG_CHANGE +#define INCLUDED_SG_CHANGE + +#include <SDL.h> + +#include "viewer_types.h" +#include "TaskManager.h" +#include "KeyStat.h" +#include "MainLoop.h" +#include "Application.h" +#include "SceneGraphRoot.h" + +class SceneGraphRoot; + +class Application; + +class SgChange : public MainLoop { + +public: + + SgChange(int bpp, int width, int height, int spenum); + + virtual ~SgChange() {} + + Application *app; + + TaskManager *manager; + key_stat *keyPtr; + HTaskPtr draw_dummy; + + SceneGraphRoot *sgroot_A; + SceneGraphRoot *sgroot_B; + + /* screen info */ + int width; + int height; + int bpp; + + int spe_num; + + int rgb_size[3]; + Uint32 video_flags; + Uint32 *pixels; + + void init(); + + int get_ticks(); + bool quit_check(); + void quit(); + + virtual void swap_buffers(); + virtual void clean_pixels() {} + + virtual void run_init(TaskManager *manager, Application *app); + virtual void run_loop(HTaskPtr task_next); + virtual void run_finish(); + virtual void exchange_sgroot(); + void mainLoop(); + + void createFromXMLfile(const char *file) + { + sgroot_A->createFromXMLfile(manager, file); + } + + SceneGraph * createSceneGraph(int id) + { + return sgroot_A->createSceneGraph(id); + } + + SceneGraph * createSceneGraph(const char *id) + { + return sgroot_A->createSceneGraph(id); + } + + int getSgid(const char *id) + { + return sgroot_A->getSgid(id); + } + + SceneGraph * createSceneGraph() + { + return sgroot_A->createSceneGraph(); + } + + void setSceneData(SceneGraph *g) + { + sgroot_A->setSceneData(g); + } + + int getLast() + { + return sgroot_A->getLast(); + } + + + + +private: + HTaskPtr initLoop(); +}; + +#define default_sdl_flag SDL_INIT_TIMER | SDL_INIT_JOYSTICK + + +#endif +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Renderer/Engine/SgMain.cc Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,61 @@ +#include "TaskManager.h" +#include "SgChange.h" +#include "Application.h" + +/* prototype */ +extern void task_initialize(); +extern Application *application(); +extern int sg_init(TaskManager *manager, int argc, char *argv[]); + +int +sg_init(TaskManager *manager, int argc, char *argv[]) +{ + int bpp = 32; + int width = 640; + int height = 480; + int spenum = 1; + + for(int i = 1; argv[i]; ++i) + { + if (strcmp(argv[i], "-bpp") == 0) { + bpp = atoi(argv[++i]); + } + if (strcmp(argv[i], "-width") == 0) { + width = atoi(argv[++i]); + } + if (strcmp(argv[i], "-height") == 0) { + height = atoi(argv[++i]); + } + if (strcmp(argv[i], "-cpu") == 0) { + spenum = atoi(argv[++i]); + } + } + + SgChange *screen = new SgChange(bpp, width, height, spenum); + screen->run_init(manager, application()); + + return 0; +} + +#if 0 + +// These are defined in Application + +int +TMmain(TaskManager *manager, int argc, char *argv[]) +{ + task_initialize(); + manager->set_TMend(TMend); + return init(manager, argc, argv); + +} + +void +TMend(TaskManager *manager) +{ + printf("test_nogl end\n"); +} + +#endif + +/* end */
--- a/Renderer/Test/Makefile.cell Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/Makefile.cell Wed Dec 02 20:44:01 2009 +0900 @@ -11,7 +11,7 @@ .cc.o: $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ -ALL = ball_bound boss1_action direction gaplant ieshoot node panel universe untitled vacuum dynamic viewer +ALL = ball_bound boss1_action direction gaplant ieshoot node panel universe untitled vacuum dynamic viewer SgRootChange all: $(ALL) speobject: @@ -76,6 +76,10 @@ viewer : $(VIEWER_OBJ) $(CC) -o $@ $? $(LIBS) +SG_CHANGE_OBJ = SgRootChange.o +SgRootChange : $(SG_CHANGE_OBJ) + $(CC) -o $@ $? $(LIBS) + debug: $(TARGET) sudo ppu-gdb ./$(TARGET)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Renderer/Test/SgRootChange.cc Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,63 @@ +#include <math.h> +#include <stdlib.h> +#include "SceneGraphRoot.h" +#include "MainLoop.h" +#include "SgRootChange.h" + + + + +// prototype +MainLoopPtr +SgRootChange::init(Viewer *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + +MainLoopPtr +SgRootChange::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + SceneGraphPtr ball; + SceneGraphPtr cube; + SceneGraphRoot *sg_buff_A = sgroot->sgroot_A; + SceneGraphRoot *sg_buff_B = sgroot->sgroot_B; + + sg_buff_A->createFromXMLfile(sgroot->manager, "xml_file/Ball.xml"); + sg_buff_B->createFromXMLfile(sgroot->manager, "xml_file/cube.xml"); + + ball = sgroot->sgroot_A->createSceneGraph("Ball"); + cube = sgroot->sgroot_B->createSceneGraph("Cube"); + + sgroot->sgroot_A->setSceneData(ball); + sgroot->sgroot_B->setSceneData(cube); + + return sgroot; +} + +extern Application * +application() { + return new SgRootChange(); +} + +const char *usr_help_str = "Usage: ./test_nogl [OPTION]\n"; + +extern int sg_init(TaskManager *manager, int argc, char *argv[]); +extern void task_initialize(); +static void TMend(TaskManager *manager); + +int +TMmain(TaskManager *manager, int argc, char *argv[]) +{ + task_initialize(); + manager->set_TMend(TMend); + return sg_init(manager, argc, argv); + +} + +void +TMend(TaskManager *manager) +{ + printf("test_nogl end\n"); +} + +/* end */
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Renderer/Test/SgRootChange.h Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,12 @@ +#include <math.h> +#include <stdlib.h> +#include "SceneGraphRoot.h" +#include "Application.h" +#include "MainLoop.h" + +class SgRootChange : public Application { + + MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); + +};
--- a/Renderer/Test/back_action.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/back_action.cc Wed Dec 02 20:44:01 2009 +0900 @@ -4,8 +4,9 @@ using namespace std; void -back_move(SceneGraphPtr node, int w, int h) +back_move(SceneGraphPtr node, void *sgroot_, int w, int h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if (pad->triangle.isPush()) { @@ -17,7 +18,7 @@ } void -back_coll(SceneGraphPtr node, int w, int h, SceneGraphPtr tree) +back_coll(SceneGraphPtr node, void *sgroot_, int w, int h, SceneGraphPtr tree) { }
--- a/Renderer/Test/back_action.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/back_action.h Wed Dec 02 20:44:01 2009 +0900 @@ -1,2 +1,2 @@ -void back_move(SceneGraphPtr, int, int); -void back_coll(SceneGraphPtr, int, int, SceneGraphPtr); +void back_move(SceneGraphPtr node, void *sgroot_, int w, int h); +void back_coll(SceneGraphPtr node, void *sgroot_, int w, int h, SceneGraphPtr tree);
--- a/Renderer/Test/ball_action.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/ball_action.cc Wed Dec 02 20:44:01 2009 +0900 @@ -4,13 +4,13 @@ using namespace std; void -ball_move(SceneGraphPtr node, int w, int h) +ball_move(SceneGraphPtr node, void *sgroot_, int w, int h) { node->xyz[0] += 4; } void -ball_coll(SceneGraphPtr node, int w, int h, SceneGraphPtr tree) +ball_coll(SceneGraphPtr node, void *sgroot_, int w, int h, SceneGraphPtr tree) { if (node->xyz[0] > 600) node->remove(); }
--- a/Renderer/Test/ball_action.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/ball_action.h Wed Dec 02 20:44:01 2009 +0900 @@ -1,2 +1,2 @@ -void ball_move(SceneGraphPtr, int, int); -void ball_coll(SceneGraphPtr, int, int, SceneGraphPtr); +void ball_move(SceneGraphPtr node, void *sgroot_, int w, int h); +void ball_coll(SceneGraphPtr node, void *sgroot_, int w, int h, SceneGraphPtr tree);
--- a/Renderer/Test/ball_bound.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/ball_bound.cc Wed Dec 02 20:44:01 2009 +0900 @@ -6,9 +6,9 @@ // prototype -static void ball_move(SceneGraphPtr node, int screen_w, int screen_h); -static void ball_collision(SceneGraphPtr node, int screen_w, int screen_h, SceneGraphPtr tree); -static void ball_collision_idle(SceneGraphPtr, int w, int h, SceneGraphPtr tree); +static void ball_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); +static void ball_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree); +static void ball_collision_idle(SceneGraphPtr, void *sgroot_, int w, int h, SceneGraphPtr tree); static float vy = 0.0f; // y 方向速度 @@ -24,8 +24,9 @@ static float speed = 10.0f; static void -ball_move_idle2(SceneGraphPtr node, int screen_w, int screen_h) +ball_move_idle2(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if (pad->circle.isHold()) { @@ -54,8 +55,9 @@ static int time = 0; static void -ball_move_idle(SceneGraphPtr node, int screen_w, int screen_h) +ball_move_idle(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if (pad->circle.isPush()) { @@ -77,7 +79,7 @@ } static void -ball_move(SceneGraphPtr node, int screen_w, int screen_h) +ball_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { vy += g * dt; node->xyz[1] += vy * dt; @@ -85,12 +87,12 @@ } static void -ball_collision_idle(SceneGraphPtr, int w, int h, SceneGraphPtr tree) +ball_collision_idle(SceneGraphPtr, void *sgroot_, int w, int h, SceneGraphPtr tree) { } static void -ball_collision(SceneGraphPtr node, int screen_w, int screen_h, +ball_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { if (node->xyz[1] > screen_h - ball_radius) { @@ -131,6 +133,12 @@ return sgroot; } +MainLoopPtr +ball_bound::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + extern Application * application() { return new ball_bound();
--- a/Renderer/Test/ball_bound.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/ball_bound.h Wed Dec 02 20:44:01 2009 +0900 @@ -7,5 +7,5 @@ class ball_bound : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/boss1_action.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/boss1_action.cc Wed Dec 02 20:44:01 2009 +0900 @@ -10,14 +10,14 @@ */ static void -null_collision(SceneGraphPtr node, int screen_w, int screen_h, +null_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { } static void -boss1_move_right(SceneGraphPtr node, int screen_w, int screen_h) { +boss1_move_right(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->xyz[0] += node->stack_xyz[0]; if(node->xyz[0] > (screen_w - boss_radius_x)) { node->set_move_collision(boss1_move_left, null_collision); @@ -26,7 +26,7 @@ //ボスが左に移動する動作 static void -boss1_move_left(SceneGraphPtr node, int screen_w, int screen_h) { +boss1_move_left(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->xyz[0] -= node->stack_xyz[0]; if(node->xyz[0] < boss_radius_x) { node->set_move_collision(boss1_move_right, null_collision); @@ -64,8 +64,9 @@ */ static void -player_move(SceneGraphPtr node, int screen_w, int screen_h) +player_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if (pad->left.isPush() @@ -126,9 +127,11 @@ static int boss1sgid; static void -player_collision(SceneGraphPtr node, int screen_w, int screen_h, +player_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { + + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; //自機とボスのx,y座標での距離と2点間の距離 static float x_distant, y_distant, distance; //ボスの四角形の四隅の座標 @@ -160,7 +163,7 @@ } static void -shot_move(SceneGraphPtr node, int screen_w, int screen_h) +shot_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->xyz[1] -= shot_speed; @@ -171,9 +174,10 @@ } static void -shot_collision(SceneGraphPtr node, int screen_2, int screen_h, +shot_collision(SceneGraphPtr node, void *sgroot_, int screen_2, int screen_h, SceneGraphPtr tree) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; //自機とボスのx,y座標での距離と2点間の距離 static float x_distant, y_distant, distance; //ボスの四角形の四隅の座標 @@ -205,6 +209,12 @@ } } +MainLoopPtr +boss1_action::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + extern Application * application() { return new boss1_action(); @@ -215,8 +225,10 @@ static int blast8; static void -blast_move(SceneGraphPtr node, int screen_w, int screen_h) +blast_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; + if(node->sgid > blast8) { SceneGraphPtr blast = sgroot->createSceneGraph(node->sgid - 1); blast->set_move_collision(blast_move, null_collision);
--- a/Renderer/Test/boss1_action.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/boss1_action.h Wed Dec 02 20:44:01 2009 +0900 @@ -10,7 +10,7 @@ class boss1_action : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); }; static const float player_speed = 10.0f; @@ -32,14 +32,14 @@ */ static void -null_collision(SceneGraphPtr node, int screen_w, int screen_h, +null_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree); static void -boss1_move_right(SceneGraphPtr node, int screen_w, int screen_h); +boss1_move_right(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); static void -boss1_move_left(SceneGraphPtr node, int screen_w, int screen_h); +boss1_move_left(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); /* static void @@ -52,7 +52,7 @@ */ static void -player_move(SceneGraphPtr node,int screen_2, int screen_h); +player_move(SceneGraphPtr node, void *sgroot_, int screen_2, int screen_h); /* static void @@ -60,15 +60,15 @@ */ static void -player_collision(SceneGraphPtr node, int screen_w, int screen_h, +player_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree); static void -shot_move(SceneGraphPtr node, int screen_w, int screen_h); +shot_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); static void -shot_collision(SceneGraphPtr node, int screen_2, int screen_h, +shot_collision(SceneGraphPtr node, void *sgroot_, int screen_2, int screen_h, SceneGraphPtr tree); static void -blast_move(SceneGraphPtr node, int screen_w, int screen_h); +blast_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); #endif
--- a/Renderer/Test/cube.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/cube.cc Wed Dec 02 20:44:01 2009 +0900 @@ -4,16 +4,17 @@ #define SELECT 2 void -cube_collision(SceneGraphPtr node, int screen_w, int screen_h, +cube_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; if (node->frame > 120) { - cube_split(node,tree); + cube_split(node,tree, sgroot); } } void -cube_move_left(SceneGraphPtr node, int screen_w, int screen_h) +cube_move_left(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->xyz[0] -= node->stack_xyz[0]; node->xyz[1] += node->stack_xyz[1]; @@ -36,7 +37,7 @@ } void -cube_move_right(SceneGraphPtr node, int screen_w, int screen_h) +cube_move_right(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->xyz[0] += node->stack_xyz[0]; node->xyz[1] += node->stack_xyz[1]; @@ -55,7 +56,8 @@ extern int enemy ; void -cube_split(SceneGraphPtr root,SceneGraphPtr tree) +cube_split(SceneGraphPtr root,SceneGraphPtr tree, SceneGraphRoot *sgroot +) { SceneGraphPtr p; @@ -134,7 +136,7 @@ } void -collision_purple(SceneGraphIteratorPtr it,SceneGraphPtr node,int w,int h) +collision_purple(SceneGraphIteratorPtr it,SceneGraphPtr node,int w,int h, SceneGraphRoot *sgroot) { float dx, dy,ddx,ddy, r; float q = 0; @@ -149,7 +151,7 @@ ddy = dy*dy; if(sqrt(ddx) < 10 && sqrt(ddy) < 10) { - gameover_scene(w,h,mcube); + gameover_scene(w,h,mcube, sgroot); node->remove(); break; }
--- a/Renderer/Test/direction.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/direction.cc Wed Dec 02 20:44:01 2009 +0900 @@ -2,8 +2,9 @@ #include "direction.h" static void -x_move(SceneGraphPtr node, int w, int h) +x_move(SceneGraphPtr node, void *sgroot_, int w, int h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); node->xyz[0] = w/2; @@ -27,8 +28,9 @@ } static void -y_move(SceneGraphPtr node, int w, int h) +y_move(SceneGraphPtr node, void *sgroot_, int w, int h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); node->xyz[0] = w/2; @@ -50,14 +52,14 @@ } static void -z_move(SceneGraphPtr node, int w, int h) +z_move(SceneGraphPtr node, void *sgroot_, int w, int h) { node->xyz[0] = w/2; node->xyz[1] = h/2; } static void -dir_collision(SceneGraphPtr node, int w, int h, SceneGraphPtr tree) +dir_collision(SceneGraphPtr node, void *sgroot_, int w, int h, SceneGraphPtr tree) { } @@ -93,6 +95,12 @@ return sgroot; } +MainLoopPtr +direction::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + extern Application * application() { return new direction();
--- a/Renderer/Test/direction.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/direction.h Wed Dec 02 20:44:01 2009 +0900 @@ -6,6 +6,6 @@ class direction : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/dynamic_create.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/dynamic_create.cc Wed Dec 02 20:44:01 2009 +0900 @@ -73,20 +73,21 @@ static void -earth_collision(SceneGraphPtr node, int screen_w, int screen_h, +earth_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { } static void -moon_collision(SceneGraphPtr node, int screen_w, int screen_h, +moon_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { } static void -moon_move(SceneGraphPtr node, int screen_w, int screen_h) +moon_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; // LindaServerから座標データを取得してオブジェクトに反映させる。 unsigned char *reply = psx_reply(node->seq); if (reply != NULL) { @@ -110,7 +111,8 @@ } SceneGraphPtr -create_sg(TaskManager *manager, SceneGraphPtr parent, unsigned char *data, int len, int serial_id) +create_sg(TaskManager *manager, SceneGraphPtr parent, unsigned char *data, + int len, int serial_id) { SceneGraphPtr child = sgroot->createSceneGraph(); parent->addChild(child); @@ -207,6 +209,12 @@ return sgroot; } +MainLoopPtr +dynamic_create::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + extern Application * application() { return new dynamic_create();
--- a/Renderer/Test/dynamic_create.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/dynamic_create.h Wed Dec 02 20:44:01 2009 +0900 @@ -7,5 +7,5 @@ class dynamic_create : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/game_over.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/game_over.cc Wed Dec 02 20:44:01 2009 +0900 @@ -3,9 +3,8 @@ void -gameover_scene(int w,int h,SceneGraphPtr node) +gameover_scene(int w,int h,SceneGraphPtr node, SceneGraphRoot *sgroot) { - SceneGraphPtr over; over = sgroot->createSceneGraph("GAMEOVER"); @@ -16,14 +15,14 @@ } void -gameover_idle(SceneGraphPtr node,int screen_w,int screen_h) +gameover_idle(SceneGraphPtr node, void *sgroot_, int screen_w,int screen_h) { } void -gameover_collision(SceneGraphPtr node,int screen_w,int screen_h,SceneGraphPtr tree) +gameover_collision(SceneGraphPtr node, void *sgroot_, int screen_w,int screen_h,SceneGraphPtr tree) { - + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if(pad->start.isPush()) {
--- a/Renderer/Test/gaplant.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/gaplant.cc Wed Dec 02 20:44:01 2009 +0900 @@ -33,7 +33,11 @@ return sgroot; } - +MainLoopPtr +gaplant::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} extern Application * application() {
--- a/Renderer/Test/gaplant.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/gaplant.h Wed Dec 02 20:44:01 2009 +0900 @@ -10,6 +10,6 @@ class gaplant : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/gaplant_action.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/gaplant_action.cc Wed Dec 02 20:44:01 2009 +0900 @@ -49,8 +49,9 @@ } void -gaplant_move(SceneGraphPtr node, int w, int h) +gaplant_move(SceneGraphPtr node, void *sgroot_, int w, int h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if (pad->right.isHold() || pad->left.isHold() || pad->down.isHold() || pad->up.isHold()) { @@ -75,8 +76,9 @@ } void -gaplant_coll(SceneGraphPtr node, int w, int h, SceneGraphPtr tree) +gaplant_coll(SceneGraphPtr node, void *sgroot_, int w, int h, SceneGraphPtr tree) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; SceneGraphIteratorPtr it = sgroot->getIterator(tree); //static int damage = 0;
--- a/Renderer/Test/gaplant_action.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/gaplant_action.h Wed Dec 02 20:44:01 2009 +0900 @@ -1,2 +1,2 @@ -void gaplant_move(SceneGraphPtr, int, int); -void gaplant_coll(SceneGraphPtr, int, int, SceneGraphPtr); +void gaplant_move(SceneGraphPtr node, void *sgroot_, int w, int h); +void gaplant_coll(SceneGraphPtr node, void *sgroot_, int w, int h, SceneGraphPtr tree);
--- a/Renderer/Test/ieshoot.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/ieshoot.cc Wed Dec 02 20:44:01 2009 +0900 @@ -13,31 +13,32 @@ static const float iebosstama_speed = 15.0f; static void -ieboss_collision(SceneGraphPtr node, int screen_w, int screen_h, +ieboss_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree); static void -ieboss_collision_invincibil(SceneGraphPtr node, int screen_w, int screen_h, SceneGraphPtr tree); -static void ieboss_move(SceneGraphPtr node, int screen_w, int screen_h); +ieboss_collision_invincibil(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree); +static void ieboss_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); -static void iebosstama_move(SceneGraphPtr node, int screen_w, int screen_h); +static void iebosstama_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); static void -iejiki_collision(SceneGraphPtr node, int screen_w, int screen_h, +iejiki_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { } static void -ietama_collision(SceneGraphPtr node, int screen_w, int screen_h, +ietama_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { } static void -ieboss_collision(SceneGraphPtr node, int screen_w, int screen_h, +ieboss_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; SceneGraphIteratorPtr it = sgroot->getIterator(tree); static int damage = 0; int ietama = sgroot->getSgid("IETAMA"); @@ -69,7 +70,7 @@ } static void -ieboss_move(SceneGraphPtr node, int screen_w, int screen_h) +ieboss_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { /** * TODO @@ -99,7 +100,7 @@ } static void -ieboss_collision_invincibil(SceneGraphPtr node, int screen_w, int screen_h, +ieboss_collision_invincibil(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { static int frame = 0; @@ -116,7 +117,7 @@ } static void -iebosstama_move(SceneGraphPtr node, int screen_w, int screen_h) +iebosstama_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->xyz[1] += iebosstama_speed; @@ -127,7 +128,7 @@ } static void -ietama_move(SceneGraphPtr node, int screen_w, int screen_h) +ietama_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->xyz[1] -= tama_speed; @@ -138,8 +139,9 @@ } static void -iejiki_move(SceneGraphPtr node, int screen_w, int screen_h) +iejiki_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if (pad->left.isPush() @@ -216,6 +218,12 @@ return sgroot; } +MainLoopPtr +ieshoot::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + extern Application * application() { return new ieshoot();
--- a/Renderer/Test/ieshoot.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/ieshoot.h Wed Dec 02 20:44:01 2009 +0900 @@ -7,6 +7,6 @@ class ieshoot : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/node.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/node.cc Wed Dec 02 20:44:01 2009 +0900 @@ -4,13 +4,13 @@ #include "node.h" static void -cube_collision(SceneGraphPtr node, int screen_w, int screen_h, +cube_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { } static void -cube_move2(SceneGraphPtr node, int screen_w, int screen_h) +cube_move2(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->angle[1] += 1.0f; if (node->angle[1] > 360.0f) { @@ -29,7 +29,7 @@ } static void -cube_move(SceneGraphPtr node, int screen_w, int screen_h) +cube_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->angle[1] += 1.0f; if (node->angle[1] > 360.0f) { @@ -73,6 +73,12 @@ return sgroot; } +MainLoopPtr +node::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + extern Application * application() { return new node();
--- a/Renderer/Test/node.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/node.h Wed Dec 02 20:44:01 2009 +0900 @@ -6,6 +6,6 @@ class node : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/panel.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/panel.cc Wed Dec 02 20:44:01 2009 +0900 @@ -1,17 +1,17 @@ #include "SceneGraphRoot.h" #include "panel.h" -static void panel_move(SceneGraphPtr node, int screen_w, int screen_h); -static void panel_collision(SceneGraphPtr node, int screen_w, int screen_h, +static void panel_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); +static void panel_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree); static void -panel_move(SceneGraphPtr node, int screen_w, int screen_h) +panel_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { } static void -panel_collision(SceneGraphPtr node, int screen_w, int screen_h, +panel_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { } @@ -40,6 +40,12 @@ return sgroot; } +MainLoopPtr +panel::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + extern Application * application() { return new panel();
--- a/Renderer/Test/panel.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/panel.h Wed Dec 02 20:44:01 2009 +0900 @@ -6,6 +6,6 @@ class panel : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/send_linda.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/send_linda.cc Wed Dec 02 20:44:01 2009 +0900 @@ -144,7 +144,7 @@ } static char *xml; -static char *linda = HOSTNAME; +static const char *linda = HOSTNAME; MainLoopPtr send_linda::init(Viewer *sgr, int screen_w, int screen_h)
--- a/Renderer/Test/title.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/title.cc Wed Dec 02 20:44:01 2009 +0900 @@ -4,9 +4,9 @@ extern int redcube; void -title_collision(SceneGraphPtr node, int w, int h,SceneGraphPtr tree) +title_collision(SceneGraphPtr node, void *sgroot_, int w, int h,SceneGraphPtr tree) { - + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if(pad->start.isPush()) { @@ -21,7 +21,7 @@ back->addChild(vacuum); - add_cubecollision_object(redcube,vacuum,w,h); + add_cubecollision_object(redcube,vacuum,w,h, sgroot); sgroot->setSceneData(back);
--- a/Renderer/Test/universe.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/universe.cc Wed Dec 02 20:44:01 2009 +0900 @@ -3,26 +3,26 @@ #include "universe.h" static void -earth_collision(SceneGraphPtr node, int screen_w, int screen_h, +earth_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { } static void -moon_collision(SceneGraphPtr node, int screen_w, int screen_h, +moon_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { } static void -moon_move(SceneGraphPtr node, int screen_w, int screen_h) +moon_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->angle[0] += 3.0f; } static void -earth_move(SceneGraphPtr node, int screen_w, int screen_h) +earth_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->angle[1] += 1.0f; if (node->angle[1] > 360.0f) { @@ -68,6 +68,11 @@ return sgroot; } +MainLoopPtr +universe::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} extern Application * application() {
--- a/Renderer/Test/universe.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/universe.h Wed Dec 02 20:44:01 2009 +0900 @@ -7,6 +7,6 @@ class universe : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/untitled.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/untitled.cc Wed Dec 02 20:44:01 2009 +0900 @@ -4,20 +4,20 @@ #include <math.h> static void -cubetest_collision(SceneGraphPtr node, int screen_w, int screen_h, +cubetest_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { } static void -test_collision(SceneGraphPtr node, int screen_w, int screen_h, +test_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { // test } static void -test_move(SceneGraphPtr node, int screen_w, int screen_h) +test_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->angle[0] += 10.0f; @@ -48,7 +48,7 @@ } static void -cubetest_move(SceneGraphPtr node, int screen_w, int screen_h) +cubetest_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { node->angle[1] += 10.0f; if (node->angle[1] > 360.0f) { @@ -148,6 +148,12 @@ return sgroot; } +MainLoopPtr +untitled::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + extern Application * application() { return new untitled();
--- a/Renderer/Test/untitled.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/untitled.h Wed Dec 02 20:44:01 2009 +0900 @@ -7,6 +7,6 @@ class untitled : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/Renderer/Test/vacuum.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/vacuum.cc Wed Dec 02 20:44:01 2009 +0900 @@ -15,13 +15,13 @@ void -no_move_idle(SceneGraphPtr node, int screen_w, int screen_h) +no_move_idle(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { } void -no_collision_idle(SceneGraphPtr node, int screen_w, int screen_h,SceneGraphPtr tree) +no_collision_idle(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h,SceneGraphPtr tree) { } @@ -30,17 +30,18 @@ int enemy; void -vacuum_coll(SceneGraphPtr node, int screen_w, int screen_h, +vacuum_coll(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if(node->frame%ENCOUNT == ENCOUNT-1) { if(random()%2) { - add_cubecollision_object(redcube,node,screen_w,screen_h); + add_cubecollision_object(redcube,node,screen_w,screen_h, sgroot); } else { - add_cubecollision_object(enemy,node,screen_w,screen_h); + add_cubecollision_object(enemy,node,screen_w,screen_h, sgroot); } } @@ -48,18 +49,18 @@ SceneGraphIteratorPtr it = sgroot->getIterator(tree); collision_red(it,node); it = sgroot->getIterator(tree); - collision_purple(it,node,screen_w,screen_h); + collision_purple(it,node,screen_w,screen_h, sgroot); } else if(pad->circle.isHold()) { SceneGraphIteratorPtr it = sgroot->getIterator(tree); - lock_attack(node,it); + lock_attack(node, it, sgroot); } } void -lock_attack(SceneGraphPtr node,SceneGraphIteratorPtr it) +lock_attack(SceneGraphPtr node,SceneGraphIteratorPtr it, SceneGraphRoot *sgroot) { SceneGraphPtr e; @@ -96,8 +97,8 @@ } void -lockon_collision(SceneGraphPtr node,int w,int h,SceneGraphPtr tree) { - +lockon_collision(SceneGraphPtr node, void *sgroot_, int w, int h, SceneGraphPtr tree) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); SceneGraphPtr lockon_enemy = node->parent; @@ -113,8 +114,9 @@ void -vacuum_move(SceneGraphPtr node , int w, int h) +vacuum_move(SceneGraphPtr node, void *sgroot_, int w, int h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if (pad->right.isHold() && w > node->xyz[0]) { @@ -143,7 +145,7 @@ /*cubeをランダムな場所に生成*/ void -add_cubecollision_object(int id,SceneGraphPtr root,int w,int h) +add_cubecollision_object(int id,SceneGraphPtr root,int w,int h, SceneGraphRoot *sgroot) { SceneGraphPtr object; SceneGraphPtr common_move; @@ -180,6 +182,12 @@ return sgroot; } +MainLoopPtr +vacuum::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + extern Application * application() { return new vacuum();
--- a/Renderer/Test/vacuum.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/vacuum.h Wed Dec 02 20:44:01 2009 +0900 @@ -10,29 +10,29 @@ class vacuum : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); }; -extern void cube_move_left(SceneGraphPtr node, int screen_w, int screen_h); -extern void cube_move_right(SceneGraphPtr node, int screen_w, int screen_h); -extern void no_move_idle(SceneGraphPtr node, int screen_w, int screen_h); -extern void cube_collision_idle(SceneGraphPtr node, int screen_w, int screen_h,SceneGraphPtr tree); -extern void cube_collision(SceneGraphPtr node, int screen_w, int screen_h,SceneGraphPtr tree); -extern void cube_split(SceneGraphPtr root,SceneGraphPtr tree); -extern void vacuum_move(SceneGraphPtr node, int w, int h); -extern void vacuum_coll(SceneGraphPtr node, int w, int h,SceneGraphPtr tree); -extern void title_idle(SceneGraphPtr node, int screen_w, int screen_h); -extern void title_collision(SceneGraphPtr node, int screen_w, int screen_h,SceneGraphPtr tree); +extern void cube_move_left(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); +extern void cube_move_right(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); +extern void no_move_idle(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); +extern void cube_collision_idle(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h,SceneGraphPtr tree); +extern void cube_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h,SceneGraphPtr tree); +extern void cube_split(SceneGraphPtr root,SceneGraphPtr tree, SceneGraphRoot *sgroot); +extern void vacuum_move(SceneGraphPtr node, void *sgroot_, int w, int h); +extern void vacuum_coll(SceneGraphPtr node, void *sgroot_, int w, int h,SceneGraphPtr tree); +extern void title_idle(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); +extern void title_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h,SceneGraphPtr tree); extern void scene_change(int w,int h,SceneGraphPtr node); -extern void gameover_idle(SceneGraphPtr node, int screen_w, int screen_h); -extern void gameover_collision(SceneGraphPtr node, int screen_w, int screen_h,SceneGraphPtr tree); +extern void gameover_idle(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); +extern void gameover_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h,SceneGraphPtr tree); extern void collision_red(SceneGraphIteratorPtr it,SceneGraphPtr node); -extern void collision_purple(SceneGraphIteratorPtr it,SceneGraphPtr node,int w,int h); -extern void gameover_scene(int w,int h, SceneGraphPtr node); -extern void add_cubecollision_object(int id,SceneGraphPtr root,int w,int h); -extern void lock_attack(SceneGraphPtr node,SceneGraphIteratorPtr it); -extern void lockon_collision(SceneGraphPtr node,int w,int h,SceneGraphPtr tree); +extern void collision_purple(SceneGraphIteratorPtr it,SceneGraphPtr node,int w,int h, SceneGraphRoot *sgroot); +extern void gameover_scene(int w,int h, SceneGraphPtr node, SceneGraphRoot *sgroot); +extern void add_cubecollision_object(int id,SceneGraphPtr root,int w,int h, SceneGraphRoot *sgroot); +extern void lock_attack(SceneGraphPtr node, SceneGraphIteratorPtr it, SceneGraphRoot *sgroot); +extern void lockon_collision(SceneGraphPtr node, void *sgroot_, int w,int h,SceneGraphPtr tree); extern void cube_rotate(SceneGraphPtr node,int w,int h); #endif
--- a/Renderer/Test/viewer.cc Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/viewer.cc Wed Dec 02 20:44:01 2009 +0900 @@ -6,9 +6,9 @@ // prototype -static void ball_move(SceneGraphPtr node, int screen_w, int screen_h); -static void ball_collision(SceneGraphPtr node, int screen_w, int screen_h, SceneGraphPtr tree); -static void ball_collision_idle(SceneGraphPtr, int w, int h, SceneGraphPtr tree); +static void ball_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h); +static void ball_collision(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h, SceneGraphPtr tree); +static void ball_collision_idle(SceneGraphPtr, void *sgroot_, int w, int h, SceneGraphPtr tree); static float vy = 0.0f; // y 方向速度 @@ -24,8 +24,9 @@ static float speed = 10.0f; static void -ball_move_idle2(SceneGraphPtr node, int screen_w, int screen_h) +ball_move_idle2(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if (pad->circle.isHold()) { @@ -54,8 +55,9 @@ static int time = 0; static void -ball_move_idle(SceneGraphPtr node, int screen_w, int screen_h) +ball_move_idle(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { + SceneGraphRoot *sgroot = (SceneGraphRoot *)sgroot_; Pad *pad = sgroot->getController(); if (pad->circle.isPush()) { @@ -77,7 +79,7 @@ } static void -ball_move(SceneGraphPtr node, int screen_w, int screen_h) +ball_move(SceneGraphPtr node, void *sgroot_, int screen_w, int screen_h) { vy += g * dt; node->xyz[1] += vy * dt; @@ -85,13 +87,13 @@ } static void -ball_collision_idle(SceneGraphPtr, int w, int h, SceneGraphPtr tree) +ball_collision_idle(SceneGraphPtr, void *sgroot_, int w, int h, SceneGraphPtr tree) { } static void -ball_collision(SceneGraphPtr node, int screen_w, int screen_h, - SceneGraphPtr tree) +ball_collision(SceneGraphPtr node, void *sgroot_, int screen_w, + int screen_h, SceneGraphPtr tree) { if (node->xyz[1] > screen_h - ball_radius) { node->xyz[1] = screen_h - ball_radius; @@ -139,6 +141,12 @@ return sgroot; } +MainLoopPtr +viewer::init_only_sg(SgChange *sgroot, int screen_w, int screen_h) +{ + return sgroot; +} + extern Application * application() { return new viewer();
--- a/Renderer/Test/viewer.h Tue Dec 01 19:00:24 2009 +0900 +++ b/Renderer/Test/viewer.h Wed Dec 02 20:44:01 2009 +0900 @@ -7,5 +7,5 @@ class viewer : public Application { MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); - + MainLoopPtr init_only_sg(SgChange *viewer, int screen_w, int screen_h); };
--- a/SceneGraph/BlenderScript/export_xml.py Tue Dec 01 19:00:24 2009 +0900 +++ b/SceneGraph/BlenderScript/export_xml.py Wed Dec 02 20:44:01 2009 +0900 @@ -31,10 +31,10 @@ Takes module, class, list, dictionary, or string.""" methodList = [e for e in dir(object) if callable(getattr(object, e))] processFunc = collapse and (lambda s: " ".join(s.split())) or (lambda s: s) - print "\n".join(["%s %s" % - (method.ljust(spacing), - processFunc(str(getattr(object, method).__doc__))) - for method in methodList]) +# print "\n".join(["%s %s" % +# (method.ljust(spacing), +# processFunc(str(getattr(object, method).__doc__))) +# for method in methodList]) ###################################################### @@ -59,7 +59,7 @@ #def export_anime(object_name): def export_anime(object_name,file): startF = Blender.Get('staframe') - endF = Blender.Get('endframe') + endF = Blender.Get('endframe') #str = "" file.write("") file.write("\t\t<anim frame=\"%d\">\n" %(endF) ) @@ -68,8 +68,8 @@ Blender.Redraw() time1 = Blender.sys.time() - ##### XML header ###### - #get all the objects in this scene + ##### XML header ###### + #get all the objects in this scene activelayers = Window.ViewLayer() for i in range(len(activelayers)): activelayers[i] = 2**(activelayers[i]-1) @@ -94,7 +94,7 @@ file.write("\t\t\t%f %f %f\n" %(matrix[3][0], matrix[3][1], matrix[3][2]) ) file.write("\t\t</anim>\n") - #return str + #return str @@ -429,19 +429,19 @@ def event(evt, val): # function that handles keyboard and mouse events if evt == Draw.ESCKEY or evt == Draw.QKEY: - stop = Draw.PupMenu("OK?%t|Cancel export %x1") - if stop == 1: - Draw.Exit() - return + stop = Draw.PupMenu("OK?%t|Cancel export %x1") + if stop == 1: + Draw.Exit() + return def buttonEvt(evt): # function that handles button events if evt == evtExport: - Blender.Window.FileSelector(save_still, "Export", newFName('xml')) + Blender.Window.FileSelector(save_still, "Export", newFName('xml')) if evt == evtExportAnim: - Blender.Window.FileSelector(save_anim, "Export Animation", newFName('xml')) + Blender.Window.FileSelector(save_anim, "Export Animation", newFName('xml')) #if there was an event, redraw the window if evt: - Draw.Redraw() + Draw.Redraw() def loadTexture(texture):
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SceneGraph/BlenderScript/export_xml3.py Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,465 @@ +#!BPY +"""Registration info for Blender menus: +Name: 'Libps3 (.xml)' +Blender: 240 +Group: 'Export' +Tooltip: 'Export to (.xml) for libps3' +""" + + +###################################################### +# Importing modules +###################################################### + +import math +#import subprocess +import os +#import Blender +import struct +import base64 +#from Blender import NMesh, Scene, Object, Material, Texture, Window +#from Blender import sys as bsys, Mathutils, Draw, BGL +#from Blender.sys import * + +global anim +anim = 0 + + +global images, imageCount +images = {} +imageCount = 0 + + +__author__ = ["Shinji KONO"] +__url__ = ("www.ie.u-ryukyu.ac.jp/~kono/") +__version__ = "0.01a" +__bpydoc__ = """\ + +Cerium XML converter + +""" + + +###################################################### +# Data Structures +###################################################### + + + + +###################################################### +# Functions +###################################################### + + +def create_derived_objects(ob): + if ob.parent and ob.parent.dupli_type != 'NONE': + return False, None + + if ob.dupli_type != 'NONE': + ob.create_dupli_list() + return True, [(dob.object, dob.matrix) for dob in ob.dupli_list] + else: + return False, [(ob, ob.matrix)] + +# also used by X3D exporter +def free_derived_objects(ob): + ob.free_dupli_list() + + +#exporting an anime +###change +#def export_anime(object_name): +def export_anime(object_name,file): + startF = Blender.Get('staframe') + endF = Blender.Get('endframe') + #str = "" + file.write("") + file.write("\t\t<anim frame=\"{0:d}\">\n".format((endF) )) + for i in range (startF, endF+1): + Blender.Set('curframe', i) + Blender.Redraw() + time1 = Blender.sys.time() + + ##### XML header ###### + #get all the objects in this scene + activelayers = Window.ViewLayer() + for i in range(len(activelayers)): + activelayers[i] = 2**(activelayers[i]-1) + object_list1 = Blender.Scene.GetCurrent().getChildren() + object_list = [] + matnames= [] + for obj in object_list1: + if obj.Layer in activelayers: + object_list.append(obj) + + if obj.type == 'Mesh': + materials_obj_list = [] + materials_obj_list = obj.getData().materials + for mat in materials_obj_list: + if mat.name not in matnames: + matnames.append(mat.name) + + ##### Process Meshes ###### + for obj in object_list: + matrix = obj.getMatrix() + if obj == object_name: + file.write("\t\t\t{0:f} {1:f} {2:f}\n".format((matrix[3][0], matrix[3][1], matrix[3][2]) )) + + file.write("\t\t</anim>\n") + #return str + + + +# exporting a mesh +##change +#def exportMesh(mesh, obj): +def exportMesh(mesh, obj, file): + + vdata = [] # list of [ii0, ii1, ii2, ...] lists indexed by Blender-Vertex-index + vlist = [] + flist = [] + tri_first = [] + tri_second = [] + tri_third = [] + + def addVertex(bvindex, coord, normal, uv): + index = -1 + if bvindex < len(vdata): + for ivindex in vdata[bvindex]: + v = vlist[ivindex] + if (abs(v[0][0]-coord[0])<0.0001) and \ + (abs(v[0][1]-coord[1])<0.0001) and \ + (abs(v[0][2]-coord[2])<0.0001) and \ + (abs(v[1][0]-normal[0])<0.0001) and \ + (abs(v[1][1]-normal[1])<0.0001) and \ + (abs(v[1][2]-normal[2])<0.0001): + if ((v[2]==[]) and (uv==[])) or \ + ((abs(v[2][0]-uv[0])<0.0001) and \ + (abs(v[2][1]-uv[1])<0.0001)): + index = ivindex + if index < 0: + index = len(vlist) + vlist.append([coord, normal, uv]) + while bvindex >= len(vdata): + vdata.append([]) + vdata[bvindex].append(index) + return index + + def addFace(mindex, index0, index1, index2): + while mindex >= len(flist): + flist.append([]) + flist[mindex].append([index0, index1, index2]) + + ###change + def getFaces(): + ##change + #str = "" + file.write("") + # matrix = obj.matrix + # already calcurated? + matrix = [[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]] + + for mindex in range(len(flist)): + fl = flist[mindex] + if fl != []: + parent_name = obj.parent + if parent_name: + parent_name = "{0:s}".format(parent_name) + ###change + #str += "\t<surface name=\"{0:s}\" size=\"{0:d}\" prim=\"Triangle\" parent={0:s}>\n".format((obj.name, len(fl)*3, parent_name[8:-1]) + file.write("\t<surface name=\"{0:s}\" size=\"{1:d}\" prim=\"Triangle\" parent={2:s}>\n".format((obj.name, len(fl)*3, parent_name[8:-1]) )) + else: + ###change + #str += "\t<surface name=\"{0:s}\" size=\"{0:d}\" prim=\"Triangle\" parent=\"NULL\">\n".format((obj.name, len(fl)*3) + file.write("\t<surface name=\"{0:s}\" size=\"{1:d}\" prim=\"Triangle\" parent=\"NULL\">\n".format((obj.name, len(fl)*3) )) + ###change + #str += "\t\t<coordinate>\n" + file.write("\t\t<coordinate>\n") + for f in fl: + tri_first = vlist[f[0]] + tri_second = vlist[f[1]] + tri_third = vlist[f[2]] + + file.write("\t\t\t{0:f} {1:f} {2:f}\n".format((tri_first[0][0] + matrix[3][0], tri_first[0][1] + matrix[3][1], tri_first[0][2] + matrix[3][2]) )) + file.write("\t\t\t{0:f} {1:f} {2:f}\n".format((tri_second[0][0] + matrix[3][0], tri_second[0][1] + matrix[3][1], tri_second[0][2] + matrix[3][2]) )) + file.write("\t\t\t{0:f} {1:f} {2:f}\n".format((tri_third[0][0] + matrix[3][0], tri_third[0][1] + matrix[3][1], tri_third[0][2] + matrix[3][2]) )) + file.write("\t\t</coordinate>\n") + + file.write("\t\t<normal>\n") + for f in fl: + tri_first = vlist[f[0]] + tri_second = vlist[f[1]] + tri_third = vlist[f[2]] + + file.write("\t\t\t{0:f} {1:f} {2:f}\n".format((tri_first[1][0], tri_first[1][1], tri_first[1][2]) )) + file.write("\t\t\t{0:f} {1:f} {2:f}\n".format((tri_second[1][0], tri_second[1][1], tri_second[1][2]) )) + file.write("\t\t\t{0:f} {1:f} {2:f}\n".format((tri_third[1][0], tri_third[1][1], tri_third[1][2]) )) + file.write("\t\t</normal>\n" ) + + file.write("\t\t<model>\n" ) + ###parameter of translate + file.write("\t\t\t{0:f} {1:f} {2:f}\n".format( (matrix[3][0], matrix[3][1], matrix[3][2]) )) + file.write("\t\t</model>\n") + + if tri_first[2] != []: + file.write("\t\t<texture>\n") + for f in fl: + tri_first = vlist[f[0]] + tri_second = vlist[f[1]] + tri_third = vlist[f[2]] + + file.write("\t\t\t{0:f} {1:f}\n".format((tri_first[2][0], tri_first[2][1]) )) + file.write("\t\t\t{0:f} {1:f}\n".format((tri_second[2][0], tri_second[2][1]) )) + file.write("\t\t\t{0:f} {0:f}\n".format((tri_third[2][0], tri_third[2][1]) )) + file.write("\t\t</texture>\n") + else: + file.write("\t\t<texture/>\n") + + + ### get texture_image and change base64 data + texture = mesh.faces[0].image + if texture: + file.write(loadTexture(texture.name)) + else: + file.write("\t\t<image name=\"{0:s}\">\n".format(("sample_white.png") )) + file.write("\t\t</image>\n") + + #return str + + vdata = [] + vlist = [] + flist = [] + for face in mesh.faces: + iis = [-1, -1, -1, -1] + for vi in range(len(face.v)): + vert = face.v[vi] + if face.smooth: + normal = vert.no + else: + normal = face.no + if len(face.uv) == len(face.v): + uv = face.uv[vi] + else: + uv = [] + iis[vi] = addVertex(vert.index, vert.co, normal, uv) + addFace(face.materialIndex, iis[0], iis[1], iis[2]) + if len(face.v)==4: + addFace(face.materialIndex, iis[2], iis[3], iis[0]) + + #str = "" + #str += getFaces() + getFaces(); + + #return str + +def make_material_chunk(material, image): + if image: + file.write(loadTexture(image)) + else: + file.write("\t\t<image name=\"{0:s}\">\n".format(("sample_white.png") )) + global sample_whited + if (sample_whited == 0): + + file.write("\t\t\tiVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAAAAADhZOFXAAAAEElEQVQImWP8zwABTAwUMQBJQQEP\n"); + file.write("\t\t\tlYH+agAAAABJRU5ErkJggg==\n"); + sample_whited=1 + + file.write("\t\t</image>\n") + +###################################################### +# EXPORT +###################################################### + + +def save_xml(filename, context): + '''Save the Blender scene to a Cerium xml file.''' + # Time the export + global MatSaved + global anim + MatSaved = 0 + + if not filename.lower().endswith('.xml'): + filename += '.xml' + print("Saving to '" + filename + "'...\n") + file = open(filename, 'w') + + # XXX +# if not BPyMessages.Warning_SaveOver(filename): +# return + + # XXX + time1 = time.clock() +# time1= Blender.sys.time() +# Blender.Window.WaitCursor(1) + + ##### XML header ###### + file.write("<?xml version=\"1.0\"?>\n") + file.write("<OBJECT-3D>\n") + + sce = context.scene + + # Get all the supported objects selected in this scene: + # ob_sel= list(sce.objects.context) + # mesh_objects = [ (ob, me) for ob in ob_sel for me in (BPyMesh.getMeshFromObject(ob, None, True, False, sce),) if me ] + # empty_objects = [ ob for ob in ob_sel if ob.type == 'Empty' ] + + # Make a list of all materials used in the selected meshes (use a dictionary, + # each material is added once): + materialDict = {} + mesh_objects = [] + for ob in [ob for ob in context.scene.objects if ob.is_visible()]: +# for ob in sce.objects.context: + + # get derived objects + free, derived = create_derived_objects(ob) + + if derived == None: continue + + for ob_derived, mat in derived: +# for ob_derived, mat in getDerivedObjects(ob, False): + + if ob.type not in ('MESH', 'CURVE', 'SURFACE', 'TEXT', 'META'): + continue + + data = ob_derived.create_mesh(True, 'PREVIEW') +# data = getMeshFromObject(ob_derived, None, True, False, sce) + if data: + data.transform(mat) +# data.transform(mat, recalc_normals=False) + mesh_objects.append((ob_derived, data)) + mat_ls = data.materials + mat_ls_len = len(mat_ls) + + # get material/image tuples. + if len(data.uv_textures): +# if data.faceUV: + if not mat_ls: + mat = mat_name = None + + for f, uf in zip(data.faces, data.active_uv_texture.data): + if mat_ls: + mat_index = f.material_index +# mat_index = f.mat + if mat_index >= mat_ls_len: + mat_index = f.mat = 0 + mat = mat_ls[mat_index] + if mat: mat_name = mat.name + else: mat_name = None + # else there alredy set to none + + img = uf.image +# img = f.image + if img: img_name = img.name + else: img_name = None + + materialDict.setdefault((mat_name, img_name), (mat, img) ) + + + else: + for mat in mat_ls: + if mat: # material may be None so check its not. + materialDict.setdefault((mat.name, None), (mat, None) ) + + # Why 0 Why! + for f in data.faces: + if f.material_index >= mat_ls_len: +# if f.mat >= mat_ls_len: + f.material_index = 0 + # f.mat = 0 + + if free: + free_derived_objects(ob) + + + # Make material chunks for all materials used in the meshes: + for mat_and_image in materialDict.values(): + print("make material chunk {0:s}\n".format(mat_and_image[1])) + make_material_chunk(mat_and_image[0], mat_and_image[1]) + + # Give all objects a unique ID and build a dictionary from object name to object id: + """ + name_to_id = {} + for ob, data in mesh_objects: + name_to_id[ob.name]= len(name_to_id) + #for ob in empty_objects: + # name_to_id[ob.name]= len(name_to_id) + """ + + # Create object chunks for all meshes: + for ob, blender_mesh in mesh_objects: + print("export mesh {0:s}\n".format(ob.name)) + exportMesh(blender_mesh,ob,file) + if (anim): + export_anime(obj,file) + file.write("\t</surface>\n") +# if not blender_mesh.users: + bpy.data.remove_mesh(blender_mesh) +# blender_mesh.verts = None + + # Close the file: + file.close() + + + + +def loadTexture(texture): + global images, imageCount + name = texture.name + if name in images: + return "\t\t<image name=\"" + name + "\"/>\n" + out = "\t\t<image name=\"" + name + "\">\n" + imageCount += 1 + images[name] = imageCount + image_path = texture.getFilename() + input = open(expandpath(image_path), 'r') + output = open('output.txt', 'w') + base64.encode(input,output) + input.close() + output.close() + input = open('output.txt', 'r') + for b64 in input.readlines(): + out += "\t\t\t{0:s}".format(b64) + input.close() + os.remove('output.txt') + out += "\t\t</image>\n" + return out + + +from bpy.props import * +class ExportPS3(bpy.types.Operator): + '''Export to Cerium XML file format.''' + bl_idname = "export.ps3cerium" + bl_label = 'Export PS3 Cerium' + + # List of operator properties, the attributes will be assigned + # to the class instance from the operator settings before calling. + + + path = StringProperty(name="File Path", description="File path used for exporting the Cerium XML file", maxlen= 1024, default= "") + + + def execute(self, context): + save_xml(self.properties.path, context) + return ('FINISHED',) + + def invoke(self, context, event): + wm = context.manager + wm.add_fileselect(self) + return ('RUNNING_MODAL',) + + def poll(self, context): # Poll isnt working yet + return context.active_object != None + +bpy.ops.add(ExportPS3) + +# Add to a menu +import dynamic_menu + +def menu_func(self, context): + default_path = bpy.data.filename.replace(".blend", ".xml") + self.layout.operator(ExportPS3.bl_idname, text="PS3 Cerium...").path = default_path + +menu_item = dynamic_menu.add(bpy.types.INFO_MT_file_export, menu_func) + +# end
--- a/example/HelloWorld/Makefile.def Tue Dec 01 19:00:24 2009 +0900 +++ b/example/HelloWorld/Makefile.def Wed Dec 02 20:44:01 2009 +0900 @@ -7,7 +7,7 @@ # ex linux/ps3 CERIUM = ../../../Cerium -CC = g++ # -m64 +CC = g++ -m32 CFLAGS = -g -Wall -O9 INCLUDE = -I${CERIUM}/include/TaskManager -I. -I..
--- a/example/MemList/Makefile.def Tue Dec 01 19:00:24 2009 +0900 +++ b/example/MemList/Makefile.def Wed Dec 02 20:44:01 2009 +0900 @@ -5,9 +5,10 @@ # ex: linux/ps3 CERIUM = ../../../Cerium +ABIBIT=32 -CC = g++ -CFLAGS = -g -Wall -O9 +CC = g++ -m$(ABIBIT) +CFLAGS = -g -Wall -O9 INCLUDE = -I${CERIUM}/include/TaskManager -I. -I.. LIBS = -L${CERIUM}/TaskManager
--- a/example/MemList/Makefile.macosx Tue Dec 01 19:00:24 2009 +0900 +++ b/example/MemList/Makefile.macosx Wed Dec 02 20:44:01 2009 +0900 @@ -1,6 +1,5 @@ include ./Makefile.def -CC += -m64 SRCS_TMP = $(wildcard *.cc) SRCS_EXCLUDE = SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP))
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/word_count_test/Func.h Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,11 @@ +enum { +#include "SysTasks.h" + TASK_EXEC, + TASK_PRINT, + RUN_FINISH, +}; + +#define DATA_NUM 12 +#define ADD_NUM 26 + +#define DATA_ID 0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/word_count_test/Makefile Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,20 @@ +default: macosx + +macosx: FORCE + @echo "Make for Mac OS X" + @$(MAKE) -f Makefile.macosx + +linux: FORCE + @echo "Make for Linux" + @$(MAKE) -f Makefile.linux + +cell: FORCE + @echo "Make for CELL (Cell)" + @$(MAKE) -f Makefile.cell + +FORCE: + +clean: + @$(MAKE) -f Makefile.macosx clean + @$(MAKE) -f Makefile.linux clean + @$(MAKE) -f Makefile.cell clean \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/word_count_test/Makefile.cell Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,39 @@ +include ./Makefile.def + +SRCS_TMP = $(wildcard *.cc) +SRCS_EXCLUDE = # ե +SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) +OBJS = $(SRCS:.cc=.o) + +TASK_DIR = ppe +TASK_SRCS_TMP = $(wildcard $(TASK_DIR)/*.cc) +TASK_SRCS_EXCLUDE = +TASK_SRCS = $(filter-out $(TASK_DIR)/$(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP)) +TASK_OBJS = $(TASK_SRCS:.cc=.o) + +LIBS += -lCellManager -lspe2 -lpthread -Wl,--gc-sections + +.SUFFIXES: .cc .o + +.cc.o: + $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ + +all: $(TARGET) speobject + +$(TARGET): $(OBJS) $(TASK_OBJS) + $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) + +speobject: + cd spe; $(MAKE) + +link: + $(CC) -o $(TARGET) $(OBJS) $(TASK_OBJS) $(LIBS) + +debug: $(TARGET) + sudo ppu-gdb ./$(TARGET) + +clean: + rm -f $(TARGET) $(OBJS) $(TASK_OBJS) + rm -f *~ \#* + rm -f ppe/*~ ppe/\#* + cd spe; $(MAKE) clean
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/word_count_test/Makefile.def Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,14 @@ +TARGET = word_count + +# include/library path +# ex: macosx +#CERIUM = /Users/gongo/Source/Cerium + +# ex: linux/ps3 +CERIUM = ../../../Cerium + +CC = g++ +CFLAGS = -g -Wall -O9 + +INCLUDE = -I${CERIUM}/include/TaskManager -I. -I.. +LIBS = -L${CERIUM}/TaskManager
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/word_count_test/Makefile.linux Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,36 @@ +include ./Makefile.def + +SRCS_TMP = $(wildcard *.cc) +SRCS_EXCLUDE = # ե +SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) +OBJS = $(SRCS:.cc=.o) + +TASK_DIR = ppe +TASK_SRCS_TMP = $(wildcard $(TASK_DIR)/*.cc) +TASK_SRCS_EXCLUDE = +TASK_SRCS = $(filter-out $(TASK_DIR)/$(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP)) +TASK_OBJS = $(TASK_SRCS:.cc=.o) + +LIBS += -lFifoManager + +.SUFFIXES: .cc .o + +.cc.o: + $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ + +all: $(TARGET) + +$(TARGET): $(OBJS) $(TASK_OBJS) + $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) + +link: + $(CC) -o $(TARGET) $(OBJS) $(TASK_OBJS) $(LIBS) + +debug: $(TARGET) + sudo gdb ./$(TARGET) + +clean: + rm -f $(TARGET) $(OBJS) $(TASK_OBJS) + rm -f *~ \#* + rm -f ppe/*~ ppe/\#* + rm -f spe/*~ spe/\#*
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/word_count_test/Makefile.macosx Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,37 @@ +include ./Makefile.def + +SRCS_TMP = $(wildcard *.cc) +SRCS_EXCLUDE = # ե +SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) +OBJS = $(SRCS:.cc=.o) + +TASK_DIR = ppe +TASK_SRCS_TMP = $(wildcard $(TASK_DIR)/*.cc) +TASK_SRCS_EXCLUDE = +TASK_SRCS = $(filter-out $(TASK_DIR)/$(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP)) +TASK_OBJS = $(TASK_SRCS:.cc=.o) + +LIBS += -lFifoManager `sdl-config --libs` +CC += -m32 + +.SUFFIXES: .cc .o + +.cc.o: + $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ + +all: $(TARGET) + +$(TARGET): $(OBJS) $(TASK_OBJS) + $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) + +link: + $(CC) -o $(TARGET) $(OBJS) $(TASK_OBJS) $(LIBS) + +debug: $(TARGET) + sudo gdb ./$(TARGET) + +clean: + rm -f $(TARGET) $(OBJS) $(TASK_OBJS) + rm -f *~ \#* + rm -f ppe/*~ ppe/\#* + rm -f spe/*~ spe/\#*
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/word_count_test/README Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,59 @@ +/* + * $Id: README,v 1.3 2008/10/20 08:49:52 gongo Exp $ + */ + +- +Task ΰ¸طꤹ + +ढä + + idata Ȥ ( length*2) + +Exec: idata length ʬƼꡢǤͤû + Ⱦʬʬ뤿ᡢϤΥ 2 Ĥ˸ꡣ + ޤ3İʾǤ⤤ɤ͡ + +Print: idata ɽ롣 + + +¸طȤƤϡޤ Exec ˼¹ԤʤȤʤΤ + +------------> + +Exec 1 + \ + Print + / +Exec 2 + + +ߤʴ +ΰ¸ꤷʤȡPrint Exec1,2 +idata ӤǤޤǽ롣 + + +- ¹ˡ + +% ./dependency [-cpu spe_num] [-nodepend] + + -cpu SPU ο + -nodepend Exec Print ˰¸ꤷʤ + + +- ¹ + +%./dependency +[TASK_PRINT] +13 13 13 13 13 13 13 13 13 13 13 13 26 26 26 26 26 26 26 26 26 26 26 26 + +%./dependency -nodepend +[TASK_PRINT] + 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +ξ硢Exec 1, 2 ν̤ PPE idata ˽ޤ +Print idata DMA ǥǡäƤɽƤ뤿 + 0 ˤʤäƤ롣 +ΥƱ SPE Ǽ¹ԤƤȤơ +Exec 1, 2 ΤȡPrint DMA read ¹Ԥ +Exec 1, 2 DMA write ѤǤФ⤷ǡ뤫⤷ʤ +֤⤷פǤϻȤΤˤʤʤΤǡ¸ꤹ櫓Ǥ \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/word_count_test/a.txt Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,11 @@ +aaa +aaa +aaa +aaa +aaa + + + + + +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/word_count_test/c.txt Wed Dec 02 20:44:01 2009 +0900 @@ -0,0 +1,95392 @@ +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. + +Pakistani military officials credit the lashkars with helping chase the Taliban out of Swat Valley and neighboring districts once infested with the militants. +Pakistan who've volunteered to join private militias, called lashkars. These groups have vowed to help Pakistan's military in fighting the Taliban. + +"I'm doing it for peace," Zaid said, right before he fired several shots in the air with his rifle. +