Commit c9806e59 c9806e5981941e102a644517576029f2c715995e by jinwawa

submit shdx version v1.3

1 parent 4a59c6e4
Showing 330 changed files with 97 additions and 89 deletions
1 local GameHero = class("GameHero",function () 1 local GameHero = class("GameHero",function ()
2 if CHANNEL == "shdx" then 2 --if CHANNEL == "shdx" then
3 return cc.CSLoader:createNode("ui/bird/Hero_shdx.csb"); 3 -- return cc.CSLoader:createNode("ui/bird/Hero_shdx.csb");
4 else 4 --else
5 return cc.CSLoader:createNode("ui/bird/Hero.csb"); 5 return cc.CSLoader:createNode("ui/bird/Hero.csb");
6 end 6 --end
7 end) 7 end)
8 8
9 local jump_speed = 10; 9 local jump_speed = 10;
......
1 local GameStartView; 1 local GameStartView;
2 if CHANNEL == "shdx" then 2 --if CHANNEL == "shdx" then
3 GameStartView = dialog.uinode("ui/bird/GameStartLayer_shdx.csb",import("..view.BaseViewNew")); 3 -- GameStartView = dialog.uinode("ui/bird/GameStartLayer_shdx.csb",import("..view.BaseViewNew"));
4 else 4 --else
5 GameStartView = dialog.uinode("ui/bird/GameStartLayer.csb",import("..view.BaseViewNew")); 5 GameStartView = dialog.uinode("ui/bird/GameStartLayer.csb",import("..view.BaseViewNew"));
6 end 6 --end
7 7
8 local game_data = require("app/views/bird/game_data"); 8 local game_data = require("app/views/bird/game_data");
9 9
......
...@@ -30,11 +30,11 @@ end ...@@ -30,11 +30,11 @@ end
30 function LoadingScene:onCreate() 30 function LoadingScene:onCreate()
31 self.keypadManager = KeypadManager:create(self); 31 self.keypadManager = KeypadManager:create(self);
32 32
33 if CHANNEL == "shdx" then 33 --if CHANNEL == "shdx" then
34 self.ui = cc.CSLoader:createNode("ui/bird/LoadingScene_shdx.csb"); 34 -- self.ui = cc.CSLoader:createNode("ui/bird/LoadingScene_shdx.csb");
35 else 35 --else
36 self.ui = cc.CSLoader:createNode("ui/bird/LoadingScene.csb"); 36 self.ui = cc.CSLoader:createNode("ui/bird/LoadingScene.csb");
37 end 37 --end
38 self:addChild(self.ui); 38 self:addChild(self.ui);
39 39
40 self.ui:setContentSize(cc.size(display.width,display.height)); 40 self.ui:setContentSize(cc.size(display.width,display.height));
......
...@@ -13,11 +13,11 @@ end ...@@ -13,11 +13,11 @@ end
13 function CakeScene:onCreate(params) 13 function CakeScene:onCreate(params)
14 self.keypadManager = KeypadManager:create(self); 14 self.keypadManager = KeypadManager:create(self);
15 15
16 if CHANNEL == "shdx" then 16 --if CHANNEL == "shdx" then
17 self.ui = cc.CSLoader:createNode("ui/cake/CakeScene_IP.csb"); 17 -- self.ui = cc.CSLoader:createNode("ui/cake/CakeScene_IP.csb");
18 else 18 --else
19 self.ui = cc.CSLoader:createNode("ui/cake/CakeScene.csb"); 19 self.ui = cc.CSLoader:createNode("ui/cake/CakeScene.csb");
20 end 20 --end
21 self:addChild(self.ui); 21 self:addChild(self.ui);
22 22
23 self.ui:setContentSize(cc.size(display.width,display.height)); 23 self.ui:setContentSize(cc.size(display.width,display.height));
......
1 local GameStartView; 1 local GameStartView;
2 if CHANNEL == "shdx" then 2 --if CHANNEL == "shdx" then
3 GameStartView = dialog.uinode("ui/cake/CakeStartLayer_IP.csb",import("..view.BaseViewNew")); 3 -- GameStartView = dialog.uinode("ui/cake/CakeStartLayer_IP.csb",import("..view.BaseViewNew"));
4 else 4 --else
5 GameStartView = dialog.uinode("ui/cake/CakeStartLayer.csb",import("..view.BaseViewNew")); 5 GameStartView = dialog.uinode("ui/cake/CakeStartLayer.csb",import("..view.BaseViewNew"));
6 end 6 --end
7 7
8 local cake_data = require("app.views.cake.cake_data"); 8 local cake_data = require("app.views.cake.cake_data");
9 9
......
...@@ -29,11 +29,11 @@ end ...@@ -29,11 +29,11 @@ end
29 function LoadingScene:onCreate() 29 function LoadingScene:onCreate()
30 self.keypadManager = KeypadManager:create(self); 30 self.keypadManager = KeypadManager:create(self);
31 31
32 if CHANNEL == "shdx" then 32 --if CHANNEL == "shdx" then
33 self.ui = cc.CSLoader:createNode("ui/cake/LoadingScene_IP.csb"); 33 -- self.ui = cc.CSLoader:createNode("ui/cake/LoadingScene_IP.csb");
34 else 34 --else
35 self.ui = cc.CSLoader:createNode("ui/cake/LoadingScene.csb"); 35 self.ui = cc.CSLoader:createNode("ui/cake/LoadingScene.csb");
36 end 36 --end
37 self:addChild(self.ui); 37 self:addChild(self.ui);
38 38
39 self.ui:setContentSize(cc.size(display.width,display.height)); 39 self.ui:setContentSize(cc.size(display.width,display.height));
......
...@@ -21,11 +21,11 @@ function GameScene:onCreate(params) ...@@ -21,11 +21,11 @@ function GameScene:onCreate(params)
21 21
22 self.panel = self.ui:getChildByName("panel"); 22 self.panel = self.ui:getChildByName("panel");
23 23
24 if CHANNEL == "shdx" then 24 --if CHANNEL == "shdx" then
25 self.girl = cc.CSLoader:createNode("ui/candy/Girl_shdx.csb"); 25 -- self.girl = cc.CSLoader:createNode("ui/candy/Girl_shdx.csb");
26 else 26 --else
27 self.girl = cc.CSLoader:createNode("ui/candy/Girl.csb"); 27 self.girl = cc.CSLoader:createNode("ui/candy/Girl.csb");
28 end 28 --end
29 self.girl:setPosition(cc.p(display.width/2,0)); 29 self.girl:setPosition(cc.p(display.width/2,0));
30 self.panel:addChild(self.girl); 30 self.panel:addChild(self.girl);
31 self.shield = self.girl:getChildByName("shield"); 31 self.shield = self.girl:getChildByName("shield");
......
1 local GameStartView; 1 local GameStartView;
2 if CHANNEL == "shdx" then 2 --if CHANNEL == "shdx" then
3 GameStartView = dialog.uinode("ui/candy/GameStartLayer_shdx.csb",import("..view.BaseViewNew")); 3 -- GameStartView = dialog.uinode("ui/candy/GameStartLayer_shdx.csb",import("..view.BaseViewNew"));
4 else 4 --else
5 GameStartView = dialog.uinode("ui/candy/GameStartLayer.csb",import("..view.BaseViewNew")); 5 GameStartView = dialog.uinode("ui/candy/GameStartLayer.csb",import("..view.BaseViewNew"));
6 end 6 --end
7 7
8 local game_data = require("app/views/candy/game_data"); 8 local game_data = require("app/views/candy/game_data");
9 9
......
...@@ -29,11 +29,11 @@ end ...@@ -29,11 +29,11 @@ end
29 function LoadingScene:onCreate() 29 function LoadingScene:onCreate()
30 self.keypadManager = KeypadManager:create(self); 30 self.keypadManager = KeypadManager:create(self);
31 31
32 if CHANNEL == "shdx" then 32 --if CHANNEL == "shdx" then
33 self.ui = cc.CSLoader:createNode("ui/candy/LoadingScene_shdx.csb"); 33 -- self.ui = cc.CSLoader:createNode("ui/candy/LoadingScene_shdx.csb");
34 else 34 --else
35 self.ui = cc.CSLoader:createNode("ui/candy/LoadingScene.csb"); 35 self.ui = cc.CSLoader:createNode("ui/candy/LoadingScene.csb");
36 end 36 --end
37 37
38 self:addChild(self.ui); 38 self:addChild(self.ui);
39 --logD("LoadingScene------------->"..display.width); 39 --logD("LoadingScene------------->"..display.width);
......
1 local GameHero = class("GameHero",function () 1 local GameHero = class("GameHero",function ()
2 if CHANNEL == "shdx" then 2 --if CHANNEL == "shdx" then
3 return cc.CSLoader:createNode("ui/feiyanzoubi/Hero_shdx.csb"); 3 -- return cc.CSLoader:createNode("ui/feiyanzoubi/Hero_shdx.csb");
4 else 4 --else
5 return cc.CSLoader:createNode("ui/feiyanzoubi/Hero.csb"); 5 return cc.CSLoader:createNode("ui/feiyanzoubi/Hero.csb");
6 end 6 --end
7 end) 7 end)
8 8
9 local jump_speed = 16; 9 local jump_speed = 16;
......
1 local GameStartView; 1 local GameStartView;
2 if CHANNEL == "shdx" then 2 --if CHANNEL == "shdx" then
3 GameStartView = dialog.uinode("ui/feiyanzoubi/GameStartLayer_shdx.csb",import("..view.BaseViewNew")); 3 -- GameStartView = dialog.uinode("ui/feiyanzoubi/GameStartLayer_shdx.csb",import("..view.BaseViewNew"));
4 else 4 --else
5 GameStartView = dialog.uinode("ui/feiyanzoubi/GameStartLayer.csb",import("..view.BaseViewNew")); 5 GameStartView = dialog.uinode("ui/feiyanzoubi/GameStartLayer.csb",import("..view.BaseViewNew"));
6 end 6 --end
7 7
8 local game_data = require("app/views/feiyanzoubi/game_data"); 8 local game_data = require("app/views/feiyanzoubi/game_data");
9 9
......
...@@ -30,11 +30,11 @@ end ...@@ -30,11 +30,11 @@ end
30 function LoadingScene:onCreate() 30 function LoadingScene:onCreate()
31 self.keypadManager = KeypadManager:create(self); 31 self.keypadManager = KeypadManager:create(self);
32 32
33 if CHANNEL == "shdx" then 33 --if CHANNEL == "shdx" then
34 self.ui = cc.CSLoader:createNode("ui/feiyanzoubi/LoadingScene_shdx.csb"); 34 -- self.ui = cc.CSLoader:createNode("ui/feiyanzoubi/LoadingScene_shdx.csb");
35 else 35 --else
36 self.ui = cc.CSLoader:createNode("ui/feiyanzoubi/LoadingScene.csb"); 36 self.ui = cc.CSLoader:createNode("ui/feiyanzoubi/LoadingScene.csb");
37 end 37 --end
38 self:addChild(self.ui); 38 self:addChild(self.ui);
39 39
40 self.ui:setContentSize(cc.size(display.width,display.height)); 40 self.ui:setContentSize(cc.size(display.width,display.height));
......
1 local GameHero = class("GameHero",function () 1 local GameHero = class("GameHero",function ()
2 if CHANNEL == "shdx" then 2 --if CHANNEL == "shdx" then
3 return cc.CSLoader:createNode("ui/haidao/Hero_shdx.csb"); 3 -- return cc.CSLoader:createNode("ui/haidao/Hero_shdx.csb");
4 else 4 --else
5 return cc.CSLoader:createNode("ui/haidao/Hero.csb"); 5 return cc.CSLoader:createNode("ui/haidao/Hero.csb");
6 end 6 --end
7 end) 7 end)
8 8
9 local jump_speed = 12; 9 local jump_speed = 12;
......
1 local GameStartView; 1 local GameStartView;
2 if CHANNEL == "shdx" then 2 --if CHANNEL == "shdx" then
3 GameStartView = dialog.uinode("ui/haidao/GameStartLayer_shdx.csb",import("..view.BaseViewNew")); 3 -- GameStartView = dialog.uinode("ui/haidao/GameStartLayer_shdx.csb",import("..view.BaseViewNew"));
4 else 4 --else
5 GameStartView = dialog.uinode("ui/haidao/GameStartLayer.csb",import("..view.BaseViewNew")); 5 GameStartView = dialog.uinode("ui/haidao/GameStartLayer.csb",import("..view.BaseViewNew"));
6 end 6 --end
7 7
8 local game_data = require("app/views/haidao/game_data"); 8 local game_data = require("app/views/haidao/game_data");
9 9
......
...@@ -32,11 +32,11 @@ end ...@@ -32,11 +32,11 @@ end
32 function LoadingScene:onCreate() 32 function LoadingScene:onCreate()
33 self.keypadManager = KeypadManager:create(self); 33 self.keypadManager = KeypadManager:create(self);
34 34
35 if CHANNEL == "shdx" then 35 --if CHANNEL == "shdx" then
36 self.ui = cc.CSLoader:createNode("ui/haidao/LoadingScene_shdx.csb"); 36 -- self.ui = cc.CSLoader:createNode("ui/haidao/LoadingScene_shdx.csb");
37 else 37 --else
38 self.ui = cc.CSLoader:createNode("ui/haidao/LoadingScene.csb"); 38 self.ui = cc.CSLoader:createNode("ui/haidao/LoadingScene.csb");
39 end 39 --end
40 self:addChild(self.ui); 40 self:addChild(self.ui);
41 41
42 self.ui:setContentSize(cc.size(display.width,display.height)); 42 self.ui:setContentSize(cc.size(display.width,display.height));
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
10 <fanpai_best>10</fanpai_best> 10 <fanpai_best>10</fanpai_best>
11 <candy_best>2004</candy_best> 11 <candy_best>2004</candy_best>
12 <candy_game_play_cnt>111</candy_game_play_cnt> 12 <candy_game_play_cnt>111</candy_game_play_cnt>
13 <run_game_play_cnt>305</run_game_play_cnt> 13 <run_game_play_cnt>314</run_game_play_cnt>
14 <run_best>25938</run_best> 14 <run_best>25938</run_best>
15 <is_game_vip>1</is_game_vip> 15 <is_game_vip>1</is_game_vip>
16 <is_game_guide>1</is_game_guide> 16 <is_game_guide>1</is_game_guide>
......
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <Project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 2 <Project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
3 <propertyGroup> 3 <propertyGroup>
4 <StartProgram>E:\xhx\client\runtime\win32\GuandanAndroid.exe</StartProgram> 4 <StartProgram>D:\xhx\client\runtime\win32\GuandanAndroid.exe</StartProgram>
5 <StartArguments>-workdir E:\xhx\client\runrun\client</StartArguments> 5 <StartArguments>-workdir D:\xhx\client\runrun\client</StartArguments>
6 <StartWorkingDirectory>E:\xhx\client\runtime\win32</StartWorkingDirectory> 6 <StartWorkingDirectory>D:\xhx\client\runtime\win32</StartWorkingDirectory>
7 </propertyGroup> 7 </propertyGroup>
8 </Project> 8 </Project>
...\ No newline at end of file ...\ No newline at end of file
......
1 local GameHero = class("GameHero",function () 1 local GameHero = class("GameHero",function ()
2 if CHANNEL == "shdx" then 2 --if CHANNEL == "shdx" then
3 return cc.CSLoader:createNode("ui/run/Hero_shdx.csb"); 3 -- return cc.CSLoader:createNode("ui/run/Hero_shdx.csb");
4 else 4 --else
5 return cc.CSLoader:createNode("ui/run/Hero.csb"); 5 return cc.CSLoader:createNode("ui/run/Hero.csb");
6 end 6 --end
7 end) 7 end)
8 8
9 local jump_speed = 16; 9 local jump_speed = 16;
......
...@@ -163,6 +163,7 @@ function GameScene:move() ...@@ -163,6 +163,7 @@ function GameScene:move()
163 -- self.bg_far_bg_1:setPositionX(0); 163 -- self.bg_far_bg_1:setPositionX(0);
164 -- end 164 -- end
165 165
166 --远处景色移动
166 local bg_mid_x = self.bg_mid_bg_1:getPositionX(); 167 local bg_mid_x = self.bg_mid_bg_1:getPositionX();
167 self.bg_mid_bg_1:setPositionX(bg_mid_x-speed/3); 168 self.bg_mid_bg_1:setPositionX(bg_mid_x-speed/3);
168 self.bg_mid_bg_2:setPositionX(bg_mid_x-speed/3+self.bg_mid_rect.width); 169 self.bg_mid_bg_2:setPositionX(bg_mid_x-speed/3+self.bg_mid_rect.width);
...@@ -170,6 +171,7 @@ function GameScene:move() ...@@ -170,6 +171,7 @@ function GameScene:move()
170 self.bg_mid_bg_1:setPositionX(0); 171 self.bg_mid_bg_1:setPositionX(0);
171 end 172 end
172 173
174 --近处的地面移动
173 local bg_front_x = self.bg_front_bg_1:getPositionX(); 175 local bg_front_x = self.bg_front_bg_1:getPositionX();
174 self.bg_front_bg_1:setPositionX(bg_front_x-speed); 176 self.bg_front_bg_1:setPositionX(bg_front_x-speed);
175 self.bg_front_bg_2:setPositionX(bg_front_x-speed+self.bg_front_rect.width); 177 self.bg_front_bg_2:setPositionX(bg_front_x-speed+self.bg_front_rect.width);
...@@ -212,6 +214,7 @@ function GameScene:create_map() ...@@ -212,6 +214,7 @@ function GameScene:create_map()
212 self.current_level = self.current_level + 1; 214 self.current_level = self.current_level + 1;
213 end 215 end
214 216
217 --碰撞
215 function GameScene:collide() 218 function GameScene:collide()
216 if not self.map then 219 if not self.map then
217 return; 220 return;
......
1 local GameStartView; 1 local GameStartView;
2 if CHANNEL == "shdx" then 2 --if CHANNEL == "shdx" then
3 GameStartView = dialog.uinode("ui/run/GameStartLayer_shdx.csb",import("..view.BaseViewNew")); 3 -- GameStartView = dialog.uinode("ui/run/GameStartLayer_shdx.csb",import("..view.BaseViewNew"));
4 else 4 --else
5 GameStartView = dialog.uinode("ui/run/GameStartLayer.csb",import("..view.BaseViewNew")); 5 GameStartView = dialog.uinode("ui/run/GameStartLayer.csb",import("..view.BaseViewNew"));
6 end 6 --end
7 7
8 local game_data = require("app/views/run/game_data"); 8 local game_data = require("app/views/run/game_data");
9 9
......
...@@ -32,11 +32,11 @@ end ...@@ -32,11 +32,11 @@ end
32 function LoadingScene:onCreate() 32 function LoadingScene:onCreate()
33 self.keypadManager = KeypadManager:create(self); 33 self.keypadManager = KeypadManager:create(self);
34 34
35 if CHANNEL == "shdx" then 35 --if CHANNEL == "shdx" then
36 self.ui = cc.CSLoader:createNode("ui/run/LoadingScene_shdx.csb"); 36 -- self.ui = cc.CSLoader:createNode("ui/run/LoadingScene_shdx.csb");
37 else 37 --else
38 self.ui = cc.CSLoader:createNode("ui/run/LoadingScene.csb"); 38 self.ui = cc.CSLoader:createNode("ui/run/LoadingScene.csb");
39 end 39 --end
40 self:addChild(self.ui); 40 self:addChild(self.ui);
41 41
42 self.ui:setContentSize(cc.size(display.width,display.height)); 42 self.ui:setContentSize(cc.size(display.width,display.height));
......
...@@ -75,25 +75,25 @@ ...@@ -75,25 +75,25 @@
75 <AbstractNodeData Name="bg_front" ActionTag="-795650236" Tag="32" IconVisible="False" TouchEnable="True" ClipAble="False" BackColorAlpha="102" ColorAngle="90.0000" Scale9Width="1" Scale9Height="1" ctype="PanelObjectData"> 75 <AbstractNodeData Name="bg_front" ActionTag="-795650236" Tag="32" IconVisible="False" TouchEnable="True" ClipAble="False" BackColorAlpha="102" ColorAngle="90.0000" Scale9Width="1" Scale9Height="1" ctype="PanelObjectData">
76 <Size X="1280.0000" Y="720.0000" /> 76 <Size X="1280.0000" Y="720.0000" />
77 <Children> 77 <Children>
78 <AbstractNodeData Name="bg_1" ActionTag="-1054038358" Tag="19" IconVisible="False" RightMargin="-520.0000" TopMargin="320.0000" ctype="SpriteObjectData"> 78 <AbstractNodeData Name="bg_1" ActionTag="-1054038358" Tag="19" IconVisible="False" RightMargin="-520.0000" TopMargin="435.0000" ctype="SpriteObjectData">
79 <Size X="1800.0000" Y="400.0000" /> 79 <Size X="1800.0000" Y="285.0000" />
80 <AnchorPoint /> 80 <AnchorPoint />
81 <Position /> 81 <Position />
82 <Scale ScaleX="1.0000" ScaleY="1.0000" /> 82 <Scale ScaleX="1.0000" ScaleY="1.0000" />
83 <CColor A="255" R="255" G="255" B="255" /> 83 <CColor A="255" R="255" G="255" B="255" />
84 <PrePosition /> 84 <PrePosition />
85 <PreSize X="1.4063" Y="0.5556" /> 85 <PreSize X="1.4063" Y="0.3958" />
86 <FileData Type="Normal" Path="ui/run/bg_front_1.png" Plist="" /> 86 <FileData Type="Normal" Path="ui/run/bg_front_1.png" Plist="" />
87 <BlendFunc Src="1" Dst="771" /> 87 <BlendFunc Src="1" Dst="771" />
88 </AbstractNodeData> 88 </AbstractNodeData>
89 <AbstractNodeData Name="bg_2" ActionTag="-1449589531" Tag="20" IconVisible="False" LeftMargin="1800.0000" RightMargin="-2320.0000" TopMargin="320.0000" ctype="SpriteObjectData"> 89 <AbstractNodeData Name="bg_2" ActionTag="-1449589531" Tag="20" IconVisible="False" LeftMargin="1800.0000" RightMargin="-2320.0000" TopMargin="435.0000" ctype="SpriteObjectData">
90 <Size X="1800.0000" Y="400.0000" /> 90 <Size X="1800.0000" Y="285.0000" />
91 <AnchorPoint /> 91 <AnchorPoint />
92 <Position X="1800.0000" /> 92 <Position X="1800.0000" />
93 <Scale ScaleX="1.0000" ScaleY="1.0000" /> 93 <Scale ScaleX="1.0000" ScaleY="1.0000" />
94 <CColor A="255" R="255" G="255" B="255" /> 94 <CColor A="255" R="255" G="255" B="255" />
95 <PrePosition X="1.4063" /> 95 <PrePosition X="1.4063" />
96 <PreSize X="1.4063" Y="0.5556" /> 96 <PreSize X="1.4063" Y="0.3958" />
97 <FileData Type="Normal" Path="ui/run/bg_front_1.png" Plist="" /> 97 <FileData Type="Normal" Path="ui/run/bg_front_1.png" Plist="" />
98 <BlendFunc Src="1" Dst="771" /> 98 <BlendFunc Src="1" Dst="771" />
99 </AbstractNodeData> 99 </AbstractNodeData>
......
...@@ -35,8 +35,9 @@ ...@@ -35,8 +35,9 @@
35 <FilePathData Path="ui/run/GameStartLayer.csd" /> 35 <FilePathData Path="ui/run/GameStartLayer.csd" />
36 <FilePathData Path="ui/run/GameStartLayer_shdx.csd" /> 36 <FilePathData Path="ui/run/GameStartLayer_shdx.csd" />
37 <FilePathData Path="ui/run/LoadingScene_shdx.csd" /> 37 <FilePathData Path="ui/run/LoadingScene_shdx.csd" />
38 <FilePathData Path="ui/run/GameScene.csd" />
38 </OpenedDocuments> 39 </OpenedDocuments>
39 <ActiveDocument Path="ui/run/LoadingScene_shdx.csd" /> 40 <ActiveDocument Path="ui/run/GameScene.csd" />
40 </Value> 41 </Value>
41 </Item> 42 </Item>
42 </Properties> 43 </Properties>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
3 <!--m0800279afc6c--> 3 <!--m0800279afc6c-->
4 <!--m0800278b87c2--> 4 <!--m0800278b87c2-->
5 <!----> 5 <!---->
6 <Account>m0800278b87c</Account> 6 <Account>m0800278b87d</Account>
7 <exp>0</exp> 7 <exp>0</exp>
8 <versionnum>201801291657</versionnum> 8 <versionnum>201801291657</versionnum>
9 <isMusic>0</isMusic> 9 <isMusic>0</isMusic>
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
26 <new_guide_step>4</new_guide_step> 26 <new_guide_step>4</new_guide_step>
27 <is_feiyanzoubi_game_guide>1</is_feiyanzoubi_game_guide> 27 <is_feiyanzoubi_game_guide>1</is_feiyanzoubi_game_guide>
28 <feiyanzoubi_best>603</feiyanzoubi_best> 28 <feiyanzoubi_best>603</feiyanzoubi_best>
29 <uid>1030100010142927</uid> 29 <uid>1010100010142867</uid>
30 <is_bird_game_guide>1</is_bird_game_guide> 30 <is_bird_game_guide>1</is_bird_game_guide>
31 <bird_best>1107</bird_best> 31 <bird_best>1107</bird_best>
32 <is_haidao_game_guide>1</is_haidao_game_guide> 32 <is_haidao_game_guide>1</is_haidao_game_guide>
......
...@@ -108,7 +108,7 @@ ...@@ -108,7 +108,7 @@
108 <score val="70" item="100002,10;100001,150;600002,1" rate="70" key="200001,50;200002,50" /> 108 <score val="70" item="100002,10;100001,150;600002,1" rate="70" key="200001,50;200002,50" />
109 <score val="80" item="100002,10;100001,150;600002,2" rate="80" key="200001,50;200002,30;200003,20" /> 109 <score val="80" item="100002,10;100001,150;600002,2" rate="80" key="200001,50;200002,30;200003,20" />
110 </game> 110 </game>
111 <game id="7" ename="run" name="奔跑吧小马宝莉" needVip="1" idx="7" payid="23" diamond="10" flag=""> 111 <game id="7" ename="run" name="奔跑吧小兔子" needVip="1" idx="7" payid="23" diamond="10" flag="">
112 <score val="0" item="" key=""/> 112 <score val="0" item="" key=""/>
113 <score val="100" item="100002,2;100001,50;600001,2" rate="30" key="200001,100" /> 113 <score val="100" item="100002,2;100001,50;600001,2" rate="30" key="200001,100" />
114 <score val="200" item="100002,4;100001,80;600001,3" rate="40" key="200001,100" /> 114 <score val="200" item="100002,4;100001,80;600001,3" rate="40" key="200001,100" />
...@@ -144,7 +144,7 @@ ...@@ -144,7 +144,7 @@
144 <score val="900" item="100002,10;100001,150;600002,1" rate="70" key="200001,20;200002,30;200003,30;200004,20" /> 144 <score val="900" item="100002,10;100001,150;600002,1" rate="70" key="200001,20;200002,30;200003,30;200004,20" />
145 <score val="1100" item="100002,10;100001,150;600002,2" rate="80" key="200001,25;200002,20;200003,20;200004,20;200005,15" /> 145 <score val="1100" item="100002,10;100001,150;600002,2" rate="80" key="200001,25;200002,20;200003,20;200004,20;200005,15" />
146 </game> 146 </game>
147 <game id="10" ename="bird" name="火箭小黄人" needVip="1" idx="1" payid="24" diamond="15" flag="new"> 147 <game id="10" ename="bird" name="火箭小" needVip="1" idx="1" payid="24" diamond="15" flag="new">
148 <score val="0" item="" key=""/> 148 <score val="0" item="" key=""/>
149 <score val="64" item="100002,2;100001,50;600001,2" rate="30" key="200001,100" /> 149 <score val="64" item="100002,2;100001,50;600001,2" rate="30" key="200001,100" />
150 <score val="192" item="100002,4;100001,80;600001,3" rate="40" key="200001,100" /> 150 <score val="192" item="100002,4;100001,80;600001,3" rate="40" key="200001,100" />
......

159 KB | W: | H:

159 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

200 KB | W: | H:

202 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

215 KB | W: | H:

218 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

133 KB | W: | H:

137 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

18.5 KB | W: | H:

20.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.64 KB | W: | H:

6.64 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

36.4 KB | W: | H:

36.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.41 KB | W: | H:

4.43 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.07 KB | W: | H:

3.08 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.61 KB | W: | H:

3.62 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.79 KB | W: | H:

3.81 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.71 KB | W: | H:

3.74 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.3 KB | W: | H:

4.31 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.72 KB | W: | H:

4.73 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.75 KB | W: | H:

4.77 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.6 KB | W: | H:

6.63 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.51 KB | W: | H:

3.72 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.12 KB | W: | H:

1.78 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.93 KB | W: | H:

4.28 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.33 KB | W: | H:

2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.71 KB | W: | H:

4.7 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

947 Bytes | W: | H:

1.65 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.53 KB | W: | H:

4.31 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.34 KB | W: | H:

3.96 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.09 KB | W: | H:

5.25 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.03 KB | W: | H:

3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.83 KB | W: | H:

6.73 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.41 KB | W: | H:

2.42 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.76 KB | W: | H:

2.77 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.37 KB | W: | H:

5.93 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.37 KB | W: | H:

2.15 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.78 KB | W: | H:

3.22 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.31 KB | W: | H:

2.67 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.7 KB | W: | H:

3.72 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.96 KB | W: | H:

3.95 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.2 KB | W: | H:

4.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.48 KB | W: | H:

4.51 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.74 KB | W: | H:

4.86 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.83 KB | W: | H:

6.85 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.59 KB | W: | H:

2.32 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.56 KB | W: | H:

4.24 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.85 KB | W: | H:

4.82 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.22 KB | W: | H:

5.44 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.26 KB | W: | H:

3.35 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.47 KB | W: | H:

5.84 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.74 KB | W: | H:

4.28 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.93 KB | W: | H:

4.73 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.92 KB | W: | H:

6.83 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.37 KB | W: | H:

3.31 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.63 KB | W: | H:

3.65 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.34 KB | W: | H:

3.35 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.85 KB | W: | H:

4.18 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.1 KB | W: | H:

4.11 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.14 KB | W: | H:

5.35 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.59 KB | W: | H:

4.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.37 KB | W: | H:

5.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.08 KB | W: | H:

3.99 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.6 KB | W: | H:

4.92 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.25 KB | W: | H:

4.03 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.32 KB | W: | H:

5.93 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.74 KB | W: | H:

5.58 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.71 KB | W: | H:

6.73 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.88 KB | W: | H:

4.94 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.61 KB | W: | H:

6.61 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.76 KB | W: | H:

6.77 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

20.8 KB | W: | H:

20.8 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.5 KB | W: | H:

10.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.9 KB | W: | H:

11.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

13.7 KB | W: | H:

13.7 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.12 KB | W: | H:

3.12 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

14.4 KB | W: | H:

14.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

18.5 KB | W: | H:

18.7 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

21.2 KB | W: | H:

21.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.52 KB | W: | H:

6.54 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

14.5 KB | W: | H:

14.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.34 KB | W: | H:

5.35 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

20.3 KB | W: | H:

20.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

69.9 KB | W: | H:

69.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

39.5 KB | W: | H:

39.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.2 KB | W: | H:

10.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

12.1 KB | W: | H:

12.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

11.6 KB | W: | H:

11.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.9 KB | W: | H:

6.39 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.78 KB | W: | H:

5.81 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.37 KB | W: | H:

8.17 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.61 KB | W: | H:

7.94 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.87 KB | W: | H:

6.07 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.13 KB | W: | H:

7.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.46 KB | W: | H:

8.37 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.47 KB | W: | H:

5.17 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.95 KB | W: | H:

6.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.19 KB | W: | H:

7.91 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

160 KB | W: | H:

160 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.58 KB | W: | H:

3.59 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

164 KB | W: | H:

164 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.71 KB | W: | H:

3.72 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

71.4 KB | W: | H:

71.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

56.1 KB | W: | H:

56.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

966 Bytes | W: | H:

1.66 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.92 KB | W: | H:

2.87 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

17.8 KB | W: | H:

17.8 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.33 KB | W: | H:

2.34 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.62 KB | W: | H:

7.62 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.14 KB | W: | H:

5.14 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.74 KB | W: | H:

7.75 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.63 KB | W: | H:

5.64 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.24 KB | W: | H:

4.26 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.12 KB | W: | H:

4.26 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.75 KB | W: | H:

7.86 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.7 KB | W: | H:

4.73 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

99.5 KB | W: | H:

99.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

120 KB | W: | H:

120 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

138 KB | W: | H:

138 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

132 KB | W: | H:

132 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

131 KB | W: | H:

131 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

133 KB | W: | H:

133 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

14.4 KB | W: | H:

14.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.73 KB | W: | H:

2.74 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

13.2 KB | W: | H:

13.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.05 KB | W: | H:

4.06 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

27.6 KB | W: | H:

27.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

11.1 KB | W: | H:

11.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

160 KB | W: | H:

160 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.48 KB | W: | H:

4.76 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.54 KB | W: | H:

2.55 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

34.5 KB | W: | H:

34.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

27.4 KB | W: | H:

74.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.05 KB | W: | H:

4.06 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

27.4 KB | W: | H:

27.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.4 KB | W: | H:

23.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.54 KB | W: | H:

3.55 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.61 KB | W: | H:

4.63 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.73 KB | W: | H:

3.73 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.48 KB | W: | H:

6.48 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.52 KB | W: | H:

6.54 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

51.1 KB | W: | H:

51.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

51.1 KB | W: | H:

51.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.76 KB | W: | H:

6.77 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.24 KB | W: | H:

7.65 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5 KB | W: | H:

5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.32 KB | W: | H:

19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

28.2 KB | W: | H:

28.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

27 KB | W: | H:

27 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.89 KB | W: | H:

1.91 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.44 KB | W: | H:

2.45 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

9.45 KB | W: | H:

9.53 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.1 KB | W: | H:

6.12 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.42 KB | W: | H:

6.45 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.09 KB | W: | H:

2.17 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.22 KB | W: | H:

2.23 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

13.6 KB | W: | H:

13.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.19 KB | W: | H:

5.19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

20.5 KB | W: | H:

20.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

9.14 KB | W: | H:

9.26 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

15.7 KB | W: | H:

15.7 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

121 KB | W: | H:

121 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

65.1 KB | W: | H:

65.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

136 KB | W: | H:

136 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

111 KB | W: | H:

112 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

14.6 KB | W: | H:

14.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

45.1 KB | W: | H:

45.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.18 KB | W: | H:

2.19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

108 KB | W: | H:

108 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

99.9 KB | W: | H:

99.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

29.8 KB | W: | H:

29.8 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.83 KB | W: | H:

4.96 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.42 KB | W: | H:

4.54 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.59 KB | W: | H:

4.67 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.13 KB | W: | H:

6.29 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.98 KB | W: | H:

4.12 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.99 KB | W: | H:

5.12 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.75 KB | W: | H:

4.77 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.78 KB | W: | H:

4.79 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.14 KB | W: | H:

5.15 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.21 KB | W: | H:

4.32 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.67 KB | W: | H:

4.69 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.89 KB | W: | H:

3.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.16 KB | W: | H:

4.24 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.89 KB | W: | H:

4.89 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.29 KB | W: | H:

5.29 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.52 KB | W: | H:

5.53 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.86 KB | W: | H:

4.86 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.52 KB | W: | H:

4.53 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.57 KB | W: | H:

5.58 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.31 KB | W: | H:

4.32 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.88 KB | W: | H:

4.89 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.94 KB | W: | H:

3.94 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.79 KB | W: | H:

3.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.34 KB | W: | H:

5.45 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.53 KB | W: | H:

4.54 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.73 KB | W: | H:

5.81 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.62 KB | W: | H:

4.63 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.98 KB | W: | H:

4.05 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.65 KB | W: | H:

5.66 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.3 KB | W: | H:

5.34 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.45 KB | W: | H:

4.58 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.18 KB | W: | H:

4.18 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.87 KB | W: | H:

3.92 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.79 KB | W: | H:

4.93 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.19 KB | W: | H:

5.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.62 KB | W: | H:

4.63 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.96 KB | W: | H:

4.99 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.77 KB | W: | H:

3.81 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.05 KB | W: | H:

4.06 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.43 KB | W: | H:

5.43 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.54 KB | W: | H:

4.56 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.02 KB | W: | H:

5.14 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.35 KB | W: | H:

5.52 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.36 KB | W: | H:

5.47 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.39 KB | W: | H:

5.41 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.76 KB | W: | H:

4.77 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.79 KB | W: | H:

4.91 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.88 KB | W: | H:

5.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.96 KB | W: | H:

5.03 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.04 KB | W: | H:

5.18 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.74 KB | W: | H:

4.75 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.88 KB | W: | H:

5.02 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.47 KB | W: | H:

5.59 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.68 KB | W: | H:

4.69 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.85 KB | W: | H:

4.86 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.58 KB | W: | H:

5.59 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.33 KB | W: | H:

4.34 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.23 KB | W: | H:

4.35 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.01 KB | W: | H:

5.02 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.37 KB | W: | H:

6.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.39 KB | W: | H:

4.46 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.56 KB | W: | H:

5.66 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.49 KB | W: | H:

7.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.05 KB | W: | H:

4.06 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

27.7 KB | W: | H:

27.7 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.42 KB | W: | H:

7.42 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin