Big Brother Aspect

After a 20 day struggle I get my hands on some fuel that might power my plans and operations, and about 5 days after having it I struck gold in the form of an “INANIMATE OBJECT DATA CREATOR” which is just a name for a program that creates data you put onto inanimate objects.
Before, I only made data that people wore, in other words, upgrading people. But then I thought, if I upgrade inanimate objects like guns, cellphones, electrical wires, then that might earn us the effect we are looking for.
That effect being a victory condition — something that happens that enables us to declare victory. This would most likely be a sequence of breakthroughs like this inanimate object data creator, but would be, in even more precise definition, a series of breakthroughs around creating people, that these people become so massive, probably like at least 6 months after their creation, that it overpowers negative energy and stops death.
This victory condition is so far away that I almost don’t even try to reach it. The conditions necessary for that sequence of breakthroughs to take place are so remote, we need only look at our world, look at the conflict in Ukraine, thousands, THOUSANDS of people with ak47s shooting at each other, not tens or hundreds, but possibly hundreds of thousands of people with weapons trying to kill each other, and victory is zero or relatively no deaths, and thats not even all that this condition is made up of, it gets even harder than that, though I don’t know everything about it.
Here’s the data creator it’s running on my computer now:
//====+====+====+====+====+====+====+====+====+====+====+====+====+====+====+==
// INCLUDE STATEMENTS
#include <iostream>
#include <vector>
#include <string>
#include <bitset>
// RANDOM INCLUDES (PCG RANDOM)
#include <random>
#include "random/pcg_random.hpp"
#include "random/pcg_extras.hpp"
#include "random/pcg_uint128.hpp"
//====+====+====+====+====+====+====+====+====+====+====+====+====+====+====+==
// CLASSES
class component
{
protected:
signed long long int local_system_id = 0;
signed long long int local_class_id = 0;
signed long long int local_data_id = 0;
signed long long int local_type_id = 0;
std::string signature_str = "void";
void set_local_system_id(signed long long int system_id_input)
{
local_system_id = system_id_input;
}
void set_local_class_id(signed long long int class_id_input)
{
local_class_id = class_id_input;
}
void set_local_data_id(signed long long int data_id_input)
{
local_data_id = data_id_input;
}
void set_local_type_id(signed long long int type_id_input)
{
local_type_id = type_id_input;
}
void set_signature_str(std::string input_signature)
{
signature_str = input_signature;
}
public:
void call_set_local_system_id(signed long long int call_system_id_input)
{
set_local_system_id(call_system_id_input);
}
void call_set_local_class_id(signed long long int call_class_id_input)
{
set_local_class_id(call_class_id_input);
}
void call_set_local_data_id(signed long long int call_data_id_input)
{
set_local_data_id(call_data_id_input);
}
void call_set_local_type_id(signed long long int call_type_id_input)
{
set_local_type_id(call_type_id_input);
}
void call_set_signature_str(std::string call_sign_str)
{
set_signature_str(call_sign_str);
}
};
class buffer
{
protected:
std::vector<signed long long int> local_random_vector;
std::vector<signed long long int> local_mod_random_vector;
void set_local_random_vector(std::vector<signed long long int> random_vector_input)
{
local_random_vector = random_vector_input;
}
void set_local_mod_random_vector(std::vector<signed long long int> mod_random_vector_input)
{
local_mod_random_vector = mod_random_vector_input;
}
public:
void call_set_local_random_vector(std::vector<signed long long int> call_random_vector_input)
{
set_local_random_vector(call_random_vector_input);
}
void call_set_local_mod_random_vector(std::vector<signed long long int> call_mod_random_vector_input)
{
set_local_mod_random_vector(call_mod_random_vector_input);
}
};
class positive_hex : public component, public buffer
{
protected:
signed long long int local_positive_hex_id = 0;
void set_local_positive_hex_id(signed long long int id_input)
{
local_positive_hex_id = id_input;
}
public:
void call_set_local_positive_hex_id(signed long long int call_id_input)
{
set_local_positive_hex_id(call_id_input);
}
};
class data_buff : public component, public buffer
{
protected:
signed long long int local_data_buff_id = 0;
void set_local_data_buff_id(signed long long int id_input)
{
local_data_buff_id = id_input;
}
public:
void call_set_local_data_buff_id(signed long long int call_id_input)
{
set_local_data_buff_id(call_id_input);
}
};
class threshold : public component
{
protected:
std::vector<positive_hex*> positive_hex_vector;
std::vector<data_buff*> data_buff_vector;
std::string descriptive_str = "void";
signed long long int local_threshold_id = 0;
void set_local_threshold_id(signed long long int id_input)
{
local_threshold_id = id_input;
}
void set_descriptive_str(std::string descriptive_input)
{
descriptive_str = descriptive_input;
}
void set_local_positive_hex_vector(std::vector<positive_hex*> positive_hex_input)
{
positive_hex_vector = positive_hex_input;
}
void set_local_data_buff_vector(std::vector<data_buff*> data_buff_input)
{
data_buff_vector = data_buff_input;
}
public:
void call_set_local_threshold_id(signed long long int call_id_input)
{
set_local_threshold_id(call_id_input);
}
void call_set_descriptive_str(std::string call_descriptive_input)
{
set_descriptive_str(call_descriptive_input);
}
void call_set_local_data_buff_vector(std::vector<data_buff*> call_data_buff_input)
{
set_local_data_buff_vector(call_data_buff_input);
}
void call_set_local_positive_hex_vector(std::vector<positive_hex*> call_positive_hex_input)
{
set_local_positive_hex_vector(call_positive_hex_input);
}
};
class inanimate : public component
{
protected:
std::vector<threshold*> local_threshold_vector;
void set_local_threshold_vector(std::vector<threshold*> threshold_input)
{
local_threshold_vector = threshold_input;
}
public:
void call_set_local_threshold_vector(std::vector<threshold*> call_threshold_input)
{
set_local_threshold_vector(call_threshold_input);
}
};
//====+====+====+====+====+====+====+====+====+====+====+====+====+====+====+==
// FORWARD DECLARATIONS
std::vector<signed long long int> return_random_matrix();
//====+====+====+====+====+====+====+====+====+====+====+====+====+====+====+==
// INT MAIN
int main(int argc, char *argv[])
{
if(argc > 1)
{
std::cout << "arguments detected, this program currently doesn\'t handle arguments.\n";
}
bool production = true;
std::vector<std::string> type_str_vector;
type_str_vector.push_back("energy");
type_str_vector.push_back("energy (electrical)");
type_str_vector.push_back("wooden");
type_str_vector.push_back("metal");
type_str_vector.push_back("plastic");
type_str_vector.push_back("composite");
type_str_vector.push_back("ceramic");
type_str_vector.push_back("glass");
type_str_vector.push_back("steel");
type_str_vector.push_back("aluminum");
type_str_vector.push_back("rubber");
type_str_vector.push_back("metallic");
type_str_vector.push_back("ferrous");
type_str_vector.push_back("nonferrous");
type_str_vector.push_back("golden");
type_str_vector.push_back("silvery");
type_str_vector.push_back("leaden");
type_str_vector.push_back("brazen");
type_str_vector.push_back("steely");
type_str_vector.push_back("aluminum");
type_str_vector.push_back("copper");
type_str_vector.push_back("iron");
type_str_vector.push_back("nickel");
type_str_vector.push_back("titanium");
type_str_vector.push_back("zinc");
type_str_vector.push_back("bronze");
type_str_vector.push_back("brass");
type_str_vector.push_back("stainless steel");
type_str_vector.push_back("galvanized");
type_str_vector.push_back("molten");
type_str_vector.push_back("refined");
type_str_vector.push_back("native");
type_str_vector.push_back("precious");
type_str_vector.push_back("base");
type_str_vector.push_back("synthetic");
type_str_vector.push_back("battery-powered");
type_str_vector.push_back("atomic");
type_str_vector.push_back("wind-powered");
type_str_vector.push_back("chemical");
type_str_vector.push_back("solar");
type_str_vector.push_back("mechanical");
type_str_vector.push_back("hydroelectric");
type_str_vector.push_back("powerhouse");
type_str_vector.push_back("nuclear");
type_str_vector.push_back("supernatural");
type_str_vector.push_back("recycled");
type_str_vector.push_back("magnetic");
type_str_vector.push_back("inorganic");
type_str_vector.push_back("organic");
type_str_vector.push_back("amorphous");
type_str_vector.push_back("crystalline");
type_str_vector.push_back("polymeric");
type_str_vector.push_back("carbon-fiber reinforced");
type_str_vector.push_back("carbon-fiber");
type_str_vector.push_back("concrete");
type_str_vector.push_back("fiberglass");
type_str_vector.push_back("plywood");
type_str_vector.push_back("reinforced");
type_str_vector.push_back("composite");
type_str_vector.push_back("cement");
type_str_vector.push_back("glass");
type_str_vector.push_back("stoneware");
type_str_vector.push_back("porcelain");
type_str_vector.push_back("clay");
type_str_vector.push_back("ceramic");
type_str_vector.push_back("petrified");
type_str_vector.push_back("carved");
type_str_vector.push_back("burnt");
type_str_vector.push_back("polished");
type_str_vector.push_back("grained");
type_str_vector.push_back("hickory");
type_str_vector.push_back("redwood");
type_str_vector.push_back("walnut");
type_str_vector.push_back("poplar");
type_str_vector.push_back("birch");
type_str_vector.push_back("maple");
type_str_vector.push_back("oak");
type_str_vector.push_back("cedar");
type_str_vector.push_back("pine");
type_str_vector.push_back("softwood");
type_str_vector.push_back("hardwood");
type_str_vector.push_back("raw");
type_str_vector.push_back("natural");
type_str_vector.push_back("phenolic");
type_str_vector.push_back("conductive");
type_str_vector.push_back("transparent");
type_str_vector.push_back("opaque");
type_str_vector.push_back("vinyl");
type_str_vector.push_back("teflon");
type_str_vector.push_back("nylon");
type_str_vector.push_back("polyethylene");
type_str_vector.push_back("polycarbonate");
type_str_vector.push_back("acrylic");
type_str_vector.push_back("elastic");
type_str_vector.push_back("thermosetting");
type_str_vector.push_back("thermoplastic");
type_str_vector.push_back("artificial");
std::vector<std::string> object_str_vector;
object_str_vector.push_back("Gun");
object_str_vector.push_back("Piece of paper");
object_str_vector.push_back("Coffee table");
object_str_vector.push_back("Chair");
object_str_vector.push_back("Table");
object_str_vector.push_back("Book");
object_str_vector.push_back("Car");
object_str_vector.push_back("Computer");
object_str_vector.push_back("Phone");
object_str_vector.push_back("Key");
object_str_vector.push_back("Clock");
object_str_vector.push_back("Pen");
object_str_vector.push_back("Pencil");
object_str_vector.push_back("Sofa");
object_str_vector.push_back("Bed");
object_str_vector.push_back("Desk");
object_str_vector.push_back("Lamp");
object_str_vector.push_back("Mirror");
object_str_vector.push_back("Fridge");
object_str_vector.push_back("Oven");
object_str_vector.push_back("Microwave");
object_str_vector.push_back("Trash can");
object_str_vector.push_back("Wallet");
object_str_vector.push_back("Bag");
object_str_vector.push_back("Shoes");
object_str_vector.push_back("Shirt");
object_str_vector.push_back("Pants");
object_str_vector.push_back("Jacket");
object_str_vector.push_back("Hat");
object_str_vector.push_back("Umbrella");
object_str_vector.push_back("Headphones");
object_str_vector.push_back("Notebook");
object_str_vector.push_back("Ruler");
object_str_vector.push_back("Eraser");
object_str_vector.push_back("Scissors");
object_str_vector.push_back("Comb");
object_str_vector.push_back("Cup");
object_str_vector.push_back("Plate");
object_str_vector.push_back("Spoon");
object_str_vector.push_back("Fork");
object_str_vector.push_back("Knife");
object_str_vector.push_back("Bottle");
object_str_vector.push_back("Toothbrush");
object_str_vector.push_back("Toothpaste");
object_str_vector.push_back("Towel");
object_str_vector.push_back("Soap");
object_str_vector.push_back("Shampoo");
object_str_vector.push_back("Pillow");
object_str_vector.push_back("Blanket");
object_str_vector.push_back("Stove");
object_str_vector.push_back("Sink");
object_str_vector.push_back("Washing machine");
object_str_vector.push_back("Pot");
object_str_vector.push_back("Dish");
object_str_vector.push_back("Stool");
object_str_vector.push_back("Glass");
object_str_vector.push_back("Coin");
object_str_vector.push_back("Trousers");
object_str_vector.push_back("Sweater");
object_str_vector.push_back("Tie");
object_str_vector.push_back("Backpack");
object_str_vector.push_back("Paper");
object_str_vector.push_back("Glue");
object_str_vector.push_back("Door");
object_str_vector.push_back("Window");
object_str_vector.push_back("Carpet");
object_str_vector.push_back("Candle");
object_str_vector.push_back("Sword");
object_str_vector.push_back("Fire");
object_str_vector.push_back("Bubble");
object_str_vector.push_back("Robot");
object_str_vector.push_back("Wheel");
object_str_vector.push_back("Paint");
object_str_vector.push_back("Brick");
object_str_vector.push_back("Apron");
object_str_vector.push_back("Puzzle");
object_str_vector.push_back("Picture");
object_str_vector.push_back("Diary");
object_str_vector.push_back("Water");
object_str_vector.push_back("Packet");
object_str_vector.push_back("Chewing gum");
object_str_vector.push_back("Tissue");
object_str_vector.push_back("Glasses");
object_str_vector.push_back("Sweet");
object_str_vector.push_back("Photo");
object_str_vector.push_back("Camera");
object_str_vector.push_back("Stamp");
object_str_vector.push_back("Postcard");
object_str_vector.push_back("Dictionary");
object_str_vector.push_back("Brush");
object_str_vector.push_back("Credit card");
object_str_vector.push_back("Identity card");
object_str_vector.push_back("Mobile phone");
object_str_vector.push_back("Phone card");
object_str_vector.push_back("Button");
object_str_vector.push_back("Lighter");
object_str_vector.push_back("Cigarette");
object_str_vector.push_back("Match");
object_str_vector.push_back("Lipstick");
object_str_vector.push_back("Purse");
object_str_vector.push_back("Case");
object_str_vector.push_back("Clip");
object_str_vector.push_back("Rubber");
object_str_vector.push_back("File");
object_str_vector.push_back("Banknote");
object_str_vector.push_back("Passport");
object_str_vector.push_back("Driving licence");
object_str_vector.push_back("Laptop");
object_str_vector.push_back("Rubbish");
object_str_vector.push_back("Painkiller");
object_str_vector.push_back("Sunscreen");
object_str_vector.push_back("Headphone");
object_str_vector.push_back("Player");
object_str_vector.push_back("Battery");
object_str_vector.push_back("Bowl");
object_str_vector.push_back("Spatula");
object_str_vector.push_back("Remote");
object_str_vector.push_back("Taco");
object_str_vector.push_back("Teapot");
object_str_vector.push_back("Teddy Bear");
object_str_vector.push_back("Suitcase");
object_str_vector.push_back("Sunglasses");
object_str_vector.push_back("Swimsuit");
object_str_vector.push_back("Swing");
object_str_vector.push_back("Tractor");
object_str_vector.push_back("Train");
object_str_vector.push_back("Tree");
object_str_vector.push_back("Dagger");
object_str_vector.push_back("Scimitar");
object_str_vector.push_back("Sabre");
object_str_vector.push_back("Longsword");
object_str_vector.push_back("Claymore");
object_str_vector.push_back("Gladius");
object_str_vector.push_back("Katana");
object_str_vector.push_back("Wakizashi");
object_str_vector.push_back("Tachi");
object_str_vector.push_back("Estoc");
object_str_vector.push_back("Falchion");
object_str_vector.push_back("Jian");
object_str_vector.push_back("Dao");
object_str_vector.push_back("Zweihander");
object_str_vector.push_back("Missile");
object_str_vector.push_back("Rocket");
object_str_vector.push_back("Mortar");
object_str_vector.push_back("Flamethrower");
object_str_vector.push_back("Catapult");
object_str_vector.push_back("Ballista");
object_str_vector.push_back("Trebuchet");
object_str_vector.push_back("Lance");
object_str_vector.push_back("Pike");
object_str_vector.push_back("Trident");
object_str_vector.push_back("Club");
object_str_vector.push_back("Morning star");
object_str_vector.push_back("Flail");
object_str_vector.push_back("Warhammer");
object_str_vector.push_back("Battleaxe");
object_str_vector.push_back("Cutlass");
object_str_vector.push_back("Rapier");
object_str_vector.push_back("Broadsword");
object_str_vector.push_back("Kukri");
object_str_vector.push_back("Tomahawk");
object_str_vector.push_back("Boomerang");
object_str_vector.push_back("Blowgun");
object_str_vector.push_back("Sling");
object_str_vector.push_back("Whip");
object_str_vector.push_back("Nunchaku");
object_str_vector.push_back("Shuriken");
object_str_vector.push_back("Throwing knife");
object_str_vector.push_back("Throwing axe");
object_str_vector.push_back("Chakram");
object_str_vector.push_back("Brass knuckles");
object_str_vector.push_back("Knuckleduster");
object_str_vector.push_back("Switchblade");
object_str_vector.push_back("Bo Staff");
object_str_vector.push_back("Sai");
object_str_vector.push_back("Tonfa");
object_str_vector.push_back("Kama");
object_str_vector.push_back("Epee");
object_str_vector.push_back("Foil");
object_str_vector.push_back("Dirk");
object_str_vector.push_back("Seax");
object_str_vector.push_back("Kris");
object_str_vector.push_back("Macuahuitl");
object_str_vector.push_back("Obsidian blade");
object_str_vector.push_back("Claymore mine");
object_str_vector.push_back("Caltrop");
object_str_vector.push_back("Ballista bolt");
object_str_vector.push_back("Onager");
object_str_vector.push_back("Carbine");
object_str_vector.push_back("Musket");
object_str_vector.push_back("Blunderbuss");
object_str_vector.push_back("Hand cannon");
object_str_vector.push_back("Harpoon");
object_str_vector.push_back("Net");
object_str_vector.push_back("War pick");
object_str_vector.push_back("War scythe");
object_str_vector.push_back("Spiked shield");
object_str_vector.push_back("Blowpipe");
object_str_vector.push_back("Spatha");
object_str_vector.push_back("Bagh nakh (tiger claws)");
object_str_vector.push_back("Cestus");
object_str_vector.push_back("Deer Horn Knives");
object_str_vector.push_back("Emeici");
object_str_vector.push_back("Finger knife");
object_str_vector.push_back("Gauntlet");
object_str_vector.push_back("Katar");
object_str_vector.push_back("Korean fan");
object_str_vector.push_back("Larim fighting bracelet");
object_str_vector.push_back("Maduvu");
object_str_vector.push_back("Pata");
object_str_vector.push_back("Push dagger");
object_str_vector.push_back("Tekko");
object_str_vector.push_back("Wind and fire wheels");
object_str_vector.push_back("Moche Tiger claw");
object_str_vector.push_back("Aruval");
object_str_vector.push_back("Bolo");
object_str_vector.push_back("Falcata");
object_str_vector.push_back("Golok");
object_str_vector.push_back("Harpe");
object_str_vector.push_back("Kopis");
object_str_vector.push_back("Kora");
object_str_vector.push_back("Kudi");
object_str_vector.push_back("Machete");
object_str_vector.push_back("Vettukathi");
object_str_vector.push_back("Mahera");
object_str_vector.push_back("One handed Dacian falx");
object_str_vector.push_back("Arit");
object_str_vector.push_back("Karambit");
object_str_vector.push_back("Kujang");
object_str_vector.push_back("Mandau");
object_str_vector.push_back("Pichangatti");
object_str_vector.push_back("Punyal");
object_str_vector.push_back("Sickle");
object_str_vector.push_back("Sudanese sickle knife");
object_str_vector.push_back("Throwing dart");
object_str_vector.push_back("Angon");
object_str_vector.push_back("Assegai");
object_str_vector.push_back("Atlatl and darts");
object_str_vector.push_back("Falarica");
object_str_vector.push_back("Jangchang");
object_str_vector.push_back("Javelin");
object_str_vector.push_back("Lancea");
object_str_vector.push_back("Mesangylon");
object_str_vector.push_back("Metal bar");
object_str_vector.push_back("Metal pipe");
object_str_vector.push_back("Northern spear");
object_str_vector.push_back("Pilum");
object_str_vector.push_back("Soliferrum");
object_str_vector.push_back("Spiculum");
object_str_vector.push_back("Vel");
object_str_vector.push_back("Verutum");
object_str_vector.push_back("Woomera");
object_str_vector.push_back("Handgun");
object_str_vector.push_back("Revolver");
object_str_vector.push_back("Pistol");
object_str_vector.push_back("Rifle");
object_str_vector.push_back("Shotgun");
object_str_vector.push_back("Submachine gun");
object_str_vector.push_back("Bayonet");
object_str_vector.push_back("Quarterstaff");
object_str_vector.push_back("Air gun");
object_str_vector.push_back("Derringer");
object_str_vector.push_back("Spencer carbine");
object_str_vector.push_back("Gatling gun");
object_str_vector.push_back("Harquebus");
object_str_vector.push_back("Dreyse rifle");
object_str_vector.push_back("Lee-Enfield rifle");
object_str_vector.push_back("Mauser rifle");
object_str_vector.push_back("Springfield rifle");
object_str_vector.push_back("Bren machine gun");
object_str_vector.push_back("Browning automatic rifle");
object_str_vector.push_back("Hotchkiss machine gun");
object_str_vector.push_back("MG42");
object_str_vector.push_back("MAG machine gun");
object_str_vector.push_back("Maxim machine gun");
object_str_vector.push_back("Schwarzlose machine gun");
object_str_vector.push_back("Assault rifle");
object_str_vector.push_back("AK-47");
object_str_vector.push_back("ArmaLite rifle");
object_str_vector.push_back("M16 rifle");
object_str_vector.push_back("Garand rifle");
object_str_vector.push_back("Repeating rifle");
object_str_vector.push_back("Sten gun");
object_str_vector.push_back("Thompson submachine gun");
object_str_vector.push_back("Uzi submachine gun");
object_str_vector.push_back("Intermediate-range nuclear weapons");
object_str_vector.push_back("Tactical nuclear weapon");
object_str_vector.push_back("Thermonuclear bomb");
object_str_vector.push_back("Atomic bomb");
object_str_vector.push_back("Neutron bomb");
object_str_vector.push_back("Weapon of mass destruction");
object_str_vector.push_back("Battering ram");
object_str_vector.push_back("Culverin");
object_str_vector.push_back("Ram");
object_str_vector.push_back("Bolt action rifle");
object_str_vector.push_back("Lever action rifle");
object_str_vector.push_back("Semi-automatic rifle");
object_str_vector.push_back("Machine Gun");
object_str_vector.push_back("Bolt");
object_str_vector.push_back("Fighting knives");
object_str_vector.push_back("Shortswords");
object_str_vector.push_back("Truncheons");
object_str_vector.push_back("Blunt staves");
object_str_vector.push_back("Polearms with axe-like blades");
object_str_vector.push_back("Polearms with spikes and hammers");
object_str_vector.push_back("Flexible weapons");
object_str_vector.push_back("Sectional weapons");
object_str_vector.push_back("Composite weapons");
object_str_vector.push_back("Chains");
object_str_vector.push_back("Ropes");
object_str_vector.push_back("Shields");
object_str_vector.push_back("Throwing blades");
object_str_vector.push_back("Throwing spears");
object_str_vector.push_back("Throwing balls");
object_str_vector.push_back("Throwing sticks");
object_str_vector.push_back("Longbows");
object_str_vector.push_back("Recurve bows");
object_str_vector.push_back("Short bows");
object_str_vector.push_back("Reflex bows");
object_str_vector.push_back("Hand or fist weapons");
object_str_vector.push_back("Fans");
object_str_vector.push_back("Edged weapons");
object_str_vector.push_back("Bladed weapons");
object_str_vector.push_back("Curved one-handed swords");
object_str_vector.push_back("Straight one-handed swords");
object_str_vector.push_back("Curved two-handed swords");
object_str_vector.push_back("Hand-and-a-half swords");
object_str_vector.push_back("Two-handed greatswords");
object_str_vector.push_back("Axe-like swords");
object_str_vector.push_back("Sickle like knives");
object_str_vector.push_back("Picks");
object_str_vector.push_back("Pickaxes");
object_str_vector.push_back("Blunt weapons");
object_str_vector.push_back("Polearms");
object_str_vector.push_back("Spears");
object_str_vector.push_back("Whips");
object_str_vector.push_back("Composite bows");
object_str_vector.push_back("Hand crossbows");
object_str_vector.push_back("Repeating crossbows");
object_str_vector.push_back("Shortbows");
object_str_vector.push_back("Composite shortbows");
object_str_vector.push_back("Longbows");
object_str_vector.push_back("Heavy crossbows");
object_str_vector.push_back("Light crossbows");
object_str_vector.push_back("Darts");
object_str_vector.push_back("Shortspears");
object_str_vector.push_back("Light hammers");
object_str_vector.push_back("Tridents");
object_str_vector.push_back("Shuriken");
object_str_vector.push_back("Nets");
object_str_vector.push_back("Javelins");
object_str_vector.push_back("Throwing axes");
object_str_vector.push_back("Hand crossbows");
object_str_vector.push_back("Repeating crossbows");
object_str_vector.push_back("Slings");
object_str_vector.push_back("Sling bullets");
object_str_vector.push_back("Arrows");
object_str_vector.push_back("Bolts");
object_str_vector.push_back("Daggers");
object_str_vector.push_back("Swords");
object_str_vector.push_back("Hammers");
object_str_vector.push_back("Maces");
object_str_vector.push_back("Pole Weapon");
object_str_vector.push_back("Blade And Whip");
object_str_vector.push_back("Claws");
object_str_vector.push_back("Dual Daggers");
object_str_vector.push_back("Dual Swords");
object_str_vector.push_back("Fists");
object_str_vector.push_back("Glaives");
object_str_vector.push_back("Gunblade");
object_str_vector.push_back("Heavy Blade");
object_str_vector.push_back("Machetes");
object_str_vector.push_back("Nikanas");
object_str_vector.push_back("Rapiers");
object_str_vector.push_back("Scythes");
object_str_vector.push_back("Sparring");
object_str_vector.push_back("Staves");
object_str_vector.push_back("Sword And Shield");
object_str_vector.push_back("Tonfas");
object_str_vector.push_back("Two-Handed Nikana");
object_str_vector.push_back("Warfans");
object_str_vector.push_back("Zaw");
object_str_vector.push_back("Hand mortar");
object_str_vector.push_back("Ballistic knife");
object_str_vector.push_back("Grenade launchers");
object_str_vector.push_back("Anti-tank rounds");
object_str_vector.push_back("Arrow types");
object_str_vector.push_back("Aerial torpedo");
object_str_vector.push_back("AHEAD ammunition");
object_str_vector.push_back("Anti-submarine weapon");
object_str_vector.push_back("Armor-piercing cap");
object_str_vector.push_back("Armour-piercing ammunition");
object_str_vector.push_back("Armour-piercing discarding sabot");
object_str_vector.push_back("Armour-piercing fin-stabilized discarding sabot");
object_str_vector.push_back("Armour-piercing, capped, ballistic capped shell");
object_str_vector.push_back("Arrow poison");
object_str_vector.push_back("Ballistic cap");
object_str_vector.push_back("Ballistic coefficient");
object_str_vector.push_back("Ballistic impact");
object_str_vector.push_back("Ballistic table");
object_str_vector.push_back("Bean bag round");
object_str_vector.push_back("Black Talon");
object_str_vector.push_back("Bleach balloon");
object_str_vector.push_back("Blended-metal bullets");
object_str_vector.push_back("Bodkin point");
object_str_vector.push_back("Bullet");
object_str_vector.push_back("Canister shot");
object_str_vector.push_back("List of cannon projectiles");
object_str_vector.push_back("Chain shot");
object_str_vector.push_back("Crossbow bolt");
object_str_vector.push_back("Dart (missile)");
object_str_vector.push_back("Diehl DM-41");
object_str_vector.push_back("Falarica");
object_str_vector.push_back("Flechette");
object_str_vector.push_back("Fletching");
object_str_vector.push_back("Glaser Safety Slug");
object_str_vector.push_back("Gold Dot");
object_str_vector.push_back("Grapeshot");
object_str_vector.push_back("Kinetic energy penetrator");
object_str_vector.push_back("Kinetic energy weapon");
object_str_vector.push_back("Lancea (weapon)");
object_str_vector.push_back("List of 40 mm grenades");
object_str_vector.push_back("M1147 Advanced Multi-Purpose");
object_str_vector.push_back("MAHEM");
object_str_vector.push_back("MEI Mercury");
object_str_vector.push_back("Mesangylon");
object_str_vector.push_back("Palliser shot and shell");
object_str_vector.push_back("Pellet (air gun)");
object_str_vector.push_back("Proof test");
object_str_vector.push_back("Punkin chunkin");
object_str_vector.push_back("Ranger T");
object_str_vector.push_back("Round shot");
object_str_vector.push_back("Sectional density");
object_str_vector.push_back("Sibyna");
object_str_vector.push_back("Slug (projectile)");
object_str_vector.push_back("Spear");
object_str_vector.push_back("Spider shot");
object_str_vector.push_back("Tracer ammunition");
object_str_vector.push_back("Tranquilizer dart");
object_str_vector.push_back("Water balloon");
object_str_vector.push_back("Winchester Ranger");
object_str_vector.push_back("Winchester Ranger T");
object_str_vector.push_back("Defence pistols");
object_str_vector.push_back("Defensive revolvers");
object_str_vector.push_back("Defence rifles");
object_str_vector.push_back("Rubber ball Shotguns");
object_str_vector.push_back("Airsoft Revolver");
object_str_vector.push_back("Airsoft Grenades");
object_str_vector.push_back("Anti-aircraft gun");
object_str_vector.push_back("Antitank weapon");
object_str_vector.push_back("Big Bertha");
object_str_vector.push_back("French 75");
object_str_vector.push_back("Vulcan automatic cannon");
object_str_vector.push_back("Coastal artillery");
object_str_vector.push_back("German 88");
object_str_vector.push_back("Panzerfaust");
object_str_vector.push_back("Panzerschreck");
object_str_vector.push_back("Paris Gun");
object_str_vector.push_back("Depth charge");
object_str_vector.push_back("Dirty bomb");
object_str_vector.push_back("Improvised explosive device");
object_str_vector.push_back("Mine");
object_str_vector.push_back("Shrapnel");
object_str_vector.push_back("PETN");
object_str_vector.push_back("RDX");
object_str_vector.push_back("Trinitrotoluene (TNT)");
object_str_vector.push_back("Antiballistic missile");
object_str_vector.push_back("ICBM");
object_str_vector.push_back("Lance missile");
object_str_vector.push_back("Peacekeeper missile");
object_str_vector.push_back("Minuteman missile");
object_str_vector.push_back("Nike missile");
object_str_vector.push_back("Polaris missile");
object_str_vector.push_back("Poseidon missile");
object_str_vector.push_back("Torpedo");
object_str_vector.push_back("Trident missile");
object_str_vector.push_back("V-2 missile");
object_str_vector.push_back("V-1 missile");
object_str_vector.push_back("Bazooka");
object_str_vector.push_back("Congreve rocket");
object_str_vector.push_back("Semiautomatic pistol");
object_str_vector.push_back("Luger pistol");
object_str_vector.push_back("Airsoft gun");
object_str_vector.push_back("Handgun");
object_str_vector.push_back("Machine gun");
object_str_vector.push_back("Submachine gun");
object_str_vector.push_back("Automatic rifle");
object_str_vector.push_back("Submachine gun");
object_str_vector.push_back("Handgun");
object_str_vector.push_back("Machine gun");
object_str_vector.push_back("Rifle");
object_str_vector.push_back("Shotgun");
object_str_vector.push_back("Semiautomatic rifle");
object_str_vector.push_back("Automatic handgun");
object_str_vector.push_back("Automatic sub-machine gun");
object_str_vector.push_back("Light machine gun");
object_str_vector.push_back("Heavy machine gun");
object_str_vector.push_back("Double-action revolver");
object_str_vector.push_back("Single-action revolver");
object_str_vector.push_back("Pistol-Grip Firearm");
object_str_vector.push_back("Short-Barreled Rifle (SBR)");
object_str_vector.push_back("Snub-Nosed Revolver");
object_str_vector.push_back("Title I Firearms");
object_str_vector.push_back("Title II Firearms");
object_str_vector.push_back("AR-15");
object_str_vector.push_back("AR Pistol");
object_str_vector.push_back("Autoloading Firearms");
object_str_vector.push_back("Blowback-Operated");
object_str_vector.push_back("Recoil-Operated");
object_str_vector.push_back("Gas Operated");
object_str_vector.push_back("Direct Impingement");
object_str_vector.push_back("Piston-Operated");
object_str_vector.push_back("Curio and Relic (C&R)");
object_str_vector.push_back("Double-Action (DA)");
object_str_vector.push_back("Single-Action (SA)");
object_str_vector.push_back("Double-Action/Single-Action (DA/SA)");
object_str_vector.push_back("Double-Action (DA) or Double-Action Only (DAO)");
object_str_vector.push_back("Hammer Fired");
object_str_vector.push_back("Striker Fired");
object_str_vector.push_back("J-Frame Revolver");
object_str_vector.push_back("K-Frame Revolver");
object_str_vector.push_back("L-Frame Revolver");
object_str_vector.push_back("Fully Automatic");
object_str_vector.push_back("Single Shot");
object_str_vector.push_back("1911 Pistol");
object_str_vector.push_back("AK Rifles");
object_str_vector.push_back("Blaser");
object_str_vector.push_back("Benelli");
object_str_vector.push_back("BFG 50");
object_str_vector.push_back("Big Horn Armory");
object_str_vector.push_back("Beretta M9");
object_str_vector.push_back("Bechowiec-1");
object_str_vector.push_back("M1918 Browning automatic rifle (BAR)");
object_str_vector.push_back("Boeing");
object_str_vector.push_back("Brunswick Corporation");
object_str_vector.push_back("Błyskawica submachine gun");
object_str_vector.push_back("Colt");
object_str_vector.push_back("Cx4 Storm (Beretta)");
object_str_vector.push_back("Choroszmanów");
object_str_vector.push_back("Ckm wz. 25 Hotchkiss");
object_str_vector.push_back("EBO Kefefs");
object_str_vector.push_back("EDDA submachine gun");
object_str_vector.push_back("EDM Arms");
object_str_vector.push_back("ELF-2 submachine gun");
object_str_vector.push_back("Ekins Automatic Rifle");
object_str_vector.push_back("EMER-K1");
object_str_vector.push_back("Empire of Japan State Arsenals");
object_str_vector.push_back("Type 96 light machine gun");
object_str_vector.push_back("Empty Shell LLC");
object_str_vector.push_back("XM556");
object_str_vector.push_back("ENARM");
object_str_vector.push_back("ENARM MMG");
object_str_vector.push_back("ENARM Pentagun");
object_str_vector.push_back("ENARM SMG");
object_str_vector.push_back("Encom");
object_str_vector.push_back("Enterbras");
object_str_vector.push_back("EPK Machine Gun");
object_str_vector.push_back("Erma Werke");
object_str_vector.push_back("Escondido Arms MFG");
object_str_vector.push_back("M1 Garand");
object_str_vector.push_back("FN FAL");
object_str_vector.push_back("FN F2000");
object_str_vector.push_back("FN FNC");
object_str_vector.push_back("FN SCAR");
object_str_vector.push_back("FN P90");
object_str_vector.push_back("FAMAS");
object_str_vector.push_back("Heckler & Koch");
object_str_vector.push_back("Howa");
object_str_vector.push_back("IMI");
object_str_vector.push_back("IMI Galil");
object_str_vector.push_back("IMI Negev");
object_str_vector.push_back("IMI Uzi");
object_str_vector.push_back("IMI Tavor");
object_str_vector.push_back("IWI");
object_str_vector.push_back("IWI Tavor");
object_str_vector.push_back("IWI Negev");
object_str_vector.push_back("IWI Galil");
object_str_vector.push_back("Izhmash");
object_str_vector.push_back("Kalashnikov rifle");
object_str_vector.push_back("KBP Instrument Design Bureau");
object_str_vector.push_back("KH-2002");
object_str_vector.push_back("LAD");
object_str_vector.push_back("Lahti");
object_str_vector.push_back("Land Warfare Resources Corporation");
object_str_vector.push_back("Lee–Enfield");
object_str_vector.push_back("M1 Carbine");
object_str_vector.push_back("M14 rifle");
object_str_vector.push_back("M16 rifle");
object_str_vector.push_back("M2 Carbine");
object_str_vector.push_back("M3 Grease Gun");
object_str_vector.push_back("M4 Carbine");
object_str_vector.push_back("M17 rifle");
object_str_vector.push_back("M21 Sniper Weapon System");
object_str_vector.push_back("M24 Sniper Weapon System");
object_str_vector.push_back("M25 Sniper Weapon System");
object_str_vector.push_back("M40 rifle");
object_str_vector.push_back("M82 rifle");
object_str_vector.push_back("M95 rifle");
object_str_vector.push_back("M98 rifle");
object_str_vector.push_back("M1903 Springfield");
object_str_vector.push_back("M1917 Enfield");
object_str_vector.push_back("M1918 Browning Automatic Rifle");
object_str_vector.push_back("M1941 Johnson rifle");
object_str_vector.push_back("M1944 rifle");
object_str_vector.push_back("M1949 rifle");
object_str_vector.push_back("M1950 rifle");
object_str_vector.push_back("M203 grenade launcher");
object_str_vector.push_back("M240 machine gun");
object_str_vector.push_back("M249 light machine gun");
object_str_vector.push_back("M60 machine gun");
object_str_vector.push_back("Madsen");
object_str_vector.push_back("MAS-36 rifle");
object_str_vector.push_back("Mauser");
object_str_vector.push_back("Maxim gun");
object_str_vector.push_back("MG 34");
object_str_vector.push_back("MG 42");
object_str_vector.push_back("MG 81");
object_str_vector.push_back("MG 3");
object_str_vector.push_back("MG 36");
object_str_vector.push_back("MG 131");
object_str_vector.push_back("MG 151");
object_str_vector.push_back("MG 4");
object_str_vector.push_back("MG 08");
object_str_vector.push_back("MG 08/15");
object_str_vector.push_back("MP 18");
object_str_vector.push_back("MP 38");
object_str_vector.push_back("MP 40");
object_str_vector.push_back("MP 41");
object_str_vector.push_back("MP 43");
object_str_vector.push_back("MP 44");
object_str_vector.push_back("MP 5");
object_str_vector.push_back("MP 7");
object_str_vector.push_back("MP 9");
object_str_vector.push_back("MP 10");
object_str_vector.push_back("MP 28");
object_str_vector.push_back("MP 3008");
object_str_vector.push_back("MP 500");
object_str_vector.push_back("MPX");
object_str_vector.push_back("MTs-13");
object_str_vector.push_back("Madsen");
object_str_vector.push_back("Mannlicher");
object_str_vector.push_back("Marlin Firearms");
object_str_vector.push_back("Martini–Henry");
object_str_vector.push_back("Mateba");
object_str_vector.push_back("Mauser");
object_str_vector.push_back("Maxim");
object_str_vector.push_back("McMillan Firearms");
object_str_vector.push_back("Mendoza");
object_str_vector.push_back("Mossberg");
object_str_vector.push_back("Nambu");
object_str_vector.push_back("Norinco");
object_str_vector.push_back("P08 Luger");
object_str_vector.push_back("PPSh-41");
object_str_vector.push_back("PPS submachine gun");
object_str_vector.push_back("PTRS-41 anti-tank rifle");
object_str_vector.push_back("PTRD anti-tank rifle");
object_str_vector.push_back("Remington");
object_str_vector.push_back("Rheinmetall");
object_str_vector.push_back("Ruger");
object_str_vector.push_back("SKS");
object_str_vector.push_back("SIG Sauer");
object_str_vector.push_back("Smith & Wesson");
object_str_vector.push_back("Springfield Armory");
object_str_vector.push_back("Steyr Mannlicher");
object_str_vector.push_back("StG 44");
object_str_vector.push_back("Sten");
object_str_vector.push_back("Sterling submachine gun");
object_str_vector.push_back("Suomi KP-31");
object_str_vector.push_back("SVD Dragunov");
object_str_vector.push_back("Savage Arms");
object_str_vector.push_back("TDI Vector");
object_str_vector.push_back("TEC-9");
object_str_vector.push_back("Thompson submachine gun");
object_str_vector.push_back("Tokarev");
object_str_vector.push_back("Type 88");
object_str_vector.push_back("Type 99 rifle");
object_str_vector.push_back("Uzi");
object_str_vector.push_back("Vektor");
object_str_vector.push_back("Walther");
object_str_vector.push_back("Winchester");
object_str_vector.push_back("Zastava Arms");
object_str_vector.push_back("ZK-383");
object_str_vector.push_back("vz. 58");
object_str_vector.push_back("vz. 61 Skorpion");
object_str_vector.push_back("Beretta M9");
object_str_vector.push_back("Glock 18");
object_str_vector.push_back("Glock 17");
object_str_vector.push_back("M16A4");
object_str_vector.push_back("M16A1");
object_str_vector.push_back("M16A2");
object_str_vector.push_back("AKM");
object_str_vector.push_back("RPG-7");
object_str_vector.push_back("M1918 Browning Automatic Rifle");
object_str_vector.push_back("Browning Automatic 5");
object_str_vector.push_back("Type 5 Semi-Automatic Rifle");
object_str_vector.push_back("Auto Shotgun");
object_str_vector.push_back("SRS99D Sniper Rifle");
object_str_vector.push_back("Sniper Rifle");
object_str_vector.push_back("M40 Sniper Rifle");
object_str_vector.push_back("AW50 Sniper Rifle");
object_str_vector.push_back("Type 97 Sniper Rifle");
object_str_vector.push_back("VC32 Sniper Rifle");
object_str_vector.push_back("Stealth Recon Scout");
object_str_vector.push_back("M79 Grenade Launcher");
object_str_vector.push_back("Smoke Grenade");
object_str_vector.push_back("Mk 2 Grenade");
object_str_vector.push_back("M84 Stun Grenade");
object_str_vector.push_back("Flashbang");
object_str_vector.push_back("FN FNC");
object_str_vector.push_back("FN SCAR");
object_str_vector.push_back("FN P90");
object_str_vector.push_back("Walther WA 2000");
object_str_vector.push_back("Walther P38");
object_str_vector.push_back("Remington 870");
object_str_vector.push_back("Remington 700");
object_str_vector.push_back("Bushmaster ACR");
object_str_vector.push_back("Smith & Wesson Model 29");
object_str_vector.push_back("S&W M500");
object_str_vector.push_back("M249 SAW");
object_str_vector.push_back("M60");
object_str_vector.push_back("XM8");
object_str_vector.push_back("XM8C");
object_str_vector.push_back("XM8 LMG");
object_str_vector.push_back("XM26 LSS");
object_str_vector.push_back("MP5K");
object_str_vector.push_back("H&K G36");
object_str_vector.push_back("Colt Single Action Army");
object_str_vector.push_back("PKM");
object_str_vector.push_back("MG3");
object_str_vector.push_back("MG36");
object_str_vector.push_back("M240");
object_str_vector.push_back("MG4");
object_str_vector.push_back("MG 34");
object_str_vector.push_back("MG08/15");
object_str_vector.push_back("RC-P90");
object_str_vector.push_back("Klobb");
object_str_vector.push_back("PP2000");
object_str_vector.push_back("AN-94");
object_str_vector.push_back("MP40");
object_str_vector.push_back("MP7");
object_str_vector.push_back("MP412 REX");
object_str_vector.push_back("Skorpion vz. 61");
object_str_vector.push_back("MAC-10");
object_str_vector.push_back("Steyr TMP");
object_str_vector.push_back("9A-91");
object_str_vector.push_back("AEK-971");
object_str_vector.push_back("Sten Submachine Gun");
object_str_vector.push_back("Tommy Gun");
object_str_vector.push_back("M3 Submachine Gun");
object_str_vector.push_back("Desert Eagle");
object_str_vector.push_back("MK.23 Socom");
object_str_vector.push_back("PPSh-41");
object_str_vector.push_back("PPS-42");
object_str_vector.push_back("MAC 11");
object_str_vector.push_back("Type 100 Submachine Gun");
object_str_vector.push_back("Type 05 Submachine Gun");
object_str_vector.push_back("Steyr AUG");
object_str_vector.push_back("AUG Para");
object_str_vector.push_back("Beretta M12");
object_str_vector.push_back("Beretta 9000S");
object_str_vector.push_back("M93 Raffica");
object_str_vector.push_back("MP18.1");
object_str_vector.push_back("M5A2 Carbine");
object_str_vector.push_back("SC-20K");
object_str_vector.push_back("SC Pistol");
object_str_vector.push_back("MK-38 25mm Gun");
object_str_vector.push_back("M134 GAU-17 Gatling Gun");
object_str_vector.push_back("M142 HIMARS");
object_str_vector.push_back("MK19 Grenade Machine Gun");
object_str_vector.push_back("M777 Howitzer");
object_str_vector.push_back("M224 60mm Mortar");
object_str_vector.push_back("M252 Mortar");
object_str_vector.push_back("FGM-148 Javelin");
object_str_vector.push_back("Avenger Weapon System");
object_str_vector.push_back("XM25 Counter Defilade Target Engagement System");
object_str_vector.push_back("Patriot PAC-3");
object_str_vector.push_back("MK16 SCAR");
object_str_vector.push_back("MK-15 Phalanx");
object_str_vector.push_back("M72 Light Anti-Armor Weapon - LAW");
object_str_vector.push_back("Aegis Weapon System");
object_str_vector.push_back("M107.50 caliber Sniper Rifle - LRSR");
object_str_vector.push_back("M109 Paladin");
object_str_vector.push_back("Anti-aircraft weapons");
object_str_vector.push_back("Anti-fortification weapons");
object_str_vector.push_back("Anti-personnel weapons");
object_str_vector.push_back("Anti-radiation weapons");
object_str_vector.push_back("Anti-satellite weapons");
object_str_vector.push_back("Anti-ship weapons");
object_str_vector.push_back("Anti-submarine weapons");
object_str_vector.push_back("Anti-tank weapons");
object_str_vector.push_back("Area denial weapons");
object_str_vector.push_back("Hunting weapons");
object_str_vector.push_back("Infantry support weapons");
object_str_vector.push_back("Siege engines");
object_str_vector.push_back("Personal weapons");
object_str_vector.push_back("Light weapons");
object_str_vector.push_back("Heavy weapons");
object_str_vector.push_back("Crew served weapons");
object_str_vector.push_back("Fortification weapons");
object_str_vector.push_back("Mountain weapons");
object_str_vector.push_back("Vehicle-mounted weapons");
object_str_vector.push_back("Railway weapons");
object_str_vector.push_back("Aircraft weapons");
object_str_vector.push_back("Naval weapons");
object_str_vector.push_back("Space weapons");
object_str_vector.push_back("Autonomous weapons");
object_str_vector.push_back("Antimatter weapons");
object_str_vector.push_back("Archery weapons");
object_str_vector.push_back("Artillery");
object_str_vector.push_back("Biological weapons");
object_str_vector.push_back("Blunt instruments");
object_str_vector.push_back("Chemical weapons");
object_str_vector.push_back("Edged and bladed weapons");
object_str_vector.push_back("Energy weapons");
object_str_vector.push_back("Explosive weapons");
object_str_vector.push_back("Firearms");
object_str_vector.push_back("Improvised weapons");
object_str_vector.push_back("Incendiary weapons");
object_str_vector.push_back("Loitering munitions");
object_str_vector.push_back("Magnetic weapons");
object_str_vector.push_back("Missiles");
object_str_vector.push_back("Non-lethal weapons");
object_str_vector.push_back("Nuclear weapons");
object_str_vector.push_back("Rockets");
object_str_vector.push_back("Suicide weapons");
object_str_vector.push_back("Siege weapons");
object_str_vector.push_back("Stone tips");
object_str_vector.push_back("Arrows");
object_str_vector.push_back("Bows");
object_str_vector.push_back("War chariots");
object_str_vector.push_back("Khopesh sword");
object_str_vector.push_back("Trident");
object_str_vector.push_back("Catapults");
object_str_vector.push_back("Swords");
object_str_vector.push_back("Spears");
object_str_vector.push_back("Handguns");
object_str_vector.push_back("Long guns");
object_str_vector.push_back("Rifles");
object_str_vector.push_back("Shotguns");
object_str_vector.push_back("Carbines");
object_str_vector.push_back("Assault rifles");
object_str_vector.push_back("Battle rifles");
object_str_vector.push_back("Sniper rifles");
object_str_vector.push_back("Automatic rifles");
object_str_vector.push_back("Machine guns");
object_str_vector.push_back("Submachine guns");
object_str_vector.push_back("Personal defense weapons");
object_str_vector.push_back("Fire lances");
object_str_vector.push_back("Hand cannons");
object_str_vector.push_back("Arquebuses");
object_str_vector.push_back("Muskets");
object_str_vector.push_back("Matchlock");
object_str_vector.push_back("Wheellock");
object_str_vector.push_back("Flintlock");
object_str_vector.push_back("Percussion cap");
object_str_vector.push_back("Multiple-barrel firearms");
object_str_vector.push_back("Grenade launchers");
object_str_vector.push_back("Underwater firearms");
object_str_vector.push_back("Anti-tank rifles");
object_str_vector.push_back("Anti-materiel rifles");
object_str_vector.push_back("Individual arms and armour");
object_str_vector.push_back("Individual weapons");
object_str_vector.push_back("Individual firearms");
object_str_vector.push_back("Holy Lance");
object_str_vector.push_back("Individual instruments of torture");
object_str_vector.push_back("Individual Japanese swords");
object_str_vector.push_back("Abingdon Sword");
object_str_vector.push_back("Ballinderry Sword");
object_str_vector.push_back("Bamburgh Sword");
object_str_vector.push_back("Cawood sword");
object_str_vector.push_back("City of London swords");
object_str_vector.push_back("Curtana");
object_str_vector.push_back("Curved saber of San Martín");
object_str_vector.push_back("Gilling sword");
object_str_vector.push_back("Imperial Sword");
object_str_vector.push_back("Joyeuse");
object_str_vector.push_back("Lobera (sword)");
object_str_vector.push_back("Mainz Gladius");
object_str_vector.push_back("Nader Shah's Sword");
object_str_vector.push_back("North Grimston sword");
object_str_vector.push_back("Sword of Osman");
object_str_vector.push_back("Pernik sword");
object_str_vector.push_back("River Witham sword");
object_str_vector.push_back("Sabre of Charlemagne");
object_str_vector.push_back("Sæbø sword");
object_str_vector.push_back("Seax of Beagnoth");
object_str_vector.push_back("Seven-Branched Sword");
object_str_vector.push_back("Shamshir-e Zomorrodnegar");
object_str_vector.push_back("Skerne sword");
object_str_vector.push_back("Suontaka sword");
object_str_vector.push_back("Sword of François I");
object_str_vector.push_back("Sword of Goujian");
object_str_vector.push_back("Sword of Islam (Mussolini)");
object_str_vector.push_back("Sword of Peter");
object_str_vector.push_back("Sword of Saint Wenceslas");
object_str_vector.push_back("Sword of Saints Cosmas and Damian");
object_str_vector.push_back("Sword of Stalingrad");
object_str_vector.push_back("Sword of State (Isle of Man)");
object_str_vector.push_back("Sword of State of South Carolina");
object_str_vector.push_back("Sword of Victory");
object_str_vector.push_back("Szczerbiec");
object_str_vector.push_back("Tizona");
object_str_vector.push_back("Ulen sword");
object_str_vector.push_back("Wallace Sword");
object_str_vector.push_back("Zulfiqar");
object_str_vector.push_back("Bara Sangihe");
object_str_vector.push_back("Clacton Spear");
object_str_vector.push_back("Dagger (13th–12th centuries BC, Artik)");
object_str_vector.push_back("Gebel el-Arak Knife");
object_str_vector.push_back("Gray's Inn Lane Hand Axe");
object_str_vector.push_back("Holy Lance");
object_str_vector.push_back("Kris of Knaud");
object_str_vector.push_back("Naga Salira");
object_str_vector.push_back("Narmer Macehead");
object_str_vector.push_back("Oxborough Dirk");
object_str_vector.push_back("Preah Khan Reach");
object_str_vector.push_back("Sayala Mace");
object_str_vector.push_back("Schöningen spears");
object_str_vector.push_back("Scorpion Macehead");
object_str_vector.push_back("Spear of Fuchai");
object_str_vector.push_back("Three Great Spears of Japan");
object_str_vector.push_back("Tonbokiri");
object_str_vector.push_back("Tutankhamun's meteoric iron dagger");
signed long long int production_target = 2'000;
signed long long int data_target = 130;
std::string current_class_str = "void";
std::string current_type_str = "void";
std::vector<signed long long int> local_random_vector;
std::vector<signed long long int> local_mod_random_vector;
std::vector<positive_hex*> local_positive_hex_vector;
std::vector<data_buff*> local_data_buff_vector;
std::vector<threshold*> local_threshold_vector;
std::vector<inanimate*> new_inanimate_vector;
std::vector<inanimate*> old_inanimate_vector;
signed long long int local_system_id = 0;
signed long long int positive_hex_target = 50;
signed long long int data_buff_target = positive_hex_target;
signed long long int threshold_target = 7;
signed long long int display_count = 0;
for(signed long long int production_id = 0; production_id < production_target; production_id++)
{
for(signed long long int data_id = 0; data_id < data_target; data_id++)
{
for(signed long long int class_id = 0; class_id < type_str_vector.size(); class_id++)
{
current_class_str = type_str_vector[class_id];
for(signed long long int object_id = 0; object_id < object_str_vector.size(); object_id++)
{
current_type_str = object_str_vector[object_id];
std::cout << "\n\n\n====+====+====+====+====+====+====+====+====+====+====+====+====+====+====+====+\n";
std::cout << "INANIMATE OBJECT CREATOR (JAMES DEAN) STATS\n";
std::cout << "-------------------------------------------\n";
std::cout << "displays: " << display_count << "\n";
std::cout << "production " << production_id << "/" << production_target << "\n";
std::cout << "data " << data_id << "/" << data_target << "\n";
std::cout << "class " << class_id << "/" << type_str_vector.size() << "\n";
std::cout << "object " << object_id << "/" << object_str_vector.size() << "\n";
std::cout << "====+====+====+====+====+====+====+====+====+====+====+====+====+====+====+====+\n\n\n\n";
display_count = display_count + 1;
inanimate local_inanimate_object;
local_inanimate_object.call_set_local_system_id(local_system_id);
local_system_id = local_system_id + 1;
local_inanimate_object.call_set_local_data_id(data_id);
local_inanimate_object.call_set_local_class_id(class_id);
local_inanimate_object.call_set_local_type_id(object_id);
for(signed long long int threshold_id = 0; threshold_id < threshold_target; threshold_id++)
{
threshold local_threshold_object;
local_threshold_object.call_set_local_system_id(local_system_id);
local_system_id = local_system_id + 1;
local_threshold_object.call_set_local_data_id(data_id);
local_threshold_object.call_set_local_class_id(class_id);
local_threshold_object.call_set_local_type_id(object_id);
local_threshold_object.call_set_local_threshold_id(threshold_id);
// build the positive_hex's
for(signed long long int positive_hex_id = 0; positive_hex_id < positive_hex_target; positive_hex_id++)
{
positive_hex local_positive_hex;
local_positive_hex.call_set_local_system_id(local_system_id);
local_system_id = local_system_id + 1;
local_positive_hex.call_set_local_data_id(data_id);
local_positive_hex.call_set_local_class_id(class_id);
local_positive_hex.call_set_local_type_id(object_id);
local_positive_hex.call_set_local_positive_hex_id(positive_hex_id);
local_random_vector.clear();
local_random_vector = return_random_matrix();
local_positive_hex.call_set_local_random_vector(local_random_vector);
local_mod_random_vector.clear();
local_mod_random_vector = return_random_matrix();
local_positive_hex.call_set_local_mod_random_vector(local_mod_random_vector);
local_positive_hex.call_set_signature_str(current_class_str + " " + current_type_str);
local_positive_hex_vector.push_back(&local_positive_hex);
}
// build the data_buff's
for(signed long long int data_buff_id = 0; data_buff_id < data_buff_target; data_buff_id++)
{
data_buff local_data_buff;
local_data_buff.call_set_local_system_id(local_system_id);
local_system_id = local_system_id + 1;
local_data_buff.call_set_local_data_id(data_id);
local_data_buff.call_set_local_class_id(class_id);
local_data_buff.call_set_local_type_id(object_id);
local_data_buff.call_set_local_data_buff_id(data_buff_id);
local_random_vector.clear();
local_random_vector = return_random_matrix();
local_data_buff.call_set_local_random_vector(local_random_vector);
local_mod_random_vector.clear();
local_mod_random_vector = return_random_matrix();
local_data_buff.call_set_local_mod_random_vector(local_mod_random_vector);
local_data_buff.call_set_signature_str(current_class_str + " " + current_type_str);
local_data_buff_vector.push_back(&local_data_buff);
}
local_threshold_object.call_set_local_positive_hex_vector(local_positive_hex_vector);
local_positive_hex_vector.clear();
local_threshold_object.call_set_local_data_buff_vector(local_data_buff_vector);
local_data_buff_vector.clear();
local_threshold_object.call_set_descriptive_str(current_class_str + " " + current_type_str);
local_threshold_vector.push_back(&local_threshold_object);
}
local_inanimate_object.call_set_local_threshold_vector(local_threshold_vector);
local_threshold_vector.clear();
new_inanimate_vector.push_back(&local_inanimate_object);
if(new_inanimate_vector.size() > 9)
{
old_inanimate_vector = new_inanimate_vector;
new_inanimate_vector.clear();
}
}
}
}
}
return(0);
}
//====+====+====+====+====+====+====+====+====+====+====+====+====+====+====+==
// FUNCTIONS
std::vector<signed long long int> return_random_matrix()
{
pcg_extras::seed_seq_from<std::random_device> seed_source;
pcg32_k16384 pcg3216(seed_source);
signed long long int random_int = 0;
std::vector<signed long long int> local_random_matrix;
signed long long int matrix_target_levels = 256;
signed long long int matrix_target_data = 1024;
signed long long int current_level = 0;
signed long long int current_data_count = 0;
while (matrix_target_levels < current_level)
{
while (matrix_target_data < current_data_count)
{
random_int = pcg3216();
local_random_matrix.push_back(random_int);
current_data_count = current_data_count + 1;
}
current_level = current_level + 1;
}
return(local_random_matrix);
}
C++I used google’s AI, Gemini, to get the list for object types “Sword of Japan” “Blunt Weapons” so it doesn’t really make sense to have all the “S”‘s in there, but I just left them in there because it’s not going to change anything, this stuff has a mind and agenda of it’s own.
I used the Deep Research 2.0 model to come up with the list, and I promised it that I would show it the program when I was done, but I haven’t yet.
I use PCG Random as they claim to be like the best random number generator, though i’m not claiming they are the best or anything, I just use that one as they have their C++ version readily available on their website, it’s only like 3 files, so I don’t have to do all this extra stuff to get it to work, that’s why I use it.
Often these data creating programs become just 5 for loops in a row, then a long list of things to create the data, and just repeating that long list of operations to create the data over and over. It doesn’t become really fancy or anything, for fanciness I have the programming language i’m trying to make called Satellite, it’s a bytecode VM, that is, it operates on bytecode, and consists of 5 parts: a printer, a console, a compiler, an interpreter and a virtual machine. They are not nearly done, and I can’t seem to find the energy to write them, it would really help everything if the language was completed, but I can never get the power up that high. It’s almost as if there was something blocking me from writing the language, as there is no other possible explanation for the lack of progress, i’m putting in the effort, thinking about doing it all day, but never actually doing it. Things like this inanimate object data creator get us closer to the Satellite language, though we still seem very far off, it could come with the next breakthrough though.
I’m watching the above video now.
But now onto the subject of this post. When you look at a picture of vladimir putin, I will give one below, and imagine that his cheek bones are like a japanese guy wincing, you can kind of see big brother in that.
I always remember a guy in prison… He said “you owe me!” shouting. He said “3 honey buns!”. And he wasn’t saying that to say that I actually owed him 3 honey buns, he was saying that to like say “you owe me” and I never knew who it was, I just thought that it was my dad saying that, but now I am starting to suspect that it’s vladimir putin saying that, because he and the Russians fought in the Ukrainian war. You see, he is staying in that war to generate a negative force, that will, generate a positive one. The negative force is present at each death of each soldier, and the positive one is present all around the world, with things like the destruction of Corona Virus, remember that disease that was around when the ukrainian conflict started? See we all benefit from the russian soldiers basically, how do I put this, dying?
But who benefitted most from Vladimir Putin’s work in this war he is in? ME! He was fighting it to provide me with what I needed, and then some. He needed to provide me with this as the fate of Russia itself was kind of at stake, not that they couldn’t fight it out now with Insurance Policy’s and Inanimate Object Data, but before all that, we didn’t have this “winning” thing going on, we were losing, and he dug us all out of that into something better with his war in ukraine.
That is why he doesn’t end the war, because the cycle of life and death has yet to be broken, we are not yet at our destination, merely at a stop along the way to that destination. We are not there yet, he knows this, and thus continues his offenses and defenses. Not to mention the Ukrainians are also fighting and sharing in all the glory as well, but that is another subject.
So my point. It is this. I don’t have an instant way to repay them for their service, and it will have to wait until I find something for Russia, I was thinking about buying a Learn Russian book at the bookstore, and learning russian, so I could understand what the kremlin posts on youtube, and that might lead me to something that might balance the checkbooks as far as what I might owe.
As for what you might owe to the Russians and Ukrainians, they rely on me to pay it for you, possibly using your money. You see everyone has regular payments coming in, in the form of energy. These specific amounts of energy may be taxed in the future to pay for the cost of the war, and i’m not saying that that definately will happen, but it probably will at some point. We must find what they are requesting, when they say “You owe me!” but it will take time as i’ve said, to find it.
Great post! Love the insights, really made me think. Keep it up!