Added collision for smaller tileset tiles. Fixed going to hub stage from overworld map (game state is required to be HUB to prevent usage of items on the field). Fix Fire bolt continuously blowing up at the end of its max range.
This commit is contained in:
parent
82b2b83007
commit
7a41361710
@ -189,6 +189,11 @@
|
||||
"drawFill": true,
|
||||
"id": 7,
|
||||
"members": [
|
||||
{
|
||||
"name": "Hide?",
|
||||
"type": "bool",
|
||||
"value": true
|
||||
}
|
||||
],
|
||||
"name": "ForegroundTile",
|
||||
"type": "class",
|
||||
|
||||
@ -1760,6 +1760,7 @@ void AiL::InitializeLevel(std::string mapFile,MapName map){
|
||||
|
||||
void AiL::LoadLevel(MapName map){
|
||||
if(game->MAP_DATA.count(map)==0)ERR(std::format("WARNING! Could not load map {}! Does not exist! Refer to levels.txt for valid maps.",map));
|
||||
if(game->MAP_DATA[map].GetMapType()=="Hub"&&GameState::STATE!=GameState::states[States::GAME_HUB])ERR("WARNING! A hub level should only be initiated in the GAME_HUB game state!");
|
||||
|
||||
SPAWNER_LIST.clear();
|
||||
foregroundTileGroups.clear();
|
||||
@ -1947,8 +1948,8 @@ void AiL::LoadLevel(MapName map){
|
||||
TileRenderData&tile=(*it).second;
|
||||
bool groupFound=false;
|
||||
for(TileDataGroup&group:splitUpData){ //See if this position can fit into any existing tile groups
|
||||
for(int y=-24;y<=24;y+=24){
|
||||
for(int x=-24;x<=24;x+=24){
|
||||
for(int y=-game->GetCurrentMapData().tileheight;y<=game->GetCurrentMapData().tileheight;y+=game->GetCurrentMapData().tileheight){
|
||||
for(int x=-game->GetCurrentMapData().tilewidth;x<=game->GetCurrentMapData().tilewidth;x+=game->GetCurrentMapData().tilewidth){
|
||||
if(x!=0||y!=0){ //Check every adjacent location for a possible adjacent tile.
|
||||
vi2d checkOffset=loc+vi2d{x,y};
|
||||
auto find_tiles=group.equal_range(checkOffset);//Each tile group consists of tiles that may be adjacent to us. Find all tiles that are adjacent to us in this tile group.
|
||||
|
||||
@ -53,7 +53,7 @@ void EnergyBolt::Update(float fElapsedTime){
|
||||
lastParticleSpawn="Wizard.Auto Attack.ParticleFrequency"_F;
|
||||
game->AddEffect(std::make_unique<Effect>(pos,"Wizard.Auto Attack.ParticleLifetimeRange"_FRange,"energy_particle.png",upperLevel,"Wizard.Auto Attack.ParticleSizeRange"_FRange,"Wizard.Auto Attack.ParticleFadeoutTime"_F,vf2d{"Wizard.Auto Attack.ParticleSpeedRange"_FRange,"Wizard.Auto Attack.ParticleSpeedRange"_FRange}));
|
||||
}
|
||||
if(distanceTraveled>"Wizard.Auto Attack.Max Range"_F){
|
||||
if(distanceTraveled>"Wizard.Auto Attack.Max Range"_F&&!deactivated){
|
||||
deactivated=true;
|
||||
fadeOutTime="Wizard.Auto Attack.BulletHitFadeoutTime"_F;
|
||||
}
|
||||
|
||||
@ -55,7 +55,7 @@ void FireBolt::Update(float fElapsedTime){
|
||||
lastParticleSpawn="Wizard.Ability 1.ParticleFrequency"_F;
|
||||
game->AddEffect(std::make_unique<Effect>(pos,"Wizard.Ability 1.ParticleLifetimeRange"_FRange,"energy_particle.png",upperLevel,"Wizard.Ability 1.ParticleSizeRange"_FRange,"Wizard.Ability 1.ParticleFadeoutTime"_F,vf2d{"Wizard.Ability 1.ParticleXSpeedRange"_FRange,"Wizard.Ability 1.ParticleYSpeedRange"_FRange},Pixel{uint8_t("Wizard.Ability 1.ParticleRedRange"_FRange),uint8_t("Wizard.Ability 1.ParticleGreenRange"_FRange),uint8_t("Wizard.Ability 1.ParticleBlueRange"_FRange),uint8_t("Wizard.Ability 1.ParticleAlphaRange"_FRange)}));
|
||||
}
|
||||
if(distanceTraveled>"Wizard.Ability 1.Max Range"_F){
|
||||
if(distanceTraveled>"Wizard.Ability 1.Max Range"_F&&!deactivated){
|
||||
deactivated=true;
|
||||
fadeOutTime="Wizard.Ability 1.BulletHitFadeoutTime"_F;
|
||||
for(int i=0;i<"Wizard.Ability 1.BulletHitExplosionParticleCount"_I;i++){
|
||||
|
||||
@ -72,7 +72,7 @@ void LightningBolt::Update(float fElapsedTime){
|
||||
}break;
|
||||
}
|
||||
}
|
||||
if(distanceTraveled>"Wizard.Ability 2.Max Range"_F){
|
||||
if(distanceTraveled>"Wizard.Ability 2.Max Range"_F&&!deactivated){
|
||||
deactivated=true;
|
||||
fadeOutTime="Wizard.Ability 2.BulletFadeoutTime"_F;
|
||||
}
|
||||
|
||||
@ -256,8 +256,11 @@ void State_OverworldMap::StartLevel(){
|
||||
game->UpdateDiscordStatus(State_OverworldMap::GetCurrentConnectionPoint().name,game->GetPlayer()->GetClassName());
|
||||
SaveFile::SaveGame();
|
||||
State_OverworldMap::GetCurrentConnectionPoint().SetVisited();
|
||||
if(State_OverworldMap::GetCurrentConnectionPoint().map.starts_with("STORY")){
|
||||
if(State_OverworldMap::GetCurrentConnectionPoint().type.starts_with("STORY")){
|
||||
VisualNovel::LoadVisualNovel(State_OverworldMap::GetCurrentConnectionPoint().map);
|
||||
}else
|
||||
if(State_OverworldMap::GetCurrentConnectionPoint().type.starts_with("HUB")){
|
||||
GameState::ChangeState(States::GAME_HUB,0.3f);
|
||||
}else{
|
||||
GameState::ChangeState(States::GAME_RUN,0.3f);
|
||||
}
|
||||
|
||||
@ -39,7 +39,7 @@ All rights reserved.
|
||||
#define VERSION_MAJOR 0
|
||||
#define VERSION_MINOR 3
|
||||
#define VERSION_PATCH 0
|
||||
#define VERSION_BUILD 6564
|
||||
#define VERSION_BUILD 6568
|
||||
|
||||
#define stringify(a) stringify_(a)
|
||||
#define stringify_(a) #a
|
||||
|
||||
@ -5,140 +5,135 @@
|
||||
<property name="Background Music" propertytype="BGM" value="foresty_loop1"/>
|
||||
<property name="Level Type" propertytype="LevelType" value="Hub"/>
|
||||
</properties>
|
||||
<tileset firstgid="1" source="../maps/Decorations_c1_No_Shadow24x24.tsx"/>
|
||||
<tileset firstgid="1621" source="../maps/grid_Props_No_Shadow_24x24.tsx"/>
|
||||
<tileset firstgid="3334" source="../maps/Forge_No_Shadow_24x24.tsx"/>
|
||||
<tileset firstgid="3670" source="../maps/Tilesheet_No_Shadow24x24.tsx"/>
|
||||
<tileset firstgid="6582" source="../maps/No_Shadow_Campfire_24x24.tsx"/>
|
||||
<tileset firstgid="6710" source="../maps/Tilesheet_No_Shadow24x24as12x12.tsx"/>
|
||||
<tileset firstgid="18358" source="../maps/16x16px_grid_Props_No_Shadow_12x12.tsx"/>
|
||||
<tileset firstgid="20465" source="../maps/64x64px_No_Shadow_Campfire_12x12.tsx"/>
|
||||
<tileset firstgid="20593" source="../maps/112x96_Forge_No_Shadow_12x12.tsx"/>
|
||||
<tileset firstgid="20929" source="../maps/Decorations_c1_No_Shadow24x24as12x12.tsx"/>
|
||||
<tileset firstgid="1" source="../maps/Tilesheet_No_Shadow24x24as12x12.tsx"/>
|
||||
<tileset firstgid="11649" source="../maps/16x16px_grid_Props_No_Shadow_12x12.tsx"/>
|
||||
<tileset firstgid="13756" source="../maps/64x64px_No_Shadow_Campfire_12x12.tsx"/>
|
||||
<tileset firstgid="13884" source="../maps/112x96_Forge_No_Shadow_12x12.tsx"/>
|
||||
<tileset firstgid="14220" source="../maps/Decorations_c1_No_Shadow24x24as12x12.tsx"/>
|
||||
<layer id="2" name="Layer 1" width="70" height="60">
|
||||
<data encoding="csv">
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,8842,8843,8844,8845,8844,8845,8845,8845,8845,8845,8845,8845,8845,8845,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,8946,8947,8948,8949,8844,8845,8949,8949,8949,8844,8845,8845,8845,8949,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,8842,8843,8948,8949,8844,8845,8844,8845,8845,8845,8845,8949,8949,8949,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,8946,8947,8844,8845,8844,8845,8948,8949,8949,8949,8949,8948,8949,8949,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,8842,8843,8948,8949,8844,8845,8844,8844,8844,8844,8948,8949,8948,8949,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,8946,8947,8844,8845,8844,8844,8948,8948,8948,8948,8948,8949,8844,8845,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,8842,8843,8844,8845,8844,8948,8948,8949,8845,8845,8845,8845,8948,8949,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,8946,8947,8948,8949,8844,8948,8949,8949,8949,8949,8949,8949,8948,8949,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,8842,8843,8844,8845,8844,8844,8844,8844,8844,8948,8948,8949,8948,8949,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,8946,8947,8948,8949,8948,8948,8948,8948,8948,8948,8949,8948,8949,8949,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,8842,8843,8844,8845,8844,8845,8844,8845,8844,8845,8844,8844,8948,8949,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,8946,8947,8948,8949,8948,8949,8948,8949,8948,8949,8948,8948,8948,8949,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9050,9051,9052,9053,9052,9053,9052,9053,9052,9053,9052,9053,9052,9053,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9154,9155,9156,9157,9156,9157,9156,9157,9156,9157,9156,9157,9156,9157,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,6923,6924,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,6921,6922,6923,6922,6923,6922,6923,6922,6923,6922,6923,6922,6926,7027,7028,7029,9416,9417,6920,6921,6923,6922,6923,6922,6923,6922,6923,6923,6925,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7024,7025,7026,7027,7026,7027,7026,7027,7026,7027,7026,7027,7026,7030,7131,7132,7133,9520,9521,7024,7025,7027,7026,7027,7026,7027,7026,7027,7027,7028,7029,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7128,7129,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7236,7237,9520,9521,7128,7129,7130,7131,7130,7131,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7233,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,6928,6929,6922,6923,6926,6927,7234,7235,7234,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7128,7129,7131,7130,7136,7137,7134,7135,7131,7130,7131,7130,7131,7130,7131,7032,7033,7026,7027,7030,7131,7130,7131,7130,7131,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7233,7235,7234,7240,7241,7238,7239,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7128,7129,7131,7130,6928,6929,6926,6927,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7233,7235,7234,7032,7033,7030,7031,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7128,7129,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7233,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7232,7233,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7336,7238,7239,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7136,7137,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7024,7342,7343,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7240,7241,6925,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7233,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,6928,6929,7029,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7128,7129,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7235,7235,7235,7235,7130,7131,7130,7032,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7233,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7235,7235,7235,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7128,7129,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7235,7235,7235,7235,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7233,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7235,7235,7235,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7128,7129,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7235,7235,7235,7235,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7233,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7128,7129,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7134,7135,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7441,7238,7239,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,6920,7024,6926,6927,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7128,7030,7031,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7233,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7137,7134,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7128,7129,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7447,7448,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7130,7131,7132,7133,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7232,7233,7235,7234,7235,7234,7235,7234,7235,7136,7137,7340,7341,7128,7129,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7234,7235,7236,7237,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,7336,7337,7338,7339,7338,7339,7338,7338,7339,7339,7241,7444,7445,7336,7337,7339,7338,7339,7338,7339,7338,7339,7338,7339,7338,7339,7338,7339,7338,7340,7341,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,7442,7443,7442,7443,7442,7442,7443,7443,7442,9416,9416,9417,7441,7443,7442,7443,7442,7443,7442,7443,7442,7443,7442,7443,7442,7443,7442,7444,7445,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9520,9521,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,
|
||||
9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,9416,9417,
|
||||
9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521,9520,9521
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2133,2134,2135,2136,2135,2136,2136,2136,2136,2136,2136,2136,2136,2136,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2237,2238,2239,2240,2135,2136,2240,2240,2240,2135,2136,2136,2136,2240,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2133,2134,2239,2240,2135,2136,2135,2136,2136,2136,2136,2240,2240,2240,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2237,2238,2135,2136,2135,2136,2239,2240,2240,2240,2240,2239,2240,2240,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2133,2134,2239,2240,2135,2136,2135,2135,2135,2135,2239,2240,2239,2240,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2237,2238,2135,2136,2135,2135,2239,2239,2239,2239,2239,2240,2135,2136,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2133,2134,2135,2136,2135,2239,2239,2240,2136,2136,2136,2136,2239,2240,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2237,2238,2239,2240,2135,2239,2240,2240,2240,2240,2240,2240,2239,2240,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2133,2134,2135,2136,2135,2135,2135,2135,2135,2239,2239,2240,2239,2240,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2237,2238,2239,2240,2239,2239,2239,2239,2239,2239,2240,2239,2240,2240,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2133,2134,2135,2136,2135,2136,2135,2136,2135,2136,2135,2135,2239,2240,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2237,2238,2239,2240,2239,2240,2239,2240,2239,2240,2239,2239,2239,2240,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2341,2342,2343,2344,2343,2344,2343,2344,2343,2344,2343,2344,2343,2344,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2445,2446,2447,2448,2447,2448,2447,2448,2447,2448,2447,2448,2447,2448,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,214,215,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,212,213,214,213,214,213,214,213,214,213,214,213,217,318,319,320,2707,2708,211,212,214,213,214,213,214,213,214,214,216,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,315,316,317,318,317,318,317,318,317,318,317,318,317,321,422,423,424,2811,2812,315,316,318,317,318,317,318,317,318,318,319,320,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,419,420,422,421,422,421,422,421,422,421,422,421,422,421,422,527,528,2811,2812,419,420,421,422,421,422,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,524,526,525,526,525,526,525,526,525,526,525,526,525,526,219,220,213,214,217,218,525,526,525,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,419,420,422,421,427,428,425,426,422,421,422,421,422,421,422,323,324,317,318,321,422,421,422,421,422,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,524,526,525,531,532,529,530,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,419,420,422,421,219,220,217,218,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,524,526,525,323,324,321,322,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,419,420,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,524,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,523,524,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,627,529,530,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,427,428,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,315,633,634,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,531,532,216,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,524,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,219,220,320,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,419,420,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,526,526,526,526,421,422,421,323,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,524,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,526,526,526,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,419,420,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,526,526,526,526,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,524,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,526,526,526,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,419,420,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,526,526,526,526,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,524,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,419,420,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,425,426,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,732,529,530,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,211,315,217,218,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,419,321,322,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,524,526,525,526,525,526,525,526,525,526,525,428,425,526,525,526,525,526,525,526,525,526,525,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,419,420,422,421,422,421,422,421,422,421,422,421,738,739,422,421,422,421,422,421,422,421,422,421,422,421,422,421,422,423,424,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,523,524,526,525,526,525,526,525,526,427,428,631,632,419,420,525,526,525,526,525,526,525,526,525,526,525,526,525,526,527,528,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,627,628,629,630,629,630,629,629,630,630,532,735,736,627,628,630,629,630,629,630,629,630,629,630,629,630,629,630,629,631,632,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,733,734,733,734,733,733,734,734,733,2707,2707,2708,732,734,733,734,733,734,733,734,733,734,733,734,733,734,733,735,736,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2811,2812,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,
|
||||
2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,2707,2708,
|
||||
2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812,2811,2812
|
||||
</data>
|
||||
</layer>
|
||||
<layer id="3" name="Layer 2" width="70" height="60">
|
||||
<data encoding="csv">
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12548,12549,12550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21685,21686,21687,21688,21689,21690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,21685,21686,21687,21688,21689,21690,0,0,0,0,0,0,0,0,0,12652,12653,12654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21775,21776,21777,21778,21779,21780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,21775,21776,21777,21778,21779,21780,0,0,0,0,0,0,0,0,0,12548,12549,12550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21865,21866,21867,21868,21869,21870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,21865,21866,21867,21868,21869,21870,0,0,0,0,0,0,0,0,0,12652,12653,12654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21955,21956,21957,21958,21959,21960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,22987,22988,0,21955,21956,21957,21958,21959,21960,0,0,0,0,0,0,0,0,0,12548,12549,12550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22045,22046,22047,22048,22049,22050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,23077,23078,0,22045,22046,22047,22048,22049,22050,0,0,0,0,0,0,0,0,0,12652,12653,12654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22135,22136,22137,22138,22139,22140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,22135,22136,22137,22138,22139,22140,0,0,0,0,0,0,0,0,0,12548,12549,12550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22225,22226,22227,22228,22229,22230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,22225,22226,22227,22228,22229,22230,0,22627,22628,0,0,0,0,0,0,12652,12653,12654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22315,22316,22317,22318,22319,22320,22987,22988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,22315,22316,22317,22318,22319,22320,0,22717,22718,0,0,0,0,0,0,12548,12549,12550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22405,22406,22407,22408,22409,22410,23077,23078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,22405,22406,22407,22408,22409,22410,0,0,0,0,0,0,0,0,0,12652,12653,12654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22495,22496,22497,22498,22499,22500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,22495,22496,22497,22498,22499,22500,0,0,0,0,0,0,0,0,0,12548,12549,12550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12652,12653,12654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10885,10886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10989,10990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15471,15472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5839,5840,5841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14976,14977,14978,14979,14980,14981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,14976,14977,14978,14979,14980,14981,0,0,0,0,0,0,0,0,0,5943,5944,5945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15066,15067,15068,15069,15070,15071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,15066,15067,15068,15069,15070,15071,0,0,0,0,0,0,0,0,0,5839,5840,5841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15156,15157,15158,15159,15160,15161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,15156,15157,15158,15159,15160,15161,0,0,0,0,0,0,0,0,0,5943,5944,5945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15246,15247,15248,15249,15250,15251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,16278,16279,0,15246,15247,15248,15249,15250,15251,0,0,0,0,0,0,0,0,0,5839,5840,5841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15336,15337,15338,15339,15340,15341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,16368,16369,0,15336,15337,15338,15339,15340,15341,0,0,0,0,0,0,0,0,0,5943,5944,5945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15426,15427,15428,15429,15430,15431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,15426,15427,15428,15429,15430,15431,0,0,0,0,0,0,0,0,0,5839,5840,5841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15516,15517,15518,15519,15520,15521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,15516,15517,15518,15519,15520,15521,0,15918,15919,0,0,0,0,0,0,5943,5944,5945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15606,15607,15608,15609,15610,15611,16278,16279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,15606,15607,15608,15609,15610,15611,0,16008,16009,0,0,0,0,0,0,5839,5840,5841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15696,15697,15698,15699,15700,15701,16368,16369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,15696,15697,15698,15699,15700,15701,0,0,0,0,0,0,0,0,0,5943,5944,5945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15786,15787,15788,15789,15790,15791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,15786,15787,15788,15789,15790,15791,0,0,0,0,0,0,0,0,0,5839,5840,5841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5943,5944,5945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4176,4177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4280,4281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8762,8763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
10686,10687,10682,10683,10684,10685,10686,10687,11296,11297,14200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
10790,10791,10786,10787,10788,10789,10790,10791,10790,10791,14304,14304,14305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
11102,11103,11098,11099,11100,11101,11102,11103,11102,11103,14408,14408,14409,14410,14411,14412,14413,14414,14415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
11206,11207,11202,11203,11204,11205,11206,11207,11206,11207,14512,14512,14513,14514,14515,14516,14517,14518,14519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
11310,11311,11306,11307,11308,11309,11310,11311,11310,11311,14616,14616,14617,14618,14619,14620,14621,14622,14623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22807,22808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
11414,11415,11410,11411,11412,11413,11414,11415,11414,11415,14720,14720,14721,14722,14723,14724,14725,14726,14727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22897,22898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19921,19922,19923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,22987,22988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19970,19971,19972,19240,19241,19242,19243,19244,19245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,23077,23078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20019,20020,20021,19289,19290,19291,19292,19293,19294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20068,20069,20070,19338,19339,19340,19341,19342,19343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22987,22988,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18776,18777,20465,20466,20467,20468,19387,19388,19389,19390,19391,19392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23077,23078,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18825,18826,20497,20498,20499,20500,19436,19437,19438,19439,19440,19441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20529,20530,20531,20532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20561,20562,20563,20564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18776,18777,0,0,0,18776,18777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22627,22628,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18825,18826,0,0,0,18825,18826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22717,22718,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
3977,3978,3973,3974,3975,3976,3977,3978,4587,4588,7491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
4081,4082,4077,4078,4079,4080,4081,4082,4081,4082,7595,7595,7596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
4393,4394,4389,4390,4391,4392,4393,4394,4393,4394,7699,7699,7700,7701,7702,7703,7704,7705,7706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
4497,4498,4493,4494,4495,4496,4497,4498,4497,4498,7803,7803,7804,7805,7806,7807,7808,7809,7810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
4601,4602,4597,4598,4599,4600,4601,4602,4601,4602,7907,7907,7908,7909,7910,7911,7912,7913,7914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16098,16099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
4705,4706,4701,4702,4703,4704,4705,4706,4705,4706,8011,8011,8012,8013,8014,8015,8016,8017,8018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16188,16189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13212,13213,13214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,16278,16279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13261,13262,13263,12531,12532,12533,12534,12535,12536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,16368,16369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13310,13311,13312,12580,12581,12582,12583,12584,12585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13359,13360,13361,12629,12630,12631,12632,12633,12634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16278,16279,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12067,12068,13756,13757,13758,13759,12678,12679,12680,12681,12682,12683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16368,16369,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12116,12117,13788,13789,13790,13791,12727,12728,12729,12730,12731,12732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13820,13821,13822,13823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13852,13853,13854,13855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12067,12068,0,0,0,12067,12068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15918,15919,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12116,12117,0,0,0,12116,12117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16008,16009,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21685,21686,21687,21688,21689,21690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10496,10497,10498,10499,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,10498,10710,10711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21775,21776,21777,21778,21779,21780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10600,10601,10602,10603,14568,14569,14570,14571,14572,14573,14574,14575,14576,14577,10602,10814,10815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21865,21866,21867,21868,21869,21870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10805,10806,10807,0,0,0,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,10914,10918,10919,10920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21955,21956,21957,21958,21959,21960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10909,10910,10911,0,0,0,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,10914,11022,11023,11024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
22045,22046,22047,22048,22049,22050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11013,11014,0,0,0,0,14880,14881,14882,14883,14884,14885,14886,14887,14888,14889,10914,10918,10919,10920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
22135,22136,22137,22138,22139,22140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11013,11014,11015,0,0,0,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,10914,11022,11023,11024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
22225,22226,22227,22228,22229,22230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11013,11014,11015,0,0,0,0,0,0,0,0,0,0,0,0,10914,10914,10918,10919,10920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
22315,22316,22317,22318,22319,22320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11013,11014,11015,0,0,0,0,0,0,0,0,0,0,0,0,10914,10914,11022,11023,11024,0,0,0,0,0,0,21685,21686,21687,21688,21689,21690,0,0,0,0,0,
|
||||
22405,22406,22407,22408,22409,22410,22987,22988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11013,11014,11015,0,0,0,0,0,0,0,0,0,0,0,0,10914,10914,10918,10919,10920,0,0,0,0,0,0,21775,21776,21777,21778,21779,21780,0,0,0,0,0,
|
||||
22495,22496,22497,22498,22499,22500,23077,23078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11013,11014,11015,0,0,0,0,0,0,0,0,0,0,0,0,10914,10914,11022,11023,11024,0,0,0,0,0,0,21865,21866,21867,21868,21869,21870,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11013,11014,11015,0,0,0,0,0,0,0,0,0,0,0,0,10914,10914,10918,10919,10920,0,0,0,0,0,0,21955,21956,21957,21958,21959,21960,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11013,11014,11015,0,0,0,0,0,0,0,0,0,0,0,0,10914,10914,11022,11023,11024,0,0,0,0,0,0,22045,22046,22047,22048,22049,22050,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11013,11014,11015,0,0,0,0,0,0,0,0,0,0,0,0,10914,10914,10918,10919,10920,0,0,0,0,0,0,22135,22136,22137,22138,22139,22140,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11013,11014,11015,0,0,0,0,0,0,0,0,0,0,0,0,10914,10914,11022,11023,11024,0,0,0,0,0,0,22225,22226,22227,22228,22229,22230,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11117,11118,11119,11330,11331,11330,11331,11330,11331,11330,11331,11330,11331,11330,11331,11330,11331,11332,11333,0,0,0,0,0,0,0,22315,22316,22317,22318,22319,22320,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11221,11222,11223,11434,11435,11434,11435,11434,11435,11434,11435,11434,11435,11434,11435,11434,11435,11436,11437,0,0,0,0,0,0,0,22405,22406,22407,22408,22409,22410,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11325,11326,11327,11538,11539,11538,11539,11538,11539,11538,11539,11538,11539,11538,11539,11538,11539,11540,11541,0,0,0,0,0,0,0,22495,22496,22497,22498,22499,22500,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22987,22988,0,0,0,0,0,0,11429,11430,11849,11850,11851,11850,11851,11850,11851,11850,11851,11850,11851,11850,11851,11850,11851,11644,11645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23077,23078,0,0,0,0,0,0,0,11952,11953,11954,11955,11954,11955,11954,11955,11954,11955,11954,11955,11954,11955,11954,11955,11750,11751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12056,12057,12058,12059,12058,12059,12058,12059,12058,12059,12058,12059,12058,12059,12058,12059,11854,11855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,22627,22628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22627,22628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,22717,22718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22717,22718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22987,22988,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23077,23078,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
14976,14977,14978,14979,14980,14981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3787,3788,3789,3790,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,3789,4001,4002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
15066,15067,15068,15069,15070,15071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,3892,3893,3894,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,3893,4105,4106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
15156,15157,15158,15159,15160,15161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4096,4097,4098,0,0,0,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,4205,4209,4210,4211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
15246,15247,15248,15249,15250,15251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4200,4201,4202,0,0,0,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,4205,4313,4314,4315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
15336,15337,15338,15339,15340,15341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304,4305,0,0,0,0,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,4205,4209,4210,4211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
15426,15427,15428,15429,15430,15431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304,4305,4306,0,0,0,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,4205,4313,4314,4315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
15516,15517,15518,15519,15520,15521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304,4305,4306,0,0,0,0,0,0,0,0,0,0,0,0,4205,4205,4209,4210,4211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
15606,15607,15608,15609,15610,15611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304,4305,4306,0,0,0,0,0,0,0,0,0,0,0,0,4205,4205,4313,4314,4315,0,0,0,0,0,0,14976,14977,14978,14979,14980,14981,0,0,0,0,0,
|
||||
15696,15697,15698,15699,15700,15701,16278,16279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304,4305,4306,0,0,0,0,0,0,0,0,0,0,0,0,4205,4205,4209,4210,4211,0,0,0,0,0,0,15066,15067,15068,15069,15070,15071,0,0,0,0,0,
|
||||
15786,15787,15788,15789,15790,15791,16368,16369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304,4305,4306,0,0,0,0,0,0,0,0,0,0,0,0,4205,4205,4313,4314,4315,0,0,0,0,0,0,15156,15157,15158,15159,15160,15161,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304,4305,4306,0,0,0,0,0,0,0,0,0,0,0,0,4205,4205,4209,4210,4211,0,0,0,0,0,0,15246,15247,15248,15249,15250,15251,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304,4305,4306,0,0,0,0,0,0,0,0,0,0,0,0,4205,4205,4313,4314,4315,0,0,0,0,0,0,15336,15337,15338,15339,15340,15341,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304,4305,4306,0,0,0,0,0,0,0,0,0,0,0,0,4205,4205,4209,4210,4211,0,0,0,0,0,0,15426,15427,15428,15429,15430,15431,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4304,4305,4306,0,0,0,0,0,0,0,0,0,0,0,0,4205,4205,4313,4314,4315,0,0,0,0,0,0,15516,15517,15518,15519,15520,15521,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4408,4409,4410,4621,4622,4621,4622,4621,4622,4621,4622,4621,4622,4621,4622,4621,4622,4623,4624,0,0,0,0,0,0,0,15606,15607,15608,15609,15610,15611,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4512,4513,4514,4725,4726,4725,4726,4725,4726,4725,4726,4725,4726,4725,4726,4725,4726,4727,4728,0,0,0,0,0,0,0,15696,15697,15698,15699,15700,15701,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4618,4829,4830,4829,4830,4829,4830,4829,4830,4829,4830,4829,4830,4829,4830,4831,4832,0,0,0,0,0,0,0,15786,15787,15788,15789,15790,15791,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16278,16279,0,0,0,0,0,0,4720,4721,5140,5141,5142,5141,5142,5141,5142,5141,5142,5141,5142,5141,5142,5141,5142,4935,4936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16368,16369,0,0,0,0,0,0,0,5243,5244,5245,5246,5245,5246,5245,5246,5245,5246,5245,5246,5245,5246,5245,5246,5041,5042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5347,5348,5349,5350,5349,5350,5349,5350,5349,5350,5349,5350,5349,5350,5349,5350,5145,5146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,15918,15919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15918,15919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,16008,16009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16008,16009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16278,16279,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16368,16369,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
</data>
|
||||
@ -177,23 +172,23 @@
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18778,18779,18780,18781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18827,18828,18829,18830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20593,20594,20595,20596,0,18876,18877,18878,18879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20649,20650,20651,20652,0,18925,18926,18927,18928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20705,20706,20707,20708,20709,20710,20711,18782,18783,18784,18785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20761,20762,20763,20764,20765,20766,20767,18831,18832,18833,18834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20817,20818,20819,20820,20821,20822,20823,18880,18881,18882,18883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20873,20874,20875,20876,20877,20878,20879,18929,18930,18931,18932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12069,12070,12071,12072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12118,12119,12120,12121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13884,13885,13886,13887,0,12167,12168,12169,12170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13940,13941,13942,13943,0,12216,12217,12218,12219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13996,13997,13998,13999,14000,14001,14002,12073,12074,12075,12076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14052,14053,14054,14055,14056,14057,14058,12122,12123,12124,12125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14108,14109,14110,14111,14112,14113,14114,12171,12172,12173,12174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14164,14165,14166,14167,14168,14169,14170,12220,12221,12222,12223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18764,18765,18874,18875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18813,18814,18923,18924,0,19018,19019,19020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19240,19241,19242,19243,19244,19245,0,19067,19068,19069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19289,19290,19291,19292,19293,19294,0,19116,19117,19118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19338,19339,19340,19341,19342,19343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19387,19388,19389,19390,19391,19392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19436,19437,19438,19439,19440,19441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12055,12056,12165,12166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12104,12105,12214,12215,0,12309,12310,12311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12531,12532,12533,12534,12535,12536,0,12358,12359,12360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12580,12581,12582,12583,12584,12585,0,12407,12408,12409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12629,12630,12631,12632,12633,12634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12678,12679,12680,12681,12682,12683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12727,12728,12729,12730,12731,12732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
@ -250,17 +245,17 @@
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18782,18783,18784,18785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18831,18832,18833,18834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18880,18881,18882,18883,0,0,0,0,19240,19241,19242,19243,19244,19245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18929,18930,18931,18932,0,0,0,0,19289,19290,19291,19292,19293,19294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18394,18395,18396,18397,18398,0,0,0,19338,19339,19340,19341,19342,19343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18443,18444,18445,18446,18447,0,0,0,19387,19388,19389,19390,19391,19392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18492,18493,18494,18495,18496,0,0,0,19436,19437,19438,19439,19440,19441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12073,12074,12075,12076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12122,12123,12124,12125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12171,12172,12173,12174,0,0,0,0,12531,12532,12533,12534,12535,12536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12220,12221,12222,12223,0,0,0,0,12580,12581,12582,12583,12584,12585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11685,11686,11687,11688,11689,0,0,0,12629,12630,12631,12632,12633,12634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11734,11735,11736,11737,11738,0,0,0,12678,12679,12680,12681,12682,12683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11783,11784,11785,11786,11787,0,0,0,12727,12728,12729,12730,12731,12732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
@ -273,17 +268,17 @@
|
||||
</layer>
|
||||
<layer id="6" name="Layer 5 (after Chapter 1)" width="70" height="60">
|
||||
<data encoding="csv">
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19666,19667,0,19666,19667,0,19666,19667,0,19666,19667,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19715,19716,0,19715,19716,0,19715,19716,0,19715,19716,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19764,19765,0,19764,19765,0,19764,19765,0,19764,19765,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12957,12958,0,12957,12958,0,12957,12958,0,12957,12958,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13006,13007,0,13006,13007,0,13006,13007,0,13006,13007,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13055,13056,0,13055,13056,0,13055,13056,0,13055,13056,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19666,19667,0,19666,19667,0,19666,19667,0,19666,19667,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19715,19716,0,19715,19716,0,19715,19716,0,19715,19716,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19764,19765,0,19764,19765,0,19764,19765,0,19764,19765,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12957,12958,0,12957,12958,0,12957,12958,0,12957,12958,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13006,13007,0,13006,13007,0,13006,13007,0,13006,13007,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13055,13056,0,13055,13056,0,13055,13056,0,13055,13056,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19666,19667,0,19666,19667,0,19666,19667,0,19664,19665,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19715,19716,0,19715,19716,0,19715,19716,0,19713,19714,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19764,19765,0,19764,19765,0,19764,19765,0,19762,19763,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12957,12958,0,12957,12958,0,12957,12958,0,12955,12956,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13006,13007,0,13006,13007,0,13006,13007,0,13004,13005,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13055,13056,0,13055,13056,0,13055,13056,0,13053,13054,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
@ -337,14 +332,14 @@
|
||||
</layer>
|
||||
<layer id="7" name="Layer 6 (after Chapter 1)" width="70" height="60">
|
||||
<data encoding="csv">
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19119,19120,0,19119,19120,0,19119,19120,0,19119,19120,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19168,19169,0,19168,19169,0,19168,19169,0,19168,19169,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19217,19218,0,19217,19218,0,19217,19218,0,19217,19218,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19266,19267,0,19266,19267,0,19266,19267,0,19266,19267,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19119,19120,0,19119,19120,0,19119,19120,0,19119,19120,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19168,19169,0,19168,19169,0,19168,19169,0,19168,19169,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19217,19218,0,19217,19218,0,19217,19218,0,19217,19218,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19266,19267,0,19266,19267,0,19266,19267,0,19266,19267,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12410,12411,0,12410,12411,0,12410,12411,0,12410,12411,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12459,12460,0,12459,12460,0,12459,12460,0,12459,12460,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12508,12509,0,12508,12509,0,12508,12509,0,12508,12509,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12557,12558,0,12557,12558,0,12557,12558,0,12557,12558,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12410,12411,0,12410,12411,0,12410,12411,0,12410,12411,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12459,12460,0,12459,12460,0,12459,12460,0,12459,12460,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12508,12509,0,12508,12509,0,12508,12509,0,12508,12509,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12557,12558,0,12557,12558,0,12557,12558,0,12557,12558,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<map version="1.10" tiledversion="1.10.1" class="Map" orientation="orthogonal" renderorder="left-down" width="250" height="177" tilewidth="4" tileheight="4" infinite="0" nextlayerid="5" nextobjectid="19">
|
||||
<properties>
|
||||
<property name="Background Music" propertytype="BGM" value="overworld"/>
|
||||
<property name="Level Type" propertytype="LevelType" value="Hub"/>
|
||||
<property name="Level Type" propertytype="LevelType" value="World Map"/>
|
||||
<property name="Optimize" type="bool" value="true"/>
|
||||
</properties>
|
||||
<tileset firstgid="1" source="../maps/Minifantasy_TinyOverworldAllTiles.tsx"/>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,718 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<tileset version="1.10" tiledversion="1.10.1" name="16x16px_grid_Props_No_Shadow_12x12" tilewidth="12" tileheight="12" tilecount="2107" columns="49">
|
||||
<image source="commercial_assets/16x16px_grid_Props_No_Shadow_12x12.png" width="588" height="516"/>
|
||||
<tile id="85">
|
||||
<objectgroup draworder="index" id="3">
|
||||
<object id="2" x="7" y="9" width="5" height="3"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="86">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="12" height="3"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="87">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="12" height="3"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="88">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="12" height="3"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="89">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="6" height="3"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="134">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="7" y="0" width="5" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="135">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="136">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="137">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="138">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="6" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="404" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="405" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="406" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="407" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="408" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="409" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="410" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="411" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="420" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="421" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="422" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="423" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="424" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="425" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="426" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="427" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="453" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="2" y="0" width="10" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="454" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="455" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="2" y="0" width="10" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="456" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="457" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="2" y="0" width="10" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="458" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="459" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="2" y="0" width="10" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="460" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="469" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="470" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="471" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="472" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="473" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="474" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="475" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="476" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="477" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="478" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="479" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="480" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="481" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="516" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="517" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="518" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="519" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="520" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="521" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="522" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="7" y="0" width="5" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="523" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="524" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="525" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="5" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="526" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="7" y="0" width="5" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="527" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="528" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="529" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="530" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="4" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="565" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="3" y="0" width="9" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="566" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="8" height="8"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="567" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="5" y="0" width="7" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="568" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="569" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="570" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="6" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="571" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="7" y="0" width="5" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="572" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="2"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="573" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="2"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="574" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="5" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="660" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="661" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="662" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="709" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="3" y="9" width="9" height="3"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="710" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="8" width="12" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="711" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="8" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="758" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="6" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="759" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="5"/>
|
||||
<object id="4" x="10" y="0" width="2" height="3"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="760" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="1" height="1"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="884" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="885" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="886" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="931" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="932" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="933" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="934" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="935" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="980" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="10" y="8" width="2" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="981" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="12" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="982" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="12" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="983" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="12" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="984" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="12" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="985" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="1029" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="7" y="0" width="5" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1030" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1031" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="11" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1032" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1033" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="8"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1034" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1080" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="3" y="0" width="9" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1081" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="9" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1563">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="8" y="6" width="4" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1564">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1565">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="4" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1612">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="8" y="0" width="4" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1613">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1614">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="4" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1661">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="8" y="0" width="4" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1662">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1663">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="4" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1710">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="8" y="0" width="4" height="2"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1711">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1712">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="6" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
</tileset>
|
||||
|
||||
@ -1,7 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<tileset version="1.10" tiledversion="1.10.1" name="64x64px_No_Shadow_Campfire_12x12" tilewidth="12" tileheight="12" tilecount="128" columns="32">
|
||||
<image source="commercial_assets/64x64px_No_Shadow_Campfire_12x12.png" width="384" height="48"/>
|
||||
<tile id="1">
|
||||
<tile id="0" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="1" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<animation>
|
||||
<frame tileid="1" duration="100"/>
|
||||
<frame tileid="5" duration="100"/>
|
||||
@ -13,7 +21,10 @@
|
||||
<frame tileid="29" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="2">
|
||||
<tile id="2" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<animation>
|
||||
<frame tileid="2" duration="100"/>
|
||||
<frame tileid="6" duration="100"/>
|
||||
@ -25,7 +36,160 @@
|
||||
<frame tileid="30" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="33">
|
||||
<tile id="3" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="4" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="5" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="6" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="7" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="8" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="9" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="10" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="11" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="12" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="13" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="14" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="15" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="16" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="17" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="18" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="19" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="20" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="21" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="22" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="23" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="24" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="25" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="26" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="27" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="28" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="29" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="30" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="31" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="32" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="33" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<animation>
|
||||
<frame tileid="33" duration="100"/>
|
||||
<frame tileid="37" duration="100"/>
|
||||
@ -37,7 +201,10 @@
|
||||
<frame tileid="61" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="34">
|
||||
<tile id="34" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<animation>
|
||||
<frame tileid="34" duration="100"/>
|
||||
<frame tileid="38" duration="100"/>
|
||||
@ -49,7 +216,163 @@
|
||||
<frame tileid="62" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="65">
|
||||
<tile id="35" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="36" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="37" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="38" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="39" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="40" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="41" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="42" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="43" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="44" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="45" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="46" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="47" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="48" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="49" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="50" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="51" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="52" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="53" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="54" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="55" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="56" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="57" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="58" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="59" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="60" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="61" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="62" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="63" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="64" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="65" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="65" duration="100"/>
|
||||
<frame tileid="69" duration="100"/>
|
||||
@ -61,7 +384,13 @@
|
||||
<frame tileid="93" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="66">
|
||||
<tile id="66" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="66" duration="100"/>
|
||||
<frame tileid="70" duration="100"/>
|
||||
@ -73,7 +402,205 @@
|
||||
<frame tileid="94" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="97">
|
||||
<tile id="67" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="68" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="69" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="70" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="71" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="72" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="73" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="74" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="75" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="76" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="77" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="78" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="79" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="80" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="81" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="3">
|
||||
<object id="2" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="82" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="83" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="84" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="85" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="86" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="87" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="88" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="89" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="90" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="91" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="92" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="93" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="94" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="12" height="6"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="95" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="96" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="97" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="97" duration="100"/>
|
||||
<frame tileid="101" duration="100"/>
|
||||
@ -85,7 +612,13 @@
|
||||
<frame tileid="125" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="98">
|
||||
<tile id="98" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="98" duration="100"/>
|
||||
<frame tileid="102" duration="100"/>
|
||||
@ -97,4 +630,191 @@
|
||||
<frame tileid="126" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="99" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="100" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="101" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="102" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="103" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="104" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="105" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="106" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="107" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="108" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="109" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="110" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="111" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="112" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="113" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="114" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="115" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="116" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="117" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="118" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="119" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="120" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="121" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="122" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="123" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="124" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
<tile id="125" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="126" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="11" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="127" type="ForegroundTile">
|
||||
<properties>
|
||||
<property name="Hide?" type="bool" value="false"/>
|
||||
</properties>
|
||||
</tile>
|
||||
</tileset>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,924 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<tileset version="1.10" tiledversion="1.10.1" name="Forge_No_Shadow_24x24" tilewidth="24" tileheight="24" tilecount="336" columns="56">
|
||||
<image source="commercial_assets/112x96_Forge_No_Shadow_24x24.png" width="1344" height="144"/>
|
||||
<tile id="0" type="ForegroundTile"/>
|
||||
<tile id="1" type="ForegroundTile"/>
|
||||
<tile id="2" type="ForegroundTile"/>
|
||||
<tile id="3" type="ForegroundTile"/>
|
||||
<tile id="4" type="ForegroundTile"/>
|
||||
<tile id="5" type="ForegroundTile"/>
|
||||
<tile id="6" type="ForegroundTile"/>
|
||||
<tile id="7" type="ForegroundTile"/>
|
||||
<tile id="8" type="ForegroundTile"/>
|
||||
<tile id="9" type="ForegroundTile"/>
|
||||
<tile id="10" type="ForegroundTile"/>
|
||||
<tile id="11" type="ForegroundTile"/>
|
||||
<tile id="12" type="ForegroundTile"/>
|
||||
<tile id="13" type="ForegroundTile"/>
|
||||
<tile id="14" type="ForegroundTile"/>
|
||||
<tile id="15" type="ForegroundTile"/>
|
||||
<tile id="16" type="ForegroundTile"/>
|
||||
<tile id="17" type="ForegroundTile"/>
|
||||
<tile id="18" type="ForegroundTile"/>
|
||||
<tile id="19" type="ForegroundTile"/>
|
||||
<tile id="20" type="ForegroundTile"/>
|
||||
<tile id="21" type="ForegroundTile"/>
|
||||
<tile id="22" type="ForegroundTile"/>
|
||||
<tile id="23" type="ForegroundTile"/>
|
||||
<tile id="24" type="ForegroundTile"/>
|
||||
<tile id="25" type="ForegroundTile"/>
|
||||
<tile id="26" type="ForegroundTile"/>
|
||||
<tile id="27" type="ForegroundTile"/>
|
||||
<tile id="28" type="ForegroundTile"/>
|
||||
<tile id="29" type="ForegroundTile"/>
|
||||
<tile id="30" type="ForegroundTile"/>
|
||||
<tile id="31" type="ForegroundTile"/>
|
||||
<tile id="32" type="ForegroundTile"/>
|
||||
<tile id="33" type="ForegroundTile"/>
|
||||
<tile id="34" type="ForegroundTile"/>
|
||||
<tile id="35" type="ForegroundTile"/>
|
||||
<tile id="36" type="ForegroundTile"/>
|
||||
<tile id="37" type="ForegroundTile"/>
|
||||
<tile id="38" type="ForegroundTile"/>
|
||||
<tile id="39" type="ForegroundTile"/>
|
||||
<tile id="40" type="ForegroundTile"/>
|
||||
<tile id="41" type="ForegroundTile"/>
|
||||
<tile id="42" type="ForegroundTile"/>
|
||||
<tile id="43" type="ForegroundTile"/>
|
||||
<tile id="44" type="ForegroundTile"/>
|
||||
<tile id="45" type="ForegroundTile"/>
|
||||
<tile id="46" type="ForegroundTile"/>
|
||||
<tile id="47" type="ForegroundTile"/>
|
||||
<tile id="48" type="ForegroundTile"/>
|
||||
<tile id="49" type="ForegroundTile"/>
|
||||
<tile id="50" type="ForegroundTile"/>
|
||||
<tile id="51" type="ForegroundTile"/>
|
||||
<tile id="52" type="ForegroundTile"/>
|
||||
<tile id="53" type="ForegroundTile"/>
|
||||
<tile id="54" type="ForegroundTile"/>
|
||||
<tile id="55" type="ForegroundTile"/>
|
||||
<tile id="56" type="ForegroundTile"/>
|
||||
<tile id="57" type="ForegroundTile"/>
|
||||
<tile id="58" type="ForegroundTile"/>
|
||||
<tile id="59" type="ForegroundTile"/>
|
||||
<tile id="60" type="ForegroundTile"/>
|
||||
<tile id="61" type="ForegroundTile"/>
|
||||
<tile id="62" type="ForegroundTile"/>
|
||||
<tile id="63" type="ForegroundTile"/>
|
||||
<tile id="64" type="ForegroundTile"/>
|
||||
<tile id="65" type="ForegroundTile"/>
|
||||
<tile id="66" type="ForegroundTile"/>
|
||||
<tile id="67" type="ForegroundTile"/>
|
||||
<tile id="68" type="ForegroundTile"/>
|
||||
<tile id="69" type="ForegroundTile"/>
|
||||
<tile id="70" type="ForegroundTile"/>
|
||||
<tile id="71" type="ForegroundTile"/>
|
||||
<tile id="72" type="ForegroundTile"/>
|
||||
<tile id="73" type="ForegroundTile"/>
|
||||
<tile id="74" type="ForegroundTile"/>
|
||||
<tile id="75" type="ForegroundTile"/>
|
||||
<tile id="76" type="ForegroundTile"/>
|
||||
<tile id="77" type="ForegroundTile"/>
|
||||
<tile id="78" type="ForegroundTile"/>
|
||||
<tile id="79" type="ForegroundTile"/>
|
||||
<tile id="80" type="ForegroundTile"/>
|
||||
<tile id="81" type="ForegroundTile"/>
|
||||
<tile id="82" type="ForegroundTile"/>
|
||||
<tile id="83" type="ForegroundTile"/>
|
||||
<tile id="84" type="ForegroundTile"/>
|
||||
<tile id="85" type="ForegroundTile"/>
|
||||
<tile id="86" type="ForegroundTile"/>
|
||||
<tile id="87" type="ForegroundTile"/>
|
||||
<tile id="88" type="ForegroundTile"/>
|
||||
<tile id="89" type="ForegroundTile"/>
|
||||
<tile id="90" type="ForegroundTile"/>
|
||||
<tile id="91" type="ForegroundTile"/>
|
||||
<tile id="92" type="ForegroundTile"/>
|
||||
<tile id="93" type="ForegroundTile"/>
|
||||
<tile id="94" type="ForegroundTile"/>
|
||||
<tile id="95" type="ForegroundTile"/>
|
||||
<tile id="96" type="ForegroundTile"/>
|
||||
<tile id="97" type="ForegroundTile"/>
|
||||
<tile id="98" type="ForegroundTile"/>
|
||||
<tile id="99" type="ForegroundTile"/>
|
||||
<tile id="100" type="ForegroundTile"/>
|
||||
<tile id="101" type="ForegroundTile"/>
|
||||
<tile id="102" type="ForegroundTile"/>
|
||||
<tile id="103" type="ForegroundTile"/>
|
||||
<tile id="104" type="ForegroundTile"/>
|
||||
<tile id="105" type="ForegroundTile"/>
|
||||
<tile id="106" type="ForegroundTile"/>
|
||||
<tile id="107" type="ForegroundTile"/>
|
||||
<tile id="108" type="ForegroundTile"/>
|
||||
<tile id="109" type="ForegroundTile"/>
|
||||
<tile id="110" type="ForegroundTile"/>
|
||||
<tile id="111" type="ForegroundTile"/>
|
||||
<tile id="112" type="ForegroundTile"/>
|
||||
<tile id="113" type="ForegroundTile"/>
|
||||
<tile id="114" type="ForegroundTile"/>
|
||||
<tile id="115" type="ForegroundTile"/>
|
||||
<tile id="116" type="ForegroundTile"/>
|
||||
<tile id="117" type="ForegroundTile"/>
|
||||
<tile id="118" type="ForegroundTile"/>
|
||||
<tile id="119" type="ForegroundTile"/>
|
||||
<tile id="120" type="ForegroundTile"/>
|
||||
<tile id="121" type="ForegroundTile"/>
|
||||
<tile id="122" type="ForegroundTile"/>
|
||||
<tile id="123" type="ForegroundTile"/>
|
||||
<tile id="124" type="ForegroundTile"/>
|
||||
<tile id="125" type="ForegroundTile"/>
|
||||
<tile id="126" type="ForegroundTile"/>
|
||||
<tile id="127" type="ForegroundTile"/>
|
||||
<tile id="128" type="ForegroundTile"/>
|
||||
<tile id="129" type="ForegroundTile"/>
|
||||
<tile id="130" type="ForegroundTile"/>
|
||||
<tile id="131" type="ForegroundTile"/>
|
||||
<tile id="132" type="ForegroundTile"/>
|
||||
<tile id="133" type="ForegroundTile"/>
|
||||
<tile id="134" type="ForegroundTile"/>
|
||||
<tile id="135" type="ForegroundTile"/>
|
||||
<tile id="136" type="ForegroundTile"/>
|
||||
<tile id="137" type="ForegroundTile"/>
|
||||
<tile id="138" type="ForegroundTile"/>
|
||||
<tile id="139" type="ForegroundTile"/>
|
||||
<tile id="140" type="ForegroundTile"/>
|
||||
<tile id="141" type="ForegroundTile"/>
|
||||
<tile id="142" type="ForegroundTile"/>
|
||||
<tile id="143" type="ForegroundTile"/>
|
||||
<tile id="144" type="ForegroundTile"/>
|
||||
<tile id="145" type="ForegroundTile"/>
|
||||
<tile id="146" type="ForegroundTile"/>
|
||||
<tile id="147" type="ForegroundTile"/>
|
||||
<tile id="148" type="ForegroundTile"/>
|
||||
<tile id="149" type="ForegroundTile"/>
|
||||
<tile id="150" type="ForegroundTile"/>
|
||||
<tile id="151" type="ForegroundTile"/>
|
||||
<tile id="152" type="ForegroundTile"/>
|
||||
<tile id="153" type="ForegroundTile"/>
|
||||
<tile id="154" type="ForegroundTile"/>
|
||||
<tile id="155" type="ForegroundTile"/>
|
||||
<tile id="156" type="ForegroundTile"/>
|
||||
<tile id="157" type="ForegroundTile"/>
|
||||
<tile id="158" type="ForegroundTile"/>
|
||||
<tile id="159" type="ForegroundTile"/>
|
||||
<tile id="160" type="ForegroundTile"/>
|
||||
<tile id="161" type="ForegroundTile"/>
|
||||
<tile id="162" type="ForegroundTile"/>
|
||||
<tile id="163" type="ForegroundTile"/>
|
||||
<tile id="164" type="ForegroundTile"/>
|
||||
<tile id="165" type="ForegroundTile"/>
|
||||
<tile id="166" type="ForegroundTile"/>
|
||||
<tile id="167" type="ForegroundTile"/>
|
||||
<tile id="168" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="169" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="169" duration="100"/>
|
||||
<frame tileid="176" duration="100"/>
|
||||
<frame tileid="183" duration="100"/>
|
||||
<frame tileid="190" duration="100"/>
|
||||
<frame tileid="197" duration="100"/>
|
||||
<frame tileid="204" duration="100"/>
|
||||
<frame tileid="211" duration="100"/>
|
||||
<frame tileid="218" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="170" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="170" duration="100"/>
|
||||
<frame tileid="177" duration="100"/>
|
||||
<frame tileid="184" duration="100"/>
|
||||
<frame tileid="191" duration="100"/>
|
||||
<frame tileid="198" duration="100"/>
|
||||
<frame tileid="205" duration="100"/>
|
||||
<frame tileid="212" duration="100"/>
|
||||
<frame tileid="219" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="171" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="172" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="173" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="174" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="175" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="176" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="177" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="178" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="179" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="3">
|
||||
<object id="2" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="180" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="181" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="182" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="183" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="184" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="185" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="186" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="187" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="188" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="189" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="190" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="191" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="192" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="193" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="194" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="195" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="196" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="197" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="198" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="199" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="200" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="201" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="202" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="203" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="204" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="205" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="206" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="207" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="208" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="209" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="210" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="211" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="212" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="213" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="214" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="215" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="216" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="217" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="218" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="219" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="220" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="221" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="222" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="223" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="224" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="1" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="225" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="225" duration="100"/>
|
||||
<frame tileid="232" duration="100"/>
|
||||
<frame tileid="239" duration="100"/>
|
||||
<frame tileid="246" duration="100"/>
|
||||
<frame tileid="253" duration="100"/>
|
||||
<frame tileid="260" duration="100"/>
|
||||
<frame tileid="267" duration="100"/>
|
||||
<frame tileid="274" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="226" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="226" duration="100"/>
|
||||
<frame tileid="233" duration="100"/>
|
||||
<frame tileid="240" duration="100"/>
|
||||
<frame tileid="247" duration="100"/>
|
||||
<frame tileid="254" duration="100"/>
|
||||
<frame tileid="261" duration="100"/>
|
||||
<frame tileid="268" duration="100"/>
|
||||
<frame tileid="275" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="227" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="228" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="229" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="230" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="231" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="232" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="233" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="234" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="235" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="236" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="237" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="238" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="239" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="240" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="241" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="242" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="243" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="244" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="245" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="246" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="247" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="248" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="249" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="250" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="251" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="252" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="253" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="254" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="255" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="256" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="257" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="258" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="259" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="260" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="261" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="262" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="263" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="264" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="265" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="266" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="267" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="268" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="269" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="270" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="271" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="272" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="2" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="273" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="274" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="275" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="276" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="277" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="278" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="279" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="280" type="ForegroundTile"/>
|
||||
<tile id="281" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="282" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="283" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="284" type="ForegroundTile"/>
|
||||
<tile id="285" type="ForegroundTile"/>
|
||||
<tile id="286" type="ForegroundTile"/>
|
||||
<tile id="287" type="ForegroundTile"/>
|
||||
<tile id="288" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="289" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="290" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="291" type="ForegroundTile"/>
|
||||
<tile id="292" type="ForegroundTile"/>
|
||||
<tile id="293" type="ForegroundTile"/>
|
||||
<tile id="294" type="ForegroundTile"/>
|
||||
<tile id="295" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="296" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="297" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="298" type="ForegroundTile"/>
|
||||
<tile id="299" type="ForegroundTile"/>
|
||||
<tile id="300" type="ForegroundTile"/>
|
||||
<tile id="301" type="ForegroundTile"/>
|
||||
<tile id="302" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="303" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="304" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="305" type="ForegroundTile"/>
|
||||
<tile id="306" type="ForegroundTile"/>
|
||||
<tile id="307" type="ForegroundTile"/>
|
||||
<tile id="308" type="ForegroundTile"/>
|
||||
<tile id="309" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="310" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="311" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="312" type="ForegroundTile"/>
|
||||
<tile id="313" type="ForegroundTile"/>
|
||||
<tile id="314" type="ForegroundTile"/>
|
||||
<tile id="315" type="ForegroundTile"/>
|
||||
<tile id="316" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="317" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="318" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="319" type="ForegroundTile"/>
|
||||
<tile id="320" type="ForegroundTile"/>
|
||||
<tile id="321" type="ForegroundTile"/>
|
||||
<tile id="322" type="ForegroundTile"/>
|
||||
<tile id="323" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="324" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="325" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="326" type="ForegroundTile"/>
|
||||
<tile id="327" type="ForegroundTile"/>
|
||||
<tile id="328" type="ForegroundTile"/>
|
||||
<tile id="329" type="ForegroundTile"/>
|
||||
<tile id="330" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="331" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="332" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="333" type="ForegroundTile"/>
|
||||
<tile id="334" type="ForegroundTile"/>
|
||||
<tile id="335" type="ForegroundTile"/>
|
||||
</tileset>
|
||||
@ -1,344 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<tileset version="1.10" tiledversion="1.10.1" name="No_Shadow_Campfire_24x24" tilewidth="24" tileheight="24" tilecount="128" columns="32">
|
||||
<image source="commercial_assets/64x64px_No_Shadow_Campfire_24x24.png" width="768" height="96"/>
|
||||
<tile id="0" type="ForegroundTile"/>
|
||||
<tile id="1" type="ForegroundTile">
|
||||
<animation>
|
||||
<frame tileid="1" duration="100"/>
|
||||
<frame tileid="5" duration="100"/>
|
||||
<frame tileid="9" duration="100"/>
|
||||
<frame tileid="13" duration="100"/>
|
||||
<frame tileid="17" duration="100"/>
|
||||
<frame tileid="21" duration="100"/>
|
||||
<frame tileid="25" duration="100"/>
|
||||
<frame tileid="29" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="2" type="ForegroundTile">
|
||||
<animation>
|
||||
<frame tileid="2" duration="100"/>
|
||||
<frame tileid="6" duration="100"/>
|
||||
<frame tileid="10" duration="100"/>
|
||||
<frame tileid="14" duration="100"/>
|
||||
<frame tileid="18" duration="100"/>
|
||||
<frame tileid="22" duration="100"/>
|
||||
<frame tileid="26" duration="100"/>
|
||||
<frame tileid="30" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="3" type="ForegroundTile"/>
|
||||
<tile id="4" type="ForegroundTile"/>
|
||||
<tile id="5" type="ForegroundTile"/>
|
||||
<tile id="6" type="ForegroundTile"/>
|
||||
<tile id="7" type="ForegroundTile"/>
|
||||
<tile id="8" type="ForegroundTile"/>
|
||||
<tile id="9" type="ForegroundTile"/>
|
||||
<tile id="10" type="ForegroundTile"/>
|
||||
<tile id="11" type="ForegroundTile"/>
|
||||
<tile id="12" type="ForegroundTile"/>
|
||||
<tile id="13" type="ForegroundTile"/>
|
||||
<tile id="14" type="ForegroundTile"/>
|
||||
<tile id="15" type="ForegroundTile"/>
|
||||
<tile id="16" type="ForegroundTile"/>
|
||||
<tile id="17" type="ForegroundTile"/>
|
||||
<tile id="18" type="ForegroundTile"/>
|
||||
<tile id="19" type="ForegroundTile"/>
|
||||
<tile id="20" type="ForegroundTile"/>
|
||||
<tile id="21" type="ForegroundTile"/>
|
||||
<tile id="22" type="ForegroundTile"/>
|
||||
<tile id="23" type="ForegroundTile"/>
|
||||
<tile id="24" type="ForegroundTile"/>
|
||||
<tile id="25" type="ForegroundTile"/>
|
||||
<tile id="26" type="ForegroundTile"/>
|
||||
<tile id="27" type="ForegroundTile"/>
|
||||
<tile id="28" type="ForegroundTile"/>
|
||||
<tile id="29" type="ForegroundTile"/>
|
||||
<tile id="30" type="ForegroundTile"/>
|
||||
<tile id="31" type="ForegroundTile"/>
|
||||
<tile id="32" type="ForegroundTile"/>
|
||||
<tile id="33" type="ForegroundTile">
|
||||
<animation>
|
||||
<frame tileid="33" duration="100"/>
|
||||
<frame tileid="37" duration="100"/>
|
||||
<frame tileid="41" duration="100"/>
|
||||
<frame tileid="45" duration="100"/>
|
||||
<frame tileid="49" duration="100"/>
|
||||
<frame tileid="53" duration="100"/>
|
||||
<frame tileid="57" duration="100"/>
|
||||
<frame tileid="61" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="34" type="ForegroundTile">
|
||||
<animation>
|
||||
<frame tileid="34" duration="100"/>
|
||||
<frame tileid="38" duration="100"/>
|
||||
<frame tileid="42" duration="100"/>
|
||||
<frame tileid="46" duration="100"/>
|
||||
<frame tileid="50" duration="100"/>
|
||||
<frame tileid="54" duration="100"/>
|
||||
<frame tileid="58" duration="100"/>
|
||||
<frame tileid="62" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="35" type="ForegroundTile"/>
|
||||
<tile id="36" type="ForegroundTile"/>
|
||||
<tile id="37" type="ForegroundTile"/>
|
||||
<tile id="38" type="ForegroundTile"/>
|
||||
<tile id="39" type="ForegroundTile"/>
|
||||
<tile id="40" type="ForegroundTile"/>
|
||||
<tile id="41" type="ForegroundTile"/>
|
||||
<tile id="42" type="ForegroundTile"/>
|
||||
<tile id="43" type="ForegroundTile"/>
|
||||
<tile id="44" type="ForegroundTile"/>
|
||||
<tile id="45" type="ForegroundTile"/>
|
||||
<tile id="46" type="ForegroundTile"/>
|
||||
<tile id="47" type="ForegroundTile"/>
|
||||
<tile id="48" type="ForegroundTile"/>
|
||||
<tile id="49" type="ForegroundTile"/>
|
||||
<tile id="50" type="ForegroundTile"/>
|
||||
<tile id="51" type="ForegroundTile"/>
|
||||
<tile id="52" type="ForegroundTile"/>
|
||||
<tile id="53" type="ForegroundTile"/>
|
||||
<tile id="54" type="ForegroundTile"/>
|
||||
<tile id="55" type="ForegroundTile"/>
|
||||
<tile id="56" type="ForegroundTile"/>
|
||||
<tile id="57" type="ForegroundTile"/>
|
||||
<tile id="58" type="ForegroundTile"/>
|
||||
<tile id="59" type="ForegroundTile"/>
|
||||
<tile id="60" type="ForegroundTile"/>
|
||||
<tile id="61" type="ForegroundTile"/>
|
||||
<tile id="62" type="ForegroundTile"/>
|
||||
<tile id="63" type="ForegroundTile"/>
|
||||
<tile id="64" type="ForegroundTile"/>
|
||||
<tile id="65" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="65" duration="100"/>
|
||||
<frame tileid="69" duration="100"/>
|
||||
<frame tileid="73" duration="100"/>
|
||||
<frame tileid="77" duration="100"/>
|
||||
<frame tileid="81" duration="100"/>
|
||||
<frame tileid="85" duration="100"/>
|
||||
<frame tileid="89" duration="100"/>
|
||||
<frame tileid="93" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="66" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="66" duration="100"/>
|
||||
<frame tileid="70" duration="100"/>
|
||||
<frame tileid="74" duration="100"/>
|
||||
<frame tileid="78" duration="100"/>
|
||||
<frame tileid="82" duration="100"/>
|
||||
<frame tileid="86" duration="100"/>
|
||||
<frame tileid="90" duration="100"/>
|
||||
<frame tileid="94" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="67" type="ForegroundTile"/>
|
||||
<tile id="68" type="ForegroundTile"/>
|
||||
<tile id="69" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="70" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="71" type="ForegroundTile"/>
|
||||
<tile id="72" type="ForegroundTile"/>
|
||||
<tile id="73" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="74" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="75" type="ForegroundTile"/>
|
||||
<tile id="76" type="ForegroundTile"/>
|
||||
<tile id="77" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="78" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="79" type="ForegroundTile"/>
|
||||
<tile id="80" type="ForegroundTile"/>
|
||||
<tile id="81" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="82" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="83" type="ForegroundTile"/>
|
||||
<tile id="84" type="ForegroundTile"/>
|
||||
<tile id="85" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="86" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="87" type="ForegroundTile"/>
|
||||
<tile id="88" type="ForegroundTile"/>
|
||||
<tile id="89" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="90" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="91" type="ForegroundTile"/>
|
||||
<tile id="92" type="ForegroundTile"/>
|
||||
<tile id="93" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="94" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="95" type="ForegroundTile"/>
|
||||
<tile id="96" type="ForegroundTile"/>
|
||||
<tile id="97" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="97" duration="100"/>
|
||||
<frame tileid="101" duration="100"/>
|
||||
<frame tileid="105" duration="100"/>
|
||||
<frame tileid="109" duration="100"/>
|
||||
<frame tileid="113" duration="100"/>
|
||||
<frame tileid="117" duration="100"/>
|
||||
<frame tileid="121" duration="100"/>
|
||||
<frame tileid="125" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="98" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="98" duration="100"/>
|
||||
<frame tileid="102" duration="100"/>
|
||||
<frame tileid="106" duration="100"/>
|
||||
<frame tileid="110" duration="100"/>
|
||||
<frame tileid="114" duration="100"/>
|
||||
<frame tileid="118" duration="100"/>
|
||||
<frame tileid="122" duration="100"/>
|
||||
<frame tileid="126" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="99" type="ForegroundTile"/>
|
||||
<tile id="100" type="ForegroundTile"/>
|
||||
<tile id="101" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="102" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="3">
|
||||
<object id="2" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="103" type="ForegroundTile"/>
|
||||
<tile id="104" type="ForegroundTile"/>
|
||||
<tile id="105" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="106" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="107" type="ForegroundTile"/>
|
||||
<tile id="108" type="ForegroundTile"/>
|
||||
<tile id="109" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="110" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="111" type="ForegroundTile"/>
|
||||
<tile id="112" type="ForegroundTile"/>
|
||||
<tile id="113" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="114" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="115" type="ForegroundTile"/>
|
||||
<tile id="116" type="ForegroundTile"/>
|
||||
<tile id="117" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="118" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="119" type="ForegroundTile"/>
|
||||
<tile id="120" type="ForegroundTile"/>
|
||||
<tile id="121" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="122" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="123" type="ForegroundTile"/>
|
||||
<tile id="124" type="ForegroundTile"/>
|
||||
<tile id="125" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="126" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="127" type="ForegroundTile"/>
|
||||
</tileset>
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,354 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<tileset version="1.10" tiledversion="1.10.1" name="grid_Props_No_Shadow_24x24" tilewidth="24" tileheight="24" tilecount="2107" columns="49">
|
||||
<image source="commercial_assets/16x16px_grid_Props_No_Shadow_24x24.png" width="1176" height="1032"/>
|
||||
<tile id="36" type="ForegroundTile"/>
|
||||
<tile id="37" type="ForegroundTile"/>
|
||||
<tile id="38" type="ForegroundTile"/>
|
||||
<tile id="39" type="ForegroundTile"/>
|
||||
<tile id="40" type="ForegroundTile"/>
|
||||
<tile id="85" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="19" width="9" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="86" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="19" width="24" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="87" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="19" width="24" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="88" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="19" width="24" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="89" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="19" width="15" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="134" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="0" width="9" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="135" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="136" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="137" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="138" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="404" type="ForegroundTile"/>
|
||||
<tile id="405" type="ForegroundTile"/>
|
||||
<tile id="406" type="ForegroundTile"/>
|
||||
<tile id="407" type="ForegroundTile"/>
|
||||
<tile id="408" type="ForegroundTile"/>
|
||||
<tile id="409" type="ForegroundTile"/>
|
||||
<tile id="410" type="ForegroundTile"/>
|
||||
<tile id="411" type="ForegroundTile"/>
|
||||
<tile id="420" type="ForegroundTile"/>
|
||||
<tile id="421" type="ForegroundTile"/>
|
||||
<tile id="422" type="ForegroundTile"/>
|
||||
<tile id="423" type="ForegroundTile"/>
|
||||
<tile id="424" type="ForegroundTile"/>
|
||||
<tile id="425" type="ForegroundTile"/>
|
||||
<tile id="426" type="ForegroundTile"/>
|
||||
<tile id="427" type="ForegroundTile"/>
|
||||
<tile id="453" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="454" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="455" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="456" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="457" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="458" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="459" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="460" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="469" type="ForegroundTile"/>
|
||||
<tile id="470" type="ForegroundTile"/>
|
||||
<tile id="471" type="ForegroundTile"/>
|
||||
<tile id="472" type="ForegroundTile"/>
|
||||
<tile id="473" type="ForegroundTile"/>
|
||||
<tile id="474" type="ForegroundTile"/>
|
||||
<tile id="475" type="ForegroundTile"/>
|
||||
<tile id="476" type="ForegroundTile"/>
|
||||
<tile id="516" type="ForegroundTile"/>
|
||||
<tile id="517" type="ForegroundTile"/>
|
||||
<tile id="518" type="ForegroundTile"/>
|
||||
<tile id="519" type="ForegroundTile"/>
|
||||
<tile id="520" type="ForegroundTile"/>
|
||||
<tile id="521" type="ForegroundTile"/>
|
||||
<tile id="522" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="17" width="9" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="523" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="17" width="24" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="524" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="17" width="24" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="525" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="17" width="13" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="565" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="566" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="19" height="13"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="567" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="4" y="0" width="20" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="568" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="569" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="570" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="16" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="571" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="0" width="9" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="572" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="573" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="3">
|
||||
<object id="2" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="574" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="660" type="ForegroundTile"/>
|
||||
<tile id="661" type="ForegroundTile"/>
|
||||
<tile id="662" type="ForegroundTile"/>
|
||||
<tile id="709" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="15" width="18" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="710" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="15" width="24" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="711" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="12" width="14" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="758" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="11"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="759" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="11"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="760" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="1"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="882" type="ForegroundTile"/>
|
||||
<tile id="883" type="ForegroundTile"/>
|
||||
<tile id="884" type="ForegroundTile"/>
|
||||
<tile id="885" type="ForegroundTile"/>
|
||||
<tile id="886" type="ForegroundTile"/>
|
||||
<tile id="887" type="ForegroundTile"/>
|
||||
<tile id="931" type="ForegroundTile"/>
|
||||
<tile id="932" type="ForegroundTile"/>
|
||||
<tile id="933" type="ForegroundTile"/>
|
||||
<tile id="934" type="ForegroundTile"/>
|
||||
<tile id="935" type="ForegroundTile"/>
|
||||
<tile id="936" type="ForegroundTile"/>
|
||||
<tile id="980" type="ForegroundTile"/>
|
||||
<tile id="981" type="ForegroundTile"/>
|
||||
<tile id="982" type="ForegroundTile"/>
|
||||
<tile id="983" type="ForegroundTile"/>
|
||||
<tile id="984" type="ForegroundTile"/>
|
||||
<tile id="985" type="ForegroundTile"/>
|
||||
<tile id="1029" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="16" y="0" width="8" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1030" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1031" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1032" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1033" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1034" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="6" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1078" type="ForegroundTile"/>
|
||||
<tile id="1079" type="ForegroundTile"/>
|
||||
<tile id="1080" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1081" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="19" height="13"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1082" type="ForegroundTile"/>
|
||||
<tile id="1083" type="ForegroundTile"/>
|
||||
<tile id="1563">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="16" y="12" width="8" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1564">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="12" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1565">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="12" width="10" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1612">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="0" width="9" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1613">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1614">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1661">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="0" width="9" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1662">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1663">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1710">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="0" width="9" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1711">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1712">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
</tileset>
|
||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user