// ==UserScript==
// @name DeAtHMod (Fixed)
// @namespace Best Hack 2020
// @version Last_Version
// @description By SaVeGe+ixPROx3 , Fixed By Nuro
// @author Annonymous
// @match *://[Link]/*
// @match *://[Link]/*
// @match *://[Link]/*
// @grant none
// @require [Link]
version=598723
// @require [Link]
// @require [Link]
// @require [Link]
[Link]
// @icon [Link]
%3AANd9GcTAg5B9eJdzMX9EIoAnuVoxABKW_idO2O_gFdOUEYrkTXb_ZRlH
// @downloadURL none
// ==/UserScript==
var autoreloadloop;
var autoreloadenough = 0;
autoreloadloop = setInterval(function () {
if (autoreloadenough < 200) {
if ([Link]("loadingText").innerHTML == `disconnected<a
href="javascript:[Link]=[Link]"
class="ytLink">reload</a>`) {
clearInterval(autoreloadloop);
setTimeout(function () {[Link] = "Moo Moo";}, 1000)
[Link]();
}
autoreloadenough++;
}
else if (autoreloadenough >= 300) {
clearInterval(autoreloadloop);
setTimeout(function () {[Link] = "Moo Moo";}, 1000)
}
}, 50);
(() => {
try {
class Collection {
constructor(array = []) {
this.__array = array;
}
fromID(id) {
return this.__array.filter(thing => [Link] === id);
}
get(id) {
return [Link](id)[0];
}
has(id) {
return [Link](id).length > 0;
}
forEach(callback) {
this.__array.forEach(callback);
}
}
const canvas = [Link]("gameCanvas");
const ctx = [Link]("2d");
const players = {};
let currentID = null;
let ws;
function randInt(min, max) {
const mini = [Link](min);
return [Link]([Link]() * ([Link](max) - mini + 1)) +
mini;
}
function randItem(array) {
return array[randInt(0, [Link] - 1)];
}
const modules = new Collection([{
id: "core",
name: "Core",
description: "HellO",
required: true,
init: () => {
const example = $($("#linksContainer2").children()[0]);
const mesLink = [Link]();
[Link](`MES v${GM_info.[Link]}`);
[Link]("href", "[Link]
Developers/Moomoo-Enhancement-Suite");
[Link](" | ", mesLink);
}
}, {
id: "tracers",
name: "Tracers",
settings: [{
id: "line_color",
type: "color",
name: "Line Color",
description: "The color of the tracers.",
default: "#000000"
}],
init: () => {
function drawTracers() {
[Link](players).forEach(player => {
if (currentID === null || players[currentID]
=== undefined || players[currentID].longID === undefined) return;
[Link] = color;
[Link] = 3;
const player2 = players[currentID];
[Link]();
[Link](player2.x, player2.y);
[Link](player.x, player.y);
[Link]();
});
[Link](drawTracers);
}
drawTracers();
},
}, {
id: "auto_chat",
name: "Automatic Chat",
description: "Automatically chats certain messages.",
settings: [{
id: "messages",
name: "Message List",
hover: "You can insert multiple messages with a comma; if
you want to say both '1' and '2', put '1,2'.",
default: "Hello!,Git gud!",
type: "text",
}, {
id: "randomize_messages",
name: "Randomize Messages",
default: true,
type: "checkbox",
}],
init: () => {
let index = 0;
const messages = config.auto_chat.[Link](",");
setInterval(() => {
if (ws) {
const toSend =
config.auto_chat.randomize_messages ? randItem(messages) : messages[index];
[Link]("ch", [
toSend,
]);
index += 1;
if (index >= [Link]) {
index = 0;
}
}
}, 3000);
}
}, {
id: "smart_hat",
name: "Smart Hats",
description: "This module allows you to equip certain hats at
certain times to get the most out of those actions.",
}, {
id: "heal",
name: "Autoheal",
description: "With this module, you can automatically heal when
you get damaged.",
}, {
id: "object_map",
name: "Object Mapper",
description: "Maps the position of objects to your minimap.",
}, {
id: "projectile_blocker",
name: "Arrow Blocking",
description: "When you have a shield, this module will prevent
arrows from hitting you by equipping it and blocking the arrow.",
}, {
id: "coordinates",
name: "Coordinates",
description: "Shows your coordinates.",
}, {
id: "minimap_biomes",
name: "Biomes on Minimap",
description: "Shows the different biomes on the minimap by
coloring each region.",
init: () => {
$("#mapDisplay").css("background",
"url('[Link]
},
deinit: () => {
$("#mapDisplay").css("background", "rgba(0, 0, 0, 0.25)");
},
}, {
id: "custom_text",
name: "Custom Text",
description: "This module lets you change the text of many
things.",
settings: [{
id: "death",
name: "Death",
default: "YOU DIED",
type: "text",
}, {
id: "title",
name: "Title",
default: "Moo Moo",
type: "text",
}],
init: () => {
$("#diedText").text(config.custom_text.death);
[Link] = config.custom_text.title;
},
}, {
id: "ping_display",
name: "Show Ping",
description: "Adds the ping counter in-game.",
init: () => {
const pingDisplay = $("#pingDisplay");
[Link]("top", "3px");
[Link]("display", "block");
$("body").append(pingDisplay);
}
}]);
const config = [Link]([Link]("mes_config")) || {};
function setConfig(moduleID, key, value) {
if (!config[moduleID]) {
config[moduleID] = {};
}
if (!(key === undefined || value === undefined)) {
config[moduleID][key] = value;
}
return [Link]("mes_config",
[Link](config));
}
[Link](module => {
setConfig([Link]);
});
WebSocket = class extends WebSocket {
constructor(...arg) {
super(...arg);
ws = this;
[Link]("message", event => {
const data = [Link]([Link]);
switch (data[0]) {
case "1":
currentID = data[1][0];
case "2":
players[data[1][0][1]] = {
longID: data[1][0][0],
name: data[1][0][2],
x: data[1][0][3],
y: data[1][0][4],
angle: data[1][0][5],
lastUpdated: [Link](),
};
break;
case "3":
for (let i = 0, len = data[1][0].length /
13; i < len; i++) {
if (!players[data[1][0][0 + i *
13]]) {
players[data[1][0][0 + i *
13]] = {
x: data[1][0][1 + i *
13],
y: data[1][0][2 + i *
13],
angle: data[1][0][3 + i
* 13],
lastUpdated: [Link](),
};
} else {
const p = players[data[1][0]
[0 + i * 13]];
p.x = data[1][0][1 + i * 13];
p.y = data[1][0][2 + i * 13],
[Link] = data[1][0][3 + i *
13],
[Link] = [Link]();
}
}
break;
case "4":
for (const k in players) {
if (players[k].longID == data[1]
[0]) delete players[k];
}
}
});
this._send = [Link];
[Link] = function () {
this._send.apply(this, arguments);
};
[Link] = function () {
const input = [Link](arguments);
[Link](input);
}
}
};
let menuOpen = false;
const gameUI = $("#gameUI");
const menuButton = $("#allianceButton").clone(false);
[Link]()[0].innerText = "touch_app";
[Link]("right", "450px");
[Link]("title", `Moomoo Enhancement Script v$
{GM_info.[Link]}`);
[Link]("click", toggleMenu);
[Link](menuButton);
const menuWrapper = $("<div/>");
[Link]("display", "none");
[Link]("width", "100%");
[Link]("position", "absolute");
[Link]("top", "50%");
[Link]("transform", "translateY(-50%)");
[Link]("text-align", "center");
[Link]("pointer-events", "initial");
const hackMenu = $("<div/>");
[Link]("id", "hackMenu");
const settingsBox = $("<div/>");
[Link]("id", "settingsBox");
const categoryChoose = $("<select/>");
[Link]("width", "30%");
[Link]("<option disabled>Fixed By Bextiyar</option>");
// Add all modules to the module options select...
[Link](module => {
const moduleOpt = $("<option/>");
[Link]("value", [Link]);
[Link]([Link])
[Link](moduleOpt);
});
function makeInput(setting, configVal) {
const input = $(`<input/>`);
[Link]("type", [Link]);
[Link]("name", [Link]);
[Link]("margin", "5px");
[Link]("max-width", "25px");
const label = $(`<label class="settingRadio" />`);
[Link]([Link]);
[Link]("title", [Link]);
switch ([Link]) {
case "text":
[Link]("width", "170px");
[Link]("max-width", "170px");
[Link]("placeholder", `Default: $
{[Link]}`);
[Link](configVal);
[Link]([Link] + ":");
break;
case "checkbox":
[Link]("checked", configVal);
break;
default:
[Link](configVal);
}
if ([Link] === "text") {
[Link](input);
} else {
[Link](input);
}
return label;
}
[Link]("change", event => {
const newmod = [Link]([Link]);
[Link]();
const desc = $("<p/>");
[Link]([Link] || `You can change settings for the
${[Link]} module here.`);
[Link](desc);
if (![Link]) {
const enabledToggle = makeInput({
type: "checkbox",
id: "enabled",
name: "Enable Module",
hover: "Toggles all functionality in this module.",
}, config[[Link]].enabled);
[Link](enabledToggle);
}
// Append module-provided settings.
if ([Link]) {
[Link](setting => {
[Link]("<br/>");
[Link](makeInput(setting,
config[[Link]][[Link]]));
});
}
});
[Link]("change", event => {
const target = $([Link]);
switch ([Link]("type")) {
case "checkbox":
return setConfig([Link](),
[Link]("name"), [Link]("checked"));
default:
return setConfig([Link](),
[Link]("name"), [Link]());
}
});
[Link]("core").change();
[Link]("<h1>Options</h2>");
[Link](categoryChoose);
[Link](settingsBox);
[Link](hackMenu);
[Link](menuWrapper);
$("head").append(`
<style>
#hackMenu {
background-color: rgb(119, 0, 1, 0.75);
width: 400px;
height: 400px;
color: white;
max-height: calc(100vh - 400px);
overflow-y: hidden;
display: inline-block;
border-radius: 4px;
}
#settingsBox {
height: 300px;
overflow-y: scroll;
padding: 25px;
text-align: left;
font-size: 18px;
}
h1 {
font-size: 26px;
text-transform: uppercase;
}
</style>
`);
function toggleMenu() {
menuOpen = !menuOpen;
[Link]("display", menuOpen ? "block" : "none");
}
[Link](module => {
if (config[[Link]].enabled || [Link]) {
if ([Link]) {
[Link]();
} else {
[Link](`Module ${[Link]} has no
initialization.`);
}
}
});
} catch (e) {
[Link](e)
}
})();
$("#consentBlock").css({display: "none"});
$("#youtuberOf").css({display: "none"});
let newImg = [Link]("img");
[Link] = "[Link]
6gsJfErOCJBNLIWocsQR8nTEQti-cJDMQ4SGVSZ8KGaxdwb2Tt376i=s85";
[Link] = `position: absolute; top: 30px; left: 30px; z-index: 100000; width:
100px; height: 100px; cursor: pointer;`;
[Link](newImg);
[Link]("click", () => {
let w =
[Link]("[Link] null,
`height=650, width=1199, status=yes, toolbar=no, menubar=no, location=no`);
});
$("#gameCanvas").css('cursor',
'url([Link] default');
$("#consentBlock").css({display: "none"});
//$("#youtuberOf").css({display: "none"});
$("#mapDisplay").css({background: `url('[Link]
$("#mapDisplay").css({
'border-radious':'300px',
'border':'3px solid #AC0E0E'
});
$("#allianceButton").css({background:
`url('[Link]
download_32.jpg')`});
$("#allianceButton").css({background:
`url('[Link]
download_32.jpg')`});
$("#storeButton").css({background:
`url('[Link]
download_32.jpg')`});
$("#chatButton").css({background:
`url('[Link]
download_32.jpg')`});
const pingDisplay = $("#pingDisplay");
[Link]("top", "3px");
[Link]("display", "block");
$("body").append(pingDisplay);
[Link]("moomooio_728x90_home").[Link] = "none";
$("#moomooio_728x90_home").parent().css({display: "none"});
(function() {
var můjVar;
var můjVar2;
var můjVar3;
var můjVar4;
var můjVar5;
var můjVar6;
var můjVar7;
var můjVar8;
var můjVar9;
var můjVar10;
var můjVar11;
var můjVar12;
var můjVar13;
var můjVar14;
var můjVar15;
var můjVar16;
var můjVar17;
var můjVar18;
var můjVar19;
var můjVar20;
var můjVar21;
var můjVar22;
var můjVar23;
var můjVar24;
var můjVar25;
var můjVar26;
var můjVar27;
var můjVar28;
var můjVar29;
var můjVar30;
var můjVar31;
var můjVar32;
var můjVar33;
var můjVar34;
var můjVar35;
var můjVar36;
var můjVar37;
var můjVar38;
var můjVar39;
var můjVar40;
var můjVar41;
var změna = true;
var ID_FΔZΣ = 45;
var ID_Moo_Head = 28;
var ID_Moo_Cap = 51;
var ID_Apple_Cap = 50;
var ID_Pig_Head = 29;
var ID_Fluff_Head = 30;
var ID_Pandou_Head = 36;
var ID_Bear_Head = 37;
var ID_Monkey_Head = 38;
var ID_Polar_Head = 44;
var ID_Fez_Hat = 35;
var ID_Enigma_Hat = 42;
var ID_Blitz_Hat = 43;
var ID_Bob_XIII_Hat = 49;
var ID_Bummle_Hat = 8;
var ID_Straw_Hat = 2;
var ID_Winter_Cap = 15;
var ID_Cowboy_Hat = 5;
var ID_Ranger_Hat = 4;
var ID_Explorer_Hat = 18;
var ID_Flipper_Hat = 31;
var ID_Marksman_Cap = 1;
var ID_Bush_Gear = 10;
var ID_Halo = 48;
var ID_Soldier_Helmet = 6;
var ID_Anti_Venom_Gear = 23;
var ID_Medic_Gear = 13;
var ID_Miners_Helmet = 9;
var ID_Musketeer_Hat = 32;
var ID_Bull_Helmet = 7;
var ID_Emp_Helmet = 22;
var ID_Booster_Hat = 12;
var ID_Barbarian_Armor = 26;
var ID_Plague_Mask = 21;
var ID_Bull_Mask = 46;
var ID_Windmill_Hat = 14;
var ID_Spike_Gear = 11;
var ID_Samurai_Armor = 20;
var ID_Bushido_Armor = 16;
var ID_Scavenger_Gear = 27;
var ID_Tank_Gear = 40;
[Link]('keydown', function (e) {
if ([Link] == 118) {
[Link]();
if (změna) {
storeEquip(ID_FΔZΣ);
můjVar = setTimeout(function(){ h1(); }, 75);
} else {
clearTimeout(můjVar);
clearTimeout(můjVar2);
clearTimeout(můjVar3);
clearTimeout(můjVar4);
clearTimeout(můjVar5);
clearTimeout(můjVar6);
clearTimeout(můjVar7);
clearTimeout(můjVar8);
clearTimeout(můjVar9);
clearTimeout(můjVar10);
clearTimeout(můjVar11);
clearTimeout(můjVar12);
clearTimeout(můjVar13);
clearTimeout(můjVar14);
clearTimeout(můjVar15);
clearTimeout(můjVar16);
clearTimeout(můjVar17);
clearTimeout(můjVar18);
clearTimeout(můjVar19);
clearTimeout(můjVar20);
clearTimeout(můjVar21);
clearTimeout(můjVar22);
clearTimeout(můjVar23);
clearTimeout(můjVar24);
clearTimeout(můjVar25);
clearTimeout(můjVar26);
clearTimeout(můjVar27);
clearTimeout(můjVar28);
clearTimeout(můjVar29);
clearTimeout(můjVar30);
clearTimeout(můjVar31);
clearTimeout(můjVar32);
clearTimeout(můjVar33);
clearTimeout(můjVar34);
clearTimeout(můjVar35);
clearTimeout(můjVar36);
clearTimeout(můjVar37);
clearTimeout(můjVar38);
clearTimeout(můjVar39);
clearTimeout(můjVar40);
clearTimeout(můjVar41);
storeEquip(ID_FΔZΣ);
}
změna = !změna;
}
});
function h1() {
storeEquip(ID_FΔZΣ);
clearTimeout(můjVar);
můjVar2 = setTimeout(function(){ h2(); }, 75);
}
function h2() {
storeEquip(ID_Moo_Head);
clearTimeout(můjVar2);
můjVar3 = setTimeout(function(){ h3(); }, 75);
}
function h3() {
storeEquip(ID_Pig_Head);
clearTimeout(můjVar3);
můjVar4 = setTimeout(function(){ h4(); }, 75);
}
function h4() {
storeEquip(ID_Fluff_Head);
clearTimeout(můjVar4);
můjVar5 = setTimeout(function(){ h5(); }, 75);
}
function h5() {
storeEquip(ID_Pandou_Head);
clearTimeout(můjVar5);
můjVar6 = setTimeout(function(){ h6(); }, 75);
}
function h6() {
storeEquip(ID_Bear_Head);
clearTimeout(můjVar6);
můjVar7 = setTimeout(function(){ h7(); }, 75);
}
function h7() {
storeEquip(ID_Monkey_Head);
clearTimeout(můjVar7);
můjVar8 = setTimeout(function(){ h8(); }, 75);
}
function h8() {
storeEquip(ID_Polar_Head);
clearTimeout(můjVar8);
můjVar9 = setTimeout(function(){ h9(); }, 75);
}
function h9() {
storeEquip(ID_Fez_Hat);
clearTimeout(můjVar9);
můjVar10 = setTimeout(function(){ h10(); }, 75);
}
function h10() {
storeEquip(ID_Enigma_Hat);
clearTimeout(můjVar10);
můjVar11 = setTimeout(function(){ h11(); }, 75);
}
function h11() {
storeEquip(ID_Blitz_Hat);
clearTimeout(můjVar11);
můjVar12 = setTimeout(function(){ h12(); }, 75);
}
function h12() {
storeEquip(ID_Bob_XIII_Hat);
clearTimeout(můjVar12);
můjVar13 = setTimeout(function(){ h13(); }, 75);
}
function h13() {
storeEquip(ID_Moo_Cap);
clearTimeout(můjVar12);
můjVar14 = setTimeout(function(){ h14(); }, 75);
}
function h14() {
storeEquip(ID_Apple_Cap);
clearTimeout(můjVar12);
můjVar = setTimeout(function(){ h1(); }, 75);
}
})();
(function() {
var můjVar;
var můjVar2;
var můjVar3;
var můjVar4;
var můjVar5;
var můjVar6;
var můjVar7;
var můjVar8;
var můjVar9;
var můjVar10;
var můjVar11;
var můjVar12;
var můjVar13;
var můjVar14;
var můjVar15;
var můjVar16;
var můjVar17;
var můjVar18;
var můjVar19;
var můjVar20;
var můjVar21;
var můjVar22;
var můjVar23;
var můjVar24;
var můjVar25;
var můjVar26;
var můjVar27;
var můjVar28;
var můjVar29;
var můjVar30;
var můjVar31;
var můjVar32;
var můjVar33;
var můjVar34;
var můjVar35;
var můjVar36;
var můjVar37;
var můjVar38;
var můjVar39;
var můjVar40;
var můjVar41;
var změna = true;
var ID_FΔZΣ = 45;
var ID_Moo_Head = 28;
var ID_Pig_Head = 29;
var ID_Fluff_Head = 30;
var ID_Pandou_Head = 36;
var ID_Bear_Head = 37;
var ID_Monkey_Head = 38;
var ID_Polar_Head = 44;
var ID_Fez_Hat = 35;
var ID_Enigma_Hat = 42;
var ID_Blitz_Hat = 43;
var ID_Bob_XIII_Hat = 49;
var ID_Bummle_Hat = 8;
var ID_Straw_Hat = 2;
var ID_Winter_Cap = 15;
var ID_Cowboy_Hat = 5;
var ID_Ranger_Hat = 4;
var ID_Explorer_Hat = 18;
var ID_Flipper_Hat = 31;
var ID_Marksman_Cap = 1;
var ID_Bush_Gear = 10;
var ID_Halo = 48;
var ID_Soldier_Helmet = 6;
var ID_Anti_Venom_Gear = 23;
var ID_Medic_Gear = 13;
var ID_Miners_Helmet = 9;
var ID_Musketeer_Hat = 32;
var ID_Bull_Helmet = 7;
var ID_Emp_Helmet = 22;
var ID_Booster_Hat = 12;
var ID_Barbarian_Armor = 26;
var ID_Plague_Mask = 21;
var ID_Bull_Mask = 46;
var ID_Windmill_Hat = 14;
var ID_Spike_Gear = 11;
var ID_Samurai_Armor = 20;
var ID_Bushido_Armor = 16;
var ID_Scavenger_Gear = 27;
var ID_Tank_Gear = 40;
var ID_Moo_Cap = 51;
var ID_Apple_Cap = 50;
[Link]('keydown', function (e) {
if ([Link] == 117) {
[Link]();
if (změna) {
storeEquip(ID_FΔZΣ);
můjVar = setTimeout(function(){ h1(); }, 75);
} else {
clearTimeout(můjVar);
clearTimeout(můjVar2);
clearTimeout(můjVar3);
clearTimeout(můjVar4);
clearTimeout(můjVar5);
clearTimeout(můjVar6);
clearTimeout(můjVar7);
clearTimeout(můjVar8);
clearTimeout(můjVar9);
clearTimeout(můjVar10);
clearTimeout(můjVar11);
clearTimeout(můjVar12);
clearTimeout(můjVar13);
clearTimeout(můjVar14);
clearTimeout(můjVar15);
clearTimeout(můjVar16);
clearTimeout(můjVar17);
clearTimeout(můjVar18);
clearTimeout(můjVar19);
clearTimeout(můjVar20);
clearTimeout(můjVar21);
clearTimeout(můjVar22);
clearTimeout(můjVar23);
clearTimeout(můjVar24);
clearTimeout(můjVar25);
clearTimeout(můjVar26);
clearTimeout(můjVar27);
clearTimeout(můjVar28);
clearTimeout(můjVar29);
clearTimeout(můjVar30);
clearTimeout(můjVar31);
clearTimeout(můjVar32);
clearTimeout(můjVar33);
clearTimeout(můjVar34);
clearTimeout(můjVar35);
clearTimeout(můjVar36);
clearTimeout(můjVar37);
clearTimeout(můjVar38);
clearTimeout(můjVar39);
clearTimeout(můjVar40);
clearTimeout(můjVar41);
storeEquip(ID_FΔZΣ);
}
změna = !změna;
}
});
function h1() {
storeEquip(ID_FΔZΣ);
clearTimeout(můjVar);
můjVar2 = setTimeout(function(){ h2(); }, 75);
}
function h2() {
storeEquip(ID_Moo_Head);
clearTimeout(můjVar2);
můjVar3 = setTimeout(function(){ h3(); }, 75);
}
function h3() {
storeEquip(ID_Pig_Head);
clearTimeout(můjVar3);
můjVar4 = setTimeout(function(){ h4(); }, 75);
}
function h4() {
storeEquip(ID_Fluff_Head);
clearTimeout(můjVar4);
můjVar5 = setTimeout(function(){ h5(); }, 75);
}
function h5() {
storeEquip(ID_Pandou_Head);
clearTimeout(můjVar5);
můjVar6 = setTimeout(function(){ h6(); }, 75);
}
function h6() {
storeEquip(ID_Bear_Head);
clearTimeout(můjVar6);
můjVar7 = setTimeout(function(){ h7(); }, 75);
}
function h7() {
storeEquip(ID_Monkey_Head);
clearTimeout(můjVar7);
můjVar8 = setTimeout(function(){ h8(); }, 75);
}
function h8() {
storeEquip(ID_Polar_Head);
clearTimeout(můjVar8);
můjVar9 = setTimeout(function(){ h9(); }, 75);
}
function h9() {
storeEquip(ID_Fez_Hat);
clearTimeout(můjVar9);
můjVar10 = setTimeout(function(){ h10(); }, 75);
}
function h10() {
storeEquip(ID_Enigma_Hat);
clearTimeout(můjVar10);
můjVar11 = setTimeout(function(){ h11(); }, 75);
}
function h11() {
storeEquip(ID_Blitz_Hat);
clearTimeout(můjVar11);
můjVar12 = setTimeout(function(){ h12(); }, 75);
}
function h12() {
storeEquip(ID_Bob_XIII_Hat);
clearTimeout(můjVar12);
můjVar13 = setTimeout(function(){ h13(); }, 75);
}
function h13() {
storeEquip(ID_Bummle_Hat);
clearTimeout(můjVar13);
můjVar14 = setTimeout(function(){ h14(); }, 75);
}
function h14() {
storeEquip(ID_Straw_Hat);
clearTimeout(můjVar14);
můjVar15 = setTimeout(function(){ h15(); }, 75);
}
function h15() {
storeEquip(ID_Winter_Cap);
clearTimeout(můjVar15);
můjVar16 = setTimeout(function(){ h16(); }, 75);
}
function h16() {
storeEquip(ID_Cowboy_Hat);
clearTimeout(můjVar16);
můjVar17 = setTimeout(function(){ h17(); }, 75);
}
function h17() {
storeEquip(ID_Ranger_Hat);
clearTimeout(můjVar17);
můjVar18 = setTimeout(function(){ h18(); }, 75);
}
function h18() {
storeEquip(ID_Explorer_Hat);
clearTimeout(můjVar18);
můjVar19 = setTimeout(function(){ h19(); }, 75);
}
function h19() {
storeEquip(ID_Flipper_Hat);
clearTimeout(můjVar19);
můjVar20 = setTimeout(function(){ h20(); }, 75);
}
function h20() {
storeEquip(ID_Marksman_Cap);
clearTimeout(můjVar20);
můjVar21 = setTimeout(function(){ h21(); }, 75);
}
function h21() {
storeEquip(ID_Bush_Gear);
clearTimeout(můjVar21);
můjVar22 = setTimeout(function(){ h22(); }, 75);
}
function h22() {
storeEquip(ID_Halo);
clearTimeout(můjVar22);
můjVar23 = setTimeout(function(){ h23(); }, 75);
}
function h23() {
storeEquip(ID_Soldier_Helmet);
clearTimeout(můjVar23);
můjVar24 = setTimeout(function(){ h24(); }, 75);
}
function h24() {
storeEquip(ID_Anti_Venom_Gear);
clearTimeout(můjVar24);
můjVar25 = setTimeout(function(){ h25(); }, 75);
}
function h25() {
storeEquip(ID_Medic_Gear);
clearTimeout(můjVar25);
můjVar26 = setTimeout(function(){ h26(); }, 75);
}
function h26() {
storeEquip(ID_Miners_Helmet);
clearTimeout(můjVar26);
můjVar27 = setTimeout(function(){ h27(); }, 75);
}
function h27() {
storeEquip(ID_Musketeer_Hat);
clearTimeout(můjVar27);
můjVar28 = setTimeout(function(){ h28(); }, 75);
}
function h28() {
storeEquip(ID_Bull_Helmet);
clearTimeout(můjVar28);
můjVar29 = setTimeout(function(){ h29(); }, 75);
}
function h29() {
storeEquip(ID_Emp_Helmet);
clearTimeout(můjVar29);
můjVar30 = setTimeout(function(){ h30(); }, 75);
}
function h30() {
storeEquip(ID_Booster_Hat);
clearTimeout(můjVar30);
můjVar31 = setTimeout(function(){ h31(); }, 75);
}
function h31() {
storeEquip(ID_Barbarian_Armor);
clearTimeout(můjVar31);
můjVar32 = setTimeout(function(){ h32(); }, 75);
}
function h32() {
storeEquip(ID_Plague_Mask);
clearTimeout(můjVar32);
můjVar33 = setTimeout(function(){ h33(); }, 75);
}
function h33() {
storeEquip(ID_Bull_Mask);
clearTimeout(můjVar33);
můjVar34 = setTimeout(function(){ h34(); }, 75);
}
function h34() {
storeEquip(ID_Windmill_Hat);
clearTimeout(můjVar34);
můjVar35 = setTimeout(function(){ h35(); }, 75);
}
function h35() {
storeEquip(ID_Spike_Gear);
clearTimeout(můjVar35);
můjVar36 = setTimeout(function(){ h36(); }, 75);
}
function h36() {
storeEquip(ID_Samurai_Armor);
clearTimeout(můjVar36);
můjVar37 = setTimeout(function(){ h37(); }, 75);
}
function h37() {
storeEquip(ID_Bushido_Armor);
clearTimeout(můjVar37);
můjVar38 = setTimeout(function(){ h38(); }, 75);
}
function h38() {
storeEquip(ID_Scavenger_Gear);
clearTimeout(můjVar38);
můjVar39 = setTimeout(function(){ h39(); }, 75);
}
function h39() {
storeEquip(ID_Tank_Gear);
clearTimeout(můjVar39);
můjVar40 = setTimeout(function(){ h40(); }, 75);
}
function h40() {
storeEquip(ID_Moo_Cap);
clearTimeout(můjVar12);
můjVar41 = setTimeout(function(){ h41(); }, 75);
}
function h41() {
storeEquip(ID_Apple_Cap);
clearTimeout(můjVar12);
můjVar = setTimeout(function(){ h1(); }, 75);
}
})();
(function() {
var můjVar;
var můjVar2;
var můjVar3;
var můjVar4;
var můjVar5;
var můjVar6;
var můjVar7;
var můjVar8;
var můjVar9;
var můjVar10;
var můjVar11;
var můjVar12;
var můjVar13;
var můjVar14;
var můjVar15;
var můjVar16;
var můjVar17;
var můjVar18;
var můjVar19;
var můjVar20;
var můjVar21;
var můjVar22;
var můjVar23;
var můjVar24;
var můjVar25;
var můjVar26;
var můjVar27;
var můjVar28;
var můjVar29;
var můjVar30;
var můjVar31;
var můjVar32;
var můjVar33;
var můjVar34;
var můjVar35;
var můjVar36;
var můjVar37;
var můjVar38;
var můjVar39;
var můjVar40;
var můjVar41;
var změna = true;
var ID_FΔZΣ = 45;
var ID_Moo_Head = 28;
var ID_Pig_Head = 29;
var ID_Moo_Cap = 51;
var ID_Apple_Cap = 50;
var ID_Fluff_Head = 30;
var ID_Pandou_Head = 36;
var ID_Bear_Head = 37;
var ID_Monkey_Head = 38;
var ID_Polar_Head = 44;
var ID_Fez_Hat = 35;
var ID_Enigma_Hat = 42;
var ID_Blitz_Hat = 43;
var ID_Bob_XIII_Hat = 49;
var ID_Bummle_Hat = 8;
var ID_Straw_Hat = 2;
var ID_Winter_Cap = 15;
var ID_Cowboy_Hat = 5;
var ID_Ranger_Hat = 4;
var ID_Explorer_Hat = 18;
var ID_Flipper_Hat = 31;
var ID_Marksman_Cap = 1;
var ID_Bush_Gear = 10;
var ID_Halo = 48;
var ID_Soldier_Helmet = 6;
var ID_Anti_Venom_Gear = 23;
var ID_Medic_Gear = 13;
var ID_Miners_Helmet = 9;
var ID_Musketeer_Hat = 32;
var ID_Bull_Helmet = 7;
var ID_Emp_Helmet = 22;
var ID_Booster_Hat = 12;
var ID_Barbarian_Armor = 26;
var ID_Plague_Mask = 21;
var ID_Bull_Mask = 46;
var ID_Windmill_Hat = 14;
var ID_Spike_Gear = 11;
var ID_Samurai_Armor = 20;
var ID_Bushido_Armor = 16;
var ID_Scavenger_Gear = 27;
var ID_Tank_Gear = 40;
var ID_Moo_Cap = 51;
var ID_Apple_Cap = 50;
[Link]('keydown', function (e) {
if ([Link] == 121) {
[Link]();
if (změna) {
storeEquip(ID_FΔZΣ);
můjVar = setTimeout(function(){ h1(); }, 75);
} else {
clearTimeout(můjVar);
clearTimeout(můjVar2);
clearTimeout(můjVar3);
clearTimeout(můjVar4);
clearTimeout(můjVar5);
clearTimeout(můjVar6);
clearTimeout(můjVar7);
clearTimeout(můjVar8);
clearTimeout(můjVar9);
clearTimeout(můjVar10);
clearTimeout(můjVar11);
clearTimeout(můjVar12);
clearTimeout(můjVar13);
clearTimeout(můjVar14);
clearTimeout(můjVar15);
clearTimeout(můjVar16);
clearTimeout(můjVar17);
clearTimeout(můjVar18);
clearTimeout(můjVar19);
clearTimeout(můjVar20);
clearTimeout(můjVar21);
clearTimeout(můjVar22);
clearTimeout(můjVar23);
clearTimeout(můjVar24);
clearTimeout(můjVar25);
clearTimeout(můjVar26);
clearTimeout(můjVar27);
clearTimeout(můjVar28);
clearTimeout(můjVar29);
clearTimeout(můjVar30);
clearTimeout(můjVar31);
clearTimeout(můjVar32);
clearTimeout(můjVar33);
clearTimeout(můjVar34);
clearTimeout(můjVar35);
clearTimeout(můjVar36);
clearTimeout(můjVar37);
clearTimeout(můjVar38);
clearTimeout(můjVar39);
clearTimeout(můjVar40);
clearTimeout(můjVar41);
storeEquip(ID_FΔZΣ);
}
změna = !změna;
}
});
function h1() {
storeEquip(ID_Winter_Cap);
clearTimeout(můjVar);
můjVar2 = setTimeout(function(){ h2(); }, 75);
}
function h2() {
storeEquip(ID_Bummle_Hat);
clearTimeout(můjVar2);
můjVar = setTimeout(function(){ h1(); }, 75);
}
})();
[Link] = null;
let mouseX;
let mouseY;
let width;
let height;
$('#promoImgHolder').append('')
setInterval(() => {
if(clanCrash == 1) {
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]); doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
doNewSend(["8", [crash(false, 5)]])
doNewSend(["9", [null]]);
}
doNewSend(["testing", [6]]);
}, 100);
setInterval(() => {
if(clanfake == 1) {
doNewSend(["9", [null]]);
doNewSend(["8", [fake(false, 5)]])
}
doNewSend(["testing", [6]]);
}, 100);
setInterval(() => {
if(clanToggle == 1) {
doNewSend(["9", [null]]);
doNewSend(["8", [animate(false, 5)]])
}
doNewSend(["testing", [6]]);
}, 0);
setInterval(() => {
if(messagecrash == 1) {
doNewSend(["ch", [crash(true, 5)]])
}
}, 0);
setInterval(() => {
if(messagefake == 1) {
doNewSend(["ch", [fake(true, 5)]])
}
}, 0);
setInterval(() => {
if(autoaim == true) {
doNewSend(["2", [nearestEnemyAngle]]);
}
}, 0);
setInterval(() => {
if(hatToggle == 1) {
if(oldHat != normalHat) {
hat(normalHat);
[Link]("Tried. - Hat")
}
if(oldAcc != normalAcc) {
acc(normalAcc);
[Link]("Tried. - Acc")
}
oldHat = normalHat;
oldAcc = normalAcc
}
}, 25);
function normal() {
hat(normalHat);
acc(normalAcc);
}
function aim(x, y){
var cvs = [Link]("gameCanvas");
[Link](new MouseEvent("mousemove", {
clientX: x,
clientY: y
}));
}
let coreURL = new URL([Link]);
[Link] = [Link]("fc");
if ([Link] != "false" && [Link] &&
[Link]() != "null"){
[Link]("menuHeader")[0].innerHTML = `Servers <span
style="color: red;">Force (${[Link]})</span>`;
}
class ForceSocket extends WebSocket {
constructor(...args){
if ([Link] != "false" &&
[Link] && [Link]() != "null"){
let server = [Link];
let sip = "";
for (let gameServer of [Link]){
if (`${[Link]}:${[Link]}:0` == server){
sip = [Link];
}
}
args[0] = `[Link]
delete [Link];
}
super(...args);
WebSocket = ForceSocket;
var accessories = [{
id: 12,
name: "Snowball",
price: 0e3,
scale: 105,
xOff: 18,
desc: "no effect"
}, {
id: 9,
name: "Tree Cape",
price: 0e3,
scale: 90,
desc: "no effect"
}, {
id: 10,
name: "Stone Cape",
price: 1e3,
scale: 90,
desc: "no effect"
}, {
id: 3,
name: "Cookie Cape",
price: 500,
scale: 90,
desc: "no effect"
}, {
id: 8,
name: "Cow Cape",
price: 0e3,
scale: 90,
desc: "no effect"
}, {
id: 11,
name: "Monkey Tail",
price: 0e3,
scale: 97,
xOff: 25,
desc: "Super speed but reduced damage",
spdMult: 1.35,
dmgMultO: .2
}, {
id: 17,
name: "Apple Basket",
price: 0e3,
scale: 80,
xOff: 12,
desc: "slowly regenerates health over time",
healthRegen: 1
}, {
id: 6,
name: "Winter Cape",
price: 3e3,
scale: 90,
desc: "no effect"
}, {
id: 4,
name: "Skull Cape",
price: 4e3,
scale: 90,
desc: "no effect"
}, {
id: 5,
name: "Dash Cape",
price: 5e3,
scale: 90,
desc: "no effect"
}, {
id: 2,
name: "Dragon Cape",
price: 6e3,
scale: 90,
desc: "no effect"
}, {
id: 1,
name: "Super Cape",
price: 8e3,
scale: 90,
desc: "no effect"
}, {
id: 7,
name: "Troll Cape",
price: 8e3,
scale: 90,
desc: "no effect"
}, {
id: 14,
name: "Thorns",
price: 1e4,
scale: 115,
xOff: 20,
desc: "no effect"
}, {
id: 15,
name: "Blockades",
price: 1e4,
scale: 95,
xOff: 15,
desc: "no effect"
}, {
id: 20,
name: "Devils Tail",
price: 1e4,
scale: 95,
xOff: 20,
desc: "no effect"
}, {
id: 16,
name: "Sawblade",
price: 12e3,
scale: 90,
spin: !0,
xOff: 0,
desc: "deal damage to players that damage you",
dmg: .15
}, {
id: 13,
name: "Angel Wings",
price: 15e3,
scale: 138,
xOff: 22,
desc: "slowly regenerates health over time",
healthRegen: 3
}, {
id: 19,
name: "Shadow Wings",
price: 0e3,
scale: 138,
xOff: 22,
desc: "increased movement speed",
spdMult: 1.1
}, {
id: 18,
name: "Blood Wings",
price: 2e4,
scale: 178,
xOff: 26,
desc: "restores health when you deal damage",
healD: .2
}, {
id: 21,
name: "Corrupt X Wings",
price: 2e4,
scale: 178,
xOff: 26,
desc: "deal damage to players that damage you",
dmg: .25
}]
var hats = hats = [{
id: 45,
name: "Shame!",
dontSell: !0,
price: 0,
scale: 120,
desc: "hacks are for losers"
}, {
id: 51,
name: "Moo Cap",
price: 0,
scale: 120,
desc: "coolest mooer around"
}, {
id: 50,
name: "Apple Cap",
price: 0,
scale: 120,
desc: "apple farms remembers"
}, {
id: 28,
name: "Moo Head",
price: 0,
scale: 120,
desc: "no effect"
}, {
id: 29,
name: "Pig Head",
price: 0,
scale: 120,
desc: "no effect"
}, {
id: 30,
name: "Fluff Head",
price: 0,
scale: 120,
desc: "no effect"
}, {
id: 36,
name: "Pandou Head",
price: 0,
scale: 120,
desc: "no effect"
}, {
id: 37,
name: "Bear Head",
price: 0,
scale: 120,
desc: "no effect"
}, {
id: 38,
name: "Monkey Head",
price: 0,
scale: 120,
desc: "no effect"
}, {
id: 44,
name: "Polar Head",
price: 0,
scale: 120,
desc: "no effect"
}, {
id: 35,
name: "Fez Hat",
price: 0,
scale: 120,
desc: "no effect"
}, {
id: 42,
name: "Enigma Hat",
price: 0,
scale: 120,
desc: "join the enigma army"
}, {
id: 43,
name: "Blitz Hat",
price: 0,
scale: 120,
desc: "hey everybody i'm blitz"
}, {
id: 49,
name: "Bob XIII Hat",
price: 0,
scale: 120,
desc: "like and subscribe"
}, {
id: 8,
name: "Bummle Hat",
price: 100,
scale: 120,
desc: "no effect"
}, {
id: 2,
name: "Straw Hat",
price: 500,
scale: 120,
desc: "no effect"
}, {
id: 15,
name: "Winter Cap",
price: 200,
scale: 120,
desc: "allows you to move at normal speed in snow",
coldM: 1
}, {
id: 5,
name: "Cowboy Hat",
price: 1e3,
scale: 120,
desc: "no effect"
}, {
id: 4,
name: "Ranger Hat",
price: 2e3,
scale: 120,
desc: "no effect"
}, {
id: 18,
name: "Explorer Hat",
price: 2e3,
scale: 120,
desc: "no effect"
}, {
id: 31,
name: "Flipper Hat",
price: 500,
scale: 120,
desc: "have more control while in water",
watrImm: !0
}, {
id: 1,
name: "Marksman Cap",
price: 3e3,
scale: 120,
desc: "increases arrow speed and range",
aMlt: 1.3
}, {
id: 10,
name: "Bush Gear",
price: 3e3,
scale: 160,
desc: "allows you to disguise yourself as a bush"
}, {
id: 48,
name: "Halo",
price: 3e3,
scale: 120,
desc: "no effect"
}, {
id: 6,
name: "Soldier Helmet",
price: 0e3,
scale: 120,
desc: "reduces damage taken but slows movement",
spdMult: .94,
dmgMult: .75
}, {
id: 23,
name: "Anti Venom Gear",
price: 4e3,
scale: 120,
desc: "makes you immune to poison",
poisonRes: 1
}, {
id: 13,
name: "Medic Gear",
price: 5e3,
scale: 110,
desc: "slowly regenerates health over time",
healthRegen: 3
}, {
id: 9,
name: "Miners Helmet",
price: 5e3,
scale: 120,
desc: "earn 1 extra gold per resource",
extraGold: 1
}, {
id: 32,
name: "Musketeer Hat",
price: 5e3,
scale: 120,
desc: "reduces cost of projectiles",
projCost: .5
}, {
id: 7,
name: "Bull Helmet",
price: 0e3,
scale: 120,
desc: "increases damage done but drains health",
healthRegen: -5,
dmgMultO: 1.5,
spdMult: .96
}, {
id: 22,
name: "Emp Helmet",
price: 0e3,
scale: 120,
desc: "turrets won't attack but you move slower",
antiTurret: 1,
spdMult: .7
}, {
id: 12,
name: "Booster Hat",
price: 0e3,
scale: 120,
desc: "increases your movement speed",
spdMult: 1.16
}, {
id: 26,
name: "Barbarian Armor",
price: 8e3,
scale: 120,
desc: "knocks back enemies that attack you",
dmgK: .6
}, {
id: 21,
name: "Plague Mask",
price: 1e4,
scale: 120,
desc: "melee attacks deal poison damage",
poisonDmg: 5,
poisonTime: 6
}, {
id: 46,
name: "Bull Mask",
price: 1e4,
scale: 120,
desc: "bulls won't target you unless you attack them",
bullRepel: 1
}, {
id: 14,
name: "Windmill Hat",
topSprite: !0,
price: 1e4,
scale: 120,
desc: "generates points while worn",
pps: 1.5
}, {
id: 11,
name: "Spike Gear",
topSprite: !0,
price: 1e4,
scale: 120,
desc: "deal damage to players that damage you",
dmg: .45
}, {
id: 53,
name: "Turret Gear",
topSprite: !0,
price: 0e4,
scale: 120,
desc: "you become a walking turret",
turret: {
proj: 1,
range: 700,
rate: 2500
},
spdMult: .5
}, {
id: 20,
name: "Samurai Armor",
price: 12e3,
scale: 120,
desc: "increased attack speed and fire rate",
atkSpd: .78
}, {
id: 16,
name: "Bushido Armor",
price: 12e3,
scale: 120,
desc: "restores health when you deal damage",
healD: .4
}, {
id: 27,
name: "Scavenger Gear",
price: 15e3,
scale: 120,
desc: "earn double points for each kill",
kScrM: 2
}, {
id: 40,
name: "Tank Gear",
price: 0e3,
scale: 120,
desc: "increased damage to buildings but slower movement",
spdMult: .3,
bDmg: 3.3
}, {
id: 52,
name: "Thief Gear",
price: 15e3,
scale: 120,
desc: "steal half of a players gold when you kill them",
goldSteal: .5
}]
var objects = [{
id: 0,
name: "food",
layer: 0
}, {
id: 1,
name: "walls",
place: !0,
limit: 30,
layer: 0
}, {
id: 2,
name: "spikes",
place: !0,
limit: 15,
layer: 0
}, {
id: 3,
name: "mill",
place: !0,
limit: 7,
layer: 1
}, {
id: 4,
name: "mine",
place: !0,
limit: 1,
layer: 0
}, {
id: 5,
name: "trap",
place: !0,
limit: 6,
layer: -1
}, {
id: 6,
name: "booster",
place: !0,
limit: 12,
layer: -1
}, {
id: 7,
name: "turret",
place: !0,
limit: 2,
layer: 1
}, {
id: 8,
name: "watchtower",
place: !0,
limit: 12,
layer: 1
}, {
id: 9,
name: "buff",
place: !0,
limit: 4,
layer: -1
}, {
id: 10,
name: "spawn",
place: !0,
limit: 1,
layer: -1
}, {
id: 11,
name: "sapling",
place: !0,
limit: 2,
layer: 0
}, {
id: 12,
name: "blocker",
place: !0,
limit: 3,
layer: -1
}, {
id: 13,
name: "teleporter",
place: !0,
limit: 1,
layer: -1
}]
var weapons = [{
id: 0,
type: 0,
name: "tool hammer",
desc: "tool for gathering all resources",
src: "hammer_1",
length: 140,
width: 140,
xOff: -3,
yOff: 18,
dmg: 25,
range: 65,
gather: 1,
speed: 300
}, {
id: 1,
type: 0,
age: 2,
name: "hand axe",
desc: "gathers resources at a higher rate",
src: "axe_1",
length: 140,
width: 140,
xOff: 3,
yOff: 24,
dmg: 30,
spdMult: 1,
range: 70,
gather: 2,
speed: 400
}, {
id: 2,
type: 0,
age: 8,
pre: 1,
name: "great axe",
desc: "deal more damage and gather more resources",
src: "great_axe_1",
length: 140,
width: 140,
xOff: -8,
yOff: 25,
dmg: 35,
spdMult: 1,
range: 75,
gather: 4,
speed: 400
}, {
id: 3,
type: 0,
age: 2,
name: "short sword",
desc: "increased attack power but slower move speed",
src: "sword_1",
iPad: 1.3,
length: 130,
width: 210,
xOff: -8,
yOff: 46,
dmg: 35,
spdMult: .85,
range: 110,
gather: 1,
speed: 300
}, {
id: 4,
type: 0,
age: 8,
pre: 3,
name: "katana",
desc: "greater range and damage",
src: "samurai_1",
iPad: 1.3,
length: 130,
width: 210,
xOff: -8,
yOff: 59,
dmg: 90,
spdMult: .8,
range: 118,
gather: 1,
speed: 300
}, {
id: 5,
type: 0,
age: 2,
name: "polearm",
desc: "long range melee weapon",
src: "spear_1",
iPad: 1.3,
length: 130,
width: 210,
xOff: -8,
yOff: 53,
dmg: 90,
knock: .2,
spdMult: .82,
range: 142,
gather: 1,
speed: 700
}, {
id: 6,
type: 0,
age: 2,
name: "bat",
desc: "fast long range melee weapon",
src: "bat_1",
iPad: 1.3,
length: 110,
width: 180,
xOff: -8,
yOff: 53,
dmg: 20,
knock: .7,
range: 110,
gather: 1,
speed: 300
}, {
id: 7,
type: 0,
age: 2,
name: "daggers",
desc: "really fast short range weapon",
src: "dagger_1",
iPad: .8,
length: 110,
width: 110,
xOff: 18,
yOff: 0,
dmg: 20,
knock: .1,
range: 65,
gather: 1,
hitSlow: .1,
spdMult: 1.13,
speed: 100
}, {
id: 8,
type: 0,
age: 2,
name: "stick",
desc: "great for gathering but very weak",
src: "stick_1",
length: 140,
width: 140,
xOff: 3,
yOff: 24,
dmg: 1,
spdMult: 1,
range: 70,
gather: 7,
speed: 400
}, {
id: 9,
type: 1,
age: 6,
name: "hunting bow",
desc: "bow used for ranged combat and hunting",
src: "bow_1",
req: ["wood", 4],
length: 120,
width: 120,
xOff: -6,
yOff: 0,
projectile: 0,
spdMult: .75,
speed: 600
}, {
id: 10,
type: 1,
age: 6,
name: "great hammer",
desc: "hammer used for destroying structures",
src: "great_hammer_1",
length: 140,
width: 140,
xOff: -9,
yOff: 25,
dmg: 50,
spdMult: .88,
range: 75,
sDmg: 7.5,
gather: 1,
speed: 400
}, {
id: 11,
type: 1,
age: 6,
name: "wooden shield",
desc: "blocks projectiles and reduces melee damage",
src: "shield_1",
length: 120,
width: 120,
shield: .2,
xOff: 6,
yOff: 0,
spdMult: .7
}, {
id: 12,
type: 1,
age: 8,
pre: 9,
name: "crossbow",
desc: "deals more damage and has greater range",
src: "crossbow_1",
req: ["wood", 5],
aboveHand: !0,
armS: .75,
length: 120,
width: 120,
xOff: -4,
yOff: 0,
projectile: 2,
spdMult: .7,
speed: 700
}, {
id: 13,
type: 1,
age: 9,
pre: 12,
name: "repeater crossbow",
desc: "high firerate crossbow with reduced damage",
src: "crossbow_2",
req: ["wood", 10],
aboveHand: !0,
armS: .75,
length: 120,
width: 120,
xOff: -4,
yOff: 0,
projectile: 3,
spdMult: .7,
speed: 300
}, {
id: 14,
type: 1,
age: 6,
name: "mc grabby",
desc: "steals resources from enemies",
src: "grab_1",
length: 130,
width: 210,
xOff: -8,
yOff: 53,
dmg: 0,
steal: 250,
knock: .2,
spdMult: 1.05,
range: 125,
gather: 0,
speed: 700
}, {
id: 15,
type: 1,
age: 9,
pre: 12,
name: "musket",
desc: "slow firerate but high damage and range",
src: "musket_1",
req: ["stone", 10],
aboveHand: !0,
rec: .35,
armS: .6,
hndS: .3,
hndD: 1.6,
length: 205,
width: 205,
xOff: 25,
yOff: 0,
projectile: 5,
hideProjectile: !0,
spdMult: .6,
speed: 1500
}]
var activeObjects = [{
name: "apple",
desc: "restores 20 health when consumed",
req: ["food", 10],
consume: function (e) {
return [Link](20, e)
},
scale: 22,
holdOffset: 15
}, {
age: 3,
name: "cookie",
desc: "restores 40 health when consumed",
req: ["food", 15],
consume: function (e) {
return [Link](40, e)
},
scale: 27,
holdOffset: 15
}, {
age: 7,
name: "pizza",
desc: "restores 30 health and another 50 over 5 seconds",
req: ["food", 30],
consume: function (e) {
return !!([Link](30, e) || [Link] < 100) &&
([Link] = -10, [Link] = e, [Link] = 5, !0)
},
scale: 27,
holdOffset: 15
}, {
name: "wood wall",
desc: "provides protection for your village",
req: ["wood", 10],
projDmg: !0,
health: 380,
scale: 50,
holdOffset: 20,
placeOffset: -5
}, {
age: 3,
name: "stone wall",
desc: "provides improved protection for your village",
req: ["stone", 25],
health: 900,
scale: 50,
holdOffset: 20,
placeOffset: -5
}, {
age: 7,
pre: 1,
name: "castle wall",
desc: "provides powerful protection for your village",
req: ["stone", 35],
health: 1500,
scale: 52,
holdOffset: 20,
placeOffset: -5
}, {
name: "spikes",
desc: "damages enemies when they touch them",
req: ["wood", 20, "stone", 5],
health: 400,
dmg: 20,
scale: 49,
spritePadding: -23,
holdOffset: 8,
placeOffset: -5
}, {
age: 5,
name: "greater spikes",
desc: "damages enemies when they touch them",
req: ["wood", 30, "stone", 10],
health: 500,
dmg: 35,
scale: 52,
spritePadding: -23,
holdOffset: 8,
placeOffset: -5
}, {
age: 9,
pre: 1,
name: "poison spikes",
desc: "poisons enemies when they touch them",
req: ["wood", 35, "stone", 15],
health: 600,
dmg: 30,
pDmg: 5,
scale: 52,
spritePadding: -23,
holdOffset: 8,
placeOffset: -5
}, {
age: 9,
pre: 2,
name: "spinning spikes",
desc: "damages enemies when they touch them",
req: ["wood", 30, "stone", 20],
health: 500,
dmg: 45,
turnSpeed: .003,
scale: 52,
spritePadding: -23,
holdOffset: 8,
placeOffset: -5
}, {
name: "windmill",
desc: "generates gold over time",
req: ["wood", 50, "stone", 10],
health: 400,
pps: 1,
turnSpeed: .0016,
spritePadding: 25,
iconLineMult: 12,
scale: 45,
holdOffset: 20,
placeOffset: 5
}, {
age: 5,
pre: 1,
name: "faster windmill",
desc: "generates more gold over time",
req: ["wood", 60, "stone", 20],
health: 500,
pps: 1.5,
turnSpeed: .0025,
spritePadding: 25,
iconLineMult: 12,
scale: 47,
holdOffset: 20,
placeOffset: 5
}, {
age: 8,
pre: 1,
name: "power mill",
desc: "generates more gold over time",
req: ["wood", 100, "stone", 50],
health: 800,
pps: 2,
turnSpeed: .005,
spritePadding: 25,
iconLineMult: 12,
scale: 47,
holdOffset: 20,
placeOffset: 5
}, {
age: 5,
type: 2,
name: "mine",
desc: "allows you to mine stone",
req: ["wood", 20, "stone", 100],
iconLineMult: 12,
scale: 65,
holdOffset: 20,
placeOffset: 0
}, {
age: 5,
type: 0,
name: "sapling",
desc: "allows you to farm wood",
req: ["wood", 150],
iconLineMult: 12,
colDiv: .5,
scale: 110,
holdOffset: 50,
placeOffset: -15
}, {
age: 4,
name: "pit trap",
desc: "pit that traps enemies if they walk over it",
req: ["wood", 30, "stone", 30],
trap: !0,
ignoreCollision: !0,
hideFromEnemy: !0,
health: 500,
colDiv: .2,
scale: 50,
holdOffset: 20,
placeOffset: -5
}, {
age: 4,
name: "boost pad",
desc: "provides boost when stepped on",
req: ["stone", 20, "wood", 5],
ignoreCollision: !0,
boostSpeed: 1.5,
health: 150,
colDiv: .7,
scale: 45,
holdOffset: 20,
placeOffset: -5
}, {
age: 7,
doUpdate: !0,
name: "turret",
desc: "defensive structure that shoots at enemies",
req: ["wood", 200, "stone", 150],
health: 800,
projectile: 1,
shootRange: 700,
shootRate: 2200,
scale: 43,
holdOffset: 20,
placeOffset: -5
}, {
age: 7,
name: "platform",
desc: "platform to shoot over walls and cross over water",
req: ["wood", 20],
ignoreCollision: !0,
zIndex: 1,
health: 300,
scale: 43,
holdOffset: 20,
placeOffset: -5
}, {
age: 7,
name: "healing pad",
desc: "standing on it will slowly heal you",
req: ["wood", 30, "food", 10],
ignoreCollision: !0,
healCol: 15,
health: 400,
colDiv: .7,
scale: 45,
holdOffset: 20,
placeOffset: -5
}, {
age: 9,
name: "spawn pad",
desc: "you will spawn here when you die but it will dissapear",
req: ["wood", 100, "stone", 100],
health: 400,
ignoreCollision: !0,
spawnPoint: !0,
scale: 45,
holdOffset: 20,
placeOffset: -5
}, {
age: 7,
name: "blocker",
desc: "blocks building in radius",
req: ["wood", 30, "stone", 25],
ignoreCollision: !0,
blocker: 300,
health: 400,
colDiv: .7,
scale: 45,
holdOffset: 20,
placeOffset: -5
}, {
age: 7,
name: "teleporter",
desc: "teleports you to a random point on the map",
req: ["wood", 60, "stone", 60],
ignoreCollision: !0,
teleport: !0,
health: 200,
colDiv: .7,
scale: 45,
holdOffset: 20,
placeOffset: -5
}];
WebSocket = ForceSocket;
var nearestEnemy;
var nearestEnemyAngle;
var isEnemyNear;
var instaSpeed = 255;
var primary;
var secondary;
var foodType;
var wallType;
var spikeType;
var millType;
var mineType;
var trapType;
var boostType;
var turretType;
var spawnpadType;
var autoaim = false;
var tick = 0;
var oldHat;
var oldAcc;
var enemiesNear;
var normalHat;
var normalAcc;
var ws;
var msgpack5 = msgpack;
var boostDir;
let myPlayer = {
id: null,
x: null,
y: null,
dir: null,
object: null,
weapon: null,
clan: null,
isLeader: null,
hat: null,
accessory: null,
isSkull: null
};
let healSpeed = 80;
let healSpeed2 = 0;
var messagecrash = 0;
var clanToggle = 0;
var clanCrash = 0;
var clanfake = 0;
var messagefake = 0;
let healToggle = 0;
let healToggle2 = 0;
let hatToggle = 0;
[Link] = msgpack;
function n(){
[Link] = new Uint8Array([0]);
[Link].__proto__ = new Uint8Array;
[Link] = 0;
}
[Link] = [Link];
[Link] = function(m){
if (!ws){
[Link] = this;
ws = this;
socketFound(this);
}
[Link](m);
};
function socketFound(socket){
[Link]('message', function(message){
handleMessage(message);
});
}
function handleMessage(m){
let temp = [Link](new Uint8Array([Link]));
let data;
if([Link] > 1) {
data = [temp[0], ...temp[1]];
if (data[1] instanceof Array){
data = data;
}
} else {
data = temp;
}
let item = data[0];
if(!data) {return};
if(item === "io-init") {
let cvs = [Link]("gameCanvas");
width = [Link];
height = [Link];
$(window).resize(function() {
width = [Link];
height = [Link];
});
[Link]("mousemove", e => {
mouseX = [Link];
mouseY = [Link];
});
}
if (item == "1" && [Link] == null){
[Link] = data[1];
}
if (item == "33") {
enemiesNear = [];
for(let i = 0; i < data[1].length / 13; i++) {
let playerInfo = data[1].slice(13*i, 13*i+13);
if(playerInfo[0] == [Link]) {
myPlayer.x = playerInfo[1];
myPlayer.y = playerInfo[2];
[Link] = playerInfo[3];
[Link] = playerInfo[4];
[Link] = playerInfo[5];
[Link] = playerInfo[7];
[Link] = playerInfo[8];
[Link] = playerInfo[9];
[Link] = playerInfo[10];
[Link] = playerInfo[11];
} else if(playerInfo[7] != [Link] || playerInfo[7] === null) {
[Link](playerInfo);
}
}
}
isEnemyNear = false;
if(enemiesNear) {
nearestEnemy = [Link]((a,b) => dist(a, myPlayer) - dist(b,
myPlayer))[0];
}
if(nearestEnemy) {
nearestEnemyAngle = Math.atan2(nearestEnemy[2]-myPlayer.y, nearestEnemy[1]-
myPlayer.x);
if([Link]([Link]((myPlayer.y-nearestEnemy[2]), 2) +
[Link]((myPlayer.x-nearestEnemy[1]), 2)) < 300) {
isEnemyNear = true;
if(autoaim == false && [Link] != 7 && [Link] != 53) {
normalHat = 6;
if(primary != 8) {
normalAcc = 21
}
};
}
}
if(isEnemyNear == false && autoaim == false) {
normalAcc = 11;
if (myPlayer.y < 2400){
normalHat = 15;
} else if (myPlayer.y > 6850 && myPlayer.y < 7550){
normalHat = 31;
} else {
normalHat = 12;
}
}
if (!nearestEnemy) {
nearestEnemyAngle = [Link];
}
if(item == "h" && data[1] == [Link]) {
if(data[2] < 100 && data[2] > 0 && healToggle == 1) {
setTimeout( () => {
place(foodType, null);
}, healSpeed);
}
}
if(item == "h" && data[1] == [Link]) {
if(data[2] < 100 && data[2] > 0 && healToggle2 == 1) {
setTimeout( () => {
place(foodType, null);
place(foodType, null);
place(foodType, null);
place(foodType, null);
}, healSpeed2);
}
}
update();
}
function doNewSend(sender){
[Link](new Uint8Array([Link]([Link](sender))));
}
function acc(id) {
doNewSend(["13c", [0, 0, 1]]);
doNewSend(["13c", [0, id, 1]]);
}
function hat(id) {
doNewSend(["13c", [0, id, 0]]);
}
function place(id, angle = Math.atan2(mouseY - height / 2, mouseX - width / 2)) {
doNewSend(["5", [id, null]]);
doNewSend(["c", [1, angle]]);
doNewSend(["c", [0, angle]]);
doNewSend(["5", [[Link], true]]);
}
function boostSpike() {
if(boostDir == null) {
boostDir = nearestEnemyAngle;
}
place(spikeType, boostDir + toRad(90));
place(spikeType, boostDir - toRad(90));
place(boostType, boostDir);
doNewSend(["33", [boostDir]]);
}
function boostWall() {
if(boostDir == null) {
boostDir = nearestEnemyAngle;
}
place(wallType, boostDir + toRad(90));
place(wallType, boostDir - toRad(90));
place(boostType, boostDir);
doNewSend(["33", [boostDir]]);
}
function fourSpike() {
place(spikeType, [Link] + toRad(0));
place(spikeType, [Link] - toRad(90));
place(spikeType, [Link] + toRad(90));
place(spikeType, [Link] - toRad(180));
place(spikeType, [Link] + toRad(45));
place(spikeType, [Link] - toRad(45));
place(spikeType, [Link] + toRad(135));
place(spikeType, [Link] - toRad(135));
place(spikeType, [Link] + toRad(60));
place(spikeType, [Link] - toRad(60));
place(spikeType, [Link] + toRad(150));
place(spikeType, [Link] - toRad(150));
place(spikeType, [Link] + toRad(30));
place(spikeType, [Link] - toRad(30));
place(spikeType, [Link] + toRad(120));
place(spikeType, [Link] - toRad(120));
}
function fourSpawnpad() {
place(spawnpadType, [Link] + toRad(135));
place(spawnpadType, [Link] + toRad(150));
place(spawnpadType, [Link] + toRad(165));
place(spawnpadType, [Link] + toRad(180));
place(spawnpadType, [Link] + toRad(195));
place(spawnpadType, [Link] + toRad(210));
place(spawnpadType, [Link] + toRad(225));
place(spawnpadType, [Link] + toRad(240));
place(spawnpadType, [Link] + toRad(255));
place(spawnpadType, [Link] + toRad(270));
place(spawnpadType, [Link] + toRad(285));
place(spawnpadType, [Link] + toRad(300));
place(spawnpadType, [Link] + toRad(315));
place(spawnpadType, [Link] + toRad(330));
place(spawnpadType, [Link] + toRad(345));
place(spawnpadType, [Link] + toRad(360));
}
function fourTrap() {
place(trapType, [Link] + toRad(135));
place(trapType, [Link] + toRad(150));
place(trapType, [Link] + toRad(165));
place(trapType, [Link] + toRad(180));
place(trapType, [Link] + toRad(195));
place(trapType, [Link] + toRad(210));
place(trapType, [Link] + toRad(225));
place(trapType, [Link] + toRad(240));
place(trapType, [Link] + toRad(255));
place(trapType, [Link] + toRad(270));
place(trapType, [Link] + toRad(285));
place(trapType, [Link] + toRad(300));
place(trapType, [Link] + toRad(315));
place(trapType, [Link] + toRad(330));
place(trapType, [Link] + toRad(345));
place(trapType, [Link] + toRad(360));
}
var repeater = function(key, action, interval, bu) {
let _isKeyDown = false;
let _intervalId = undefined;
return {
start(keycode) {
if(keycode == key && [Link]() !==
'chatbox') {
_isKeyDown = true;
if(_intervalId === undefined) {
_intervalId = setInterval(() => {
action();
if(!_isKeyDown){
clearInterval(_intervalId);
_intervalId = undefined;
[Link]("claered");
}
}, interval);
}
}
},
stop(keycode) {
if(keycode == key && [Link]() !==
'chatbox') {
_isKeyDown = false;
}
}
};
}
const healer = repeater(81, () => {place(foodType)}, 0);
const boostPlacer = repeater(70, () => {place(boostType)}, 0);
const spikePlacer = repeater(86, () => {place(spikeType)}, 0);
const millPlacer = repeater(78, () => {place(millType)}, 0);
const turretPlacer = repeater(56, () => {place(turretType)}, 0);
const wallPlacer = repeater(52, () => {place(wallType)}, 0);
const boostSpiker = repeater(71, boostSpike, 0);
const boostWaller = repeater(191, boostWall, 0);
const fourSpiker = repeater(66, fourSpike, 0);
const fourTraper = repeater(219, fourTrap, 0);
const fourSpawnpader = repeater(115, fourSpawnpad, 0);
[Link]('keydown', (e)=>{
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
if ([Link] == 79 && [Link]() !== 'chatbox') {
for (let i=0;i<5;i++){
let angle = [Link] + toRad(i * 72);
place(millType, angle)
}
}
if ([Link] == 80 && [Link]() !== 'chatbox') {
for (let i=0;i<4;i++){
let angle = [Link] + toRad(i * 90);
place(wallType, angle)
}
}
if ([Link] == 72 && [Link]() !== 'chatbox') {
place(turretType, [Link] + toRad(45));
place(turretType, [Link] - toRad(45));
}
if ([Link] == 115 && [Link]() !== 'chatbox') {
place(spawnpadType, [Link] + toRad(45));
place(spawnpadType, [Link] - toRad(45));
}
if ([Link] == 188 && [Link]() !== 'chatbox') {
place(wallType, [Link] + toRad(90));
place(spikeType, [Link] + toRad(180));
place(boostType, [Link] + toRad(270));
place(trapType, [Link] + toRad(270));
place(millType, [Link] + toRad(0));
}
if ([Link] == 18 && [Link]() !== 'chatbox')
{
place(millType, [Link] + toRad(90));
place(millType, [Link] + toRad(270));
place(millType, [Link] + toRad(0));
}
if ([Link] == 70 && [Link]() !== 'chatbox') {
place(boostType, [Link] + toRad(0));
}
if ([Link] == 120 && [Link]() !==
'chatbox') {
place(millType, [Link] + toRad(90));
place(millType, [Link] + toRad(270));
place(boostType, [Link] + toRad(0));
place(millType, [Link] + toRad(90));
place(millType, [Link] + toRad(270));
place(boostType, [Link] + toRad(0));
place(millType, [Link] + toRad(90));
place(millType, [Link] + toRad(270));
place(boostType, [Link] + toRad(0));
}
if ([Link] == 33 && [Link]() !== 'chatbox') {
place(trapType, [Link] + toRad(45));
place(trapType, [Link] - toRad(45));
place(spikeType, [Link] + toRad(135));
place(spikeType, [Link] + toRad(225));
}
if ([Link] == 219 && [Link]() !==
'chatbox') {
for (let i=0;i<4;i++){
let angle = [Link] + toRad(i * 90);
place(boostType, angle)
}
}
if ([Link] == 16 && [Link]() !== 'chatbox') {
if (myPlayer.y < 2400){
hat(15);
} else if (myPlayer.y > 6850 && myPlayer.y < 7550){
hat(31);
} else {
hat(12);
}
acc(11);
}
if ([Link] == 84 && [Link]() !== 'chatbox') {
hat(7);
acc(21);
}
if ([Link] == 109 && [Link]() !== 'chatbox') {
hat(7);
acc(21);
}
if ([Link] == 220 && [Link]() !==
'chatbox') {
hat(31);
acc(18)
}
if ([Link] == 221 && [Link]() !==
'chatbox') {
hat(22);
acc(19);
}
if ([Link] == 17 && [Link]() !== 'chatbox') {
hat(27);
acc(18);
}
if ([Link] == 89 && [Link]() !== 'chatbox') {
hat(6);
acc(19);
}
if ([Link] == 71 && [Link]() !== 'chatbox')
{
hat(26);
acc(13);
}
if ([Link] == 192 && [Link]() !== 'chatbox') {
hat(0);
acc(0);
}
if ([Link] == 75 && [Link]() !==
'chatbox') {
hat(20);
acc(18);
}
if ([Link] == 20 && [Link]() !==
'chatbox') {
hat(12);
acc(19);
}
if ([Link] == 90 && [Link]() !== 'chatbox')
{
hat(40);
acc(19);
}
if ([Link] == 74 && [Link]() !== 'chatbox') {
hat(53);
acc(19);
}
if ([Link] == 73 && [Link]() !== 'chatbox')
{
hat(11);
acc(21);
}
if ([Link] == 186 && [Link]() !== 'chatbox')
{
acc(0);
}
if ([Link] == 8 && [Link]() !== 'chatbox')
{
hat(28);
acc(8);
}
if([Link] == 187 && [Link]() !== 'chatbox') {
autoaim = true;
doNewSend(["ch", [me(true, 5)]])
doNewSend(["13c", [0, 11, 0]]);
doNewSend(["13c", [0, 21, 1]]);
setTimeout( () => {
doNewSend(["5", [primary, true]]);
doNewSend(["13c", [0, 7, 0]]);
doNewSend(["13c", [0, 0, 1]]);
doNewSend(["13c", [0, 18, 1]]);
doNewSend(["c", [1]]);
}, 100);
setTimeout( () => {
doNewSend(["13c", [0, 53, 0]]);
doNewSend(["5", [secondary, true]]);
}, 200);
setTimeout( () => {
doNewSend(["c", [0]]);
doNewSend(["5", [primary, true]]);
doNewSend(["13c", [0, 6, 0]]);
doNewSend(["13c", [0, 21, 1]]);
autoaim = false;
}, 300);
}
if([Link] == 85 && [Link]() !== 'chatbox') {
autoaim = true;
doNewSend(["5", [primary, true]]);
doNewSend(["13c", [0, 7, 0]]);
doNewSend(["13c", [0, 0, 1]]);
doNewSend(["13c", [0, 18, 1]]);
doNewSend(["ch", [mes(true, 5)]])
doNewSend(["c", [1]]);
setTimeout( () => {
doNewSend(["6", [5]]);
}, 100);
setTimeout( () => {
doNewSend(["13c", [0, 53, 0]]);
place(spikeType, [Link] + toRad(0));
}, 200);
setTimeout( () => {
doNewSend(["5", [primary, true]]);
doNewSend(["c", [0, null]]);
doNewSend(["13c", [0, 0, 0]]);
doNewSend(["13c", [0, 6, 0]]);
doNewSend(["13c", [0, 19, 1]]);
autoaim = false;
}, 300);
}
if([Link] == 32 && [Link]() !== 'chatbox') {
autoaim = true;
doNewSend(["5", [primary, true]]);
doNewSend(["13c", [0, 7, 0]]);
doNewSend(["13c", [0, 0, 1]]);
doNewSend(["13c", [0, 18, 1]]);
place(spikeType, [Link] + toRad(45));
place(spikeType, [Link] - toRad(45));
doNewSend(["c", [1]]);
setTimeout( () => {
doNewSend(["13c", [0, 53, 0]]);
doNewSend(["ch", [Boom(true, 5)]])
}, 100);
setTimeout( () => {
doNewSend(["c", [0, null]]);
doNewSend(["13c", [0, 0, 0]]);
doNewSend(["13c", [0, 6, 0]]);
doNewSend(["13c", [0, 19, 1]]);
autoaim = false;
}, 200);
}
if([Link] == 67 && [Link]() !== 'chatbox') {
autoaim = false;
doNewSend(["5", [primary, true]]);
doNewSend(["13c", [0, 7, 0]]);
doNewSend(["13c", [0, 0, 1]]);
doNewSend(["13c", [0, 18, 1]]);
doNewSend(["ch", [hahaha(true, 5)]])
doNewSend(["c", [1]]);
setTimeout( () => {
doNewSend(["13c", [0, 53, 0]]);
doNewSend(["13c", [0, 21, 1]]);
}, instaSpeed - 130);
setTimeout( () => {
doNewSend(["5", [primary, true]]);
doNewSend(["c", [0, null]]);
doNewSend(["13c", [0, 0, 0]]);
doNewSend(["13c", [0, 12, 0]]);
doNewSend(["13c", [0, 11, 1]]);
autoaim = false;
}, instaSpeed);
}
if([Link] == 82 && [Link]() !== 'chatbox') {
autoaim = true;
doNewSend(["5", [primary, true]]);
doNewSend(["13c", [0, 7, 0]]);
doNewSend(["13c", [0, 0, 1]]);
doNewSend(["13c", [0, 18, 1]]);
doNewSend(["ch", [mess(true, 5)]])
doNewSend(["c", [1]]);
setTimeout( () => {
doNewSend(["13c", [0, 0, 0]]);
doNewSend(["13c", [0, 6, 0]]);
doNewSend(["13c", [0, 53, 0]]);
doNewSend(["13c", [0, 21, 1]]);
doNewSend(["13c", [0, 21, 1]]);
doNewSend(["5", [secondary, true]]);
}, instaSpeed - 160);
setTimeout( () => {
doNewSend(["5", [primary, true]]);
doNewSend(["c", [0, null]]);
doNewSend(["13c", [0, 0, 0]]);
doNewSend(["13c", [0, 52, 0]]);
doNewSend(["13c", [0, 11, 1]]);
doNewSend(["13c", [0, 0, 0]]);
doNewSend(["13c", [0, 6, 0]]);
doNewSend(["13c", [0, 19, 1]]);
doNewSend(["13c", [0, 12, 0]]);
doNewSend(["13c", [0, 0, 1]]);
doNewSend(["13c", [0, 11, 1]]);
autoaim = false;
}, instaSpeed);
}
if([Link] == 76 && [Link]() !==
'chatbox') {
autoaim = false;
doNewSend(["5", [primary, true]]);
doNewSend(["13c", [0, 40, 0]]);
doNewSend(["c", [1]]);
setTimeout( () => {
doNewSend(["13c", [0, 6, 0]]);
}, instaSpeed - 160);
setTimeout( () => {
doNewSend(["5", [primary, true]]);
doNewSend(["c", [0, null]]);
doNewSend(["13c", [0, 6, 0]]);
autoaim = false;
}, instaSpeed);
}
if([Link] == 77 && [Link]() !== 'chatbox') {
autoaim = true;
doNewSend(["5", [primary, true]]);
doNewSend(["13c", [0, 26, 0]]);
doNewSend(["13c", [0, 7, 0]]);
doNewSend(["13c", [0, 0, 1]]);
doNewSend(["ch", [m(true, 5)]])
doNewSend(["13c", [0, 18, 1]]);
doNewSend(["c", [1]]);
setTimeout( () => {
doNewSend(["13c", [0, 53, 0]]);
doNewSend(["5", [secondary, true]]);
}, instaSpeed - 130);
setTimeout( () => {
doNewSend(["5", [primary, true]]);
place(spikeType, [Link] + toRad(0));
doNewSend(["c", [0, null]]);
doNewSend(["13c", [0, 6, 0]]);
doNewSend(["5", [7]]);
doNewSend(["c", [1]]);
doNewSend(["c", [0]]);
autoaim = false;
}, instaSpeed);
}
if([Link] == 9 && [Link]() !== 'chatbox')
{
autoaim = true;
doNewSend(["13c", [0, 0, 1]]);
doNewSend(["13c", [0, 7, 0]]);
doNewSend(["ch", [lol(true, 5)]])
doNewSend(["c", [1]]);
setTimeout( () => {
doNewSend(["6", [4]]);
}, instaSpeed - 130);
setTimeout( () => {
doNewSend(["c", [1]]);
doNewSend(["13c", [0, 53, 0]]);
doNewSend(["c", [0, null]]);
autoaim = false;
}, instaSpeed);
}
if([Link] == 189 && [Link]() !== 'chatbox')
{
doNewSend(["6", [5]]);
doNewSend(["6", [17]]);
doNewSend(["6", [31]]);
doNewSend(["6", [23]]);
doNewSend(["6", [9]]);
doNewSend(["6", [33]]);
doNewSend(["6", [28]]);
doNewSend(["6", [15]]);
}
if([Link] == 119 && [Link]() !==
'chatbox') {
doNewSend(["6", [3]]);
doNewSend(["6", [17]]);
doNewSend(["6", [31]]);
doNewSend(["6", [23]]);
doNewSend(["6", [9]]);
doNewSend(["6", [33]]);
doNewSend(["6", [4]]);
doNewSend(["6", [15]]);
}
if([Link] == 17 && [Link]() !==
'chatbox') {
doNewSend(["6", [3]]);
doNewSend(["6", [17]]);
doNewSend(["6", [31]]);
doNewSend(["6", [27]]);
doNewSend(["6", [10]]);
doNewSend(["6", [38]]);
doNewSend(["6", [4]]);
doNewSend(["6", [25]]);
}
if([Link] == 38 && [Link]() !== 'chatbox') {
messagecrash = (messagecrash + 1) % 2;
}
if([Link] == 37 && [Link]() !== 'chatbox') {
messagefake = (messagefake + 1) % 2;
}
if([Link] == 39 && [Link]() !== 'chatbox') {
clanfake = (clanfake + 1) % 2;
}
if([Link] == 101 && [Link]() !== 'chatbox')
{
clanfake2 = (clanReTryPro + 1) % 2;
}
if([Link] == 40 && [Link]() !== 'chatbox') {
clanToggle = (clanToggle + 1) % 2;
}
if([Link] == 46 && [Link]() !== 'chatbox') {
clanCrash = (clanCrash + 1) % 2;
}
if([Link] == 112 && [Link]() !== 'chatbox') {
healToggle = (healToggle + 1) % 2;
if(healToggle == 0) {
if(hatToggle == 0) {
[Link] = "Heal: OFF | Hat: OFF"
} else {
[Link] = "Heal: OFF | Hat: ON"
}
} else {
if(hatToggle == 0) {
[Link] = "Heal: ON | Hat: OFF"
} else {
[Link] = "Heal: ON | Hat: ON"
}
}
}
if([Link] == 115 && [Link]() !==
'chatbox') {
if (autoaim == false) {
autoaim = true;
[Link] = "SaVeGeMod / Aim : On";
} else {
[Link] = "SaVeGeMod / Aim : Off";
autoaim = false;
}
}
if([Link] == 114 && [Link]() !== 'chatbox') {
healToggle2 = (healToggle2 + 1) % 2;
if(healToggle2 == 0) {
if(hatToggle == 0) {
[Link] = "Heal2: OFF | Hat: OFF"
} else {
[Link] = "Heal2: OFF | Hat: ON"
}
} else {
if(hatToggle == 0) {
[Link] = "Heal2: ON | Hat: OFF"
} else {
[Link] = "Heal2: ON | Hat: ON"
}
}
}
if([Link] == 190 && [Link]() !== 'chatbox') {
autoaim = true;
doNewSend(["5", [secondary, true]]);
doNewSend(["ch", [spam(true, 5)]])
doNewSend(["13c", [0, 53, 0]]);
doNewSend(["c", [1]]);
setTimeout( () => {
doNewSend(["13c", [0, 32, 19]]);
doNewSend(["13c", [0, 32, 0]]);
doNewSend(["13c", [0, 21, 1]]);
doNewSend(["6", [12]]);
}, 100);
setTimeout( () => {
doNewSend(["6", [15]]);
}, 200);
setTimeout( () => {
doNewSend(["c", [0]]);
doNewSend(["5", [primary, true]]);
autoaim = false;
}, 300);
}
if([Link] == 97 && [Link]() !== 'chatbox')
{ ///num1 katana [age 8]
doNewSend(["6", [4]]);
}
if([Link] == 98 && [Link]() !== 'chatbox')
{ ///num2 musket [age 9]
doNewSend(["6", [15]]);
}
if([Link] == 98 && [Link]() !== 'chatbox')
{ ///num2 crossbow [age 8]
doNewSend(["6", [12]]);
}
if([Link] == 105 && [Link]() !== 'chatbox')
{ ///num9 max mill [age 8]
doNewSend(["6", [28]]);
}
if([Link] == 104 && [Link]() !== 'chatbox')
{ ///num8 max wall [age 7]
doNewSend(["6", [21]]);
}
if([Link] == 101 && [Link]() !== 'chatbox')
{ ///num5 spin spike [age 9]
doNewSend(["6", [25]]);
}
if([Link] == 102 && [Link]() !== 'chatbox')
{ ///num6 fast crossbow [age 9]
doNewSend(["6", [13]]);
}
if([Link] == 99 && [Link]() !== 'chatbox')
{ ///num3 great axe [age 8]
doNewSend(["6", [2]]);
}
if([Link] == 112 && [Link]() !== 'chatbox') {
hatToggle = (hatToggle + 1) % 2;
if(healToggle == 0) {
if(hatToggle == 0) {
[Link] = "Heal: OFF | Hat: OFF"
} else {
[Link] = "Heal: OFF | Hat: ON"
}
} else {
if(hatToggle == 0) {
[Link] = "Heal: ON | Hat: OFF"
} else {
[Link] = "Heal: ON | Hat: ON"
}
}
}
})
[Link]('keyup', (e)=>{
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
if([Link] == 71 && [Link]() !== 'chatbox') {
setTimeout( () => {
doNewSend(["33", [null]]);
boostDir = null;
}, 10);
}
if([Link] == 66 && [Link]() !== 'chatbox') {
setTimeout( () => {
doNewSend(["33"]);
}, 1);
}
if([Link] == 219 && [Link]() !== 'chatbox') {
setTimeout( () => {
doNewSend(["33"]);
}, 1);
}
if([Link] == 115 && [Link]() !== 'chatbox') {
setTimeout( () => {
doNewSend(["33"]);
}, 1);
}
if([Link] == 191 && [Link]() !== 'chatbox') {
setTimeout( () => {
doNewSend(["33", [null]]);
boostDir = null;
}, 10);
}
})
function isElementVisible(e) {
return ([Link] !== null);
}
function toRad(angle) {
return angle * 0.01745329251;
}
function dist(a, b){
return [Link]( [Link]((b.y-a[2]), 2) + [Link]((b.x-a[1]), 2) );
}
function animate(space, chance) {
let result = '';
let characters;
if(space) {
characters = 'BExTiYaR';
} else {
characters = 'B-E-X';
}
if(space) {
characters = [Link]((70 - [Link]) / 6 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 1 && [Link](i) != "-" &&
count < 6 && [Link](i) != " ") {
result += "#";
count++
} else {
result += [Link](i);
}
}
return result;
}
function crash(space, chance) {
let result = '';
let characters;
if(space) {
characters = 'BextiyarIsSparta';
} else {
characters = 'Crash';
}
if(space) {
characters = [Link]((70 - [Link]) / 6 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 1 && [Link](i) != "-" &&
count < 6 && [Link](i) != " ") {
result += "#";
count++
} else {
result += [Link](i);
}
}
return result;
}
function fake(space, chance) {
let result = '';
let characters;
if(space) {
characters = 'BExTiYaR Is God';
} else {
characters = 'God';
}
if(space) {
characters = [Link]((70 - [Link]) / 6 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 1 && [Link](i) != "-" &&
count < 6 && [Link](i) != " ") {
result += "#";
count++
} else {
result += [Link](i);
}
}
return result;
}
function ReTryPro(space, chance) {
let result = '';
let characters;
if(space) {
characters = 'BexTIyaR Is Best';
} else {
characters = 'FuckON';
}
if(space) {
characters = [Link]((30 - [Link]) / 2 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 1 && [Link](i) != "-" &&
count < 2 && [Link](i) != " ") {
result += "#";
count++
} else {
result += [Link](i);
}
}
return result;
}
function spam(space, chance) {
let result = '';
let characters;
if(space) {
characters = '#Piw#Piw#Paw#';
}
if(space) {
characters = [Link]((30 - [Link]) / 2 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 0 && [Link](i) != "-" &&
count < 0 && [Link](i) != " ") {
result += "";
count++
} else {
result += [Link](i);
}
}
return result;
}
function lol(space, chance) {
let result = '';
let characters;
if(space) {
characters = '!Why~|So|~eZ!';
}
if(space) {
characters = [Link]((30 - [Link]) / 2 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 0 && [Link](i) != "-" &&
count < 0 && [Link](i) != " ") {
result += "";
count++
} else {
result += [Link](i);
}
}
return result;
}
function radar(space, chance) {
let result = '';
let characters;
if(space) {
characters = 'Someone here';
}
if(space) {
characters = [Link]((30 - [Link]) / 2 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 0 && [Link](i) != "-" &&
count < 0 && [Link](i) != " ") {
result += "";
count++
} else {
result += [Link](i);
}
}
return result;
}
function hahaha(space, chance) {
let result = '';
let characters;
if(space) {
characters = '#HaHaHaNooB#';
}
if(space) {
characters = [Link]((30 - [Link]) / 2 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 0 && [Link](i) != "-" &&
count < 0 && [Link](i) != " ") {
result += "";
count++
} else {
result += [Link](i);
}
}
return result;
}
function mess(space, chance) {
let result = '';
let characters;
if(space) {
characters = '#BooM#OneShot#';
}
if(space) {
characters = [Link]((30 - [Link]) / 2 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 0 && [Link](i) != "-" &&
count < 0 && [Link](i) != " ") {
result += "";
count++
} else {
result += [Link](i);
}
}
return result;
}
function m(space, chance) {
let result = '';
let characters;
if(space) {
characters = '~|GoT a NOoB|~';
}
if(space) {
characters = [Link]((30 - [Link]) / 2 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 0 && [Link](i) != "-" &&
count < 0 && [Link](i) != " ") {
result += "";
count++
} else {
result += [Link](i);
}
}
return result;
}
function Boom(space, chance) {
let result = '';
let characters;
if(space) {
characters = 'eZ NoOb';
}
if(space) {
characters = [Link]((30 - [Link]) / 2 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 0 && [Link](i) != "-" &&
count < 0 && [Link](i) != " ") {
result += "";
count++
} else {
result += [Link](i);
}
}
return result;
}
function me(space, chance) {
let result = '';
let characters;
if(space) {
characters = 'OmG~|R.I.P|~OmG';
}
if(space) {
characters = [Link]((30 - [Link]) / 2 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 0 && [Link](i) != "-" &&
count < 0 && [Link](i) != " ") {
result += "";
count++
} else {
result += [Link](i);
}
}
return result;
}
function mes(space, chance) {
let result = '';
let characters;
if(space) {
characters = 'eZ AGE 1 Install~|';
}
if(space) {
characters = [Link]((30 - [Link]) / 2 +
[Link])
characters = [Link](30);
}
let count = 0;
for (let i = 0; i < [Link]; i++ ) {
if([Link]([Link]() * chance) == 0 && [Link](i) != "-" &&
count < 0 && [Link](i) != " ") {
result += "";
count++
} else {
result += [Link](i);
}
}
return result;
}
(function() {
var UPDATE_DELAY = 700;
var lastUpdate = 0;
var frames = 0;
var displayElement = [Link]("div");
[Link] = "5px";
[Link] = "16px Arial";
[Link] = "block";
[Link] = "fixed";
[Link] = "0px";
[Link] = "0px";
[Link] = "Calculating...";
[Link](displayElement);
function cssColorToRGB(color) {
var values;
if ([Link]("rgba")) {
values = [Link](5, [Link] - 1).split(",");
} else if ([Link]("rgb")) {
values = [Link](4, [Link] - 1).split(",");
} else if ([Link]("#") && [Link] === 4) {
values = [];
values[0] = "" + parseInt("0x" + [Link](1, 1));
values[1] = "" + parseInt("0x" + [Link](2, 1));
values[2] = "" + parseInt("0x" + [Link](3, 1));
} else if ([Link]("#") && [Link] === 7) {
values = [];
values[0] = "" + parseInt("0x" + [Link](1, 2));
values[1] = "" + parseInt("0x" + [Link](3, 2));
values[2] = "" + parseInt("0x" + [Link](5, 2));
} else {
return {r : 255, g : 255, b : 255};
}
return {
r : Number(values[0]),
g : Number(values[1]),
b : Number(values[2])
};
}
function getInvertedRGB(values) {
return "rgb(" + (255 - values.r) + "," + (9 - values.g) + ","
+ (9 - values.b) + ")";
}
function getOpaqueRGB(values) {
return "rgba(" + values.r + "," + values.g + "," + values.b + ",0.7)";
}
function updateCounter() {
var bgColor = getComputedStyle([Link], null).getPropertyValue(
"background-color");
var bgColorValues = cssColorToRGB(bgColor);
var textColor = getInvertedRGB(bgColorValues);
var displayBg = getOpaqueRGB(bgColorValues);
[Link] = textColor;
[Link] = displayBg;
var now = [Link]();
var elapsed = now - lastUpdate;
if (elapsed < UPDATE_DELAY) {
++frames;
} else {
var fps = [Link](frames / (elapsed / 1000));
[Link] = fps + " FPS";
frames = 0;
lastUpdate = now;
}
requestAnimationFrame(updateCounter);
}
lastUpdate = [Link]();
requestAnimationFrame(updateCounter);
})();
autoreloadloop = setInterval(function () {
if (autoreloadenough < 200) {
[Link] = "Deathmod";
if ([Link]("loadingText").innerHTML == `disconnected<a
href="javascript:[Link]=[Link]"
class="ytLink">reload</a>`) {
[Link] = "Fixed";
clearInterval(autoreloadloop);
setTimeout(function () {[Link] = "Moo Moo";}, 1000)
[Link]();
}
autoreloadenough++;
}
else if (autoreloadenough >= 300) {
clearInterval(autoreloadloop);
[Link] = "Bextiyar";
setTimeout(function () {[Link] = "Moo Moo";}, 1000)
}
}, 50);
function update() {
for (let i=0;i<9;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
primary = i;
}
}
for (let i=9;i<16;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
secondary = i;
}
}
for (let i=16;i<19;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
foodType = i - 16;
}
}
for (let i=19;i<22;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
wallType = i - 16;
}
}
for (let i=22;i<26;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
spikeType = i - 16;
}
}
for (let i=26;i<29;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
millType = i - 16;
}
}
for (let i=29;i<31;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
mineType = i - 16;
}
}
for (let i=31;i<33;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
boostType = i - 16;
}
}
for (let i=33;i<36;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
turretType = i - 16;
}
}
for (let i=36;i<37;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
spawnpadType = i - 16;
}
}
for (let i=37;i<39;i++){
if (isElementVisible([Link]("actionBarItem" +
[Link]()))){
turretType = i - 16;
}
}
}
function createTribe(name) {
leaveTribe();
doNewSend(["8", [name]]);
}
function leaveTribe() {
doNewSend(["9", [null]]);
}
var _msgs = ["DeathMod", "FIXED", "BY", "BEXTIYAR"];
var msgs = _msgs;
var msgCycleSwitch = false;
var shift = false;
var minus = false;
var home = false;
var chat;
var msgNum = 0;
var socket = null;
var scriptSetup = false;
WebSocket = class extends WebSocket {
constructor(...arg) {
super(...arg);
if (!scriptSetup){
scriptSetup = true;
styleInit();
ren_overlay();
[Link] = function (){
return 'Are you sure you want to leave?';
};
}
socket = this;
}
};
if (storageAvailable('localStorage')){
if (){
[Link]("msgs", [Link](msgs));
}else{
let temp;
try{
temp = [Link]([Link]("msgs"));
}
catch (e){
alert("Invalid Array! Setting default...");
saveData();
temp = "";
}
if (temp !== ""){
msgs = temp;
}
}
}
const overlay = {};
[Link] = 36;
[Link] = false;
[Link] = [Link]("\n");
[Link] = _msgs;
function styleInit() {
addGlobalStyle(`#chatCyclerUI{padding: 0.2em; margin:0.2em; position:
absolute;top: 0;left: 0;width: 30%;
background-color: RGB(255, 4, 4);display:none;}`);
addGlobalStyle(".table{ display: table; text-align: center; width: 100%;
height: 80%;}");
addGlobalStyle(".row{ display: table-row; }");
addGlobalStyle(`.cell{ display: table-cell; padding: 0px 0.3em;border: 1px
solid black;}`);
addGlobalStyle(`.backRed{background-color:#FFFF00}`);
function addGlobalStyle(css) {
var head, style;
head = [Link]('head')[0];
if (!head) {
return;
}
style = [Link]('style');
[Link] = 'text/css';
[Link] = css;
[Link](style);
}
}
function toggleOverlay(tf){
if (tf){
[Link]('#chatCyclerUI').[Link] = "block";
}else{
[Link]('#chatCyclerUI').[Link] = "none";
}
};
function ren_overlay(){
const title = `<div style="font-size:32px;color:rgba(0, 0, 0,
0.75)">Menu</div>`;
const descr = `<div>Press HOME to repeat this menu.</div>`;
const body = `
<div class="table">
<div class="row">Message Settings
</div>
<div class="row">
<div class="cell" style="vertical-align:middle">Messages</div>
<div class="cell" style="vertical-align:middle"><textarea
name="overlay_messages" rows=4 cols=32 style="background-color:rgba(255, 255, 255,
0.35);resize:none; rgba(255, 255, 255, 0.75) padding-left: 0px;border-left-width:
0px;border-top-width: 0px;padding-top: 0px;padding-right: 0px;border-right-width:
0px;padding-bottom: 0px;border-bottom-width: 0px;"></textarea></div>
</div>
<div class="row">
<div class="cell" style="vertical-align:middle">Save Message
</div>
<div class="cell" style="vertical-align:middle"><input
type="button" name="overlay_update_cycle" value="Save" style="border-right-width:
0px;border-left-width: 0px;border-top-width: 0px;padding-left: 6px;border-bottom-
width: 0px;"></div>
</div>
<br>
<div class="row">Message Repeat
</div>
<div class="row">
<div class="cell" style="vertical-align:middle">Repeat<br><span
class="overlay_cycle_toggle_value"><span style="font-size:24px;color:rgba(0, 0, 0,
0.75)";>Off</span></span></div>
<div class="cell" style="vertical-align:middle"><input
type="button" name="overlay_cycle_toggle" value="Repeat"></div>
</div>
</div>`;
const footer = `<div style="font-size:24px;color:rgba(0, 0, 0,
0.75)">AutoChat</div>`;
const temp = `${title} ${body} ${descr} ${footer}`;
const d = [Link]("div")
[Link] = "chatCyclerUI";
[Link] = temp;
[Link] = 999999;
[Link](d);
const val = [Link]('textarea[name="overlay_messages"]');
[Link] = [Link];
[Link]('input', function(e) {
[Link] = [Link];
});
[Link]('input[name="overlay_update_cycle"]').addEventListener('clic
k', function() {
if (![Link]){
[Link] = _msgs;
}else{
[Link] = [Link](/\r?\n/);
}
msgNum = 99;
msgs = [Link];
saveData();
});
[Link]('input[name="overlay_cycle_toggle"]').addEventListener('clic
k', function(e) {
msgCycleSwitch = !msgCycleSwitch;
if (msgCycleSwitch){
chat = setInterval(autoChat, 1);
[Link]('.overlay_cycle_toggle_value').innerHTML =
`<span style="font-size:24px;color:rgba(0, 0, 0, 0.75)";>On</span>`;
}else{
[Link]('.overlay_cycle_toggle_value').innerHTML =
`<span style="font-size:24px;color:rgba(0, 0, 0, 0.75)";>Off</span>`;
clearInterval(chat);
msgNum = 0;
}
});
}
function concatBuffers(buffer1, buffer2){
var tmp = new Uint8Array([Link] + [Link]);
[Link](new Uint8Array(buffer1), 0);
[Link](new Uint8Array(buffer2), [Link]);
return [Link];
}
const four = [Link]([4]).buffer;
function autoChat(){
socket && [Link]([Link](["ch", [msgs[msgNum]]]));
msgNum++;
if (msgNum >= [Link]) msgNum = 0;
}
function storageAvailable(type){
try{
var storage = window[type],
x = '__storage_test__';
[Link](x, x);
[Link](x);
return true;
}
catch(e){
return false;
}
}
function saveData(){
if (storageAvailable('localStorage')){
[Link]("msgs", [Link](msgs));
}
}
[Link]('keydown', function (event){
if ([Link]) [Link]();
if (!minus && [Link] === 19){ //L
msgCycleSwitch = !msgCycleSwitch;
if (msgCycleSwitch){
chat = setInterval(autoChat, 0);
}else{
clearInterval(chat);
msgNum =0;
}
minus = true;
}
if (!home && [Link] === [Link]){ //HOME
[Link] = ![Link];
toggleOverlay([Link]);
home = true;
}
});
[Link]('keypress', function (event){
if ([Link]) [Link]();
});
[Link]('keyup', function (event){
if ([Link]) [Link]();
if ([Link] == 19){
minus = false;
}else if ([Link] == 36){
home = false;
}
});
var ID_WinterCap = 15;
var ID_AssassinGear = 56;
var ID_Bloodthirster = 55;
var ID_FlipperHat = 31;
var ID_MarksmanCap = 1;
var ID_BushGear = 10;
var ID_SoldierHelmet = 6;
var ID_AntiVenomGear = 23;
var ID_MusketeerHat = 32;
var ID_MedicGear = 13;
var ID_BullHelmet = 7;
var ID_EmpHelmet = 22;
var ID_BoosterHat = 12;
var ID_BarbarianArmor = 26;
var ID_BullMask = 46;
var ID_WindmillHat = 14;
var ID_SpikeGear = 11;
var ID_BushidoArmor = 16;
var ID_SamuraiArmor = 20;
var ID_ScavengerGear = 27;
var ID_TankGear = 40;
//Turret Gear. "Use if you want to"
var ID_TurretGear = 53;
// Keys
var TankGearKey = 90;
var AssassinGearKey = 107;
var BullHelmetKey = 84;
var SoldierHelmetKey = 89;
var TurretKey = 74;
var BoosterHatKey = 20;
var uneqiup = 189;
var SpikeGearKey = 220;
var BushGearKey = 186;
var EmpHelmetKey = 221;
var SamuraiArmorKey = 75;
var ScavengerGearKey = 106;
// Remove all of the ads on the page.
try {
[Link]("moomooio_728x90_home").[Link] = "none";
$("moomooio728x90_home").parent().css({display: "none"});
} catch (e) {
[Link]("There was an error removing the ads.");
}
var menuChange = [Link]("div");
[Link] = "menuCard";
[Link] = "mainSettings";
[Link] = `
<div id="simpleModal" class="modal">
<div class="modal-content">
<div class="modal-header">
<span class="closeBtn">×</span>
<h2 style="font-size: 17px;">Hat Settings</h2>
</div>
<div class="modal-body" style="font-size: 17px;">
<div class="flexControl">
<h3 style="color: red; font-size: 17px;"></h3>
<h3 class="menuPrompt">Tank: </h3> <input value="$
{[Link](TankGearKey)}" id="tankGear" class="keyPressLow"
onkeyup="[Link] = [Link]();" maxlength="1" type="text"/>
<h3 class="menuPrompt">Bull: </h3> <input value="$
{[Link](BullHelmetKey)}" id="bullHelm" class="keyPressLow"
onkeyup="[Link] = [Link]();" maxlength="1" type="text"/>
<h3 class="menuPrompt">Soldier: </h3> <input value="$
{[Link](SoldierHelmetKey)}" id="soldier"
class="keyPressLow"onkeyup="[Link] = [Link]();" maxlength="1"
type="text"/>
<h3 class="menuPrompt">Turret: </h3> <input value="$
{[Link](TurretKey)}" id="turret" class="keyPressLow" maxlength="1"
onkeyup="[Link] = [Link]();" type="text"/>
<h3 class="menuPrompt">Booster: </h3> <input value="$
{[Link](BoosterHatKey)}" id="booster" class="keyPressLow"
maxlength="1" onkeyup="[Link] = [Link]();" type="text"/>
<h3 class="menuPrompt">Spike: </h3> <input value="$
{[Link](SpikeGearKey)}" id="spikeg" class="keyPressLow" maxlength="1"
onkeyup="[Link] = [Link]();" type="text"/>
<h3 class="menuPrompt">Samurai: </h3> <input value="$
{[Link](SamuraiArmorKey)}" id="samuraiArmor" class="keyPressLow"
onkeyup="[Link] = [Link]();" type="text"/>
<h3 class="menuPrompt">Emp: </h3> <input value="$
{[Link](EmpHelmetKey)}" id="empHelmet" class="keyPressLow"
onkeyup="[Link] = [Link]();" type="text"/>
<h3 class="menuPrompt">Bush: </h3> <input value="$
{[Link](BushGearKey)}" id="bushGear" class="keyPressLow"
onkeyup="[Link] = [Link]();" type="text"/>
<h3 class="menuPrompt">Assassin: </h3> <input value="$
{[Link](AssassinGearKey)}" id="assassinGear" class="keyPressLow"
onkeyup="[Link] = [Link]();" type="text"/>
<h3 class="menuPrompt">Scavenger: </h3> <input value="$
{[Link](ScavengerGearKey)}" id="scavengerGear" class="keyPressLow"
onkeyup="[Link] = [Link]();" type="text"/>
<hr>
<h3 style="font-size: 17px;"> Map Settings </h3>
<label class="container"> Biomes
<input type="checkbox" id="myCheck">
<span class="checkmark"></span>
</label>
</div>
</div>
<div class="modal-footer">
<h3 style="font-size: 17px;">Fixed By Bextiyar</h3>
<p>Bextiyar</p>
</div>
</div>
</div>
`
[Link](menuChange)
$("#tankGear").on("input", () => {
var cval = $("#tankGear").val();
if (cval){
TankGearKey = [Link]();
TankGearKey = [Link](0);
[Link](TankGearKey);
}
});
$("#scavengerGear").on("input", () => {
var cval = $("#scavengerGear").val();
if (cval){
ScavengerGearKey = [Link]();
ScavengerGearKey = [Link](0);
[Link](ScavengerGearKey);
}
});
$("#assassinGear").on("input", () => {
var cval = $("#assassinGear").val();
if (cval){
AssassinGearKey = [Link]();
AssassinGearKey = [Link](0);
[Link](AssassinGearKey);
}
});
$("#empHelmet").on("input", () => {
var cval = $("#empHelmet").val();
if (cval){
EmpHelmetKey = [Link]();
EmpHelmetKey = [Link](0);
[Link](EmpHelmetKey);
}
});
$("#bullHelm").on("input", () => {
var cval = $("#bullHelm").val();
if (cval){
BullHelmetKey = [Link]();
BullHelmetKey = [Link](0);
[Link](BullHelmetKey);
}
});
$("#bushGear").on("input", () => {
var cval = $("#bushGear").val();
if (cval){
BushGearKey = [Link]();
BushGearKey = [Link](0);
[Link](BushGearKey);
}
});
$("#samuraiArmor").on("input", () => {
var cval = $("#samuraiArmor").val();
if (cval){
SamuraiArmorKey = [Link]();
SamuraiArmorKey = [Link](0);
[Link](SamuraiArmorKey);
}
});
$("#soldier").on("input", () => {
var cval = $("#soldier").val();
if (cval){
SoldierHelmetKey = [Link]();
SoldierHelmetKey = [Link](0);
[Link](SoldierHelmetKey);
}
});
$("#turret").on("input", () => {
var cval = $("#turret").val();
if (cval){
TurretKey = [Link]();
TurretKey = [Link](0);
[Link](TurretKey);
}
});
$("#booster").on("input", () => {
var cval = $("#booster").val();
if (cval){
BoosterHatKey = [Link]();
BoosterHatKey = [Link](0);
[Link](BoosterHatKey);
}
});
var styleItem = [Link]("style");
[Link] = "text/css";
[Link]([Link](`
.keyPressLow {
margin-left: 8px;
font-size: 16px;
margin-right: 8px;
height: 25px;
width: 50px;
background-color: #fcfcfc;
border-radius: 3.5px;
border: none;
text-align: center;
color: #4a4a4a;
border: 0.5px solid #f2f2f2;
}
.menuPrompt {
font-size: 17px;
font-family: 'Hammersmith One';
color: #4A4A4A;
flex: 0.2;
text-align: center;
margin-top: 10px;
display: inline-block;
}
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
overflow: auto;
height: 100%;
width: 100%;
}
.modal-content {
margin: 10% auto;
width: 40%;
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
font-size: 14px;
line-height: 1.6;
}
.modal-header h2,
.modal-footer h3 {
margin: 0;
}
.modal-header {
background: #00FF00;
padding: 15px;
color: #fff;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.modal-body {
padding: 10px 20px;
background: #fff;
}
.modal-footer {
background: #00FF00;
padding: 10px;
color: #fff;
text-align: center;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.closeBtn {
color: #ccc;
float: right;
font-size: 30px;
color: #fff;
}
.closeBtn:hover,
.closeBtn:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
/* Customize the label (the container) */
.container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 12px;
cursor: pointer;
font-size: 16px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* Hide the browser's default checkbox */
.container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
/* Create a custom checkbox */
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}
/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
display: block;
}
/* Style the checkmark/indicator */
.container .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
`))
[Link](styleItem);
$("#adCard").css({display: "none"});
[Link]('keydown', function(e) {
if ([Link] == uneqiup && [Link]() !==
'chatbox'){
[Link]("done")
storeEquip(0);
} else if ([Link] == 27){
if ([Link] = "none") {
[Link] = "block";
} else {
[Link] = "none";
}
} else if ([Link] == ScavengerGearKey &&
[Link]() !== 'chatbox'){
storeEquip(ID_ScavengerGearGear);
} else if ([Link] == AssassinGearKey &&
[Link]() !== 'chatbox'){
storeEquip(ID_AssassinGear);
} else if ([Link] == BushGearKey && [Link]() !
== 'chatbox'){
storeEquip(ID_BushGear);
} else if ([Link] == EmpHelmetKey &&
[Link]() !== 'chatbox'){
storeEquip(ID_EmpHelmet);
} else if ([Link] == TankGearKey && [Link]() !
== 'chatbox'){
storeEquip(ID_TankGear);
} else if ([Link] == SamuraiArmorKey &&
[Link]() !== 'chatbox'){
storeEquip(ID_SamuraiArmor);
} else if ([Link] == SoldierHelmetKey &&
[Link]() !== 'chatbox'){
storeEquip(ID_SoldierHelmet);
} else if ([Link] == BullHelmetKey && [Link]()
!== 'chatbox'){
storeEquip(ID_BullHelmet);
} else if ([Link] == BoosterHatKey && [Link]()
!== 'chatbox'){
storeEquip(ID_BoosterHat);
} else if ([Link] == SpikeGearKey &&
[Link]() !== 'chatbox'){
storeEquip(ID_SpikeGear);
} else if ([Link] == TurretKey && [Link]() !==
'chatbox'){
storeEquip(ID_TurretGear);
}
})
// Get modal element
var modal = [Link]("simpleModal");
// Get close button
var closeBtn = [Link]('closeBtn')[0];
// Events
[Link]('click', closeModal);
[Link]('click', outsideClick);
// Close
function closeModal() {
[Link] = 'none';
}
// Close If Outside Click
function outsideClick(e) {
if ([Link] == modal) {
[Link] = 'none';
}
}
var checkbox = [Link]("#myCheck")
[Link]('change', function() {
if ([Link]) {
$("#mapDisplay").css({background:
`url('[Link]
[Link]('checked')
} else {
$("#mapDisplay").css({background: `rgba(0, 0, 0, 0.25)`})
[Link]('unchecked')
}
})
function Parse() {
[Link]('keydown', function (CustomKey1) {
if ([Link] == 89) {
storeBuy(6)
[Link]('Attempted to buy soldier')
}
});
};
[Link]('keydown', function (CustomKey1) {
if ([Link] == 16) {
storeBuy(12)
[Link]('Attempted to buy samurai')
}
}
);
;
[Link]('keydown', function (CustomKey1) {
if ([Link] == 221) {
storeBuy(22)
[Link]('Attempted to buy emp')
}
}
);
;
[Link]('keydown', function (CustomKey1) {
if ([Link] == 75) {
storeBuy(20)
[Link]('Attempted to buy flipper')
}
}
);
;
[Link]('keydown', function (CustomKey1) {
if ([Link] == 71) {
storeBuy(26)
[Link]('Attempted to buy Barbarian')
}
}
);
;
[Link]('keydown', function (CustomKey1) {
if ([Link] == 84) {
storeBuy(7)
[Link]('Attempted to buy bull')
}
}
);
;
[Link]('keydown', function (CustomKey1) {
if ([Link] == 73) {
storeBuy(11)
[Link]('Attempted to buy Spike')
}
}
);
;
[Link]('keydown', function (CustomKey1) {
if ([Link] == 74) {
storeBuy(53)
[Link]('Attempted to buy turret')
}
}
);
;
[Link]('keydown', function (CustomKey1) {
if ([Link] == 90) {
storeBuy(40)
[Link]('Attempted to buy Tank')
}
}
);
;
[Link]('keydown', function
(CustomKey1) {
if ([Link] == 17) {
storeBuy(27)
[Link]('Attempted to buy scavenger')
}
}
);
;
Parse();
// ==UserScript==
// @name This is a basic script, just visual [Link] changes.
// @namespace This is a basic script, just visual [Link] changes.
// @version 2.2.1
// @match *://*.[Link]/*
// @match *://[Link]/*
// @description A few changes.
// @author Alone? Al
// @match *://[Link]/*
// @grant none
// ==/UserScript==
[Link]('enterGame').innerHTML = '~|⚡☠ P̶̉̄ L̵͒́ A̴͒͂Y̵̌͝ ☠⚡|~';
[Link]("gameName").[Link] = "Red";
[Link]('loadingText').innerHTML = '. . . . . . . . . L̴̐̒o̷̩̊a̴̓͘d̴͛̕ ̴̫̈́Ď̷͝ȅ̶̋Ȁ̶̐t̶̄̀ H̵̾́ M̶̅̓ö̴́͆d̵͒́
. . . . . . . . . .';
[Link]('nameInput').placeholder = "☠Ď̶͔ĕ̴̍A̴̛͆t̷͑̑H̷̦̄ M̶͋̒ò̷̇d̵̑̈́ ☠";
[Link]('chatBox').placeholder = "☠Ď̶͔ĕ̴̍A̴̛͆t̷͑̑H̷̦̄ ☠";
[Link]("pingDisplay").[Link] = "red";
[Link]('diedText').innerHTML = '⚡☠G̴̓́ ä̷̐m̸̅͋e̷͂͝ ̸́̕O̸͒͒v̴͆̕ë̷̝́r̴̓͛☠⚡';
[Link]('diedText').[Link] = "Red";
[Link]("storeHolder").style = "height: 1500px; width: 450px;"
[Link]('adCard').remove();
[Link]('errorNotification').remove();
[Link]("leaderboard").[Link] = "red";
[Link]("gameName").[Link] = "Red";
[Link]("setupCard").[Link] = "Red";
[Link]('gameName').innerHTML = ' ☢⚡☠Ď̶͔ĕ̴̍A̴̛͆t̷͑̑H̷̦̄ M̶͋̒ò̷̇d̵̑̈́ ☠⚡☢ ';
[Link]("promoImg").remove();
[Link]("scoreDisplay").[Link] = "Red";
[Link]("woodDisplay").[Link] = "Red";
[Link]("stoneDisplay").[Link] = "Red";
[Link]("killCounter").[Link] = "Red";
[Link]("foodDisplay").[Link] = "Red";
[Link]("ageText").[Link] = "red";
[Link]("allianceButton").[Link] = "black";
[Link]("chatButton").[Link] = "black";
[Link]("storeButton").[Link] = "black";
$("#mapDisplay").css({background: `url('[Link]
$("#mapDisplay").css({
'border-radious':'350px',
'border':'3px solid #ff0202'
});
$('.menuCard').css({'white-space': 'normal',
'text-align': 'center',
'background-color': 'rgba(0, 0, 0, 0)',
'-moz-box-shadow': '0px 0px rgba(255, 255, 255, 0)',
'-webkit-box-shadow': '0px 0px rgba(255, 255, 255, 0)',
'box-shadow': '0px 0px rgba(255, 255, 255, 0)',
'-webkit-border-radius': '0px',
'-moz-border-radius': '0px',
'border-radius': '0px',
'margin': '15px',
'margin-top': '15px'});
$('#menuContainer').css({'white-space': 'normal'});
$('#nativeResolution').css({'cursor': 'pointer'});
$('#playMusic').css({'cursor': 'pointer'});
$('#guideCard').css({'overflow-y': 'hidden',
'margin-top': 'auto',
'margin-bottom': '30px'});
$('#gameName').css({'color': '#000000',
'text-shadow': '0 1px 0 rgba(231, 76, 60), 0 2px 0 rgba(231,
76, 60), 0 3px 0 rgba(231, 76, 60), 0 4px 0 rgba(231, 76, 60), 0 5px 0 rgba(231,
76, 60), 0 6px 0 rgba(231, 76, 60), 0 7px 0 rgba(231, 76, 60), 0 8px 0 rgba(231,
76, 60), 0 9px 0 rgba(255, 0, 0)',
'text-align': 'center',
'font-size': '156px',
'margin-bottom': '-30px'});
$('#skinColorHolder').css({'margin-bottom': '30.75px'});
$('.settingRadio').css({'margin-bottom': '30.75px'});
$('#linksContainer2').css({'-webkit-border-radius': '0px 0 0 0',
'-moz-border-radius': '0px 0 0 0',
'border-radius': '0px 0 0 0',
'right': '44%',
'left': '44%',
'background-color': 'rgba(0, 0, 0, 0)',
'text-align': 'center',
'bottom': '12px'});
$('#gameName').css({'color': '#000000',
'text-shadow': '0 1px 0 rgba(231, 76, 60), 0 2px 0 rgba(231,
76, 60), 0 3px 0 rgba(231, 76, 60), 0 4px 0 rgba(231, 76, 60), 0 5px 0 rgba(231,
76, 60), 0 6px 0 rgba(231, 76, 60), 0 7px 0 rgba(231, 76, 60), 0 8px 0 rgba(231,
76, 60), 0 9px 0 rgba(255, 0, 0)',
'text-align': 'center',
'font-size': '156px',
'margin-bottom': '-30px'});
$('pingDisplay').css({'color': '#ffcf23',
'text-shadow': '0 1px 0 rgba(255, 255, 255, 0), 0 2px 0
rgba(255, 255, 255, 0), 0 3px 0 rgba(255, 255, 255, 0), 0 4px 0 rgba(255, 255, 255,
0), 0 5px 0 rgba(255, 255, 255, 0), 0 6px 0 rgba(255, 255, 255, 0), 0 7px 0
rgba(255, 255, 255, 0), 0 8px 0 rgba(255, 255, 255, 0), 0 9px 0 rgba(255, 255, 255,
0)',
'text-align': 'center',
'font-size': '156px',
'margin-bottom': '-30px'});
$('#loadingText').css({'color': '#000000',
'background-color': 'rgba(0, 0, 0, 0)',
'padding': '8px',
'right': '150%',
'left': '150%',
'margin-top': '40px'});
$('.ytLink').css({'color': '#144db4',
'padding': '8px',
'background-color': 'rgba(255, 0, 0, 0)'});
$('.menuLink').css({'color': '#144db4'});
$('#nameInput').css({'border-radius': '0px',
'-moz-border-radius': '0px',
'-webkit-border-radius': '0px',
'border': 'hidden'});
$('#serverSelect').css({'cursor': 'pointer',
'color': '#000000',
'background-color': '#808080',
'border': 'hidden',
'font-size': '20px'});
$('.menuButton').css({'border-radius': '0px',
'-moz-border-radius': '0px',
'-webkit-border-radius': '0px'});
$('#promoImgHolder').css({'position': 'absolute',
'bottom': '-7%',
'left': '20px',
'width': '420px',
'height': '236.25px',
'padding-bottom': '18px',
'margin-top': '0px'});
$('#adCard').css({'position': 'absolute',
'bottom': '-7%',
'right': '20px',
'width': '420px',
'height': '236.25px',
'padding-bottom': '18px'});
$('.menuHeader').css({'color': 'rgba(255, 255, 255, 1)'});
$('#killCounter').css({'color': '#ededed'});
$('#diedText').css({'background-color': 'rgba(0, 0, 0, 0)'});
$('#gameCanvas').css({'background-color': '#f4f4f4'});
$('#allianceButton').css({'color': 'rgba(241, 241, 241, 1)'});
$('#storeButton').css({'color': 'rgba(241, 241, 241, 1)'});
$('#chatButton').css({'color': 'rgba(241, 241, 241, 1)'});
$('.gameButton').css({'-webkit-border-radius': '0px 0 0 0',
'-moz-border-radius': '0px 0 0 0',
'border-radius': '0px 0 0 0',
'background-color': 'rgba(0, 0, 0, 0.4)'});
$('#partyButton').css({'color': '#000000',
'text-shadow': '0 3px 0 rgba(231, 76, 60), 0 3px 0 rgba(231, 76, 60), 0 3px 0
rgba(231, 76, 60), 0 3px 0 rgba(231, 76, 60), 0 3px 0 rgba(231, 76, 60), 0 3px 0
rgba(231, 76, 60), 0 3px 0 rgba(231, 76, 60), 0 3px 0 rgba(231, 76, 60), 0 3px 0
rgba(255, 0, 0)',
'text-align': 'center',
'font-size': '30px',
'margin-bottom': '30px'});
$('#joinPartyButton').css({'color': '#000000',
'text-shadow': '0 3px 0 rgba(231, 76, 60), 0 3px 0 rgba(231, 76, 60), 0 3px 0
rgba(231, 76, 60), 0 3px 0 rgba(231, 76, 60), 0 3px 0 rgba(231, 76, 60), 0 3px 0
rgba(231, 76, 60), 0 3px 0 rgba(231, 76, 60), 0 3px 0 rgba(231, 76, 60), 0 3px 0
rgba(255, 0, 0)',
'text-align': 'center',
'font-size': '30px',
'margin-bottom': '30px'});
$('.uiElement, .resourceDisplay').css({'-webkit-border-radius': '0px',
'-moz-border-radius': '0px',
'border-radius': '0px',
'background-color': 'rgba(0, 0, 0,
0.25);'});
$('#chatBox').css({'-webkit-border-radius': '0px',
'-moz-border-radius': '0px',
'border-radius': '700px',
'background-color': 'rgba(0, 0, 0, 0.18)',
'text-align': 'center'});
$('#foodDisplay').css({'color': '#F40D0D'});
$('#killCounter').css({'color': '#F40D0D'});
$('#woodDisplay').css({'color': '#49FF00'});
$('#stoneDisplay').css({'color': '#555252'});
$('#scoreDisplay').css({'color': '#ffd700'});
$('#ageBar').css({'-webkit-border-radius': '0px',
'-moz-border-radius': '0px',
'border-radius': '0px',
'background-color': 'rgba(0, 0, 0, 0.4)'});
$('#ageBarBody').css({'-webkit-border-radius': '0px',
'-moz-border-radius': '0px',
'border-radius': '0px',
'background-color': '#FF0000'});
$('.storeTab').css({'-webkit-border-radius': '0px',
'-moz-border-radius': '0px',
'border-radius': '0px',
'background-color': 'rgba(0, 0, 0, 0.4)'});
$('#storeHolder').css({'-webkit-border-radius': '0px',
'-moz-border-radius': '0px',
'border-radius': '0px',
'background-color': 'rgba(0, 0, 0, 0.4)'});
$('#allianceHolder').css({'-webkit-border-radius': '0px',
'-moz-border-radius': '0px',
'border-radius': '0px',
'background-color': 'rgba(0, 0, 0, 0.4)'});
$('.actionBarItem').css({'-webkit-border-radius': '0px',
'border-radius': '0px',
'background-color': 'rgba(0, 0, 0, 0.4)'});
$("#ageBarContainer").append('</br><div id="hacktext"></div><div style="width:
100%;position: absolute;bottom: 94px;text-align: center;color:blue;font-size:
24px;" id="freetext"></div><div style="width: 100%;position: absolute;bottom:
144px;text-align: center;color: #ed3f00;font-size: 24px;" id="ptext"></div><div
style="width: 100%;position: absolute;bottom: 224px;text-align: center;color:
#9a008b;font-size: 24px;" id="ctext"></div><div style="width: 100%;position:
absolute;top: 100px;text-align: center;color: white;font-size: 12px;"
id="bilgitext">| , - Daggers+FastMill| ] - Katana+Snipping+FastMill | / -
Katana+Musket | ArrowRight - Polearn+Musket | ArrowLeft - Axe+Bow | [ -
Stick+Hammer |</div><div style="width: 100%;position: absolute;bottom: 170px;text-
align: center;color: darkgreen;font-size: 24px;" id="atext"></div><div
style="width: 100%;position: absolute;bottom: 196px;text-align: center;color:
black;font-size: 24px;" id="mtext"></div>');
(function() {var css = [
"div#adCard, ",
" #twitterFollow, ",
" #youtubeFollow, ",
" #downloadButtonContainer, ",
" #promoImg {",
" display: none;",
" }",
"",
" #featuredYoutube > [Link], ",
" a {",
" font-size: 15px;",
" color: #ff0000 !important;",
" font-family: mv boli;",
" }",
"",
" .uiElement, ",
" .resourceDisplay, ",
" .actionBarItem {",
" border: 3px solid rgb(255, 2, 2);",
" border-radius: 50px !important;",
" transition: 0.5s;",
" }",
"",
" .uiElement:hover, ",
" .resourceDisplay:hover, ",
" .actionBarItem:hover {",
" background-color: rgba(0,0,0) !important;",
" border: 3px solid rgba(70, 130, 180, 0.5);",
" border-radius: 100px !important;",
" }",
"",
" .actionBarItem {",
" width: 56px;",
" height: 56px;",
" background-position: center; ",
" background-size: 55px 55px;",
" }",
"",
" .menuHeader {",
" color: #ff0000",
" font-family: mv boli;",
" }",
"",
" #moddedMenu:hover > .titleMM {",
" transform: rotate(0deg) translate(0,-1580%)",
" }",
"",
" .storeItem, ",
" .storeTab, ",
" .allianceButtonM, ",
" #allianceInput::placeholder, ",
" .allianceItem, ",
" .joinAlBtn {",
" color: #ff0000 !important;",
" font-family: mv boli;",
" }",
"",
" .menuText {",
" font-size: 18px;",
" font-family: mv boli;",
" color: #ff0000",
" margin-bottom: 10px;",
" }",
"",
" .settingRadio {",
" font-family: mv boli;",
" color: #ff0000",
" }",
"",
" .switch {",
" margin-top: 5px;",
" margin-left: 10px;",
" position: absolute;",
" width: 60px;",
" height: 34px;",
" transition: opacity 1s;",
" opacity: 0;",
" }",
"",
" .text {",
" bottom: 76%;",
" position: absolute;",
" color: #ff0000;",
" font-size: 20px;",
" left: 0%;",
" display: none;",
" transition: 1s;",
" }",
"",
" .text > b { ",
" font-size: 20px;",
" color: #ff0000;",
" }",
"",
" b:hover { ",
" color: #ff0000;",
" }",
"",
" .one > .text {",
" top: 5.5%;",
" }",
"",
" .two > .text {",
" top: 10.7%;",
" }",
"",
" .three > .text {",
" top: 37.5%;",
" }",
"",
" .four > .text {",
" top: 47.5%;",
" }",
"",
" .five > .text {",
" top: 57.5%;",
" }",
"",
" .six > .text {",
" top: 67.5%;",
" }",
"",
" .seven > .text {",
" top: 77.5%;",
" }",
"",
" .eight > .text {",
" top: 87.5%;",
" }",
"",
" #moddedMenu:hover .switch {",
" opacity: 1;",
" }",
"",
" #moddedMenu:hover .text {",
" display: block;",
" }",
"",
" .one > .switch {",
" top: 15%;",
" }",
"",
" .two > .switch {",
" top: 25%;",
" }",
"",
" .three > .switch {",
" top: 35%;",
" }",
"",
" .four > .switch {",
" top: 45%;",
" }",
"",
" .five > .switch {",
" top: 55%;",
" }",
"",
" .six > .switch {",
" top: 65%;",
" }",
"",
" .seven > .switch {",
" top: 75%;",
" }",
"",
" .eight > .switch {",
" top: 85%;",
" }",
"",
" .switch input {",
" display:none;",
" }",
"",
" ::-webkit-scrollbar {",
" width: 10px;",
" border-right: 2px solid #ff0000;",
" }",
"",
" ::-webkit-scrollbar-thumb {",
" border: 2px solid #ff0000;",
" }",
"",
" ::-webkit-scrollbar-thumb:hover {",
" background: #ff0000;",
" }",
"",
" ::-webkit-scrollbar-thumb:active {",
" background: SteelBlue;",
" border: 2px solid #ff0000;",
" }",
"",
" .slider {",
" position: absolute;",
" cursor: pointer;",
" top: 0;",
" left: 0;",
" right: 0;",
" bottom: 0;",
" background-color: #ff0000;",
" -webkit-transition: .4s;",
" transition: .4s;",
" }",
"",
" .slider:before {",
" position: absolute;",
" content: \"\";",
" height: 26px;",
" width: 26px;",
" left: 4px;",
" bottom: 4px;",
" background-color: black;",
" -webkit-transition: .4s;",
" transition: .4s;",
" }",
"",
" input:checked + .slider {",
" background-color: #ff0000;",
" }",
" ",
" input:focus + .slider {",
" box-shadow: 0 0 1px #ff0000;",
" }",
"",
" input:checked + .slider:before {",
" -webkit-transform: translateX(26px);",
" -ms-transform: translateX(26px);",
" transform: translateX(26px);",
" }",
"",
" .[Link] {",
" border-radius: 34px;",
" }",
"",
" .[Link]:before {",
" border-radius: 50%;",
" }"
].join("\n");
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var node = [Link]("style");
[Link] = "text/css";
[Link]([Link](css));
var heads = [Link]("head");
if ([Link] > 0) {
heads[0].appendChild(node);
} else {
// no head yet, stick it whereever
[Link](node);
}
}
})();
// [Link]("keydown", function(a) {if ([Link] ==
8,9,13,16,17,18,19,20,27,33,34,35,36,37,38,39,40,45,46,48,49,50,51,52,53,54,55,56,5
7,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,
92,93,96,97,98,100,101,102,103,104,105,106,107,109,110,111,112,113,114,115,116,117,
118,119,120,121,122,123,144,145,186,187,188,189,190,191,192,219,220,221,222)
{[Link]("nameInput").value="FERANYZERIR BOT";}}, false);
var myElement = [Link]('#nameInput');
[Link] = "#fffdfd";
[Link] = "#000000";
var getElement = [Link]('#enterGame');
[Link] = "#d61818";
[Link] = "#000000";
$('#leaderboard').append('☣Ď̷͝ȅ̶̋Ȁ̶̐t̶̄̀ H̵̾́ M̶̅̓ö̴́͆d̵͒́ ☣');
(function() {
'use strict';
//var NSE = [Link]("audio");
//[Link] = "[Link] EFFECT!!!!!.mp3";
//xD
var ezsound = new Audio("[Link]
%20Sound%20Effect.mp3");
var kills = 0;
setInterval(getkills, 100);
function getkills(){
var count = parseInt([Link]("killCounter").innerText);
if(count > kills){
[Link]();
}
kills = count;
}
})();
var sANC = 1;
var aNC = [255,255,1];
var rANC = [1,255];
var mk = [Link]("gameCanvas").getContext("2d");
var Laa = 0;
var Lab = 0;
var aVZ = 0;
var fBX = "<3 KatieW.";
var resForRANC = 1;
// 1920-1080
function rainbowColor(){
if(resForRANC === 1){
aNC = [255,0,0];
resForRANC = 0;
}
if(aNC[0] === 255 && aNC[1] !== 255 && aNC[2] === 0){aNC[1] += 255/rANC[1];}
if(aNC[0] !== 0 && aNC[1] === 255 && aNC[2] === 0){aNC[0] += 255/rANC[1]*-1;}
if(aNC[0] === 0 && aNC[1] === 255 && aNC[2] !== 255){aNC[2] += 255/rANC[1];}
if(aNC[0] === 0 && aNC[1] !== 0 && aNC[2] === 255){aNC[1] += 255/rANC[1]*-1;}
if(aNC[0] !== 255 && aNC[1] === 0 && aNC[2] === 255){aNC[0] += 255/rANC[1];}
if(aNC[0] === 255 && aNC[1] === 0 && aNC[2] !== 0){aNC[2] += 255/rANC[1]*-1;}
if(aNC[0] < 0){aNC[0] = 0;} if(255 < aNC[0]){aNC[0] = 255;}
if(aNC[1] < 0){aNC[1] = 0;} if(255 < aNC[1]){aNC[1] = 255;}
if(aNC[2] < 0){aNC[2] = 0;} if(255 < aNC[2]){aNC[2] = 255;}
}
function katie(){
if([Link]("actionBarItem0")){
if([Link]("actionBarItem3").[Link] === "inline-block"){
if(fBX !== 3){
aVZ = [[0,480],[0,360],[0,255]];
if(sANC === 1){aNC = [255,0,0];}
fBX = 3;
}
aVZ[0][0] += 1;
if(aVZ[0][1] <= aVZ[0][0]){
aVZ[0][0] = 0;
}
aVZ[1][0] += 1;
if(aVZ[1][1] <= aVZ[1][0]){
aVZ[1][0] = 0;
}
aVZ[2][0] += 1;
if(aVZ[2][1] <= aVZ[2][0]){
aVZ[2][0] = 0;
}
[Link]();
[Link] = 24;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.625)";
[Link](960,540,212,0+[Link]/(aVZ[0][1]/2)*aVZ[0][0],7/8*[Link]+[Link]/
(aVZ[0][1]/2)*aVZ[0][0]);
[Link]();
[Link]();
[Link] = 30;
[Link] =
"rgb("+[Link](aNC[0]/255*220)+","+[Link](aNC[1]/255*220)+","+[Link](aNC
[2]/255*220)+",0.625)";
[Link](960,540,185,0+[Link]/(aVZ[1][1]/2)*aVZ[1][0],2/3*[Link]+[Link]/
(aVZ[1][1]/2)*aVZ[1][0]);
[Link]();
[Link]();
[Link] = 45;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.5)";
[Link](960,540,85,0+[Link]/(aVZ[2][1]/2)*aVZ[2][0],1/3*[Link]+[Link]/
(aVZ[2][1]/2)*aVZ[2][0]);
[Link]();
}
if([Link]("actionBarItem2").[Link] === "inline-
block"){
if(fBX !== 3){
aVZ = [[0,480],[0,360],[0,255]];
if(sANC === 1){aNC = [255,0,0];}
fBX = 3;
}
aVZ[0][0] += 1;
if(aVZ[0][1] <= aVZ[0][0]){
aVZ[0][0] = 0;
}
aVZ[1][0] += 1;
if(aVZ[1][1] <= aVZ[1][0]){
aVZ[1][0] = 0;
}
aVZ[2][0] += 1;
if(aVZ[2][1] <= aVZ[2][0]){
aVZ[2][0] = 0;
}
[Link]();
[Link] = 24;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.625)";
[Link](960,540,212,0+[Link]/(aVZ[0][1]/2)*aVZ[0][0],7/8*[Link]+[Link]/
(aVZ[0][1]/2)*aVZ[0][0]);
[Link]();
[Link]();
[Link] = 30;
[Link] =
"rgb("+[Link](aNC[0]/255*220)+","+[Link](aNC[1]/255*220)+","+[Link](aNC
[2]/255*220)+",0.625)";
[Link](960,540,185,0+[Link]/(aVZ[1][1]/2)*aVZ[1][0],2/3*[Link]+[Link]/
(aVZ[1][1]/2)*aVZ[1][0]);
[Link]();
[Link]();
[Link] = 45;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.5)";
[Link](960,540,85,0+[Link]/(aVZ[2][1]/2)*aVZ[2][0],1/3*[Link]+[Link]/
(aVZ[2][1]/2)*aVZ[2][0]);
[Link]();
}
if([Link]("actionBarItem4").[Link] === "inline-block"){
if(fBX !== 4){
aVZ = [[0,360],[0,250],[0,225],[0,250]];
if(sANC === 1){aNC = [255,0,0];}
fBX = 4;
}
aVZ[0][0] += -1;
if(aVZ[0][1] <= aVZ[0][0]){
aVZ[0][0] = 0;
}
aVZ[1][0] += 1;
if(aVZ[1][1] <= aVZ[1][0]){
aVZ[1][0] = 0;
}
aVZ[2][0] += -1;
if(aVZ[2][1] <= aVZ[2][0]){
aVZ[2][0] = 0;
}
aVZ[3][0] += 1;
if(aVZ[3][1] <= aVZ[3][0]){
aVZ[3][0] = 0;
}
[Link]();
[Link] = 36;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.45)";
[Link](960,540,251,0+[Link]/(aVZ[0][1]/2)*aVZ[0][0],15/16*[Link]+[Link]/
(aVZ[0][1]/2)*aVZ[0][0]);
[Link]();
[Link]();
[Link] = 46;
[Link] =
"rgb("+[Link](aNC[0]/255*220)+","+[Link](aNC[1]/255*220)+","+[Link](aNC
[2]/255*220)+",0.45)";
[Link](960,540,210,0+[Link]/(aVZ[1][1]/2)*aVZ[1][0],7/9*[Link]+[Link]/
(aVZ[1][1]/2)*aVZ[1][0]);
[Link]();
[Link]();
[Link] = 32;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.383)";
[Link](960,540,109,0+[Link]/(aVZ[2][1]/2)*aVZ[2][0],2/3*[Link]+[Link]/
(aVZ[2][1]/2)*aVZ[2][0]);
[Link]();
[Link]();
[Link] = 26;
[Link] =
"rgb("+[Link](aNC[0]/255*235)+","+[Link](aNC[1]/255*235)+","+[Link](aNC
[2]/255*235)+",0.383)";
[Link](960,540,80,0+[Link]/(aVZ[3][1]/2)*aVZ[3][0],7/8*[Link]+[Link]/
(aVZ[3][1]/2)*aVZ[3][0]);
[Link]();
}
if([Link]("actionBarItem2").[Link] === "inline-
block"){
if(fBX !== 3){
aVZ = [[0,480],[0,360],[0,255]];
if(sANC === 1){aNC = [255,0,0];}
fBX = 3;
}
aVZ[0][0] += 1;
if(aVZ[0][1] <= aVZ[0][0]){
aVZ[0][0] = 0;
}
aVZ[1][0] += 1;
if(aVZ[1][1] <= aVZ[1][0]){
aVZ[1][0] = 0;
}
aVZ[2][0] += 1;
if(aVZ[2][1] <= aVZ[2][0]){
aVZ[2][0] = 0;
}
[Link]();
[Link] = 24;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.625)";
[Link](960,540,212,0+[Link]/(aVZ[0][1]/2)*aVZ[0][0],7/8*[Link]+[Link]/
(aVZ[0][1]/2)*aVZ[0][0]);
[Link]();
[Link]();
[Link] = 30;
[Link] =
"rgb("+[Link](aNC[0]/255*220)+","+[Link](aNC[1]/255*220)+","+[Link](aNC
[2]/255*220)+",0.625)";
[Link](960,540,185,0+[Link]/(aVZ[1][1]/2)*aVZ[1][0],2/3*[Link]+[Link]/
(aVZ[1][1]/2)*aVZ[1][0]);
[Link]();
[Link]();
[Link] = 45;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.5)";
[Link](960,540,85,0+[Link]/(aVZ[2][1]/2)*aVZ[2][0],1/3*[Link]+[Link]/
(aVZ[2][1]/2)*aVZ[2][0]);
[Link]();
}
if([Link]("actionBarItem4").[Link] === "inline-
block"){
if(fBX !== 4){
aVZ = [[0,360],[0,250],[0,225],[0,250]];
if(sANC === 1){aNC = [255,0,0];}
fBX = 4;
}
aVZ[0][0] += -1;
if(aVZ[0][1] <= aVZ[0][0]){
aVZ[0][0] = 0;
}
aVZ[1][0] += 1;
if(aVZ[1][1] <= aVZ[1][0]){
aVZ[1][0] = 0;
}
aVZ[2][0] += -1;
if(aVZ[2][1] <= aVZ[2][0]){
aVZ[2][0] = 0;
}
aVZ[3][0] += 1;
if(aVZ[3][1] <= aVZ[3][0]){
aVZ[3][0] = 0;
}
[Link]();
[Link] = 36;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.45)";
[Link](960,540,251,0+[Link]/(aVZ[0][1]/2)*aVZ[0][0],15/16*[Link]+[Link]/
(aVZ[0][1]/2)*aVZ[0][0]);
[Link]();
[Link]();
[Link] = 46;
[Link] =
"rgb("+[Link](aNC[0]/255*220)+","+[Link](aNC[1]/255*220)+","+[Link](aNC
[2]/255*220)+",0.45)";
[Link](960,540,210,0+[Link]/(aVZ[1][1]/2)*aVZ[1][0],7/9*[Link]+[Link]/
(aVZ[1][1]/2)*aVZ[1][0]);
[Link]();
[Link]();
[Link] = 32;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.383)";
[Link](960,540,109,0+[Link]/(aVZ[2][1]/2)*aVZ[2][0],2/3*[Link]+[Link]/
(aVZ[2][1]/2)*aVZ[2][0]);
[Link]();
[Link]();
[Link] = 26;
[Link] =
"rgb("+[Link](aNC[0]/255*235)+","+[Link](aNC[1]/255*235)+","+[Link](aNC
[2]/255*235)+",0.383)";
[Link](960,540,80,0+[Link]/(aVZ[3][1]/2)*aVZ[3][0],7/8*[Link]+[Link]/
(aVZ[3][1]/2)*aVZ[3][0]);
[Link]();
}
if([Link]("actionBarItem8").[Link] === "inline-
block"){
if(fBX !== 3){
aVZ = [[0,480],[0,360],[0,255]];
if(sANC === 1){aNC = [255,0,0];}
fBX = 3;
}
aVZ[0][0] += 1;
if(aVZ[0][1] <= aVZ[0][0]){
aVZ[0][0] = 0;
}
aVZ[1][0] += 1;
if(aVZ[1][1] <= aVZ[1][0]){
aVZ[1][0] = 0;
}
aVZ[2][0] += 1;
if(aVZ[2][1] <= aVZ[2][0]){
aVZ[2][0] = 0;
}
[Link]();
[Link] = 24;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.625)";
[Link](960,540,212,0+[Link]/(aVZ[0][1]/2)*aVZ[0][0],7/8*[Link]+[Link]/
(aVZ[0][1]/2)*aVZ[0][0]);
[Link]();
[Link]();
[Link] = 30;
[Link] =
"rgb("+[Link](aNC[0]/255*220)+","+[Link](aNC[1]/255*220)+","+[Link](aNC
[2]/255*220)+",0.625)";
[Link](960,540,185,0+[Link]/(aVZ[1][1]/2)*aVZ[1][0],2/3*[Link]+[Link]/
(aVZ[1][1]/2)*aVZ[1][0]);
[Link]();
[Link]();
[Link] = 45;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.5)";
[Link](960,540,85,0+[Link]/(aVZ[2][1]/2)*aVZ[2][0],1/3*[Link]+[Link]/
(aVZ[2][1]/2)*aVZ[2][0]);
[Link]();
}
if([Link]("actionBarItem7").[Link] === "inline-block"){
if(fBX !== 4){
aVZ = [[0,360],[0,250],[0,225],[0,250]];
if(sANC === 1){aNC = [255,0,0];}
fBX = 4;
}
aVZ[0][0] += -1;
if(aVZ[0][1] <= aVZ[0][0]){
aVZ[0][0] = 0;
}
aVZ[1][0] += 1;
if(aVZ[1][1] <= aVZ[1][0]){
aVZ[1][0] = 0;
}
aVZ[2][0] += -1;
if(aVZ[2][1] <= aVZ[2][0]){
aVZ[2][0] = 0;
}
aVZ[3][0] += 1;
if(aVZ[3][1] <= aVZ[3][0]){
aVZ[3][0] = 0;
}
[Link]();
[Link] = 36;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.45)";
[Link](960,540,251,0+[Link]/(aVZ[0][1]/2)*aVZ[0][0],15/16*[Link]+[Link]/
(aVZ[0][1]/2)*aVZ[0][0]);
[Link]();
[Link]();
[Link] = 46;
[Link] =
"rgb("+[Link](aNC[0]/255*220)+","+[Link](aNC[1]/255*220)+","+[Link](aNC
[2]/255*220)+",0.45)";
[Link](960,540,210,0+[Link]/(aVZ[1][1]/2)*aVZ[1][0],7/9*[Link]+[Link]/
(aVZ[1][1]/2)*aVZ[1][0]);
[Link]();
[Link]();
[Link] = 32;
[Link] = "rgb("+[Link](aNC[0])+","+[Link](aNC[1])
+","+[Link](aNC[2])+",0.383)";
[Link](960,540,109,0+[Link]/(aVZ[2][1]/2)*aVZ[2][0],2/3*[Link]+[Link]/
(aVZ[2][1]/2)*aVZ[2][0]);
[Link]();
[Link]();
[Link] = 26;
[Link] =
"rgb("+[Link](aNC[0]/255*235)+","+[Link](aNC[1]/255*235)+","+[Link](aNC
[2]/255*235)+",0.383)";
[Link](960,540,80,0+[Link]/(aVZ[3][1]/2)*aVZ[3][0],7/8*[Link]+[Link]/
(aVZ[3][1]/2)*aVZ[3][0]);
[Link]();
}
if([Link]("actionBarItem5").[Link] === "inline-block"){
if(fBX !== 5){
aVZ = [[0,250,2.5,10,1.2]];
if(sANC === 1){aNC = [255,0,255];}
fBX = 5;
}
aVZ[0][0] += 1;
if(aVZ[0][1] <= aVZ[0][0]){
aVZ[0][0] = 0;
}
for(Laa = 0; Laa < [Link](aVZ[0][1]/5*2); Laa++){
[Link]();
[Link] = 26;
[Link] =
"rgb("+[Link](aNC[0]/255*235)+","+[Link](aNC[1]/255*235)+","+[Link](aNC
[2]/255*235)+",0.5)";
[Link](960,540,200+[Link](aVZ[0][3]*[Link]/(aVZ[0][1]/aVZ[0][2])*(Laa-
aVZ[0][0]))*aVZ[0][3]*aVZ[0][4],0-2*[Link]/aVZ[0][1]*Laa+2*[Link]/aVZ[0]
[1]*aVZ[0][0],2*[Link]/aVZ[0][1]-2*[Link]/aVZ[0][1]*Laa+2*[Link]/aVZ[0]
[1]*aVZ[0][0]);
[Link]();
}
}
}
}
function letThereBeLight(){
if(rANC[0] === 1){
rainbowColor();
}
katie();
[Link](letThereBeLight);
}
[Link](letThereBeLight);