mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-05-13 21:56:29 +02:00
crab defender updates
This commit is contained in:
parent
d3d7976739
commit
5dcfb72a8a
259
maps/crab_defender/launch_fish_to_win.lua
Normal file
259
maps/crab_defender/launch_fish_to_win.lua
Normal file
@ -0,0 +1,259 @@
|
||||
-- launch fish into space to win the game -- by mewmew
|
||||
-- modified by Gerkiz
|
||||
|
||||
local Event = require 'utils.event'
|
||||
local Global = require 'utils.global'
|
||||
|
||||
local this = {
|
||||
fish_in_space = 0,
|
||||
catplanet_goals = {
|
||||
{goal = 0, rank = false, achieved = true},
|
||||
{
|
||||
goal = 100,
|
||||
rank = 'Copper',
|
||||
color = {r = 201, g = 133, b = 6},
|
||||
msg = 'You have saved the first container of fish!',
|
||||
msg2 = 'However, this is only the beginning.',
|
||||
achieved = false
|
||||
},
|
||||
{
|
||||
goal = 1000,
|
||||
rank = 'Bronze',
|
||||
color = {r = 186, g = 115, b = 39},
|
||||
msg = 'Thankful for the fish, they sent back a toy mouse made of solid bronze!',
|
||||
msg2 = 'They are demanding more.',
|
||||
achieved = false
|
||||
},
|
||||
{
|
||||
goal = 10000,
|
||||
rank = 'Silver',
|
||||
color = {r = 186, g = 178, b = 171},
|
||||
msg = 'In gratitude for the fish, they left you a silver furball!',
|
||||
msg2 = 'They are still longing for more.',
|
||||
achieved = false
|
||||
},
|
||||
{
|
||||
goal = 25000,
|
||||
rank = 'Gold',
|
||||
color = {r = 255, g = 214, b = 33},
|
||||
msg = 'Pleased about the delivery, they sent back a golden audiotape with cat purrs.',
|
||||
msg2 = 'They still demand more.',
|
||||
achieved = false
|
||||
},
|
||||
{
|
||||
goal = 50000,
|
||||
rank = 'Platinum',
|
||||
color = {r = 224, g = 223, b = 215},
|
||||
msg = 'To express their infinite love, they sent back a yarnball made of shiny material.',
|
||||
msg2 = 'Defying all logic, they still demand more fish.',
|
||||
achieved = false
|
||||
},
|
||||
{
|
||||
goal = 100000,
|
||||
rank = 'Diamond',
|
||||
color = {r = 237, g = 236, b = 232},
|
||||
msg = 'A box arrives with a mewing kitten, it a has a diamond collar.',
|
||||
msg2 = 'More fish? Why? What..',
|
||||
achieved = false
|
||||
},
|
||||
{
|
||||
goal = 250000,
|
||||
rank = 'Anti-matter',
|
||||
color = {r = 100, g = 100, b = 245},
|
||||
msg = 'The obese cat colapses and forms a black hole!',
|
||||
msg2 = ':obese:',
|
||||
achieved = false
|
||||
},
|
||||
{
|
||||
goal = 500000,
|
||||
rank = 'Black Hole',
|
||||
color = {r = 100, g = 100, b = 245},
|
||||
msg = 'A letter arrives, it reads: Go to bed hooman!',
|
||||
msg2 = 'Not yet...',
|
||||
achieved = false
|
||||
},
|
||||
{
|
||||
goal = 1000000,
|
||||
rank = 'Blue Screen',
|
||||
color = {r = 100, g = 100, b = 245},
|
||||
msg = 'Cat error #4721',
|
||||
msg2 = '....',
|
||||
achieved = false
|
||||
},
|
||||
{
|
||||
goal = 10000000,
|
||||
rank = 'Blue Screen',
|
||||
color = {r = 100, g = 100, b = 245},
|
||||
msg = '....',
|
||||
msg2 = '....',
|
||||
achieved = false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Global.register(
|
||||
this,
|
||||
function(t)
|
||||
this = t
|
||||
end
|
||||
)
|
||||
|
||||
local function get_rank()
|
||||
for i = #this.catplanet_goals, 1, -1 do
|
||||
if this.fish_in_space >= this.catplanet_goals[i].goal then
|
||||
return i
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function fish_in_space_toggle_button(player)
|
||||
if player.gui.top['fish_in_space_toggle'] then
|
||||
return
|
||||
end
|
||||
local button =
|
||||
player.gui.top.add {
|
||||
name = 'fish_in_space_toggle',
|
||||
type = 'sprite-button',
|
||||
sprite = 'item/raw-fish',
|
||||
tooltip = 'Fish in Space'
|
||||
}
|
||||
button.style.font = 'default-bold'
|
||||
button.style.minimal_height = 38
|
||||
button.style.minimal_width = 38
|
||||
button.style.top_padding = 2
|
||||
button.style.left_padding = 4
|
||||
button.style.right_padding = 4
|
||||
button.style.bottom_padding = 2
|
||||
end
|
||||
|
||||
local function level_up_popup(player)
|
||||
local reward = this.catplanet_goals[get_rank()]
|
||||
if player.gui.center['level_up_popup'] then
|
||||
player.gui.center['level_up_popup'].destroy()
|
||||
end
|
||||
local frame = player.gui.center.add({type = 'frame', name = 'level_up_popup', direction = 'vertical'})
|
||||
local label = frame.add({type = 'label', caption = reward.msg})
|
||||
label.style.font = 'default-listbox'
|
||||
label.style.font_color = reward.color
|
||||
local button = frame.add({type = 'button', caption = reward.msg2, name = 'level_up_popup_close'})
|
||||
button.style.minimal_width = string.len(reward.msg) * 7
|
||||
button.style.font = 'default-listbox'
|
||||
button.style.font_color = {r = 0.77, g = 0.77, b = 0.77}
|
||||
end
|
||||
|
||||
local function fish_in_space_gui(player)
|
||||
if this.fish_in_space == 0 then
|
||||
return
|
||||
end
|
||||
local i = get_rank()
|
||||
|
||||
fish_in_space_toggle_button(player)
|
||||
|
||||
if player.gui.left['fish_in_space'] then
|
||||
player.gui.left['fish_in_space'].destroy()
|
||||
end
|
||||
|
||||
local frame = player.gui.left.add({type = 'frame', name = 'fish_in_space'})
|
||||
local label = frame.add({type = 'label', caption = 'Fish rescued: '})
|
||||
label.style.font_color = {r = 0.11, g = 0.8, b = 0.44}
|
||||
|
||||
local progress = this.fish_in_space / this.catplanet_goals[i + 1].goal
|
||||
if progress > 1 then
|
||||
progress = 1
|
||||
end
|
||||
local progressbar = frame.add({type = 'progressbar', value = progress})
|
||||
progressbar.style.minimal_width = 100
|
||||
progressbar.style.maximal_width = 100
|
||||
progressbar.style.top_padding = 10
|
||||
|
||||
local label =
|
||||
frame.add({type = 'label', caption = this.fish_in_space .. '/' .. tostring(this.catplanet_goals[i + 1].goal)})
|
||||
label.style.font_color = {r = 0.33, g = 0.66, b = 0.9}
|
||||
|
||||
if this.catplanet_goals[i].rank then
|
||||
local label = frame.add({type = 'label', caption = ' ~Rank~'})
|
||||
label.style.font_color = {r = 0.75, g = 0.75, b = 0.75}
|
||||
local label = frame.add({type = 'label', caption = this.catplanet_goals[i].rank})
|
||||
label.style.font = 'default-bold'
|
||||
label.style.font_color = this.catplanet_goals[i].color
|
||||
end
|
||||
end
|
||||
|
||||
local function fireworks(entity)
|
||||
for x = entity.position.x - 32, entity.position.x + 32, 1 do
|
||||
for y = entity.position.y - 32, entity.position.y + 32, 1 do
|
||||
if math.random(1, 150) == 1 then
|
||||
entity.surface.create_entity({name = 'big-explosion', position = {x = x, y = y}})
|
||||
end
|
||||
if math.random(1, 150) == 1 then
|
||||
entity.surface.create_entity({name = 'uranium-cannon-shell-explosion', position = {x = x, y = y}})
|
||||
end
|
||||
if math.random(1, 150) == 1 then
|
||||
entity.surface.create_entity({name = 'blood-explosion-huge', position = {x = x, y = y}})
|
||||
end
|
||||
if math.random(1, 150) == 1 then
|
||||
entity.surface.create_entity({name = 'big-artillery-explosion', position = {x = x, y = y}})
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function on_rocket_launched(event)
|
||||
local rocket_inventory = event.rocket.get_inventory(defines.inventory.rocket)
|
||||
local launched_fish_count = rocket_inventory.get_item_count('raw-fish')
|
||||
if launched_fish_count == 0 then
|
||||
return
|
||||
end
|
||||
this.fish_in_space = this.fish_in_space + launched_fish_count
|
||||
|
||||
local i = get_rank()
|
||||
|
||||
for _, player in pairs(game.connected_players) do
|
||||
fish_in_space_gui(player)
|
||||
end
|
||||
|
||||
if not this.catplanet_goals[i].achieved then
|
||||
for _, player in pairs(game.connected_players) do
|
||||
player.play_sound {path = 'utility/game_won', volume_modifier = 0.9}
|
||||
level_up_popup(player)
|
||||
end
|
||||
this.catplanet_goals[i].achieved = true
|
||||
fireworks(event.rocket_silo)
|
||||
end
|
||||
end
|
||||
|
||||
local function on_player_joined_game(event)
|
||||
local player = game.players[event.player_index]
|
||||
fish_in_space_gui(player)
|
||||
end
|
||||
|
||||
local function on_gui_click(event)
|
||||
if not event then
|
||||
return
|
||||
end
|
||||
if not event.element then
|
||||
return
|
||||
end
|
||||
if not event.element.valid then
|
||||
return
|
||||
end
|
||||
local player = game.players[event.element.player_index]
|
||||
local name = event.element.name
|
||||
|
||||
if name == 'fish_in_space_toggle' then
|
||||
local frame = player.gui.left['fish_in_space']
|
||||
if frame then
|
||||
frame.destroy()
|
||||
else
|
||||
fish_in_space_gui(player)
|
||||
end
|
||||
end
|
||||
|
||||
if name == 'level_up_popup_close' then
|
||||
player.gui.center['level_up_popup'].destroy()
|
||||
end
|
||||
end
|
||||
|
||||
Event.add(defines.events.on_gui_click, on_gui_click)
|
||||
Event.add(defines.events.on_player_joined_game, on_player_joined_game)
|
||||
Event.add(defines.events.on_rocket_launched, on_rocket_launched)
|
@ -3,8 +3,8 @@ require 'maps.crab_defender.market'
|
||||
require 'maps.crab_defender.commands'
|
||||
require 'maps.crab_defender.shotgun_buff'
|
||||
require 'maps.crab_defender.on_entity_damaged'
|
||||
require 'maps.crab_defender.launch_fish_to_win'
|
||||
require 'modules.rocket_launch_always_yields_science'
|
||||
require 'modules.launch_fish_to_win'
|
||||
require 'modules.biters_yield_coins'
|
||||
require 'modules.dangerous_goods'
|
||||
require 'modules.custom_death_messages'
|
||||
@ -37,8 +37,8 @@ local starting_items = {
|
||||
}
|
||||
|
||||
local disable_tech = function()
|
||||
game.forces.player.technologies['landfill'].enabled = false
|
||||
game.forces.player.technologies['landfill'].researched = false
|
||||
game.forces.player.technologies['spidertron'].enabled = false
|
||||
game.forces.player.technologies['spidertron'].researched = false
|
||||
game.forces.player.technologies['optics'].researched = true
|
||||
game.forces.player.technologies['artillery'].researched = false
|
||||
game.forces.player.technologies['atomic-bomb'].enabled = false
|
||||
@ -578,6 +578,9 @@ local send_unit_group = function(unit_group)
|
||||
commands = commands
|
||||
}
|
||||
)
|
||||
if unit_group and unit_group.valid then
|
||||
unit_group.start_moving()
|
||||
end
|
||||
end
|
||||
|
||||
local spawn_boss_units = function(surface)
|
||||
@ -1297,6 +1300,21 @@ local on_player_changed_position = function(event)
|
||||
end
|
||||
end
|
||||
|
||||
local is_position_near = function(area, position)
|
||||
local function inside(pos)
|
||||
local lt = area.left_top
|
||||
local rb = area.right_bottom
|
||||
|
||||
return pos.x >= lt.x and pos.y >= lt.y and pos.x <= rb.x and pos.y <= rb.y
|
||||
end
|
||||
|
||||
if inside(position, area) then
|
||||
return true
|
||||
end
|
||||
|
||||
return false
|
||||
end
|
||||
|
||||
local on_player_or_robot_built_tile = function(event)
|
||||
local surface = game.surfaces[event.surface_index]
|
||||
|
||||
@ -1304,10 +1322,22 @@ local on_player_or_robot_built_tile = function(event)
|
||||
if not tiles then
|
||||
return
|
||||
end
|
||||
local area = {
|
||||
left_top = {x = -944, y = -800},
|
||||
right_bottom = {x = 944, y = 90}
|
||||
}
|
||||
for k, v in pairs(tiles) do
|
||||
local old_tile = v.old_tile
|
||||
if old_tile.name == 'shallow-water' then
|
||||
surface.set_tiles({{name = 'shallow-water', position = v.position}}, true)
|
||||
if is_position_near(area, v.position) then
|
||||
local old_tile = v.old_tile
|
||||
if old_tile.name == 'tutorial-grid' then
|
||||
surface.set_tiles({{name = 'tutorial-grid', position = v.position}}, true)
|
||||
end
|
||||
if old_tile.name == 'water' then
|
||||
surface.set_tiles({{name = 'water', position = v.position}}, true)
|
||||
end
|
||||
if old_tile.name == 'water-green' then
|
||||
surface.set_tiles({{name = 'water-green', position = v.position}}, true)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -658,74 +658,74 @@ data = {
|
||||
{1,1250,2,64,33,125,18,402,33,548,18,402,33,124,2,66,1,1115,},
|
||||
{1,1250,2,64,33,124,18,403,33,550,18,400,33,125,2,65,1,1115,},
|
||||
{1,1248,2,66,33,124,18,400,33,554,18,401,33,123,2,65,1,1115,},
|
||||
{1,1248,2,66,33,124,18,400,33,191,21,1,5,5,21,1,33,357,18,400,33,123,2,65,1,1115,},
|
||||
{1,1248,2,66,33,122,18,397,33,137,5,1,33,4,2,4,33,3,21,1,33,43,2,13,33,356,18,398,33,123,2,66,1,1114,},
|
||||
{1,1248,2,66,33,122,18,397,33,133,5,1,33,1,2,17,33,1,5,1,33,35,2,22,5,1,33,26,2,19,33,27,2,20,5,1,33,6,2,46,33,5,5,1,2,20,5,1,33,23,2,20,33,136,18,397,33,123,2,66,1,1114,},
|
||||
{1,1248,2,64,33,124,18,394,33,135,2,23,33,31,2,27,33,25,2,20,33,25,2,21,33,7,2,46,33,6,2,21,33,23,2,20,33,138,18,397,33,121,2,66,1,1114,},
|
||||
{1,1247,2,65,33,121,18,395,33,134,2,10,23,8,2,11,33,26,2,8,23,15,2,8,33,23,2,21,33,24,2,21,33,6,5,1,2,46,33,7,2,20,33,22,2,20,33,140,18,397,33,122,2,64,1,1114,},
|
||||
{1,1247,2,65,33,121,18,395,33,132,2,9,23,16,2,8,33,22,2,8,23,19,2,8,33,21,2,22,33,22,2,22,33,6,5,1,2,46,33,7,2,5,23,12,2,4,33,21,2,3,23,13,2,4,33,141,18,396,33,122,2,64,1,1114,},
|
||||
{1,1247,2,65,33,119,18,396,33,131,5,1,2,7,23,21,2,7,5,1,33,19,2,7,23,24,2,6,5,1,33,19,2,3,23,16,2,3,33,21,2,4,23,16,2,3,33,6,5,1,2,3,23,40,2,3,33,7,5,1,2,4,23,13,2,3,33,20,2,4,23,12,2,4,33,143,18,397,33,120,2,66,1,1112,},
|
||||
{1,1245,2,66,33,120,18,394,33,133,2,6,23,25,2,6,33,18,2,6,23,28,2,6,33,18,2,3,23,16,2,4,33,20,2,3,23,17,2,3,33,6,5,1,2,3,23,40,2,3,33,9,2,4,23,12,2,4,5,1,33,18,2,3,23,13,2,4,33,144,18,397,33,119,2,67,1,1111,},
|
||||
{1,1245,2,66,33,120,18,394,33,130,21,1,2,6,23,29,2,6,33,14,2,5,23,32,2,6,33,17,2,3,23,17,2,4,5,1,33,16,2,5,23,17,2,3,33,6,5,1,2,3,23,40,2,3,33,9,2,4,23,13,2,4,33,16,5,1,2,3,23,13,2,4,33,146,18,396,33,119,2,67,1,1111,},
|
||||
{1,1242,2,67,33,121,18,394,33,131,2,5,23,33,2,5,5,1,33,10,21,1,2,5,23,35,2,5,33,16,2,3,23,18,2,4,33,16,2,4,23,18,2,3,33,6,5,1,2,3,23,40,2,3,33,10,2,4,23,12,2,4,33,16,2,4,23,12,2,5,33,147,18,395,33,121,2,68,1,1108,},
|
||||
{1,1239,2,69,33,122,18,392,33,132,2,5,23,35,2,5,33,9,5,1,2,4,23,38,2,5,33,15,2,3,23,19,2,4,21,1,33,13,2,4,23,19,2,3,33,6,5,1,2,3,23,40,2,3,33,10,2,4,23,13,2,4,33,14,2,4,23,13,2,4,33,149,18,396,33,120,2,69,1,1106,},
|
||||
{1,1239,2,69,33,122,18,392,33,131,2,4,23,37,2,4,33,10,2,4,23,41,2,4,33,14,2,3,23,19,2,5,33,11,5,1,2,4,23,20,2,3,33,6,5,1,2,3,23,40,2,3,33,10,5,1,2,4,23,12,2,4,33,14,2,4,23,12,2,4,33,151,18,395,33,120,2,69,1,1106,},
|
||||
{1,1239,2,67,33,124,18,391,33,131,2,4,23,37,2,4,33,10,2,4,23,43,2,4,5,1,33,12,2,3,23,20,2,5,33,10,2,5,23,20,2,3,33,6,5,1,2,3,23,40,2,3,33,11,5,1,2,4,23,12,2,4,21,1,33,11,2,4,23,13,2,4,33,153,18,393,33,122,2,68,1,1105,},
|
||||
{1,1237,2,69,33,124,18,387,33,134,2,4,23,38,2,4,33,9,2,4,23,45,2,4,33,12,2,3,23,21,2,4,33,9,2,4,23,22,2,3,33,6,5,1,2,3,23,40,2,3,33,12,2,4,23,13,2,4,33,11,2,4,23,12,2,4,33,156,18,391,33,123,2,67,1,1105,},
|
||||
{1,1237,2,69,33,124,18,385,33,135,2,4,23,38,2,4,5,1,33,8,2,5,23,45,2,4,33,12,2,3,23,22,2,4,33,8,2,4,23,22,2,3,33,6,5,1,2,3,23,40,2,3,33,13,2,4,23,13,2,3,21,1,33,9,2,4,23,13,2,4,33,160,18,387,33,123,2,67,1,1105,},
|
||||
{1,1237,2,68,33,123,18,386,33,136,2,4,23,37,2,4,33,9,5,1,2,4,23,47,2,4,33,11,2,3,23,23,2,4,33,6,2,4,23,23,2,3,33,6,5,1,2,3,23,10,2,33,33,13,2,4,23,13,2,4,33,9,2,4,23,12,2,4,21,1,33,161,18,386,33,123,2,69,1,1103,},
|
||||
{1,1237,2,68,33,123,18,383,33,138,2,4,23,18,2,10,23,10,2,4,33,9,2,4,23,23,2,4,23,22,2,4,33,10,2,3,23,24,2,3,33,5,2,4,23,24,2,3,33,6,5,1,2,3,23,9,2,34,33,13,5,1,2,4,23,12,2,4,5,1,33,7,2,4,23,13,2,3,33,165,18,384,33,123,2,69,1,1103,},
|
||||
{1,1237,2,68,33,123,18,383,33,137,2,4,23,17,2,16,23,4,2,5,33,10,2,3,23,18,2,15,23,18,2,4,33,9,2,3,23,24,2,4,33,3,2,4,23,25,2,3,33,6,5,1,2,3,23,9,2,35,33,13,2,4,23,13,2,4,33,7,2,3,23,13,2,4,33,166,18,383,33,125,2,67,1,1103,},
|
||||
{1,1236,2,69,33,123,18,382,33,138,2,3,23,16,2,20,23,2,2,4,5,1,33,9,2,4,23,16,2,19,23,16,2,4,33,9,2,3,23,25,2,4,5,1,2,5,23,25,2,3,33,6,5,1,2,3,23,9,2,4,33,44,21,1,2,4,23,13,2,3,33,6,2,4,23,13,2,3,33,168,18,383,33,124,2,67,1,1103,},
|
||||
{1,1236,2,69,33,123,18,382,33,136,21,1,2,4,23,14,2,6,33,1,5,2,33,5,21,1,33,1,2,11,33,11,2,3,23,16,2,7,33,7,2,8,23,15,2,4,33,8,2,3,23,11,2,1,23,14,2,8,23,14,2,1,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,46,2,3,23,13,2,4,33,4,2,4,23,13,2,4,33,169,18,382,33,124,2,67,1,1103,},
|
||||
{1,1236,2,69,33,123,18,380,33,138,2,4,23,14,2,5,33,15,2,8,33,10,2,4,23,14,2,6,33,1,5,1,33,11,2,6,23,14,2,4,5,1,33,7,2,3,23,11,2,1,23,15,2,6,23,14,2,2,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,46,2,4,23,13,2,3,33,4,2,3,23,13,2,4,33,171,18,381,33,124,2,69,1,1101,},
|
||||
{1,1236,2,67,33,125,18,380,33,138,2,4,23,13,2,5,33,17,2,6,33,11,2,3,23,14,2,5,33,17,2,5,23,14,2,3,33,8,2,3,23,11,2,3,23,13,2,5,23,14,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,47,2,4,23,12,2,4,33,2,2,4,23,13,2,3,33,173,18,380,33,124,2,69,1,1101,},
|
||||
{1,1236,2,67,33,125,18,379,33,139,2,3,23,13,2,5,33,19,2,4,33,11,2,4,23,13,2,5,33,18,21,1,2,5,23,13,2,4,33,7,2,3,23,11,2,3,23,14,2,4,23,13,2,4,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,47,2,4,23,13,2,8,23,13,2,4,33,175,18,378,33,124,2,69,1,1101,},
|
||||
{1,1234,2,69,33,124,18,379,33,139,2,4,23,12,2,5,21,1,33,19,21,1,2,2,33,12,2,3,23,14,2,4,5,1,33,20,2,4,23,13,2,4,5,1,33,6,2,3,23,11,2,4,23,14,2,2,23,14,2,4,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,48,2,4,23,12,2,8,23,12,2,5,33,176,18,377,33,124,2,69,1,1101,},
|
||||
{1,1234,2,69,33,124,18,376,33,142,2,4,23,12,2,4,21,1,33,21,21,1,33,13,2,3,23,13,2,4,5,1,33,22,2,4,23,13,2,3,33,7,2,3,23,11,2,5,23,28,2,5,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,48,2,4,23,13,2,6,23,13,2,4,33,179,18,377,33,123,2,69,1,1100,},
|
||||
{1,1234,2,69,33,124,18,376,33,141,5,1,2,4,23,11,2,4,33,37,2,3,23,12,2,4,33,25,2,4,23,12,2,4,33,6,2,3,23,11,2,6,23,26,2,6,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,49,2,4,23,12,2,6,23,12,2,4,33,182,18,375,33,123,2,69,1,1100,},
|
||||
{1,1233,2,70,33,124,18,370,33,148,2,3,23,12,2,3,5,1,33,36,2,4,23,12,2,3,33,27,2,3,23,13,2,3,33,6,2,3,23,11,2,6,23,25,2,7,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,29,5,1,21,1,33,18,2,5,23,12,2,4,23,13,2,4,33,185,18,372,33,123,2,69,1,1100,},
|
||||
{1,1233,2,70,33,124,18,370,33,147,2,4,23,11,2,4,33,37,2,3,23,12,2,4,33,27,2,4,23,12,2,3,5,1,33,5,2,3,23,11,2,7,23,24,2,7,23,11,2,3,33,6,5,1,2,3,23,9,2,34,33,20,2,4,23,13,2,3,23,12,2,4,33,186,18,372,33,123,2,69,1,1100,},
|
||||
{1,1231,2,72,33,124,18,367,33,150,2,4,23,11,2,3,33,38,2,3,23,12,2,3,33,29,2,3,23,12,2,3,33,6,2,3,23,11,2,8,23,22,2,8,23,11,2,3,33,6,5,1,2,3,23,9,2,34,33,20,21,1,2,4,23,12,2,2,23,13,2,4,33,188,18,370,33,123,2,71,1,1098,},
|
||||
{1,1228,2,73,33,124,18,367,33,152,2,4,23,11,2,3,33,38,2,3,23,11,2,4,5,1,33,28,2,3,23,12,2,3,33,6,2,3,23,11,2,3,33,2,2,4,23,20,2,4,33,2,2,3,23,11,2,3,33,6,5,1,2,3,23,10,2,33,33,22,2,3,23,26,2,4,33,191,18,369,33,122,2,74,1,1095,},
|
||||
{1,1228,2,73,33,124,18,367,33,151,5,1,2,4,23,10,2,4,33,37,2,4,23,11,2,4,33,29,2,4,23,11,2,4,33,5,2,3,23,11,2,3,33,2,2,4,23,19,2,4,33,3,2,3,23,11,2,3,33,6,5,1,2,3,23,40,2,3,33,22,2,4,23,24,2,4,5,1,33,193,18,367,33,122,2,74,1,1095,},
|
||||
{1,1226,2,75,33,124,18,366,33,152,5,1,2,3,23,11,2,4,33,37,2,4,23,11,2,4,33,30,2,3,23,12,2,3,33,5,2,3,23,11,2,3,33,3,2,4,23,17,2,5,33,3,2,3,23,11,2,3,33,6,5,1,2,3,23,40,2,3,33,23,2,3,23,24,2,4,33,196,18,365,33,122,2,75,1,1094,},
|
||||
{1,1226,2,75,33,122,18,366,33,155,2,3,23,11,2,3,33,38,2,4,23,11,2,3,33,31,2,3,23,12,2,3,33,5,2,3,23,11,2,3,33,4,2,4,23,16,2,4,33,4,2,3,23,11,2,3,33,6,5,1,2,3,23,40,2,3,33,22,5,1,2,4,23,23,2,3,33,198,18,364,33,124,2,75,1,1092,},
|
||||
{1,1226,2,75,33,121,18,367,33,155,2,3,23,11,2,3,33,38,2,4,23,11,2,3,33,31,2,3,23,12,2,3,33,5,2,3,23,11,2,3,33,4,2,5,23,14,2,4,33,5,2,3,23,11,2,3,33,6,5,1,2,3,23,40,2,3,33,24,2,3,23,22,2,4,33,200,18,362,33,124,2,75,1,1092,},
|
||||
{1,1225,2,76,33,121,18,366,33,156,2,3,23,11,2,3,33,38,2,4,23,11,2,3,33,31,2,3,23,12,2,3,33,5,2,3,23,11,2,3,33,5,2,5,23,12,2,5,33,5,2,3,23,11,2,3,33,6,5,1,2,3,23,40,2,3,33,24,2,4,23,20,2,4,5,1,33,201,18,361,33,124,2,75,1,1092,},
|
||||
{1,1225,2,75,33,122,18,363,33,159,2,3,23,11,2,3,33,38,2,4,23,11,2,3,33,31,2,3,23,12,2,3,33,5,2,3,23,11,2,3,33,5,5,1,2,4,23,11,2,5,33,6,2,3,23,11,2,3,33,6,5,1,2,3,23,40,2,3,33,25,2,4,23,19,2,3,33,204,18,360,33,124,2,75,1,1092,},
|
||||
{1,1225,2,75,33,122,18,363,33,158,5,1,2,4,23,10,2,4,33,37,2,4,23,11,2,4,33,30,2,3,23,12,2,3,33,5,2,3,23,11,2,3,33,7,2,4,23,9,2,5,33,7,2,3,23,11,2,3,33,6,5,1,2,3,23,40,2,3,33,25,2,4,23,18,2,4,33,205,18,359,33,124,2,75,1,1092,},
|
||||
{1,1225,2,75,33,122,18,359,33,162,5,1,2,4,23,11,2,3,33,37,2,4,23,11,2,4,33,30,2,3,23,11,2,4,33,5,2,3,23,11,2,3,33,8,2,4,23,8,2,4,33,8,2,3,23,11,2,3,33,6,5,1,2,3,23,40,2,3,33,26,2,4,23,17,2,3,33,208,18,358,33,125,2,75,1,1090,},
|
||||
{1,1225,2,72,33,125,18,355,33,167,2,4,23,11,2,3,33,37,2,4,23,11,2,4,5,1,33,28,2,4,23,11,2,4,33,5,2,3,23,11,2,3,33,9,2,4,23,6,2,4,5,1,33,8,2,3,23,11,2,3,33,6,5,1,2,3,23,40,2,3,33,27,2,4,23,15,2,4,33,212,18,354,33,128,2,72,1,1090,},
|
||||
{1,1225,2,72,33,124,18,356,33,167,2,4,23,11,2,3,33,38,2,3,23,12,2,3,33,28,5,1,2,3,23,12,2,3,33,6,2,3,23,11,2,3,33,10,2,3,23,5,2,4,33,10,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,34,33,27,2,4,23,14,2,4,33,215,18,353,33,127,2,72,1,1090,},
|
||||
{1,1225,2,70,33,126,18,353,33,170,2,4,23,12,2,3,33,37,2,3,23,12,2,4,33,28,2,3,23,12,2,3,33,6,2,3,23,11,2,3,33,10,2,4,23,3,2,5,33,10,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,34,33,27,2,5,23,13,2,4,33,217,18,351,33,128,2,71,1,1090,},
|
||||
{1,1225,2,70,33,125,18,354,33,171,2,3,23,12,2,3,33,37,2,3,23,12,2,4,5,1,33,26,2,4,23,12,2,3,5,1,33,5,2,3,23,11,2,3,33,11,2,4,23,2,2,4,5,1,33,10,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,34,33,27,5,1,2,4,23,12,2,4,33,221,18,350,33,126,2,71,1,1090,},
|
||||
{1,1225,2,69,33,126,18,352,33,172,21,1,2,4,23,11,2,4,33,36,2,4,23,12,2,4,33,26,2,3,23,13,2,3,33,6,2,3,23,11,2,3,33,12,2,8,5,1,33,11,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,58,5,1,2,3,23,12,2,4,33,221,18,351,33,125,2,71,1,1090,},
|
||||
{1,1225,2,69,33,126,18,351,33,174,2,4,23,12,2,4,33,36,2,3,23,12,2,4,33,25,2,4,23,12,2,4,33,6,2,3,23,11,2,3,33,12,2,7,33,13,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,223,18,350,33,127,2,69,1,1090,},
|
||||
{1,1225,2,69,33,126,18,351,33,174,2,4,23,13,2,4,33,21,2,2,33,11,5,1,2,3,23,13,2,4,33,22,5,1,2,4,23,13,2,3,33,7,2,3,23,11,2,3,33,13,2,6,33,13,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,224,18,351,33,125,2,69,1,1090,},
|
||||
{1,1223,2,71,33,125,18,350,33,176,5,1,2,4,23,12,2,5,33,19,2,5,33,10,2,4,23,13,2,4,33,20,2,5,23,13,2,4,5,1,33,6,2,3,23,11,2,3,33,13,5,1,2,4,33,14,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,225,18,351,33,124,2,69,1,1090,},
|
||||
{1,1223,2,69,33,127,18,350,33,177,2,4,23,13,2,6,21,1,33,14,2,8,33,10,2,3,23,14,2,5,33,16,5,1,2,5,23,14,2,4,33,7,2,3,23,11,2,3,33,15,2,2,5,1,33,14,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,226,18,350,33,124,2,69,1,1090,},
|
||||
{1,1223,2,69,33,127,18,350,33,178,2,4,23,14,2,6,5,1,33,11,2,10,33,9,2,3,23,15,2,6,5,1,33,11,5,1,33,1,2,5,23,14,2,4,33,8,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,231,18,346,33,123,2,69,1,1090,},
|
||||
{1,1223,2,69,33,127,18,345,33,184,2,3,23,15,2,9,33,3,2,9,23,2,2,5,33,8,2,4,23,15,2,7,33,7,5,1,33,1,2,7,23,15,2,4,33,8,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,233,18,345,33,123,2,69,1,1089,},
|
||||
{1,1223,2,69,33,126,18,340,33,190,2,4,23,15,2,19,23,4,2,5,33,7,21,1,2,3,23,16,2,21,23,16,2,3,33,9,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,235,18,344,33,122,2,69,1,1089,},
|
||||
{1,1223,2,69,33,126,18,340,33,190,2,4,23,17,2,15,23,7,2,4,33,8,2,4,23,17,2,17,23,17,2,4,33,9,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,236,18,343,33,122,2,69,1,1089,},
|
||||
{1,1222,2,70,33,126,18,337,33,194,2,4,23,20,2,7,23,12,2,4,33,8,2,3,23,19,2,13,23,18,2,4,33,10,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,238,18,342,33,121,2,69,1,1089,},
|
||||
{1,1222,2,70,33,126,18,337,33,195,2,3,23,40,2,4,33,7,2,4,23,49,2,4,33,10,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,239,18,341,33,121,2,69,1,1089,},
|
||||
{1,1222,2,69,33,126,18,335,33,198,2,4,23,40,2,4,33,7,2,4,23,47,2,4,33,11,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,241,18,340,33,120,2,71,1,1087,},
|
||||
{1,1220,2,71,33,126,18,333,33,201,2,5,23,39,2,5,33,6,2,4,23,45,2,4,5,1,33,11,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,242,18,339,33,120,2,72,1,1086,},
|
||||
{1,1220,2,71,33,125,18,334,33,201,5,1,2,5,23,39,2,5,33,5,2,5,23,43,2,4,33,13,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,244,18,338,33,119,2,72,1,1086,},
|
||||
{1,1217,2,74,33,125,18,333,33,204,2,5,23,37,2,5,5,1,33,6,2,5,23,41,2,4,33,14,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,245,18,337,33,119,2,75,1,1083,},
|
||||
{1,1216,2,75,33,125,18,331,33,207,2,5,23,35,2,5,33,10,2,4,23,39,2,5,33,14,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,245,18,338,33,120,2,75,1,1081,},
|
||||
{1,1216,2,75,33,125,18,331,33,208,2,5,23,33,2,5,5,1,33,10,2,5,23,37,2,5,5,1,33,14,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,245,18,338,33,120,2,75,1,1081,},
|
||||
{1,1216,2,75,33,124,18,330,33,210,5,1,2,5,23,30,2,6,33,13,2,5,23,35,2,5,21,1,33,15,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,245,18,339,33,119,2,75,1,1081,},
|
||||
{1,1214,2,75,33,126,18,327,33,215,2,6,23,26,2,6,33,17,2,5,23,31,2,6,33,17,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,247,18,337,33,119,2,75,1,1081,},
|
||||
{1,1214,2,75,33,126,18,327,33,217,2,7,23,21,2,7,5,1,33,18,2,6,23,27,2,6,33,19,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,249,18,337,33,117,2,75,1,1081,},
|
||||
{1,1214,2,75,33,126,18,320,33,226,2,8,23,15,2,8,33,22,2,7,23,23,2,6,33,21,2,3,23,11,2,3,33,32,2,3,23,11,2,3,33,6,5,1,2,3,23,9,2,4,33,59,2,3,23,12,2,3,33,253,18,334,33,117,2,76,1,1079,},
|
||||
{1,1214,2,75,33,126,18,316,33,232,2,27,33,26,2,8,23,17,2,8,5,1,33,21,2,17,33,32,2,17,33,6,5,1,2,16,33,59,2,18,33,256,18,331,33,117,2,76,1,1079,},
|
||||
{1,1214,2,75,33,126,18,316,33,234,2,23,33,29,5,1,2,11,23,7,2,11,33,24,2,17,33,32,2,17,33,6,5,1,2,16,33,59,2,18,33,259,18,328,33,117,2,76,1,1079,},
|
||||
{1,1214,2,73,33,128,18,313,33,241,2,16,33,1,5,1,33,34,2,23,33,1,5,1,33,25,2,17,33,32,2,17,33,6,5,1,2,16,33,59,2,18,33,262,18,326,33,118,2,74,1,1079,},
|
||||
{1,1214,2,73,33,128,18,313,33,246,2,6,33,3,21,1,33,38,5,1,33,1,2,17,33,29,5,1,33,17,5,1,33,30,5,1,33,381,18,325,33,117,2,74,1,1079,},
|
||||
{1,1212,2,74,33,128,18,313,33,248,5,3,33,49,2,11,33,465,18,323,33,119,2,72,1,1079,},
|
||||
{1,1248,2,66,33,124,18,400,33,555,18,400,33,123,2,65,1,1115,},
|
||||
{1,1248,2,66,33,122,18,397,33,562,18,398,33,123,2,66,1,1114,},
|
||||
{1,1248,2,66,33,122,18,397,33,563,18,397,33,123,2,66,1,1114,},
|
||||
{1,1248,2,64,33,124,18,394,33,568,18,397,33,121,2,66,1,1114,},
|
||||
{1,1247,2,65,33,121,18,395,33,201,23,1,33,3,23,1,33,365,18,397,33,122,2,64,1,1114,},
|
||||
{1,1247,2,65,33,121,18,395,33,144,23,9,33,44,23,16,33,164,23,1,33,2,23,1,33,35,23,7,33,149,18,396,33,122,2,64,1,1114,},
|
||||
{1,1247,2,65,33,119,18,396,33,142,23,15,33,38,23,21,33,44,23,1,33,115,23,11,33,28,23,12,33,147,18,397,33,120,2,66,1,1112,},
|
||||
{1,1245,2,66,33,120,18,394,33,141,23,21,33,33,23,25,33,30,23,15,33,28,23,16,33,14,23,39,33,16,23,11,33,28,23,11,33,149,18,397,33,119,2,67,1,1111,},
|
||||
{1,1245,2,66,33,120,18,394,33,138,23,27,33,28,23,30,33,27,23,15,33,27,23,17,33,14,23,39,33,17,23,11,33,26,23,11,33,151,18,396,33,119,2,67,1,1111,},
|
||||
{1,1242,2,67,33,121,18,394,33,137,23,30,33,25,23,33,33,26,23,16,33,26,23,17,33,14,23,39,33,17,23,12,33,25,23,11,33,152,18,395,33,121,2,68,1,1108,},
|
||||
{1,1239,2,69,33,122,18,392,33,138,23,33,33,22,23,35,33,24,23,18,33,24,23,18,33,14,23,39,33,18,23,11,33,24,23,11,33,154,18,396,33,120,2,69,1,1106,},
|
||||
{1,1239,2,69,33,122,18,392,33,137,23,34,33,20,23,38,33,24,23,18,33,22,23,19,33,14,23,39,33,19,23,11,33,22,23,12,33,155,18,395,33,120,2,69,1,1106,},
|
||||
{1,1239,2,67,33,124,18,391,33,137,23,35,33,20,23,40,33,22,23,18,33,21,23,20,33,14,23,39,33,19,23,11,33,22,23,11,33,158,18,393,33,122,2,68,1,1105,},
|
||||
{1,1237,2,69,33,124,18,387,33,139,23,36,33,19,23,43,33,21,23,19,33,20,23,20,33,14,23,39,33,20,23,11,33,20,23,11,33,161,18,391,33,123,2,67,1,1105,},
|
||||
{1,1237,2,69,33,124,18,385,33,140,23,36,33,20,23,44,33,20,23,20,33,17,23,22,33,14,23,9,33,2,23,1,33,1,23,20,33,2,23,2,33,22,23,12,33,19,23,11,33,165,18,387,33,123,2,67,1,1105,},
|
||||
{1,1237,2,68,33,123,18,386,33,141,23,17,33,9,23,9,33,20,23,22,33,2,23,21,33,20,23,21,33,16,23,22,33,14,23,8,33,52,23,11,33,19,23,10,33,167,18,386,33,123,2,69,1,1103,},
|
||||
{1,1237,2,68,33,123,18,383,33,143,23,15,33,15,23,5,33,20,23,18,33,11,23,18,33,19,23,22,33,14,23,23,33,14,23,8,33,52,23,12,33,17,23,11,33,169,18,384,33,123,2,69,1,1103,},
|
||||
{1,1237,2,68,33,123,18,383,33,142,23,14,33,19,23,2,33,20,23,16,33,17,23,16,33,18,23,22,33,13,23,24,33,14,23,8,33,53,23,11,33,16,23,11,33,171,18,383,33,125,2,67,1,1103,},
|
||||
{1,1236,2,69,33,123,18,382,33,142,23,13,33,42,23,15,33,21,23,14,33,18,23,9,33,2,23,12,33,11,23,13,33,2,23,10,33,14,23,8,33,54,23,11,33,14,23,12,33,172,18,383,33,124,2,67,1,1103,},
|
||||
{1,1236,2,69,33,123,18,382,33,142,23,13,33,42,23,13,33,25,23,13,33,17,23,9,33,2,23,13,33,10,23,12,33,3,23,10,33,14,23,8,33,54,23,11,33,14,23,11,33,174,18,382,33,124,2,67,1,1103,},
|
||||
{1,1236,2,69,33,123,18,380,33,143,23,12,33,43,23,13,33,27,23,13,33,16,23,9,33,4,23,12,33,8,23,12,33,4,23,10,33,14,23,8,33,55,23,11,33,12,23,12,33,175,18,381,33,124,2,69,1,1101,},
|
||||
{1,1236,2,67,33,125,18,380,33,142,23,12,33,44,23,12,33,29,23,12,33,16,23,9,33,4,23,13,33,6,23,12,33,5,23,10,33,14,23,8,33,56,23,10,33,12,23,11,33,177,18,380,33,124,2,69,1,1101,},
|
||||
{1,1236,2,67,33,125,18,379,33,143,23,11,33,44,23,12,33,31,23,11,33,16,23,9,33,5,23,12,33,5,23,13,33,5,23,10,33,14,23,8,33,56,23,11,33,10,23,11,33,180,18,378,33,124,2,69,1,1101,},
|
||||
{1,1234,2,69,33,124,18,379,33,144,23,11,33,44,23,11,33,32,23,12,33,15,23,9,33,6,23,12,33,4,23,12,33,6,23,10,33,14,23,8,33,57,23,11,33,9,23,11,33,181,18,377,33,124,2,69,1,1101,},
|
||||
{1,1234,2,69,33,124,18,376,33,147,23,10,33,45,23,11,33,33,23,11,33,15,23,9,33,6,23,13,33,2,23,12,33,7,23,10,33,14,23,8,33,57,23,11,33,8,23,11,33,184,18,377,33,123,2,69,1,1100,},
|
||||
{1,1234,2,69,33,124,18,376,33,146,23,10,33,45,23,11,33,34,23,12,33,14,23,9,33,7,23,25,33,8,23,10,33,14,23,8,33,58,23,11,33,7,23,11,33,186,18,375,33,123,2,69,1,1100,},
|
||||
{1,1233,2,70,33,124,18,370,33,152,23,10,33,45,23,11,33,35,23,11,33,14,23,9,33,8,23,24,33,8,23,10,33,14,23,8,33,58,23,11,33,6,23,11,33,190,18,372,33,123,2,69,1,1100,},
|
||||
{1,1233,2,70,33,124,18,370,33,152,23,10,33,45,23,10,33,36,23,11,33,14,23,9,33,9,23,22,33,9,23,10,33,14,23,8,33,59,23,11,33,4,23,11,33,191,18,372,33,123,2,69,1,1100,},
|
||||
{1,1231,2,72,33,124,18,367,33,154,23,10,33,46,23,10,33,37,23,11,33,13,23,9,33,10,23,20,33,10,23,10,33,14,23,8,33,59,23,11,33,4,23,11,33,193,18,370,33,123,2,71,1,1098,},
|
||||
{1,1228,2,73,33,124,18,367,33,156,23,10,33,45,23,11,33,37,23,11,33,13,23,9,33,10,23,19,33,11,23,10,33,14,23,8,33,60,23,10,33,3,23,11,33,196,18,369,33,122,2,74,1,1095,},
|
||||
{1,1228,2,73,33,124,18,367,33,156,23,10,33,45,23,11,33,37,23,11,33,13,23,9,33,11,23,17,33,12,23,10,33,14,23,38,33,30,23,24,33,198,18,367,33,122,2,74,1,1095,},
|
||||
{1,1226,2,75,33,124,18,366,33,157,23,10,33,45,23,10,33,38,23,11,33,13,23,9,33,12,23,15,33,13,23,10,33,14,23,39,33,30,23,22,33,201,18,365,33,122,2,75,1,1094,},
|
||||
{1,1226,2,75,33,122,18,366,33,159,23,10,33,45,23,10,33,38,23,11,33,13,23,9,33,13,23,14,33,13,23,10,33,14,23,39,33,30,23,22,33,202,18,364,33,124,2,75,1,1092,},
|
||||
{1,1226,2,75,33,121,18,367,33,159,23,10,33,45,23,10,33,38,23,11,33,13,23,9,33,13,23,13,33,14,23,10,33,14,23,39,33,31,23,20,33,205,18,362,33,124,2,75,1,1092,},
|
||||
{1,1225,2,76,33,121,18,366,33,160,23,10,33,45,23,10,33,38,23,11,33,13,23,9,33,14,23,11,33,15,23,10,33,14,23,39,33,32,23,19,33,206,18,361,33,124,2,75,1,1092,},
|
||||
{1,1225,2,75,33,122,18,363,33,163,23,10,33,45,23,10,33,38,23,11,33,13,23,9,33,15,23,10,33,15,23,10,33,14,23,39,33,33,23,17,33,208,18,360,33,124,2,75,1,1092,},
|
||||
{1,1225,2,75,33,122,18,363,33,163,23,10,33,45,23,10,33,38,23,11,33,13,23,9,33,16,23,8,33,16,23,10,33,14,23,39,33,33,23,16,33,210,18,359,33,124,2,75,1,1092,},
|
||||
{1,1225,2,75,33,122,18,359,33,167,23,10,33,45,23,11,33,37,23,11,33,13,23,9,33,17,23,6,33,17,23,10,33,14,23,39,33,34,23,15,33,212,18,358,33,125,2,75,1,1090,},
|
||||
{1,1225,2,72,33,125,18,355,33,171,23,10,33,45,23,11,33,37,23,11,33,13,23,9,33,18,23,4,33,18,23,10,33,14,23,8,33,65,23,14,33,217,18,354,33,128,2,72,1,1090,},
|
||||
{1,1225,2,72,33,124,18,356,33,172,23,9,33,46,23,10,33,37,23,11,33,13,23,9,33,18,23,3,33,19,23,10,33,14,23,8,33,66,23,12,33,220,18,353,33,127,2,72,1,1090,},
|
||||
{1,1225,2,70,33,126,18,353,33,175,23,10,33,45,23,10,33,37,23,10,33,14,23,9,33,19,23,2,33,19,23,10,33,14,23,8,33,66,23,12,33,222,18,351,33,128,2,71,1,1090,},
|
||||
{1,1225,2,70,33,125,18,354,33,175,23,10,33,45,23,11,33,35,23,11,33,14,23,9,33,40,23,10,33,14,23,8,33,67,23,11,33,225,18,350,33,126,2,71,1,1090,},
|
||||
{1,1225,2,69,33,126,18,352,33,177,23,11,33,44,23,11,33,35,23,11,33,14,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,226,18,351,33,125,2,71,1,1090,},
|
||||
{1,1225,2,69,33,126,18,351,33,179,23,10,33,44,23,11,33,34,23,11,33,15,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,227,18,350,33,127,2,69,1,1090,},
|
||||
{1,1225,2,69,33,126,18,351,33,179,23,11,33,44,23,11,33,33,23,11,33,15,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,228,18,351,33,125,2,69,1,1090,},
|
||||
{1,1223,2,71,33,125,18,350,33,182,23,11,33,43,23,12,33,31,23,12,33,15,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,229,18,351,33,124,2,69,1,1090,},
|
||||
{1,1223,2,69,33,127,18,350,33,182,23,11,33,44,23,12,33,29,23,12,33,16,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,230,18,350,33,124,2,69,1,1090,},
|
||||
{1,1223,2,69,33,127,18,350,33,182,23,12,33,43,23,13,33,27,23,13,33,16,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,235,18,346,33,123,2,69,1,1090,},
|
||||
{1,1223,2,69,33,127,18,345,33,188,23,13,33,42,23,13,33,25,23,13,33,17,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,237,18,345,33,123,2,69,1,1089,},
|
||||
{1,1223,2,69,33,126,18,340,33,194,23,15,33,20,23,2,33,18,23,14,33,23,23,14,33,17,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,239,18,344,33,122,2,69,1,1089,},
|
||||
{1,1223,2,69,33,126,18,340,33,195,23,15,33,18,23,3,33,19,23,14,33,20,23,15,33,18,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,240,18,343,33,122,2,69,1,1089,},
|
||||
{1,1222,2,70,33,126,18,337,33,199,23,16,33,14,23,7,33,18,23,15,33,17,23,16,33,18,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,242,18,342,33,121,2,69,1,1089,},
|
||||
{1,1222,2,70,33,126,18,337,33,199,23,20,33,5,23,13,33,17,23,19,33,10,23,18,33,19,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,243,18,341,33,121,2,69,1,1089,},
|
||||
{1,1222,2,69,33,126,18,335,33,204,23,37,33,17,23,45,33,20,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,245,18,340,33,120,2,71,1,1087,},
|
||||
{1,1220,2,71,33,126,18,333,33,207,23,37,33,17,23,43,33,21,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,246,18,339,33,120,2,72,1,1086,},
|
||||
{1,1220,2,71,33,125,18,334,33,208,23,37,33,17,23,41,33,22,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,248,18,338,33,119,2,72,1,1086,},
|
||||
{1,1217,2,74,33,125,18,333,33,210,23,35,33,19,23,39,33,23,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,249,18,337,33,119,2,75,1,1083,},
|
||||
{1,1216,2,75,33,125,18,331,33,213,23,33,33,21,23,36,33,25,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,249,18,338,33,120,2,75,1,1081,},
|
||||
{1,1216,2,75,33,125,18,331,33,214,23,31,33,23,23,35,33,25,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,249,18,338,33,120,2,75,1,1081,},
|
||||
{1,1216,2,75,33,124,18,330,33,218,23,27,33,26,23,33,33,25,23,10,33,40,23,10,33,14,23,8,33,67,23,10,33,249,18,339,33,119,2,75,1,1081,},
|
||||
{1,1214,2,75,33,126,18,327,33,223,23,22,33,31,23,29,33,28,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,251,18,337,33,119,2,75,1,1081,},
|
||||
{1,1214,2,75,33,126,18,327,33,226,23,17,33,35,23,24,33,31,23,9,33,40,23,10,33,14,23,8,33,67,23,10,33,253,18,337,33,117,2,75,1,1081,},
|
||||
{1,1214,2,75,33,126,18,320,33,237,23,9,33,42,23,19,33,33,23,9,33,40,23,10,33,14,23,8,33,334,18,334,33,117,2,76,1,1079,},
|
||||
{1,1214,2,75,33,126,18,316,33,296,23,12,33,454,18,331,33,117,2,76,1,1079,},
|
||||
{1,1214,2,75,33,126,18,316,33,765,18,328,33,117,2,76,1,1079,},
|
||||
{1,1214,2,73,33,128,18,313,33,771,18,326,33,118,2,74,1,1079,},
|
||||
{1,1214,2,73,33,128,18,313,33,773,18,325,33,117,2,74,1,1079,},
|
||||
{1,1212,2,74,33,128,18,313,33,776,18,323,33,119,2,72,1,1079,},
|
||||
{1,1212,2,72,33,130,18,311,33,779,18,323,33,119,2,71,1,1079,},
|
||||
{1,1212,2,72,33,130,18,311,33,782,18,320,33,119,2,71,1,1079,},
|
||||
{1,1212,2,71,33,131,18,310,33,784,18,320,33,120,2,70,1,1078,},
|
||||
@ -771,56 +771,56 @@ data = {
|
||||
{1,1201,2,65,33,111,18,242,33,993,18,242,33,111,2,64,1,1067,},
|
||||
{1,1201,2,65,33,111,18,242,33,994,18,241,33,111,2,64,1,1067,},
|
||||
{1,1201,2,65,33,109,18,239,33,1001,18,239,33,111,2,64,1,1067,},
|
||||
{1,1201,2,65,33,109,18,239,33,632,5,1,33,370,18,237,33,111,2,64,1,1067,},
|
||||
{1,1200,2,65,33,108,18,240,33,632,32,4,5,1,33,368,18,239,33,109,2,63,1,1067,},
|
||||
{1,1200,2,65,33,107,18,239,33,633,32,7,5,2,33,366,18,240,33,107,2,63,1,1067,},
|
||||
{1,1200,2,65,33,107,18,239,33,632,32,11,5,1,33,365,18,239,33,107,2,63,1,1067,},
|
||||
{1,1200,2,65,33,105,18,239,33,633,32,4,23,3,18,1,32,5,33,367,18,237,33,109,2,61,1,1067,},
|
||||
{1,1201,2,64,33,105,18,238,33,354,5,1,33,278,32,4,23,7,32,3,5,1,33,368,18,236,33,109,2,60,1,1067,},
|
||||
{1,1201,2,64,33,105,18,238,33,353,32,4,5,1,33,274,5,1,32,3,23,9,32,3,33,368,18,236,33,108,2,61,1,1067,},
|
||||
{1,1201,2,64,33,105,18,235,33,355,32,7,5,2,33,270,5,1,32,3,23,10,32,3,33,382,18,222,33,108,2,61,1,1067,},
|
||||
{1,1201,2,64,33,105,18,214,33,375,32,11,5,1,33,267,5,1,32,3,23,11,18,1,32,2,5,1,33,384,18,219,33,108,2,61,1,1067,},
|
||||
{1,1201,2,64,33,105,18,207,33,381,32,4,23,3,18,1,32,5,33,267,32,3,18,1,23,12,32,3,33,387,18,216,33,108,2,61,1,1067,},
|
||||
{1,1200,2,65,33,104,18,208,33,380,32,4,23,7,32,3,5,1,33,265,5,1,32,3,23,13,32,3,33,389,18,214,33,108,2,61,1,1067,},
|
||||
{1,1200,2,65,33,104,18,207,33,380,5,1,32,3,23,9,32,3,33,265,5,1,32,2,23,14,32,3,5,1,33,390,18,214,33,106,2,61,1,1067,},
|
||||
{1,1200,2,65,33,104,18,203,33,383,5,1,32,3,23,10,32,3,33,265,5,1,32,2,23,15,32,3,33,395,18,209,33,106,2,62,1,1066,},
|
||||
{1,1199,2,66,33,104,18,201,33,384,5,1,32,3,23,11,18,1,32,2,5,1,33,264,5,1,32,2,23,15,32,3,33,396,18,208,33,107,2,61,1,1066,},
|
||||
{1,1199,2,65,33,105,18,201,33,384,32,3,18,1,23,12,32,3,33,264,5,1,32,2,23,15,32,3,5,1,33,397,18,206,33,107,2,61,1,1066,},
|
||||
{1,1199,2,65,33,105,18,200,33,384,5,1,32,3,23,13,32,3,33,264,32,3,23,16,32,3,33,398,18,205,33,108,2,60,1,1066,},
|
||||
{1,1199,2,64,33,106,18,200,33,384,5,1,32,2,23,14,32,3,5,1,33,263,21,1,32,2,23,16,32,3,33,400,18,203,33,108,2,60,1,1066,},
|
||||
{1,1199,2,64,33,106,18,199,33,385,5,1,32,2,23,15,32,3,33,263,21,1,32,2,23,16,32,3,33,403,18,200,33,108,2,61,1,1065,},
|
||||
{1,1199,2,64,33,104,18,199,33,387,5,1,32,2,23,15,32,3,33,263,4,1,32,2,23,17,32,2,5,1,33,402,18,200,33,108,2,61,1,1065,},
|
||||
{1,1198,2,65,33,104,18,199,33,387,5,1,32,2,23,15,32,3,5,1,33,262,4,1,32,2,23,17,32,3,33,403,18,199,33,107,2,62,1,1065,},
|
||||
{1,1198,2,65,33,104,18,199,33,387,32,3,23,16,32,3,33,262,4,1,32,2,23,17,32,3,33,404,18,198,33,107,2,62,1,1065,},
|
||||
{1,1198,2,65,33,104,18,199,33,387,21,1,32,2,23,16,32,3,33,262,4,1,32,2,23,18,32,2,5,1,33,404,18,197,33,107,2,62,1,1065,},
|
||||
{1,1198,2,66,33,103,18,197,33,389,21,1,32,2,23,16,32,3,33,262,4,1,32,2,23,18,32,2,5,1,33,405,18,196,33,107,2,62,1,1065,},
|
||||
{1,1198,2,66,33,103,18,197,33,389,4,1,32,2,23,17,32,2,5,1,33,261,4,1,32,2,23,18,32,2,5,1,33,405,18,196,33,107,2,62,1,1065,},
|
||||
{1,1198,2,66,33,103,18,197,33,389,4,1,32,2,23,17,32,3,33,261,4,1,32,2,23,17,32,3,33,407,18,195,33,107,2,62,1,1065,},
|
||||
{1,1198,2,66,33,103,18,197,33,389,4,1,32,2,23,17,32,3,33,261,4,1,32,2,23,17,32,3,33,407,18,195,33,107,2,62,1,1065,},
|
||||
{1,1197,2,67,33,103,18,196,33,390,4,1,32,2,23,18,32,2,5,1,33,260,4,1,32,2,23,17,32,2,5,1,33,408,18,194,33,107,2,63,1,1064,},
|
||||
{1,1196,2,68,33,103,18,194,33,392,4,1,32,2,23,18,32,2,5,1,33,260,32,3,23,16,32,3,33,410,18,193,33,107,2,63,1,1064,},
|
||||
{1,1196,2,68,33,103,18,194,33,392,4,1,32,2,23,18,32,2,5,1,33,260,32,3,23,16,32,3,33,411,18,192,33,106,2,64,1,1064,},
|
||||
{1,1195,2,69,33,103,18,192,33,394,4,1,32,2,23,17,32,3,33,261,32,3,23,16,32,2,21,1,33,413,18,191,33,105,2,64,1,1064,},
|
||||
{1,1195,2,69,33,103,18,191,33,395,4,1,32,2,23,17,32,3,33,261,32,3,23,15,32,3,5,1,33,414,18,190,33,105,2,64,1,1064,},
|
||||
{1,1195,2,69,33,103,18,191,33,395,4,1,32,2,23,17,32,2,5,1,33,261,32,3,23,15,32,2,4,1,33,415,18,190,33,105,2,64,1,1064,},
|
||||
{1,1195,2,69,33,103,18,189,33,397,32,3,23,16,32,3,33,262,32,3,23,15,32,2,21,1,33,415,18,190,33,105,2,64,1,1064,},
|
||||
{1,1194,2,70,33,103,18,189,33,397,32,3,23,16,32,3,33,262,32,3,23,14,32,3,5,1,33,415,18,190,33,105,2,65,1,1063,},
|
||||
{1,1194,2,70,33,103,18,189,33,397,32,3,23,16,32,2,21,1,33,262,5,1,32,3,23,13,32,2,4,1,33,417,18,189,33,105,2,65,1,1063,},
|
||||
{1,1194,2,70,33,103,18,189,33,397,32,3,23,15,32,3,5,1,33,263,32,4,23,12,32,2,21,1,33,417,18,189,33,105,2,65,1,1063,},
|
||||
{1,1194,2,70,33,103,18,189,33,397,32,3,23,15,32,2,4,1,33,120,2,42,33,103,32,4,23,10,32,3,5,1,33,417,18,189,33,106,2,64,1,1063,},
|
||||
{1,1194,2,70,33,103,18,189,33,397,32,3,23,15,32,2,21,1,33,120,2,42,33,104,32,3,23,10,32,3,33,418,18,189,33,106,2,64,1,1063,},
|
||||
{1,1194,2,70,33,103,18,188,33,398,32,3,23,14,32,3,5,1,33,98,2,85,33,83,5,1,32,3,23,9,32,2,5,1,33,418,18,189,33,103,2,69,1,1061,},
|
||||
{1,1194,2,70,33,103,18,188,33,398,5,1,32,3,23,13,32,2,4,1,33,99,2,85,33,84,5,1,32,3,23,7,32,3,33,419,18,189,33,103,2,69,1,1061,},
|
||||
{1,1190,2,76,33,101,18,188,33,399,32,4,23,12,32,2,21,1,33,93,2,98,33,78,32,4,23,3,18,1,32,5,33,420,18,188,33,102,2,73,1,1058,},
|
||||
{1,1190,2,77,33,100,18,188,33,400,32,4,23,10,32,3,5,1,33,90,2,103,33,77,32,11,5,1,33,421,18,187,33,100,2,77,1,1056,},
|
||||
{1,1190,2,77,33,100,18,188,33,401,32,3,23,10,32,3,33,91,2,103,33,78,32,8,5,1,33,423,18,187,33,100,2,77,1,1056,},
|
||||
{1,1189,2,78,33,100,18,188,33,401,5,1,32,3,23,9,32,2,5,1,33,89,2,108,33,76,32,3,5,2,33,426,18,187,33,100,2,77,1,1056,},
|
||||
{1,1189,2,78,33,100,18,188,33,402,5,1,32,3,23,7,32,3,33,89,2,111,33,74,5,2,33,429,18,187,33,100,2,77,1,1056,},
|
||||
{1,1189,2,78,33,100,18,188,33,403,32,4,23,3,18,1,32,5,33,89,2,111,33,506,18,186,33,100,2,77,1,1056,},
|
||||
{1,1189,2,78,33,100,18,188,33,404,32,11,5,1,33,86,2,115,33,505,18,186,33,99,2,80,1,1054,},
|
||||
{1,1189,2,78,33,100,18,188,33,405,32,8,5,1,33,81,2,130,33,496,18,187,33,99,2,80,1,1054,},
|
||||
{1,1189,2,78,33,100,18,188,33,406,32,3,5,2,33,84,2,130,33,496,18,187,33,99,2,80,1,1054,},
|
||||
{1,1189,2,80,33,98,18,188,33,234,2,75,33,97,5,2,33,62,2,180,33,160,2,75,33,236,18,187,33,99,2,80,1,1054,},
|
||||
{1,1201,2,65,33,109,18,239,33,1003,18,237,33,111,2,64,1,1067,},
|
||||
{1,1200,2,65,33,108,18,240,33,633,32,2,33,370,18,239,33,109,2,63,1,1067,},
|
||||
{1,1200,2,65,33,107,18,239,33,634,32,6,33,368,18,240,33,107,2,63,1,1067,},
|
||||
{1,1200,2,65,33,107,18,239,33,633,32,9,33,367,18,239,33,107,2,63,1,1067,},
|
||||
{1,1200,2,65,33,105,18,239,33,634,32,3,23,4,32,4,33,368,18,237,33,109,2,61,1,1067,},
|
||||
{1,1201,2,64,33,105,18,238,33,634,32,3,23,7,32,2,33,370,18,236,33,109,2,60,1,1067,},
|
||||
{1,1201,2,64,33,105,18,238,33,633,32,3,23,9,32,2,33,369,18,236,33,108,2,61,1,1067,},
|
||||
{1,1201,2,64,33,105,18,235,33,356,32,6,33,273,32,3,23,10,32,2,33,383,18,222,33,108,2,61,1,1067,},
|
||||
{1,1201,2,64,33,105,18,214,33,376,32,9,33,270,32,3,23,12,32,2,33,385,18,219,33,108,2,61,1,1067,},
|
||||
{1,1201,2,64,33,105,18,207,33,382,32,3,23,4,32,4,33,268,32,3,23,13,32,2,33,388,18,216,33,108,2,61,1,1067,},
|
||||
{1,1200,2,65,33,104,18,208,33,381,32,3,23,7,32,3,33,267,32,2,23,14,32,3,33,389,18,214,33,108,2,61,1,1067,},
|
||||
{1,1200,2,65,33,104,18,207,33,382,32,2,23,9,32,2,33,267,32,2,23,15,32,2,33,391,18,214,33,106,2,61,1,1067,},
|
||||
{1,1200,2,65,33,104,18,203,33,385,32,2,23,10,32,3,33,266,32,2,23,15,32,3,33,395,18,209,33,106,2,62,1,1066,},
|
||||
{1,1199,2,66,33,104,18,201,33,386,32,2,23,12,32,2,33,266,32,2,23,15,32,3,33,396,18,208,33,107,2,61,1,1066,},
|
||||
{1,1199,2,65,33,105,18,201,33,384,32,3,23,13,32,2,33,266,32,2,23,15,32,3,33,398,18,206,33,107,2,61,1,1066,},
|
||||
{1,1199,2,65,33,105,18,200,33,385,32,2,23,14,32,2,33,266,32,2,23,16,32,3,33,398,18,205,33,108,2,60,1,1066,},
|
||||
{1,1199,2,64,33,106,18,200,33,385,32,2,23,15,32,2,33,265,32,2,23,16,32,3,33,400,18,203,33,108,2,60,1,1066,},
|
||||
{1,1199,2,64,33,106,18,199,33,386,32,2,23,15,32,2,33,265,32,2,23,16,32,3,33,403,18,200,33,108,2,61,1,1065,},
|
||||
{1,1199,2,64,33,104,18,199,33,388,32,2,23,15,32,2,33,265,32,2,23,17,32,2,33,403,18,200,33,108,2,61,1,1065,},
|
||||
{1,1198,2,65,33,104,18,199,33,388,32,2,23,15,32,3,33,264,32,2,23,17,32,2,33,404,18,199,33,107,2,62,1,1065,},
|
||||
{1,1198,2,65,33,104,18,199,33,388,32,2,23,16,32,2,33,264,32,2,23,17,32,3,33,404,18,198,33,107,2,62,1,1065,},
|
||||
{1,1198,2,65,33,104,18,199,33,388,32,2,23,16,32,3,33,263,32,2,23,18,32,2,33,405,18,197,33,107,2,62,1,1065,},
|
||||
{1,1198,2,66,33,103,18,197,33,390,32,2,23,16,32,3,33,263,32,2,23,18,32,2,33,406,18,196,33,107,2,62,1,1065,},
|
||||
{1,1198,2,66,33,103,18,197,33,390,32,2,23,17,32,2,33,263,32,2,23,18,32,2,33,406,18,196,33,107,2,62,1,1065,},
|
||||
{1,1198,2,66,33,103,18,197,33,390,32,2,23,17,32,2,33,263,32,2,23,17,32,3,33,407,18,195,33,107,2,62,1,1065,},
|
||||
{1,1198,2,66,33,103,18,197,33,390,32,2,23,17,32,3,33,262,32,2,23,17,32,2,33,408,18,195,33,107,2,62,1,1065,},
|
||||
{1,1197,2,67,33,103,18,196,33,391,32,2,23,18,32,2,33,262,32,2,23,17,32,2,33,409,18,194,33,107,2,63,1,1064,},
|
||||
{1,1196,2,68,33,103,18,194,33,393,32,2,23,18,32,2,33,262,32,2,23,16,32,3,33,410,18,193,33,107,2,63,1,1064,},
|
||||
{1,1196,2,68,33,103,18,194,33,393,32,2,23,18,32,2,33,262,32,2,23,16,32,2,33,412,18,192,33,106,2,64,1,1064,},
|
||||
{1,1195,2,69,33,103,18,192,33,395,32,2,23,17,32,3,33,262,32,2,23,16,32,2,33,414,18,191,33,105,2,64,1,1064,},
|
||||
{1,1195,2,69,33,103,18,191,33,396,32,2,23,17,32,2,33,263,32,2,23,15,32,3,33,415,18,190,33,105,2,64,1,1064,},
|
||||
{1,1195,2,69,33,103,18,191,33,396,32,2,23,17,32,2,33,263,32,2,23,15,32,2,33,416,18,190,33,105,2,64,1,1064,},
|
||||
{1,1195,2,69,33,103,18,189,33,398,32,2,23,16,32,3,33,263,32,2,23,15,32,2,33,416,18,190,33,105,2,64,1,1064,},
|
||||
{1,1194,2,70,33,103,18,189,33,398,32,2,23,16,32,2,33,264,32,2,23,14,32,3,33,416,18,190,33,105,2,65,1,1063,},
|
||||
{1,1194,2,70,33,103,18,189,33,398,32,2,23,16,32,2,33,264,32,3,23,13,32,2,33,418,18,189,33,105,2,65,1,1063,},
|
||||
{1,1194,2,70,33,103,18,189,33,398,32,2,23,15,32,3,33,265,32,3,23,12,32,2,33,418,18,189,33,105,2,65,1,1063,},
|
||||
{1,1194,2,70,33,103,18,189,33,398,32,2,23,15,32,2,33,121,2,42,33,104,32,2,23,11,32,3,33,418,18,189,33,106,2,64,1,1063,},
|
||||
{1,1194,2,70,33,103,18,189,33,398,32,2,23,15,32,2,33,121,2,42,33,104,32,3,23,10,32,2,33,419,18,189,33,106,2,64,1,1063,},
|
||||
{1,1194,2,70,33,103,18,188,33,399,32,2,23,14,32,3,33,99,2,85,33,84,32,3,23,9,32,2,33,419,18,189,33,103,2,69,1,1061,},
|
||||
{1,1194,2,70,33,103,18,188,33,399,32,3,23,13,32,2,33,100,2,85,33,85,32,3,23,7,32,2,33,420,18,189,33,103,2,69,1,1061,},
|
||||
{1,1190,2,76,33,101,18,188,33,400,32,3,23,12,32,2,33,94,2,98,33,79,32,3,23,4,32,4,33,421,18,188,33,102,2,73,1,1058,},
|
||||
{1,1190,2,77,33,100,18,188,33,401,32,2,23,11,32,3,33,91,2,103,33,78,32,9,33,423,18,187,33,100,2,77,1,1056,},
|
||||
{1,1190,2,77,33,100,18,188,33,401,32,3,23,10,32,2,33,92,2,103,33,79,32,6,33,425,18,187,33,100,2,77,1,1056,},
|
||||
{1,1189,2,78,33,100,18,188,33,402,32,3,23,9,32,2,33,90,2,108,33,507,18,187,33,100,2,77,1,1056,},
|
||||
{1,1189,2,78,33,100,18,188,33,403,32,3,23,7,32,3,33,89,2,111,33,505,18,187,33,100,2,77,1,1056,},
|
||||
{1,1189,2,78,33,100,18,188,33,404,32,3,23,4,32,4,33,90,2,111,33,506,18,186,33,100,2,77,1,1056,},
|
||||
{1,1189,2,78,33,100,18,188,33,405,32,8,33,89,2,115,33,505,18,186,33,99,2,80,1,1054,},
|
||||
{1,1189,2,78,33,100,18,188,33,406,32,6,33,83,2,130,33,496,18,187,33,99,2,80,1,1054,},
|
||||
{1,1189,2,78,33,100,18,188,33,495,2,130,33,496,18,187,33,99,2,80,1,1054,},
|
||||
{1,1189,2,80,33,98,18,188,33,234,2,75,33,161,2,180,33,160,2,75,33,236,18,187,33,99,2,80,1,1054,},
|
||||
{1,1189,2,80,33,98,18,188,33,234,2,75,33,161,2,180,33,160,2,75,33,236,18,187,33,99,2,80,1,1054,},
|
||||
{1,1189,2,80,33,98,18,186,33,211,2,136,33,110,2,211,33,109,2,136,33,210,18,187,33,97,2,82,1,1054,},
|
||||
{1,1187,2,83,33,97,18,186,33,203,2,158,33,86,2,229,33,87,2,156,33,205,18,186,33,97,2,82,1,1054,},
|
||||
|
@ -83,6 +83,8 @@ local function refresh_market_offers()
|
||||
{price = {{'coin', 1}}, offer = {type = 'give-item', item = 'land-mine', count = 1}},
|
||||
{price = {{'coin', 80}}, offer = {type = 'give-item', item = 'car', count = 1}},
|
||||
{price = {{'coin', 1200}}, offer = {type = 'give-item', item = 'tank', count = 1}},
|
||||
{price = {{'small-plane', 40}}, offer = {type = 'give-item', item = 'spidertron', count = 1}},
|
||||
{price = {{'coin', 5000}}, offer = {type = 'give-item', item = 'small-plane', count = 1}},
|
||||
{price = {{'coin', 3}}, offer = {type = 'give-item', item = 'cannon-shell', count = 1}},
|
||||
{price = {{'coin', 7}}, offer = {type = 'give-item', item = 'explosive-cannon-shell', count = 1}},
|
||||
{price = {{'coin', 50}}, offer = {type = 'give-item', item = 'gun-turret', count = 1}},
|
||||
|
Loading…
x
Reference in New Issue
Block a user