Modmodding Q&A Thread

How do you compile your code if you aren't using an IDE?
 
Let's say I want to change the color of some civilizations, just because I like messing with things. I used to be able to do that in CivIVcivilizatininfos.xml, but it no longer seems to have an effect. Is there another place this information needs to be changed?
 
Do you have VD installed? If so, the CivInfos from VD overrides the vanilla one. So you have to change that one in order to make the changes appear ingame.
 
Ah, so there was another folder, thanks.
 
When radically restructuring the tech tree, are there any other files than CIV4TechInfos.xml, Consts.py, Civilizations.py and CvRhyes.h I have to make major changes in? (Apart from all the .xml files for units, buildings etc. for the actual effects of techs of course)
 
When radically restructuring the tech tree, are there any other files than CIV4TechInfos.xml, Consts.py, Civilizations.py and CvRhyes.h I have to make major changes in? (Apart from all the .xml files for units, buildings etc. for the actual effects of techs of course)
I'm interested in the answer to this question as well. And for radically restructuring civs, leaders, buildings, units & religions as well.

But your post about Consts.py, Civilizations.py and CvRhyes.h is certainly helping me!
 
whatcanisayexceptctrlf.jpg
 
When radically restructuring the tech tree, are there any other files than CIV4TechInfos.xml, Consts.py, Civilizations.py and CvRhyes.h I have to make major changes in? (Apart from all the .xml files for units, buildings etc. for the actual effects of techs of course)

The main files that need updating when restructuring the tech tree are those you mentioned. But other Python and C++ files also contain some references to techs which may have been renamed or removed. For the Python, usually RiseAndFall.py, RFCUtils.py, RFCEventHandler.py, DynamicCivs.py, Victory.py. Not sure about the C++ ones. I advise to look into each file that possibly contains tech references and update them accordingly.
 
Memes aside, using e.g. Notepad++ directory wide search is the best possible method to reliably find all references to e.g. an XML key, a Python constant or a C++ constant. Since both of you already mentioned familiarity with those three components and how they are related you really have everything you need to find the rest using Ctrl+F.
 
Memes aside, using e.g. Notepad++ directory wide search is the best possible method to reliably find all references to e.g. an XML key, a Python constant or a C++ constant. Since both of you already mentioned familiarity with those three components and how they are related you really have everything you need to find the rest using Ctrl+F.

Thanks for suggesting the directory search, that will help.

And I certainly wouldn't say I have familiarity with those components, but I can locate them, heh. My next question is how to disentangle all of these things. I can delete anything that says Arabia or Tibet, but there is just so many different things all tangled together. It is pretty overwhelming.

I'm also not terribly sure how to read the error log. I got this in my PythonErr2.log after trying (and failing) to boot up my mod:
Code:
load_module traceback
load_module Consts
Traceback (most recent call last):
  File "<string>", line 1, in ?
  File "<string>", line 52, in load_module
  File "CvEventInterface", line 12, in ?
  File "<string>", line 52, in load_module
  File "CvUtil", line 12, in ?
  File "<string>", line 35, in load_module
  File "<string>", line 13, in _get_code
  File "Consts", line 513
SyntaxError: can't assign to ()
load_module CvAppInterface
Traceback (most recent call last):
  File "CvAppInterface", line 37, in init
AttributeError: 'module' object has no attribute 'RedirectError'

So.. looking things over (and knowing absolutely nothing about Python, or coding) my guess is that there is a problem on line 513 in Consts, and the stuff above that is just tracing the other files that referenced that line. That line had stuff about projects, none of which I want. I removed them from XML and changed the Consts line to:
Code:
iNumProjects = 0
() = range(iNumProjects)
I guess that didn't work. Should I delete it altogether? Will that cause other problems?

It also mentions CvAppInterface, I can't find that file. I did a search in the mod folder and didn't come up with anything.
 
Well after another try to load a saved game, the Python exception detection process did launch during the loading... Here is some screenshots of the numerous exception messages which suddenly appeared on my screen, many of them concerning Python files I did not even touch...
Apparently, I successfully achieved the feat of causing a total mess by only some modifications on two files, I know I should not have tried to play in the big leagues !
I will now quietly go back to the elementary joys of the Worldbuilder, without this impudent hubris which made me try the black magic of Python. ;)
Civ 2 scenario making is much more within my reach haha.
View attachment 527807 View attachment 527808 View attachment 527809 View attachment 527810 View attachment 527811

Don't worry about that, that's normal. Just click through until you see the popup which says "in _get_code". The popups after that are important. (I rapidly click through the popups until I see "in _get_code".)

Hint: You can find a log of the python error in the logs. (Usually found in Document/My games/BTS/logs)

Below is a snippet of my PythonError.log. As you can see, the the first few are the same as the ones in you screenshot. You always get them when you make a python error and can ignore them. The interesting part starts after "File "<string>", line 13, in _get_code". It appears I made a mistake in Areas.py, in line 27 and it was a syntax error. (I forgot a semicolon at the end of the if-statement on purpose to force this error)

As you can see, I only need the last part to determine the error. Unfortunately in the case of those error popups that means that you have to click through a few of them as the interesting ones always come last.

Code:
Traceback (most recent call last):
  File "<string>", line 1, in ?
  File "<string>", line 52, in load_module
  File "CvEventInterface", line 13, in ?
  File "<string>", line 52, in load_module
  File "CvRFCEventManager", line 11, in ?
  File "<string>", line 52, in load_module
  File "CvEventManager", line 12, in ?
  File "<string>", line 52, in load_module
  File "CvScreensInterface", line 3, in ?
  File "<string>", line 52, in load_module
  File "CvMainInterface", line 10, in ?
  File "<string>", line 52, in load_module
  File "RFCUtils", line 10, in ?
  File "<string>", line 35, in load_module
  File "<string>", line 13, in _get_code
  File "
Areas
", line
27

 
if True
 
 
 
^
SyntaxError
:
invalid syntax
 
Last edited:
Ok, I removed the project line and it worked! Did some debugging and it seems to be ok with my Consts.py file! Now it has problems with some other files, but that's ok, I'm moving forward!

A new question though, if I'm using a different map but I'm not ready to deal with setting it up with the Rise & Fall system, can I just delete files like Areas.py and SettlerMaps.py and RiseAndFall.py? Or would that screw things up too much?

Ah heck, hold my beer, I'm about to find out..
 
Thanks for suggesting the directory search, that will help.

And I certainly wouldn't say I have familiarity with those components, but I can locate them, heh. My next question is how to disentangle all of these things. I can delete anything that says Arabia or Tibet, but there is just so many different things all tangled together. It is pretty overwhelming.

If you do it very thoroughly, it will work in theory. But then you have to make sure it is removed from all python files, all xml files and all C++ files to be sure. In general, it is easier to leave all in and just disable functions that are related to them.

For example, one could remove anything that says arabia to remove them from the game. But it is much easier to just disable Arabia from spawning. All other code that is related to Arabia will not execute because Arabia needs to be alive for that.

What are you trying to mod in that you want to remove something completely?

I'm also not terribly sure how to read the error log. I got this in my PythonErr2.log after trying (and failing) to boot up my mod:
Code:
load_module traceback
load_module Consts
Traceback (most recent call last):
  File "<string>", line 1, in ?
  File "<string>", line 52, in load_module
  File "CvEventInterface", line 12, in ?
  File "<string>", line 52, in load_module
  File "CvUtil", line 12, in ?
  File "<string>", line 35, in load_module
  File "<string>", line 13, in _get_code
  File "Consts", line 513
SyntaxError: can't assign to ()
load_module CvAppInterface
Traceback (most recent call last):
  File "CvAppInterface", line 37, in init
AttributeError: 'module' object has no attribute 'RedirectError'

So.. looking things over (and knowing absolutely nothing about Python, or coding) my guess is that there is a problem on line 513 in Consts, and the stuff above that is just tracing the other files that referenced that line. That line had stuff about projects, none of which I want. I removed them from XML and changed the Consts line to:
Code:
iNumProjects = 0
() = range(iNumProjects)
I guess that didn't work. Should I delete it altogether? Will that cause other problems?

It also mentions CvAppInterface, I can't find that file. I did a search in the mod folder and didn't come up with anything.

Your assumption is right. Line 513 of consts.py caused the error.

If you deleted all projects from the XML, you can simply completely delete the
Code:
iNumProjects = 0
() = range(iNumProjects)
from Consts.py. (Or just comment out the original code)
EDIT: I see you solved it yourself.

You can ignore CvAppInterface. You don't need it for fixing python errors.

Anyway, trying out yourself is the best way to learn modding. That is how I learned modding myself.
 
Last edited:
Ok, I removed the project line and it worked! Did some debugging and it seems to be ok with my Consts.py file! Now it has problems with some other files, but that's ok, I'm moving forward!

A new question though, if I'm using a different map but I'm not ready to deal with setting it up with the Rise & Fall system, can I just delete files like Areas.py and SettlerMaps.py and RiseAndFall.py? Or would that screw things up too much?

Ah heck, hold my beer, I'm about to find out..

I wouldn't remove those. It will cause a lot of errors in other files, because these files are used by other files. It is easiest to just use the current files and keep them as placeholders until you are to the point to deal with them.

That is also what we do while working on the big map. We only made the minimal changes required to make the big map run without errors. Everything else is still old code used as placeholder.
 
What are you trying to mod in that you want to remove something completely?

After a 10 year hiatus I've restarted work on my These Fractured States of America mod. After getting a lay of the land it looked like DoC was a good mod to use as a base (with the perhaps naive hope that it is easier to remove content from an existing mod than add features to a new one). It'll be a North America map and restricted to a specific timeline (roughly 1850 to 1930) so civs, techs, buildings, and units that don't fit there need to go, as well as stuff about India's spawn location, etc since it won't exist.

If I'm barking up the wrong tree, or going about things in the wrong way, I'd love some advice. I'm really new/bad with Python (not great with XML either, heh), so this is all a very heavy lift for me. Lord knows why I'm even trying to restart a never finished 10 year old mod in the first place, but I keep coming up with ideas that I'd love to see put into action and think this is a fascinating time period to drill down on and explore with a full featured mod.
 
That's good to know for context. Your approach isn't bad, but I think you are changing too many things at once. For example, Python constants only map to actual XML values by convention, so unless you want to use them, you can leave them unchanged without errors. Of course, if your game has a bunch of different civs at least that needs to be adjusted, leading to more subsequent changes that are required. But imo you should focus on getting that running first before doing things like deleting projects etc.

I'm not sure if using DoC as a base is a good idea because it does a lot of stuff that is custom to the map and the civs in the game, and it seems hard to untangle all that code from the rest that you want to keep. But I don't have a better idea for what to use instead either.
 
That's good to know for context. Your approach isn't bad, but I think you are changing too many things at once. For example, Python constants only map to actual XML values by convention, so unless you want to use them, you can leave them unchanged without errors. Of course, if your game has a bunch of different civs at least that needs to be adjusted, leading to more subsequent changes that are required. But imo you should focus on getting that running first before doing things like deleting projects etc.
I started out just trimming the XML and the art files, but then the game didn't load so I figured my cuts must have triggered some problem in Python, so I went searching there for things to cut.. and kept going. At least I was getting some workable information in the error log after my Python cuts. I moved back all the original Python and I get this error report (and I don't see what the issue is):
Spoiler :
Code:
sys.path = ['..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\email', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\encodings', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\build', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\lib', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\py', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\tools', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\lib\\colourchooser', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\lib\\editor', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\lib\\floatcanvas', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\lib\\masked', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\lib\\mixins', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\lib\\ogl', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\af', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\ca', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\cs', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\da', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\de', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\el', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\es', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\eu', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\fi', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\fr', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\hi', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\hu', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\id', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\it', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\ja', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\lv', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\nb', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\nl', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\pl', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\pt_BR', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\ru', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\sl', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\sv', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\tr', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\uk', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\zh_CN', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\zh_TW', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\af\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\ca\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\cs\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\da\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\de\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\el\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\es\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\eu\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\fi\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\fr\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\hi\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\hu\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\id\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\it\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\ja\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\lv\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\nb\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\nl\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\pl\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\pt_BR\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\ru\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\sl\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\sv\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\tr\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\uk\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\zh_CN\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\locale\\zh_TW\\LC_MESSAGES', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\py\\tests', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\tools\\XRCed', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM\\wx\\tools\\XRCed\\src-images', '..\\WARLORDS\\ASSETS\\PYTHON\\SYSTEM']

sys.modules = {'zipimport': <module 'zipimport' (built-in)>, 'signal': <module 'signal' (built-in)>, '__builtin__': <module '__builtin__' (built-in)>, 'sys': <module 'sys' (built-in)>, '__main__': <module '__main__' (built-in)>, 'exceptions': <module 'exceptions' (built-in)>, 'CvPythonExtensions': <module 'CvPythonExtensions' (built-in)>}

sys.builtin_module_names = ('CvPythonExtensions', '__builtin__', '__main__', '_bisect', '_codecs', '_codecs_cn', '_codecs_hk', '_codecs_iso2022', '_codecs_jp', '_codecs_kr', '_codecs_tw', '_csv', '_heapq', '_hotshot', '_locale', '_multibytecodec', '_random', '_sre', '_subprocess', '_symtable', '_weakref', '_winreg', 'array', 'audioop', 'binascii', 'cPickle', 'cStringIO', 'cmath', 'collections', 'datetime', 'errno', 'exceptions', 'gc', 'imageop', 'imp', 'itertools', 'marshal', 'math', 'md5', 'mmap', 'msvcrt', 'nt', 'operator', 'parser', 'regex', 'rgbimg', 'sha', 'signal', 'strop', 'struct', 'sys', 'thread', 'time', 'xxsubtype', 'zipimport')
load_module CvEventInterface
load_module CvUtil
load_module traceback
load_module Consts
load_module CvRFCEventManager
load_module CvEventManager
load_module CvScreensInterface
load_module CvMainInterface
load_module ScreenInput
load_module CvScreenEnums
load_module time
load_module RFCUtils
load_module PyHelpers
load_module Popup
load_module StoredData
load_module cPickle
load_module BugCore
load_module BugOptions
load_module BugConfig
load_module BugDll
load_module BugUtil
load_module ColorUtil
load_module BugInit
load_module BugPath
load_module BugConfigTracker
load_module BugTypes
load_module xmllib
..\WARLORDS\ASSETS\PYTHON\SYSTEM\xmllib.py:9: DeprecationWarning: The xmllib module is obsolete.  Use xml.sax instead.
21:36:30 DEBUG: BugConfig - registering xml handler BugConfig.RootHandler
21:36:30 DEBUG: BugConfig - registering bug handler BugConfig.BugHandler
21:36:30 DEBUG: BugConfig - registering load handler BugConfig.LoadHandler
21:36:30 DEBUG: BugConfig - registering config handler BugConfig.ConfigHandler
21:36:30 DEBUG: BugConfig - registering arg handler BugConfig.ArgHandler
load_module configobj
load_module __future__
load_module codecs
load_module validate
validate import failed
load_module Areas
load_module SettlerMaps
load_module WarMaps
21:36:32 INFO : BugCore - creating uninitialized mod MainInterface
load_module BugOptionsScreen
load_module BugErrorOptionsTab
load_module BugOptionsTab
load_module BugHelp
21:36:32 INFO : BugCore - creating uninitialized mod Core
load_module CityUtil
21:36:32 INFO : BugCore - creating uninitialized mod NJAGC
21:36:32 INFO : BugCore - creating uninitialized mod Scores
21:36:32 INFO : BugCore - creating uninitialized mod CityScreen
load_module ReligionUtil
load_module FontUtil
load_module MonkeyTools
load_module AStarTools
21:36:32 INFO : BugCore - creating uninitialized mod PLE
load_module UnitUtil
load_module PlayerUtil
load_module TradeUtil
load_module DiplomacyUtil
load_module AttitudeUtil
load_module GameUtil
load_module Scoreboard
load_module DealUtil
load_module BugUnitPlot
load_module WidgetUtil
load_module TechPrefs
load_module ReminderEventManager
load_module SdToolKit
load_module BugData
21:36:32 INFO : BugCore - creating uninitialized mod Reminder
load_module CvAppInterface
load_module GGUtil
load_module GSpyUtil
load_module GPUtil
load_module ProgressBarUtil
load_module PLE
load_module RawYields
load_module CvDomesticAdvisor
load_module CvTechChooser
load_module CvForeignAdvisor
load_module math
load_module CvExoticForeignAdvisor
load_module IconGrid_BUG
load_module DomPyHelpers
load_module TechTree
load_module FavoriteCivicDetector
21:36:32 INFO : BugCore - creating uninitialized mod Advisors
load_module CvMilitaryAdvisor
load_module CvFinanceAdvisor
load_module CvReligionScreen
load_module CvCorporationScreen
load_module companies
load_module operator
load_module CvCivicsScreen
load_module Stability
load_module DynamicCivs
load_module Victory
load_module heapq
load_module CityNameManager
load_module CvVictoryScreen
load_module TechUtil
load_module GameSetUpCheck
load_module AutoSave
load_module MapFinder
load_module MapFinderStatusScreen
21:36:34 INFO : BugCore - creating uninitialized mod MapFinder
21:36:34 INFO : BugCore - creating uninitialized mod AutoSave
load_module Buffy
21:36:34 INFO : BugCore - creating uninitialized mod BUFFY
load_module CvEspionageAdvisor
load_module CvOptionsScreen
load_module CvReplayScreen
load_module CvHallOfFameScreen
load_module CvDanQuayle
load_module CvGameUtils
load_module CvUnVictoryScreen
load_module CvDawnOfMan
load_module CvTechSplashScreen
load_module CvTopCivs
load_module random
load_module CvInfoScreen
load_module CvIntroMovieScreen
load_module CvVictoryMovieScreen
load_module CvWonderMovieScreen
load_module CvEraMovieScreen
load_module CvSpaceShipScreen
load_module CvDebugTools
load_module CvDebugInfoScreen
load_module CvMapGeneratorUtil
load_module CvGFCScreen
load_module CvPopupInterface
load_module CvScreenUtilsInterface
load_module CvOverlayScreenUtils
load_module CvDotMapOverlayScreen
load_module CvStrategyOverlay
21:36:34 INFO : BugCore - creating uninitialized mod StrategyOverlay
21:36:34 INFO : BugCore - creating uninitialized mod CustDomAdv
21:36:34 INFO : BugCore - creating uninitialized mod TechWindow
load_module Congresses
load_module RiseAndFall
load_module CvTranslator
load_module Civilizations
load_module sets
load_module Religions
load_module Modifiers
load_module CvPlatyBuilderScreen
load_module WBPlotScreen
load_module WBEventScreen
load_module WBCityEditScreen
load_module WBBuildingScreen
load_module WBCityDataScreen
load_module WBPlayerScreen
load_module WBProjectScreen
load_module WBTeamScreen
load_module WBTechScreen
load_module WBPlayerUnits
load_module WBUnitScreen
load_module WBPromotionScreen
load_module WBInfoScreen
load_module WBReligionScreen
load_module WBGameDataScreen
load_module WBCorporationScreen
load_module WBStoredDataScreen
load_module Barbs
load_module AIWars
load_module UniquePowers
load_module MapEditorTools
load_module RegionMap
load_module WBDiplomacyScreen
load_module WBTradeScreen
load_module GreatPeople
load_module encodings.utf_16_be
[[['Joseph Smith', 'fMary Baker Eddy', 'fEllen G. White', 'Charles Taze Russell', 'Menachem Mendel Schneerson', 'L. Ron Hubbard', 'Billy Graham', 'Malcolm Little'], ['Edgar Allan Poe', 'Mark Twain', 'fEmily Dickinson', 'Herman Melville', 'fMary Cassatt', 'Howard Phillips Lovecraft', 'Ernest Hemingway', 'Charlie Chaplin', 'Elvis Presley', 'fHarper Lee', 'Andy Warhol', 'Miles Davis', 'Jimi Hendrix'], ['Benjamin Franklin', 'fNettie Stevens', 'Arthur Compton', 'Edwin Hubble', 'John von Neumann', 'Glenn Seaborg', 'Robert Oppenheimer', 'Richard Feynman', 'fBarbara McClintock', 'fGrace Hopper'], ['Cornelius Vanderbilt', 'John D. Rockefeller', 'Andrew Carnegie', 'fHetty Green', 'John Pierpont Morgan', 'fHelena Rubinstein', 'William Edward Boeing', 'Walt Disney', 'Ray Kroc', 'Thomas Watson', 'Sam Walton', 'Bill Gates'], ['Thomas Edison', 'Nikola Tesla', 'Henry Ford', 'Charles Goodyear', 'Orville Wright', 'Frank Lloyd Wright', 'fLillian Moller Gilbreth', 'fHedy Lamarr', 'fMargaret Hutchinson Rousseau'], ['Thomas Paine', 'Thomas Jefferson', 'Benjamin Franklin', 'Andrew Jackson', 'fSojourner Truth', 'Frederick Douglass', 'fVictoria Claflin Woodhull', 'fSusan B. Anthony', 'fJane Addams', 'fEleanor Roosevelt', 'George Kennan', 'Martin Luther King', 'Henry Kissinger'], ['Andrew Jackson', 'Winfield Scott', 'Ulysses S. Grant', 'Robert E. Lee', 'John J. Pershing', 'Dwight D. Eisenhower', 'George Patton', 'Douglas MacArthur', 'Matthew Ridgway', 'Norman Schwarzkopf'], ['Benjamin Tallmadge', 'Allan Pinkerton', 'fBelle Boyd', 'fElizabeth Van Lew', 'William J. Donovan', 'J. Edgar Hoover', 'James Jesus Angleton', 'fVirginia Hall', 'fElizabeth Friedman']], [['Ali ibn Abi Talib', 'Hasan ibn Ali', 'Uthman ibn Affan', 'Umar ibn al-Kattab', 'fRabia Basri', 'Al-Baqilanni', 'Ibn al-Jawzi', 'Al-Suyuti', 'Abdullah ibn Alawi al-Haddad', 'Muhammad ibn Abd al-Wahhab', 'Muhammad Abduh', 'Abd al-Rahman al-Kawakibi'], ["Al-Asma'i", 'Ibn Muqla', 'Ibn al-Nadim', 'Al-Mutanabbi', 'Muhammad ibn al-Zayn', 'Ibn Furtu', 'Muhammad al-Maghut'], ['Al-Kindi', 'Al-Khwarizmi', 'Al-Farabi', 'Ibrahim ibn Sinan', 'Ibn al-Jazzar', 'Ibn al-Haytam', 'Ibn al-Nafis', 'Abdul Jabbar Abdullah', 'Ahmed Zewail'], ['Muhammad ibn al-Zayyat', 'Ibn Hawqal', "Abu'l Abbas al-Hijazi", 'Yaqut al-Hamawi', 'Ahmad ibn Majid', 'Sulaiman Al Mahri', 'David Sassoon', 'Sassoon Eskell', 'Mohammed bin Awad bin Laden'], ['Jabir ibn Hayyan', 'Mashallah ibn Athari', 'Banu Musa', 'Ibn Wahshiyah', 'fMariam al-Astrulabi', 'Al-Jazari', 'Hassan Fathy', 'fZaha Hadid'], ['fFatimah bint Muhammad', 'Al-Jahiz', 'Al-Mawardi', 'Izz al-Din Usama', 'Muhammad ibn Saud', 'Hussein bin Ali', 'Zayed bin Sultan Al Nahyan', 'Yasser Arafat', 'Hisham Nazer'], ['Khalid ibn al-Walid', 'Muawiyah', 'Ziyad ibn Abih', 'Amr ibn al-As', 'fKhawla bint al-Azwar', 'Nur ad-Din Zengi', 'Rahmah ibn Jabir Al Jalhami', "Yusuf al-'Azma", 'Abd al-Karim Qasim'], ['Hassan-i Sabbah', 'Rashid ad-Din Sinan', 'Ali Hassan al-Majid']], [['Gauchito Gil', 'Enrique Angelelli', 'Carlos Mugica', 'Jorge Mario Bergoglio'], [u'Jos\xe9 Hern\xe1ndez', 'fLola Mora', 'Carlos Gardel', 'fGabriela Mistral', 'Jorge Luis Borges', 'Antonio Berni', 'Daniel Barenboim', u'Juan Jos\xe9 Campanella', 'Gustavo Cerati'], ['Francisco Moreno', 'Florentino Ameghino', 'Luis Federico Leloir', u'L\xe1szl\xf3 B\xedr\xf3', u'Ren\xe9 Favaloro'], ['Juan Las Heras', 'Otto Bemberg', 'Ernesto Tornquist', u'Jos\xe9 Ber Gelbard', 'Roberto Alemann', 'Jorge Wehbe', 'Aldo Ferrer', 'Antonio Cafiero'], ['Luis Huergo', 'Jorge Newbery', 'Amancio Williams', 'Livio Dante Porta', 'Clorindo Testa', u'C\xe9sar Pelli'], ['Juan Manuel de Rosas', 'Domingo Faustino Sarmiento', 'Estanislao Zeballos', 'Carlos Saavedra Lamas', 'Juan Atilio Bramuglia', u'fEva Per\xf3n', 'Ernesto Guevara', u'fIsabel Mart\xednez de Per\xf3n', 'fEstela Barnes de Carlotto'], ['Cornelio Saavedra', 'Manuel Belgrano', u'Juan Jos\xe9 Castelli', u'Mart\xedn Miguel de G\xfcemes', u'Jos\xe9 Gervasio Artigas', u'Juan Carlos Ongan\xeda', 'Jorge Rafael Videla', 'Leopoldo Galtieri', 'Jorge Anaya'], ['Emilio Eduardo Massera', 'Guillermo Gaede']], [['Tenoch', 'Tlacateotl', 'fPapantzin', 'Ixtlilxochitl', 'fYacotzin'], ['Cuacuauhtzin', 'Nezahualcoyotl', 'Xayacamach', 'fMacuilxochitzin'], ['Axayacatl', 'Ixtlilxochitl', 'Coanacochtzin'], ['Cuauhtemoc', 'Tlacotzin', 'fTecuichpoch Ixcaxochitzin'], ['Itzcatl', 'Tlacaelel', 'Moquihuix'], ['Acamapichtli', 'Quaquapitzahuac', 'Tezozomoctli', 'Nezahualcoyotl', 'Nezahualpilli'], ['Tezozomoc', 'Ahuitzotl', 'Itzcoatl', 'Maxtla', 'Huitzilhuitl', 'Chimalpopoca'], []], [['Utnapishtim', 'Gilgamesh', 'fAmat-Mamu', 'fAdad-guppi', 'Ezra'], ['fEnheduanna', 'Gudea', 'Samsu-ditana', 'Sin-leqi-unninni'], ['fTapputi', 'Esagil-kin-apli', 'fEnnigaldi', 'Nabu-rimanni', 'Kidinnu', 'Sudines', 'Bel-reu-su'], ['fIltani', 'Burna-Buriash', 'Kadashman-Enlil', 'Itti-Marduk-balatu'], ['Naram-Sin', 'Ur-Nammu', 'Nabopolassar'], ['Urukagina', 'Ur-Nammu', 'Bilalama', 'Lipit-Ishtar', 'fShammuramat'], ['Tiglath-Pileser', 'Sennacherib', 'Nebukanezar', 'Shalmaneser'], []], [[u'Ant\xf3nio Conselheiro', u'H\xe9lder C\xe2mara', u'fIrm\xe3 Dulce Pontes', 'Chico Xavier', 'Edir Macedo'], ['Aleijadinho', u'Ant\xf3nio Carlos Gomes', 'Machado de Assis', 'fTarsila do Amaral', 'fCarmen Miranda', 'Tom Jobim', 'Romero Britto'], ['Oswaldo Cruz', 'Carlos Chagas', 'Alberto Santos-Dumont', 'Urbano Ernesto Stumpf', u"Aziz Ab'S\xe1ber", 'Marcelo Gleiser'], ['Roberto Marinho', 'Jorge Lemann', 'Eike Batista'], [u'Andr\xe9 Rebou\xe7as', u'C\xe2ndido Rondon', 'Oscar Niemeyer', 'Norberto Odebrecht'], [u'Jos\xe9 Bonif\xe1cio de Andrada', 'Rodrigo Augusto da Silva', u'Jos\xe9 Paranhos', u'fIsabel Bragan\xe7a', 'Miguel Reale', 'Roberto Mangabeira Unger'], [u'Lu\xeds Alves de Lima e Silva', 'Joaquim Marques Lisboa', u'fMaria Quit\xe9ria', u'Jo\xe3o Baptista Mascarenhas de Morais', 'Eurico Gaspar Dutra', 'Artur da Costa e Silva'], []], [['Nestorios', 'fTheodora', 'Ioannis o Damaskinos', 'Kyrillos', 'Methodios', 'Photios', 'Nikolaos Mystikos', 'Athanasios o Athonites', 'Ioannes Xiphilinos'], ['fAelia Eudocia', 'Romanos o Melodos', 'Flauios Dioskoros', 'fKassia', 'Theodoros Prodromos', 'Eulalios', 'Manuel Chrysoloras', 'Theophanes Strelitzas', 'Domenikos Theotokopoulos', 'Petros Bereketis'], ['fHypatia', 'Paulos Aiginitis', 'Stephanos Alexandrinos', 'Theophylaktos Simokates', 'Leon o Mathematikos', 'Michael Psellos', 'fAnna Komnene', 'Nikephoros Blemmydes', 'Niketas Choniates', 'Nikephoros Gregoras', 'Georgios Plethon'], ['Hierokles', 'Zemarchos', 'Kosmas Indikopleustes', 'Georgios Kyprios', 'fDanielis'], ['Anthemios', 'Isidoros', 'Eutokios', 'Kallinikos', 'Petronas Kamateros', 'Tiridates'], ['Theodosios', 'Tribonianos', 'fEirene', 'Irakleios', 'Leon', 'Michael Palaiologos'], ['Belisarios', 'Ioannis Tzimiskes', 'Nikephoros Phokas', 'Ioannis Kourkouas', 'Basileios Bulgaroktonos', 'Georgios Maniakes', 'Michael Palaiologos', 'Nikephoros Bryennios', 'Andronikos Kontostephanos', 'Alexios Strategopoulos'], []], [['Ignace Bourget', u'Andr\xe9 Bessette', 'Lionel Groulx', 'George C. Pidgeon', u'fR\xfah\xedyyih Kh\xe1num', 'Marshall McLuhan'], ['Cornelius Krieghoff', u'Calixa Lavall\xe9e', 'Tom Thomson', u'\xc9mile Nelligan', 'fLucy Maud Montgomery', 'Lawren Harris', 'fEmily Carr', 'Jean-Paul Riopelle', 'Neil Young', 'fGabrielle Roy', 'fAlice Munro'], ['John William Dawson', 'fMaude Abbott', 'Frederick Banting', 'Norman Bethune', 'Wilder Penfield', 'Pierre Dansereau', 'fShirley Tilghman', 'David Suzuki'], ['William McMaster', 'Timothy Eaton', 'Alphonse Desjardins', 'fElizabeth Arden', 'Max Aitken', 'Ted Rogers', u'Guy Lalibert\xe9'], ['Sandford Fleming', 'William Cornelius Van Horne', 'Alexander Graham Bell', 'Reginald Fessenden', 'Ernest Cormier', 'Joseph-Armand Bombardier', 'fElsie MacGill'], [u'George-\xc9tienne Cartier', 'Louis Riel', 'Henri Bourassa', 'Lester B. Pearson', 'fEmily Murphy', 'fNellie McClung', 'Tommy Douglas', u'Ren\xe9 L\xe9vesque', 'fLouise Arbour'], ['Arthur Currie', 'Andrew McNaughton', 'Billy Bishop', u'Rom\xe9o Dallaire'], ['William Stephenson', "Guy D'Artois", 'Igor Gouzenko']], [['Sakun-yaton', 'fJezebel', 'Tertullianus', 'Cyprianus', 'Donatus'], ['fSapanbaal', 'Micipsa', 'Ennion'], ['Mochus', 'Hiram', 'Sakun-yaton', 'Mago', 'Hasdrubal Clitomachus', 'Abba'], ['Acerbas', 'Hanno', 'Himilco', 'Abdashtart', 'Adherbal', 'Bocchus'], ['Gala', 'Zelalsen', 'Malchus', 'Gauda'], ['Ashtar-rom', 'Ithobaal', "Pu'mayyaton", 'fElishat', 'Hanno', 'Eshmuniaton', 'Azelmelek', 'Bomilcar'], ['Hasdrubal Barca', 'Hamilcar Barca', 'Mago Barca', 'Carthalo', 'Maharbal'], []], [[], [], [], [], [], [], [], []], [['Lao Tzu', 'Kong Fuzi', 'Meng Zi', 'Zhuangzi', 'Han Fei', 'Bodhidharma', 'Bukong', 'fLin Moniang', 'Wang Chongyang', "fSun Bu'er", 'Zhu Xi', 'Qiu Chuji', 'Wang Yangming', 'Hong Xiuquan', 'Wang Jueyi', 'Xiong Shili', 'Sheng Yen', 'Li Hongzhi'], ['Ling Lun', 'Li Bo', 'Du Fu', 'Wang Xizhi', 'fCai Wenji', 'Gu Kaizhi', "fShangguan Wan'er", 'Han Yu', 'Fan Kuan', 'Su Shi', 'fLi Qingzhao', 'Huang Gongwang', 'Luo Guanzhong', 'Tang Yin', "Wu Cheng'en", 'Cao Xueqin', 'Qi Baishi', 'Lu Xun', 'Lin Yutang', 'Wu Guanzhong'], ['Li Fan', 'fBan Zhao', 'Liu Hui', 'Zu Chongzhi', 'Shen Kuo', 'Zhu Shijie', 'fTan Yunxian', 'Xu Guangqi', 'Song Yingxing', 'fWang Zhenyi', 'Li Yuanzhe', 'Chen Ning Yang', 'fTu Youyou'], ['Zhang Qian', 'Faxian', 'Xuanzang', "Li Chun'an", 'Wang Anshi', 'Zheng He', 'Yishiha', 'Pan Qiguan', 'Zeng Junchen', 'Deng Xiaoping'], ['fLeizu', 'Lu Ban', 'Cai Lun', 'Zhang Heng', 'Ma Jun', 'Yi Xing', 'Yu Hao', 'Bi Sheng', 'Su Song', 'Wang Zhen', 'Li Siguang', 'fWu Jianxiong'], ['Gongsun Yang', 'Li Si', 'Xiao He', 'Fang Xuanling', 'fWu Zetian', 'Di Renjie', 'Fan Zhongyan', 'Liu Bowen', 'Zhang Juzheng', 'Zhang Tingyu', 'Li Hongzhang', 'Sun Yat-sen', 'Zhou Enlai', 'fJiang Qing'], ['fFu Hao', 'Sun Tzu', 'Cao Cao', 'Zhuge Liang', 'fPingyang Gongzhu', 'Guo Ziyi', 'Yue Fei', 'Qi Jiguang', 'Shi Lang', 'fChing Shih', 'Zeng Guofan', 'Zuo Zongtang', 'Zhang Zuolin', 'Zhu De', 'Chiang Kai-shek', 'Peng Dehuai'], ['Zhou Xing', 'Lai Junchen', 'Yang Xian', 'Liu Jin', 'Wei Zhongxian', 'Dai Li', 'Kang Sheng', 'fXu Lai', 'Li Bai']], [['fLaura Montoya', u'F\xe9lix Restrepo Mej\xeda', 'Camilo Torres Restrepo', u'Alfonso L\xf3pez Trujillo', u'Julio Enrique D\xe1vila', u'fMar\xeda Luisa Piraquive', u'C\xe9sar Castellanos'], ['Jorge Isaacs', u'Andr\xe9s de Santa Maria', 'Rodrigo Arenas', u'\xc1lvaro Mutis', u'Gabriel Garc\xeda M\xe1rquez', 'Fernando Botero', 'Rafael Orozco', u'Rodrigo Garc\xeda', 'fShakira'], [u'Jos\xe9 J\xe9ronimo Triana', 'Julio Garavito Armero', u'Rodolfo Llin\xe1s', 'Jorge Reynolds Pombo'], ['James Martin Eder', 'Julio Mario Santo Domingo', u'Carlos Ardila L\xfclle', 'Luis Carlos Sarmiento Angulo'], [u'Carlos Alb\xe1n', u'Carlos Ra\xfal Villanueva', 'Rogelio Salmona'], [u'Tom\xe1s Cipriano de Mosquera', u'Rafael N\xfa\xf1ez', u'Jorge Eli\xe9cer Gait\xe1n', u'Nicol\xe1s G\xf3mez D\xe1vila', u'Mario Lanserna Pinz\xf3n'], ['fAntonia Santos', u'Antonio Nari\xf1o', 'Francisco de Paula Santander'], [u'fManuela S\xe1enz']], [['Ptah-Hotep', 'Meryre', 'Akhenaten', 'fNefertiti', 'Petiese'], ['Pehen-Ptah', 'Thutmose', 'Bek', 'Ipuki', 'Sennedjem', 'Khaemweset', 'Amenemope', 'fHelena'], ['fMerit-Ptah', 'fPeseshet', 'Ahmose', 'Harkhebi', 'Manetho', 'Ptolemaios', 'Diophantos', 'fHypatia'], ['Harkhuf', 'Maya', 'fTiye', 'Piye', 'Alara'], ['Imhotep', 'Sneferu', 'Hemiunu', 'Senenmut', 'Ineni', 'Amenhotep', 'Heron'], ['Kagemni', 'Amenemhat', 'fHatshepsut', 'Herihor'], ['Narmer', 'Menes', 'Khufu', 'Mentuhotep', 'Thutmosis', 'Sethi'], []], [['Bede the Venerable', 'Anselm of Canterbury', 'Thomas Becket', 'Thomas More', 'fAnne Hutchinson', 'John Newton', 'William Penn', 'Jonathan Edwards', 'fAnn Lee', 'John Wesley', 'William Booth', 'David Livingstone', 'Gerald Gardner', 'Aleister Crowley', 'John Stott'], ['Geoffrey Chaucer', 'Thomas Malory', 'William Shakespeare', 'John Milton', 'John Vanbrugh', 'George Frideric Handel', 'fJane Austen', 'William Blake', 'fMary Shelley', 'Alfred Tennyson', 'Charles Dickens', 'Arthur Conan Doyle', 'James Joyce', 'fAgatha Christie', 'John R. R. Tolkien', 'John Lennon'], ['Robert Grosseteste', 'Roger Bacon', 'William of Ockham', 'Francis Bacon', 'Robert Boyle', 'Isaac Newton', 'David Hume', 'William Herschel', 'John Dalton', 'Michael Faraday', 'fMary Anning', 'Charles Darwin', 'James Clerk Maxwell', 'Ernest Rutherford', 'Alexander Fleming', 'Alan Turing', 'fRosalind Franklin', 'Stephen Hawking'], ['Alan Rufus', 'Aaron of Lincoln', 'William Caxton', 'Francis Drake', 'William Petty', 'James Cook', 'Adam Smith', 'George Hudson', 'Richard Francis Burton', 'Thomas Sutherland', 'Cecil Rhodes', 'John Maynard Keynes'], ['Henry Yevele', 'Inigo Jones', 'Robert Hooke', 'Christopher Wren', 'William Adam', 'John Harrison', 'James Watt', 'George Stephenson', 'Isambard Kingdom Brunel', 'Henry Bessemer', 'Charles Babbage', 'fAda Lovelace', 'John Logie Baird', 'fVictoria Drummond', 'Frank Whittle', 'Tim Berners-Lee'], ['Thomas Becket', 'William Cecil', 'John Locke', 'Thomas Hobbes', 'Robert Walpole', 'William Pitt', 'fMary Wollstonecraft', 'William Gladstone', 'Benjamin Disraeli', 'Robert Gascoyne-Cecil Salisbury', 'Thomas Edward Lawrence', 'fEmmeline Pankhurst', 'Clement Atlee', 'fDiana Spencer'], ['William the Conqueror', 'Richard the Lionheart', 'Edward III', 'fMargaret of Anjou', 'Oliver Cromwell', 'John Churchill Marlborough', 'Horatio Nelson', 'Arthur Wellesley Wellington', 'Edmund Lyons', 'Hugh Dowding', 'Bernard Law Montgomery', 'Harold Alexander'], ['Francis Walsingham', 'Guy Fawkes', 'Robert Poley', 'fElizabeth Alkin', u'John Andr\xe9', 'Edward Bancroft', 'William Wickham', 'William Melville', 'Mansfield Smith-Cumming', 'Sidney Reilly', 'fVera Atkins', 'fLise de Baissac', 'fMelita Norwood', 'Ian Fleming', 'Kim Philby']], [['Gabra Manfas Qeddus', 'Fremnatos', 'Abba Pantelewon', 'Abuna Aregawi', 'Tekle Haymanot', 'Ewostatewos', 'Abba Samuel', 'fKristos Samra', 'Abba Enbaqom', 'fWalatta Petros', 'Haile Selassie', 'Abune Tewophilos'], ['Yared', 'Giyorgis Saglawi', 'Gebre Hanna', 'Afevork Ghevre Jesus', 'Haddis Alemayehu', 'Adamu Tesfaw', 'Gebre Kristos Desta', 'Afewerk Tekle', 'Tsegaye Gabre-Medhin', 'Alexander Boghossian'], ["Zar'a Ya'aqob", 'Abba Bahriy', 'Walda Heywat', 'Abba Gorgoryos', 'Aklilu Lemma', 'Kitaw Ejigu', 'Sossina Haile', 'Gebisa Ejeta'], ['Nigiste Saba', 'Endubis', 'Yusuf bin Ahmad al-Kawneyn', 'Berhanu Nega', 'fEleni Gebre-Medhin', 'Mohammed Al Amoudi'], ['Gebre Mesqel Lalibela', 'Sarsa Dengel', 'Fasiladas', 'Simegnew Bekele', 'fSossina Haile'], ['Kaleb Ella Asbeha', 'fEleni', 'Susenyos', 'Tewodros', 'fTaytu Betul', 'fZewditu', u'G\xe4bre-Heyw\xe4t Bayk\xe4da\xf1', 'Mengistu Haile Mariam', 'Meles Zenawi'], ['Gadarat', 'Abraha', 'fGudit', 'Yekuno Amlak', 'Amda Seyon', 'Eskender', 'Tewodros', 'Lebna Dengel', 'Iyasu', 'Yohannis', 'Alula Engida', 'Habte Giyorgis Dinagde', 'Aman Andom'], []], [[u'Pierre Ab\xe9lard', 'Louis IX', "fJeanne d'Arc", 'Jean Calvin', 'Vincent de Paul', 'fJeanne Mance', 'fMarguerite Bourgeoys', u'Jacques-B\xe9nigne Bossuet', u'fTh\xe9r\xe8se de Lisieux', 'Auguste Comte', 'Albert Schweitzer', u'Marcel L\xe9gaut', u'Henri Grou\xe8s'], [u'P\xe9rotin', u'Chr\xe9tien de Troyes', 'fChristine de Pizan', 'Jean Fouquet', u'Fran\xe7ois Rabelais', 'Charles Le Brun', 'Jean-Baptiste Lully', 'Jean Racine', u'Moli\xe8re', 'Antoine Watteau', 'Voltaire', u'f\xc9lisabeth Vig\xe9e Le Brun', u'Honor\xe9 de Balzac', 'Alexandre Dumas', 'Victor Hugo', 'fGeorge Sand', 'Charles Baudelaire', 'Auguste Rodin', 'Claude Monet', 'Claude Debussy', 'Henri Matisse', 'Maurice Ravel', 'Marcel Proust', u'f\xc9dith Piaf', 'Albert Camus'], ["Gerbert d'Aurillac", 'Guy de Chauliac', 'Nicole Oresme', 'Marin Mersenne', u'Ren\xe9 Descartes', 'Pierre de Fermat', 'Blaise Pascal', 'Antoine Lavoisier', u'f\xc9milie du Ch\xe2telet', 'Pierre-Simon Laplace', 'Georges Cuvier', 'Louis Pasteur', 'fMarie-Sophie Germain', 'fMarie Curie', 'Antoine Henri Becquerel', 'Jacques Monod', u'Beno\xeet Mandelbrot'], [u'\xc9loi de Noyon', u'fJeanne la Fouaci\xe8re', 'Jacques Cartier', 'Samuel de Champlain', 'Antoine de Lamothe-Cadillac', u'fTh\xe9r\xe8se de Couagne', u'Fr\xe9d\xe9ric Bastiat', 'Ferdinand de Lesseps', 'Louis Vuitton', 'fCoco Chanel', 'Marcel Dessault', 'fMarie Marvingt'], ['Suger', 'Villard de Honnecourt', 'Pierre de Montreuil', u'S\xe9bastien Le Prestre de Vauban', 'Jules Hardouin-Mansart', 'Claude Perrault', 'Charles-Augustin Coulomb', 'Joseph-Michel Montgolfier', 'Joseph Marie Jacquard', 'Sadi Carnot', 'Louis Daguerre', 'Norbert Rillieux', 'Alexandre Gustave Eiffel', u'Louis Lumi\xe8re', 'Le Corbusier'], [u"fAli\xe9nor d'Aquitaine", 'Philippe de Beaumanoir', 'Jean Bodin', 'Armand Jean du Plessis de Richelieu', 'Jean-Baptiste Colbert', u"fAnne-Marie-Louise d'Orl\xe9ans", u'Charles-Maurice de Talleyrand-P\xe9rigord', 'Montesquieu', 'Maximilien Robespierre', 'Adolphe Thiers', 'Alexis de Tocqueville', 'Pierre-Joseph Proudhon', u'L\xe9on Blum', 'fSimone de Beauvoir'], ['Charles Martel', 'Godefroy de Bouillon', 'fJeanne de Flandre', 'Charles V', "fJeanne d'Arc", u'Louis de Bourbon-Cond\xe9', "Henri de la Tour d'Auvergne", 'Louis-Joseph de Montcalm', u'Louis-Ren\xe9 de Latouche-Tr\xe9ville', 'Louis-Nicolas Davout', 'Joachim Murat', 'Louis-Alexandre Berthier', 'Gilbert de Lafayette', 'Patrice de MacMahon', 'Ferdinand Foch', 'Joseph Joffre', u'Philippe P\xe9tain', 'Philippe Leclerc de Hauteclocque'], [u'Bertrandon de la Broqui\xe8re', 'fCharlotte de Sauve', u'fMarie Anne de La Tr\xe9moille', 'fCharlotte Corday', 'Pierre Beaumarchais', u"Chevalier d'\xc9on", 'fMichelle de Bonneuil', 'Charles Schulmeister', u'fJos\xe9phine Baker', 'Gilbert Renault']], [['Moses Mendelssohn', 'Friedrich Schleiermacher', 'fAnne Catherine Emmerich', 'Friedrich Nietzsche', 'Adolph Kolping', 'Dietrich Bonhoeffer', 'fEdith Stein', 'Joseph Ratzinger'], ['Johann Sebastian Bach', 'Carl Philipp Emanuel Bach', 'Gotthold Ephraim Lessing', 'Johann Wolfgang von Goethe', 'Friedrich Schiller', 'Caspar David Friedrich', 'Felix Mendelssohn', 'fClara Schumann', 'Richard Wagner', 'Thomas Mann', 'Hermann Hesse', 'Paul Klee', 'fLeni Riefenstahl', u'G\xfcnter Grass', 'Leoreth'], ['Leonhard Euler', 'Johann Heinrich Lambert', 'fCaroline Herschel', 'Alexander von Humboldt', 'Georg Wilhelm Friedrich Hegel', u'Carl Friedrich Gau\xdf', 'Ernst Haeckel', u'Wilhelm R\xf6ntgen', 'Albert Einstein', 'Werner Heisenberg', 'fEmmy Noether', 'Max Planck'], ['Johann Philipp Graumann', 'Johann Ernst Gotzkowsky', 'Mayer Amschel Rothschild', 'Nathan Mayer Rothschild', u'Gerson von Bleichr\xf6der', 'Marcus Goldman', 'fMelitta Bentz', 'Adolf Dassler', 'Philip Rosenthal'], ['Georg Wenzeslaus von Knobelsdorff', 'Carl Gotthard Langhans', 'Alfred Krupp', 'Werner von Siemens', 'Nikolaus Otto', 'Gottlieb Daimler', 'Carl Benz', 'Ferdinand Porsche', 'August Horch', 'Ludwig Mies van der Rohe', 'Konrad Zuse', 'Wernher von Braun'], ['Jakob Friedrich von Bielfeld', 'Immanuel Kant', 'Heinrich Friedrich Karl vom Stein', 'Wilhelm von Humboldt', 'Karl Marx', 'Wilhelm Liebknecht', 'Friedrich Ebert', 'fRosa Luxemburg', 'Konrad Adenauer', 'fHannah Arendt', 'Willy Brandt', 'Helmut Kohl'], [u'Gebhard Leberecht von Bl\xfccher', 'Gerhard von Scharnhorst', 'Carl von Clausewitz', 'Helmuth von Moltke', 'Paul von Hindenburg', 'Erich von Manstein', 'Erwin Rommel', 'Heinz Guderian'], [u'Christian Andreas K\xe4sebier', 'Georg Klindworth', 'Wilhelm Stieber', 'fMaria de Victorica', u'fElsbeth Schragm\xfcller', 'Wilhelm Canaris', 'Fritz Joubert Duquesne', 'Klaus Fuchs', 'Markus Wolf']], [['fEritha', 'Herakleitos', 'Anacharsis', 'Parmenides', 'Philolaos', 'fDiotima', 'Epikouros', 'Emmanuel Metaxakis', 'Georgios Karslidis', 'Arsenios Eznepidis', 'Porphyrios Bairaktaris'], ['Homeros', 'fSappho', 'Sophokles', 'Thoukydides', 'Euripides', 'Herodotos', 'Aischylos', 'Pheidias', 'Anyte Tegeatis', 'Dionysios Solomos', 'Georgios Jakobides', 'Nikos Kazantzakis', 'fMaria Callas', 'Odysseas Elytis', 'Iannis Xenakis', 'Mikis Theodorakis'], ['Pythagoras', 'Sokrates', 'Demokritos', 'Anaxagoras', 'Hippokrates', 'Aristoteles', 'Platon', 'Eukleides', 'Eratosthenes', 'Galenos', 'fAglaonike', 'fHypatia', 'Eugenios Voulgaris', 'Konstantinos Karatheodori', 'Georgios Papanikolaou', 'Fotis Kafatos'], ['Kolaios', 'Sostratos', 'Pytheas', 'Androsthenes', 'Megasthenes', 'Hippalos', 'Heroides Attikos', 'fManto Mavrogenous', 'Evangelos Zappas', 'Aristotelis Onasis', 'Stavros Niarchos', 'fArianna Stasinopoulou'], ['Thales', 'Empedokles', 'Zenon', 'Satyros', 'Archimedes', 'Sostratos', 'Heron', 'Ernestos Tsiller', 'Alexandros Issigonis', 'Ioannis Travlos', 'Ioannis Argyris'], ['Solon', 'Kleisthenes', 'fGorgo', 'Alkibiades', 'Kimon', 'Isokrates', 'Aresteides', 'Adamantios Korais', 'Ioannis Kapodistrias', 'Eleftherios Venizelos', 'Ioannis Metaxas', 'Konstantinos Karamanlis', 'Michael Christodoulou Mouskos', 'Andreas Papandreou'], ['Hektor', 'Leonidas', 'Themistokles', 'Lysandros', 'Philippos', 'Pyrrhos', 'fArtemisia', 'fLaskarina Bouboulina', 'Alexandros Ypsilantis', 'Theodoros Kolokotronis', 'Konstantinos Bakopoulos', 'Alexandros Papagos'], []], [[], [], [], [], [], [], [], []], [['fHildegard von Bingen', 'Albertus Magnus', 'fGertrud von Helfta', 'Jan Hus', 'Martin Luther', 'fArgula von Grumbach', 'Philip Melanchthon', 'fAnne Catherine Emmerich', 'Theodor Herzl', 'Rudolf Steiner', u'Franz K\xf6nig'], ['fRoswitha von Gandersheim', 'Wolfram von Eschenbach', 'Walther von der Vogelweide', u'Albrecht D\xfcrer', 'Johann Sebastian Bach', 'Joseph Haydn', 'Ludwig van Beethoven', 'Wolfgang Amadeus Mozart', 'Johann Wolfgang von Goethe', 'Friedrich Schiller', 'Franz Liszt', 'Johann Strauss', u'Anton\xedn Dvor\xe1k', 'Gustav Mahler', 'Gustav Klimt', u'Arnold Sch\xf6nberg', 'Rainer Maria Rilke', 'Franz Kafka', 'Stefan Zweig', 'Egon Schiele', 'Fritz Lang'], ['Hrabanus Maurus', 'Regiomontanus', 'Konrad Celtes', 'Theophrastus von Hohenheim', 'Gerhard Mercator', 'Johannes Kepler', 'Gottfried Leibniz', 'fCaroline Herschel', 'Ignaz Semmelweis', 'Gregor Mendel', 'Sigmund Freud', 'fLise Meitner', u'Erwin Schr\xf6dinger', 'Ludwig Wittgenstein', u'Albert Szent-Gy\xf6rgyi', 'Wolfgang Pauli', u'Kurt G\xf6del'], ['Hildebrand Veckinchusen', 'Jakob Fugger', 'Bartholomeus Welser', 'fBarbara Uthmann', 'Johann Hinrich Gossler', 'Mayer Amschel Rothschild', 'Friedrich List', 'Carl Menger', 'Joseph Schumpeter', 'Ludwig von Mises', 'Ferdinand Anton Ernst Porsche'], ['fSabina von Steinbach', 'Heinrich Parler', 'Peter Parler', 'Johannes Gutenberg', 'Benedikt Ried', 'Elias Holl', 'Johann Bernhard Fischer von Erlach', 'Balthasar Neumann', 'Johann Lukas von Hildebrandt', u'\xc1nyos Jedlik', 'Alois Negrelli', 'Carl Auer von Welsbach', u'Oszk\xe1r Asboth', u'fMargarete Sch\xfctte-Lihotzky', 'Friedensreich Hundertwasser'], ['Heinrich der Vogler', 'Hermann von Salza', 'Nikolaus von Kues', 'Nikolaus Georg von Reigersberg', u'Heinrich von Br\xfchl', 'Wenzel Anton von Kaunitz-Rietberg', u'Istv\xe1n Sz\xe9chenyi', 'Klemens von Metternich', 'Lajos Kossuth', 'Friedrich Ferdinand von Beust', 'fBertha von Suttner', 'Karl Renner', 'Richard von Coudenhove-Kalergi', 'Kurt Waldheim'], [u'Otto der Gro\xdfe', u'Heinrich der L\xf6we', u'G\xf6tz von Berlichingen', 'Albrecht von Wallenstein', 'Eugen von Savoyen', 'Gideon Ernst von Laudon', 'Josef Wenzel Radetzky von Radetz', u'Karl von \xd6sterreich-Teschen', 'Wilhelm von Tegetthoff', u'Franz Conrad von H\xf6tzendorf'], ['fAgnes Le Louchier', 'Alfred Redl', 'fStephanie von Hohenlohe', 'Wilhelm Franz von Habsburg-Lothringen']], [['Yahuar Huacac', 'fAsarpay'], ['Viracocha', 'Ninan Cuyochi', 'fPalla Chimpu Ocllo'], ['Sinchi Roca', 'Mayta Qhapaq Inka', 'Manqu Qhapaq', "Inka Roq'a", 'Waskar Inka', 'Titu Cusi'], ['Tupaq Inka Yupanki', 'Felipillo'], ['Qhapaq Yunpanki Inka', 'Sayri Tupaq Inka'], [u'Mayta C\xe1pac', 'Manco Inca Yupanqui', 'fMama Huaco', u'T\xe1pac Amaru'], ['Pachakutiq Inka Yupanki', 'Atawallpa', 'Manqu Inka Yupanki', 'Thupaq Amaru', 'Chalcuchimaq', 'Quisquis', 'fBartolina Sisa', u'T\xfapac Amaru', 'fJuana Azurduy de Padilla'], []], [['Mahavira', 'Siddharta Gautama', 'Ananda', 'Mahakashyapa', 'Nagarjuna', 'Adi Shankara', 'Atisha', 'Ramanuja', 'Basava', 'Kabir', 'Chaitanya Mahaprabhu', 'fMeera', 'Ramakrishna', 'Swami Vivekananda', 'Shirdi Sai Baba', 'Paramahansa Yogananda', 'fAnandamayi Ma', 'fAnjeze Gonxhe Bojaxhiu', 'Maharishi Mahesh Yogi', 'fNirmala Srivastava'], ['Valmiki', 'Asvaghosa', 'Kapilar', 'Kalidasa', 'Gunadhya', 'fAvvaiyar', 'Abhinavagupta', 'Nakkirar', 'fKanhopatra', 'Purandara Dasa', 'Tansen', 'Nainsukh', 'Muthuswami Dikhorsehockeyar', 'Raja Ravi Varma', 'Rabindranath Tagore', 'Raja Rao', 'fAmrita Sher-Gil', 'Satyajit Ray', 'Ravi Shankar'], ['Yajnavalkya', 'Panini', 'Charaka', 'Pingala', 'Aryabhata', 'Dignaga', 'Dharmakirti', 'Brahmagupta', 'Bhaskara', 'Madhava', 'Nilakantha Somayaji', 'Kamalakara', 'Chandrasekhara Venkata Raman', 'Satyendra Nath Bose', 'fAsima Chatterjee'], ['Nattal Sahu', 'Jagadu', 'Jamsetjee Jejeebhoy', 'Jamsetji Tata', 'Ardeshir Godrej', 'Kappalottiya Tamizhan', 'fIndra Nooyi'], ['Baudhayana', 'Lagadha', 'Gundan Anivaritachari', 'Vidyadhar Bhattacharya', 'Jagadish Chandra Bose', 'Mokshagundam Visvesvaraya', 'Jamsetji Tata', 'fEulie Chowdhury', 'Satish Dhawan', 'Charles Correa'], ['Vishnu Sharma', 'Chanakya', 'Thiruvalluvar', 'Amoghavarsha', 'Chavundaraya', 'Rajaraja Chola', 'Ariyanatha Mudaliar', 'Nana Fadnavis', 'fBegum Samru', 'Ram Mohan Roy', 'Ranjit Singh', 'fSarojini Naidu', 'Sarvepalli Radhakrishnan', 'Bhimrao Ramji Ambedkar', 'Jawaharlal Nehru'], ['Chandragupta Maurya', 'Samudragupta', 'Dhruva Dharavarsha', 'Mihira Bhoja', 'Rajaraja Chola', 'fRani Durgavati', 'Shivaji Bhosle', 'Kanhoji Angre', 'Marthanda Varma', 'Hyder Ali', 'Nana Sahib', 'fRani Lakshmibai', 'Kodandera M. Cariappa', 'Sam Manekshaw'], ['Bahirji Naik', 'fSharan Kaur Pabla', 'Sarat Chandra Das', 'fNoor Inayat Khan', 'Rameshwarnath Kao', 'Ravindra Kaushik']], [['Maha Rsi Agastya', 'Buddha Pahyien', 'Sakyakirti', 'fGayatri Rajapatni', 'Sunan Giri', 'Sunan Gunung Jati', 'Ahmad Dahlan', 'Albertus Soegijapranata'], ['Abdullah Abdul Kadir', 'Raja Ali Haji', 'Amir Hamzah', 'Ismail Marzuki', 'Pramoedya Ananta Toer', 'Asep Sunandar Sunarya', 'I Made Sidia'], ['Jayabaya', 'Empu Tantular', 'Herman Johannes'], ['Dewawarman', 'fCri Kahulunnan', 'Raja Mudaliar', 'Nahkoda Muda'], ['Gunadharma', 'Samaratungga', 'Rakai Pikatan', 'Liem Bwan Tjie', 'Soejoedi Wirjoatmodjo'], ['Gajah Mada', 'Parmeswara', 'Mahmud Badaruddin', 'fRaden Ayu Kartini', 'Sukarno', 'Agus Salim', 'Chep the Magnificent'], ['Dharmawangsa', 'Airlangga', 'Ken Arok', 'Raden Wijaya', 'fTribhuwana Vijayatunggadewi', 'fMalahayati', 'fMartha Christina Tiahahu', 'Pattimura', 'fCut Nyak Dhien', 'Oerip Soemohardjo', 'Sudirman'], []], [[], [], [], [], [], [], [], []], [["Tommaso d'Aquino", "Francesco d'Assisi", 'fGuglielma', 'fCaterina di Giacomo di Benincasa', 'Giuliano della Rovere', 'Camillo Borghese', "Giulio de' Medici", 'Matteo Ricci', 'Giovanni Maria Mastai-Ferretti', 'Giovanni Bosco'], ['Dante Alighieri', 'Giotto di Bondone', 'Giovanni Boccaccio', 'Donatello', 'Michelangelo Buonarroti', 'Raffaello Sanzio', 'fSofonisba Anguissola', 'Michelangelo Merisi da Caravaggio', 'Claudio Monteverdi', 'fArtemisia Gentileschi', 'Antonio Vivaldi', 'Alessandro Manzoni', 'Giuseppe Verdi', 'Giacomo Puccini', 'Umberto Boccioni', 'fGrazia Deledda', 'Federico Fellini', u'Gian Maria Volont\xe8'], ['fTrotula di Salerno', 'Francesco Petrarca', 'Pico della Mirandola', 'Giordano Bruno', 'Galileo Galilei', 'fElena Cornaro Piscopia', 'Luigi Galvani', 'Alessandro Volta', 'fMaria Gaetana Agnesi', 'Amedeo Avogadro', 'Camillo Golgi', 'fMaria Montessori', 'Enrico Fermi', 'fRita Levi-Montalcini'], ['Marco Polo', "Simone de' Bardi", "Giovanni de' Medici", 'Donato Peruzzi', 'Ciriaco de Ancona', 'Giovanni Caboto', 'Amerigo Vespucci', "fTullia d'Aragona", 'Enzo Ferrari', 'Gianni Versace'], ['Taccola', 'Filippo Brunelleschi', 'Leon Battista Alberti', 'Leonardo da Vinci', 'Donato Bramante', 'Andrea Palladio', 'Alois Negrelli', 'Antonio Meucci', 'Guglielmo Marconi', 'Giovanni Battista Caproni', 'Angiolo Mazzoni', 'Gabriele Trovato'], ['Giovanni Villani', 'fLucrezia Borgia', u'Niccol\xf2 Machiavelli', "fIsabella d'Este", 'Francesco Guicciardini', 'Giambattista Vico', 'Cesare Beccaria', 'Pasquale Paoli', 'Giuseppe Garibaldi', 'Giuseppe Mazzini', 'Francesco Crispi', 'Antonio Gramsci'], ['fMatilde di Canossa', 'Enrico Dandolo', 'Simone Boccanegra', 'Francesco Sforza', 'Cesare Borgia', 'Andrea Doria', 'Sebastiano Venier', 'Alessandro Ferrero La Marmora', 'Giuseppe Garibaldi', 'Rodolfo Graziani', 'Giovanni Messe'], ['Andrea Gritti', 'Petros Lantzas', 'Gaspar Graziani', 'Giacomo Casanova', 'fLuisa Zeni', 'Maurizio Giglio', 'Rodolfo Siviero']], [['En no Ozunu', 'Kuukaii', 'Saichou', 'Abe no Seimei', 'Myouan Eisai', 'Shinran', 'Nikkou', 'Nichiren', 'Rennyo', 'Ikkyuu Soujun', 'Takuan Souhou', 'Ryoukan', 'Hirata Atsutane', 'fMiki Nakayama', 'Kanzou Uchimura'], ['Kakinomoto no Hitomaro', 'Yamanoue no Okura', 'Ootomo no Yakamochi', 'Ki no Tsurayuki', 'fMurasaki Shikibu', 'Unkei', 'Saigyou', 'Zeami', 'Sesshuu', 'Kanou Eitoku', 'Sen no Rikyuu', 'Ihara Saikaku', 'Matsuo Bashou', 'Chikamatsu Monzaemon', 'Toushuusai Sharaku', 'Yosa Buson', 'Kobayashi Issa', 'Kyokutei Bakin', 'Katsushika Hokusai', 'Utagawa Hiroshige', 'fIchiyou Higuchi', 'Masaoka Shiki', 'fAkiko Yosano', 'Osamu Dazai', 'Miyazawa Kenji', 'Yukio Mishima', 'Yasunari Kawabata', 'Osamu Tezuka', 'Tsuburaya Eiji', 'Hayao Miyazaki', 'Toro Okamoto'], ['Yoshida Mitsuyoshi', 'Takakazu Seki', 'Aida Yasuaki', 'Sugita Genpaku', 'Ogata Kouan', 'Shibasaburou Kitasato', 'Hideyo Noguchi', 'Kiyoshi Shiga', 'Kumagusu Minakata', 'Kiyoshi Itou', 'Hideki Yukawa', 'Shinichirou Tomonaga', 'Masatoshi Koshiba', 'Kenkichi Iwasawa'], ['Ruson Sukezaemon', 'Yodoya Juutou', 'Mitsui Takatoshi', 'Shousuke Tanaka', 'Kounoike Zenzaemon', 'Sumitomo Kichizaemon', 'Takadaya Kahei', 'Torakusu Yamaha', 'Outano Kouzui', 'Yatarou Iwasaki', 'Zenjirou Yasuda', 'Masahisa Fujita', 'Kiichiro Toyoda', 'Soichiro Honda', 'Yohorsehockeyaka Fukuda'], ['Gyouki', 'Yaita Kinbee', 'Yasui Douton', 'Hiraga Gennai', 'Tanaka Hisashige', 'Katayama Toukuma', 'Takeda Ayasaburou', 'Sakichi Toyoda', 'Koutarou Honda', 'Ken Sakamura', 'Kyota Sugimoto', 'Hidetsugu Yagi', 'Shigeru Miyamoto'], ['Shoutouku Taishi', 'Fujiwara no Michinaga', 'Taira no Kiyomori', 'fHoujou Masako', 'Ashikaga Yoshimitsu', 'Tokugawa Ieyasu', 'Tsunenaga Hasekura', 'Arai Hakuseki', 'Tanuma Okitsugu', 'Sakamoto Ryouma', 'Oukubo Toshimichi', 'Yukichi Fukuzawa', 'Yukio Ozaki', 'Korekiyo Takahashi', 'Shigeru Yoshida', 'fSadako Ogata'], ['Fujiwara no Kamatari', 'Sakanoue no Tamuramaro', 'Taira no Masakado', 'Minamoto no Yoritomo', 'Kusunoki Masashige', 'Ashikaga Takauji', 'Houjou Souun', 'Takeda Shingen', 'Shimazu Yoshihiro', 'fTachibana Ginchiyo', 'Toyotomi Hideyoshi', 'fNakano Takeko', 'Tougou Heihachirou', 'Yoshifuru Akiyama', 'Gonnohyoue Yamamoto', 'Isoroku Yamamoto', 'Tomoyuki Yamahorsehockeya'], ['Kagetoki Kajiwara', 'Hino Kumawaka', 'Hanzou Hattori', 'fChiyome Mochizuki', 'Ishikawa Goemon', 'Mamiya Rinzou', 'Nezumi Kozou', 'Akashi Motojiro', 'fYoshiko Kawashima', 'Takeo Yoshikawa', 'Keiji Suzuki']], [['Sanghapala', 'Kirtipandita', 'Suryavarman I', 'fJayarajadevi', 'Tamalinda', 'Chuon Nath', 'Maha Ghosananda'], ['Udayadityavarman II', 'fIndradevi', 'Thommaracha', 'Ang Duong', 'Suttantaprija Ind', 'Sinn Sisamouth', 'Vann Nath', 'Chath Piersath', 'Chhim Sothy'], ['Semahatata', 'Jayavarman V', 'Yajnavaraha', 'fSaptadevakula Prana', 'Keng Vannsak'], ['Jayavarman IV', 'Srindravarman', 'fDaun Penh', 'Chey Chettha', 'Srei Meara', 'Teng Bunma'], ['Indravarman I', 'Yasovarman I', 'fJahavi', 'Udayadityavarman II', 'Jayavarman VII', 'Vann Molyvann'], ['Jayavarman II', 'Harshavarman', 'Norodom', 'Tou Samouth'], ['Bhavavarman', 'Rajendravarman II', 'Sangrama', 'Vidyanandana', 'Sak Sutsakhan', 'Dien Del'], ['fYun Yat']], [['Nzinga a Nkuwu', 'Kinu a Mvemba', 'Ilunga Mbili', 'Nkanga a Lukeni a Nzenze a Ntumba', 'fKimpa Vita'], [], [], ["N'Gangue M'voumbe Niambi"], [], ['Mwata Yamvo', "Ng'anga Bilonda", 'Kalala Ilunga', 'fNzinga', 'Patrice Lumumba', 'Joseph Kasa-Vubu'], ['Lukeni lua Nimi', 'fNzinga', 'Nusamu a Mvemba', 'fKangala Kingwanda', 'Mwenda Msiri Ngelengwa horsehockeyambi'], []], [['Marananta', 'Uisang', 'Doseon', 'Jinul', 'An Hyang', 'Gil Jae', 'Bo-u', 'Yi Hwang', 'Yi I', 'Jo Shik', 'Song Si-yeol', 'Yi Seung-hun', 'Choe Je-u', 'Moon Sun-myung', 'Kim Su-hwan'], ['fYeo Ok', 'Sol Geo', 'Damjing', 'Yi Nyeong', 'Yi Je-hyeon', 'Yangnyeong', 'Anpyeong', 'fHwang Jini', 'fSin Saimdang', 'fHeo Nanseolheon', 'Yun Duseo', 'Kim Hong-do', 'Jeong Seon', 'Shin Yun-bok', 'Paik Nam-jun', 'fNa Hye-sok', 'Im Kwon-taek', 'Seo Taeji'], ['Wonhyo', 'Kim Am', 'Seo Gyung-deok', 'Jeong Inji', 'Seong Sammun', 'Heo Jun', 'Choi Seok-jeong', 'Hong Jeong-ha', 'fSeo Yeongsuhap', 'Hong Dae-yong', 'Park Jiwon', 'Jeong Yak-yong', 'Woo Jang-choon'], ['Hyecho', 'Uicheon', 'Kim Sa-hyeong', 'Yi Mu', 'Yi Hoe', 'fKim Man-deok', 'Im Sang-ok', 'Park Jega', 'Kim Jeong-ho', 'fPaek Son-haeng', 'Yu Il-Han', 'Lee Byung-chul', 'Chung Ju-yung'], ['Choe Yun-ui', 'Choe Mu-seon', 'Park Ja-cheong', 'Munjong', 'Jang Yeong-sil', 'Song I-yeong', 'Ri Sung-gi', 'Kim Swoo-geun'], ['fSeondeok', 'Choe Chiwon', 'Seo Hui', 'Kim Bu-sik', 'Jeong Dojeon', 'Yi Saek', 'Jeong Mongju', 'Hwang Hui', 'Ryu Seong-ryong', 'Yi Won-ik', 'Che Je-gong', 'Heungseon Daewongun', 'Kim Ok-gyun', 'fMyeongseong', 'Sin Chaeho', 'Soh Jaipil', 'fRyu Gwansun', 'Rhee Syngman', 'Kim Gu', 'Kim Dae-jung', 'Kim Young-sam'], ['Gwanggaeto', 'Kim Yu-sin', 'Gyebaek', 'Eulji Mundeok', 'Yeon Gaesomun', 'Jang Bogo', 'Gang Gam-chan', 'Yun Gwan', 'Choe Young', 'Yi Seong-gye', 'Nam I', 'Gwon Ryul', 'Yi Sun-shin', 'Gwak Jae-woo', 'Kim Jwa-jin', 'Hong Beom-do', 'Choe Hyon', 'Paik Sun-yup'], ['Park Je-sang', 'Moon Ik-jeom', 'Nongae', 'Park Mun-soo', 'An Jung-geun', 'Yi Bong-chang', 'Kim Jae-gyu']], [['Wali Keita', 'Sidi Yahya', 'Seku Amadu', 'Ali Coulibaly'], ['Nare Maghann Konate', 'Lobi Traore', 'Ibrahim Aya'], ['Gaoussou Diawara', 'Abu al Baraaka', 'Mohammed Bagayogo', 'Ahmed Baba', 'Ag Mohammed Kawen'], ['Tunka Manin', 'Abubakari', 'Abu Bakr ibn Ahmad Biru', u'Mand\xe9 Sidib\xe9'], ['Sakura', 'Al-Qadi Aqib ibn Umar', 'Abu Es Haq es Saheli', 'Mohammed Naddah', 'Mohammed Bagayogo'], ['Askia Muhammad', u'Bit\xf2n Coulibaly', u'Samori Tour\xe9', 'Modibo Keita', u'Alpha Oumar Konar\xe9'], ['fYennenga', 'Sundiata Keita', 'Askia Muhammad', 'Sunni Ali', 'Askia Daoud', 'fAminatu', 'Ngolo Diarra', 'fSeh-Dong-Hong-Beh'], []], [['Junajpu', "Xb'alanke", 'Kukulkan', 'Ce Acatl Topiltzin'], ["Uaxaclajuun Ub'aah K'awiil", "Chakalte'", 'Jun Nat Omootz', "Asan Winik Tu'ub", "Chan Ch'ok Wayib Xok", 'Waj Tan Chak', 'fMarisol Ceh Moo'], ['Itzamna', 'Huematzin', 'Papantzin'], ['Ek Chuaj', 'Apoxpalon', 'Tabscoob'], ["Chan Imix K'awiil", "fK'ab'al Xook", "Ha' K'in Xook", "Itzam K'an Ahk", "K'inich Yat Ahk"], ['Yax Ehb Xook', "fYohl Ik'nal", "Yuknoom Ch'een", "Jasaw Chan K'awiil", u'fRigoberta Mench\xfa'], ["Siyaj K'ak'", "K'inich Yo'nal Ahk", 'fXochitl', 'Hunac Ceel', 'Napuc Chi', 'Tecun Uman'], []], [['Juan Diego', 'Francisco Javier Clavijero', u'Crist\xf3bal Magallanes Jara', u'Rafael Gu\xedzar Valencia', 'Miguel Pro', 'Samuel Ruiz', u'Javier Lozano Barrag\xe1n'], [u'f\xc1ngela Peralta', u'Jos\xe9 Clemente Orozco', 'Diego Rivera', 'fFrida Kahlo', 'Octavio Paz', 'fRemedios Varo', u'fDolores del R\xedo', 'Pedro Infante', 'Carlos Fuentes', u'Vicente Fern\xe1ndez'], ['Gabino Barreda', u'Lucas Alam\xe1n', 'Manuel Sandoval Vallarta', 'Ricardo Miledi', u'Mario Jos\xe9 Molina', 'Rodolfo Neri Vela'], [u'V\xedctor Urquidi', u'Jer\xf3nimo Arango', 'Carlos Slim', 'Everardo Elizondo', u'Alberto Baill\xe8res', u'Emilio Azc\xe1rraga Jean'], [u'Jos\xe9 Villagr\xe1n Garc\xeda', u'Luis Barrag\xe1n', "Juan O'Gorman", 'Mario Pani', u'Pedro Ram\xedrez V\xe1zquez', 'Bernardo Quintana Arrioja'], [u'Jos\xe9 Mar\xeda Pino Su\xe1rez', 'Pascual Orozco', u'Jos\xe9 Vasconcelos', 'Octavio Paz', 'fElvia Carrillo Puerto', 'fRosario Castellanos', u'Alfonso Garc\xeda Robles', u'Gilberto Bosques Sald\xedvar'], ['Miguel Hidalgo', u'Agust\xedn de Iturbide', u'fJosefa Ortiz de Dom\xednguez', u'Porfirio D\xedaz', 'Pancho Villa', 'Emiliano Zapata Salazar'], ['fMargarita Ortega']], [['Abaqa', 'Arghun', 'Sartaq', 'Zanabazar', 'Zaya Pandita', 'Bogd Khan'], ['Oghul Qaimish', 'Tolui', 'Guillaume Boucher', 'Uzbeg', 'Dulduityn Danzanravjaa', 'Marzan Sharav', 'Byambyn Rinchen', 'fSiqin Gaowa'], ['Isa Khelmerchi', 'Kaidu', 'Nasir al-Din al-Tusi', 'Ulugh Beg', 'Mandukhai', 'Nurhaci', 'Jamsrangiin Tseveen'], ['Hulagu', u'G\xfcy\xfck', 'Mengu-Timur', 'Gaykhatu', 'Qawsun', 'Altan'], ['Duwa', 'Zhang Wenqian', 'Toqta', 'Ismail', 'Li Siguang'], ['fSorghaghtani Beki', 'Batu Khan', 'Urtu Saqal', 'fOrghana', 'Ghazan', u'Tem\xfcr Khan', 'Dayan Khan', 'Balingiin Tserendorj', u'Damdin S\xfckhbaatar', 'Tsakhiagiin Elbegdorj'], ['Toghril', 'Subutai', u'\xd6godei', 'Chagatai', u'M\xf6ngke', 'fKhutulun', 'Khorloogiin Choibalsan'], []], [['Ibn Masarra', 'Ibn Hazm', 'Musa bin Maymun', 'fFatima bint al-Muthanna', 'Ibn Arabi', 'Ahmad Zarruq', "Ahmad ibn Abi Jum'ah", 'Muhammad ibn Ali as-Senussi'], ['Ziryab', 'fWallada bint al-Mustakfi', 'fQasmuna', 'Ibn Tufail', 'Ibn Quzman', 'Al-Shustari', 'Ibn Sahl', 'Ahmad Ibn al-Qadi', 'Mohammed Awzal', 'Kaddour El Alamy', 'Abdessadeq Cheqara'], ['Al-Zahrawi', 'Ibn Zuhr', 'Jabir bin Aflah', 'Ibn Rushd', 'Ibn Bajja', 'Abu al-Salt', 'Al-Qalasadi', 'Abul Qasim ibn Mohammed al-Ghassani'], ['Ibrahim ibn Yaqub', 'Al-Bakri', 'Al-Idrisi', 'Ibn Jubayr', 'Ibn Battuta', 'Hassan al-Wazzan'], ['Abbas ibn Firnas', 'Ibn Bassal', 'Al-Zarqali', 'Al-Muradi', 'Ahmed el Inglizi'], ['fZaynab an-Nafzawiyyah', 'Ibn al-Khatib', 'Ibn Khaldun', 'fLalla Aisha Mubarka', 'Abu al-Qasim al-Zayyani', 'Habib Bourguiba'], ['Tariq ibn Ziyad', 'Muhammad ibn Abi Aamir', 'Yusuf ibn Tashfin', "Abd al-Mu'min", 'fSayyida al Hurra', 'Mohammed ash-Sheikh', 'Ahmad al-Mansur', 'Ismail ibn Sharif', 'Abdelkader ibn Muhieddine', 'Abd el-Krim', 'Mohamed Meziane'], []], [['Guru Ram Das', 'Guru Arjan', 'Hiravijaya ji', 'Shah Abdul Latif Bhittai', 'Bulleh Shah', 'Mirza Ghulam Ahmad'], ['Amir Khusrow Dehlavi', 'Basawan', 'fShahzadi Gulbadan Begum', 'Abu al-Faiz ibn Mubarak', 'Abd al-Samad', 'Ustad Mansur', 'Muhammad Iqbal'], ['Ali Kashmiri ibn Luqman', 'Abu al-Faiz ibn Mubarak', "Abd-ul-Qadir Bada'uni", 'Muhammad Salih Tahtawi', 'Sawai Jai Singh', 'Khwaja Nizam-ud-Din Ahmad'], ['Sher Shah Suri', 'Raja Todar Mal', 'Virji Vora', 'Mir Jumla', 'Yahya Saleh', 'Khan Alam', 'Mian Muhammad Mansha'], ['Fathullah Shirazi', 'Ustad Ahmad Lahauri', 'Muhammad Saleh Thattvi', 'Abdur Rahman Hye', 'Abdul Qadeer Khan', 'Munir Ahmad Khan', 'fYasmeen Lari'], ['fRazia Sultana', 'Ziauddin Barani', 'Raja Birbal', 'fMaham Anga', 'Babur', "Abu'l-Fazl ibn Muhammad", 'Muhammad Ali Jinnah', 'Choudhry Ali'], ['Zahir-ud-din Muhammad Babur', 'Mir Baqi', 'Bayram Khan', 'Abul Muzaffar Aurangzeb', 'Abudullah Khan Barha', 'Ali Vardi Khan', 'fBegum Hazrat Mahal'], ['Hamid Gul']], [[], [], [], [], [], [], [], []], [['Geert Grote', 'Desiderius Erasmus', 'Menno Simons', 'Jakob Hermanszoon', 'Baruch Spinoza', 'Abraham Kuyper', 'fAlida Bosshardt'], ['Hendrick de Keyser', 'Rembrandt van Rijn', 'Johannes Vermeer', 'Pieter Corneliszoon Hooft', 'fTitia Bergsma', 'Multatuli', 'Vincent van Gogh', 'Piet Mondrian', 'Maurits Cornelis Escher', 'fAnna Maria Geertruida Schmidt'], ['Willebrord Snel van Royen', 'Christiaan Huygens', 'Antonie van Leeuwenhoek', 'Govert Bidloo', 'fAnna Maria van Schurman', 'Johannes Diderik van der Waals', 'Hendrik Antoon Lorentz', 'Jan Hendrik Oort', 'Gerrit Pieter Kuiper', 'Edsger Wybe Dijkstra', 'Willem Johan Kolff'], ['Willem Barentsz', 'Cornelis de Houtman', 'fKenau Simonsdochter Hasselaer', 'Antony van Diemen', 'Abel Tasman', 'Pieter Stuyvesant', 'Jan van Riebeeck', 'Jan Coen', 'Clemens Brenninkmeijer', 'August Kessler', 'Jan Tinbergen', 'Freddy Heineken'], ['Simon Stevin', 'Cornelis Corneliszoon', 'Cornelis Drebbel', 'Jan Leeghwater', 'Menno van Coehoorn', 'Adolphe Sax', 'Cornelis Lely', 'Hendrik Petrus Berlage', 'Anton Philips', 'Gerrit Rietveld'], ['Desiderius Erasmus', 'Johan van Oldenbarnevelt', 'Johan de Witt', 'Adriaen van der Donck', 'Hugo Grotius', 'Cornelis de Graeff', 'Johan Thorbecke', 'fAletta Jacobs', 'Willem Drees'], ['Maurits van Nassau', 'Piet Pieterszoon Hein', 'Michiel de Ruyter', 'Frederik Hendrik', 'Cornelis Tromp', 'Joannes Benedictus van Heutsz', 'Henri Winkelman'], ["fEtta Palm d'Aelders", 'fJohanna Brandt', 'Christiaan Snouck Hurgronje', 'fMata Hari', 'Dirk Klop', u"Fran\xe7ois van 't Sant"]], [['Sheikh Bedreddin', 'Akshamsaddin', 'Otman Baba', 'Ebussuud Effendi', 'Sabbatai Zevi', 'Yaakov Culi', 'Bartholomeos', u'Fethullah G\xfclen', u'Mustafa \xc7agrici'], ['Yunus Emre', u'Hay\xe2l\xee', u'Fuz\xfbl\xee', u'G\xfcl Baba', u'Ahmet Ned\xeem Efendi', 'Abdullah Buhari', 'Hamparsum Limonciyan', 'Osman Hamdi Bey', 'fFatma Aliye Topuz', 'Mehmet Akif Ersoy', 'fHalide Edib Adivar', u'N\xe2zim Hikmet Ran'], ['Qazi Zada', 'Serafeddin Sabuncuoglu', u'Ali Kus\xe7u', u'Matrak\xe7i Nasuh', u'Takiy\xfcddin', u'Ibrahim M\xfcteferrika', 'Hasan Tahsini', 'Cahit Arf', 'Oktay Sinanoglu', u'Feza G\xfcrsey', 'Aziz Sancar'], ['Piri Reis', 'Seydi Ali Reis', 'Michael Kantakouzenos Seytanoglu', 'fEsther Handali', u'Evliya \xc7elebi', 'Ahmed Fethi', 'Calouste Gulbenkian', 'Hormuzd Rassam', 'Nejat Eczacibashi', 'Aydin Dogan'], ['Orban', 'Atik Sinan', 'Mimar Sinan', 'Davud Aga', u'Takiy\xfcddin', 'Ishak Efendi', 'Garabet Amira Balyan', 'Mimar Kemaleddin', u'Ekmel \xd6zbay'], ['Sheikh Edebali', 'Pargali Ibrahim', 'fHurrem Sultan', 'Sokollu Mehmet', u'K\xf6pr\xfcl\xfc Mehmed', u'fK\xf6sem Sultan', 'Mustafa Resid', u'Abd\xfclmecid', u'Mehmed Emin \xc2li', 'Ahmed Cevdet', u'Ismet In\xf6n\xfc', u'S\xfcleyman Demirel'], ['Orhan', 'Birinci Selim', 'Barbaros Hayreddin', 'Turgut Reis', 'Kara Mustafa', 'Omar Latas', 'Osman Nuri', u'Fevzi \xc7akmak', 'fKara Fatma', 'Ismail Enver'], ['Petar Ovcarevic', u'S\xfcleyman Asker\xee', 'fDespina Storch']], [['Mahabad', 'Zarathustra', 'Baga-data', 'Mani', 'Kartir', 'Mazdak', 'Adurbad-i Mahrspandan', 'Mar Aba', 'Al-Muqanna', 'Al-Ghazali', 'Mevlana', 'Mulla Sadra', 'Muhammad Baqir Majlisi', 'Muhammad Baqir Behbahani', u"Bah\xe1'u'll\xe1h", u'B\xe1b', "Muhammad Husayn Tabataba'i", 'Muhammad-Taqi Mesbah-Yazdi'], ['Pahlbod', 'fNagisa', 'Bamshad', 'Rudaki', 'Ferdowsi', 'fRabia Balkhi', 'Nizami Ganjavi', 'Farid al-Din Attar', 'Safi al-Din', 'Saadi', 'Rumi', 'Nur ad-Din Abd ar-Rahman Jami', 'Kamal ud-Din Behzad', 'Reza Abbasi', 'Mesrop', "Mihr 'Ali", 'fForough Farrokhzad', 'Hossein Amanat', 'fHayedeh'], ['Ktesias', 'Ardashir', 'Borzuya', 'Paulos-e irani', 'Al-Khwarizmi', 'Muhammad ibn Zakariya al-Razi', 'Ibn Miskawayh', 'Ibn Sina', 'Abd al-Rahman al-Sufi', 'Omar Khayyam', 'Kamal al-Din al-Farisi', 'Qutb al-Din al-Shirazi', 'Al-Birjandi', 'Baha al-din al-Amili', "Qazi Sa'id Qumi", 'Alavi Shirazi', 'Mahmoud Hessaby', 'Ali Javan', 'Cumrun Vafa'], ['Kroisos', 'Athurpat', 'Kavadh', 'Ahmad ibn Rustah', 'Istakhri', 'Manny Mashouf', 'Nasser David Khalili', 'Omid Kordestani', 'Amir Ansari', 'Pierre Omidyar'], ['Artakhshathra', 'Bahram', 'Sanimar', 'Naubakht', 'Al-Khujandi', 'Ibn al-Haitham', 'Nasir al-Din al-Tusi', "Sheikh Baha'i", 'Ustad Mirza Shirazi', 'Abdallah Khan', 'Firouz Naderi', 'Gholam Reza Aghazadeh', 'Caro Lucas', 'Siavash Alamouti', 'fAnousheh Ansari'], ['Chithrafarna', 'Tiribazus', 'Bagoi', 'Tiridat', 'Bozorgmehr', 'fPurandokht', 'Ibn Miskawayh', 'Nizam al-Mulk', 'Tahmasp', 'Mirza Salman Jaberi', 'Khalifeh Soltan', 'Ebrahim Khan Kalantar', 'Kuchik Khan', 'Amir Kabir', 'Reza Shah Pahlavi', 'Mohammad Mossadegh'], ['Haxamanis', 'Khashayarsha', 'fMania', 'Mithradata', 'Shapur', 'Rostam Farrokhzad', 'Shah Ismail', 'Mohammad Khan Qajar', 'Ahmad Amir-Ahmadi', 'Bahram Aryana', 'Muhammad-Husayn Ayrom', 'Ali-Reza Asgari', 'Mohammad Ali Jafari'], []], [['Wojciech', 'Stanislaw Szczepanowski', 'fJadwiga', 'Piotr z Goniadza', 'Piotr Skarga', 'Israel Baal Szem Tow', 'Eliasz ben Salomon Zalman', u'Jakub J\xf3zef Frank', 'Albert Chmielowski', u'fUrsula Led\xf3chowska', 'fFaustina Kowalska', 'Stefan Wyszynski', 'Karol Wojtyla'], ['Jan Kochanowski', 'Jan Andrzej Morsztyn', 'Ignacy Krasicki', 'Adam Mickiewicz', 'Fryderyk Chopin', 'Jan Matejko', 'Stanislaw Wyspianski', u'J\xf3zef Konrad Korzeniowski', 'fTamara de Lempicka', 'Witold Lutoslawski', 'Andrzej Wajda', 'fWislawa Szymborska'], ['Witelo', 'Mikolaj Kopernik', u'Michal Sedziw\xf3j', 'Jan Brozek', 'Stanislaw Staszic', 'Ludwik Lejzer Zamenhof', 'fMaria Sklodowska', 'Kazimierz Funk', 'Alfred Tarski', u'J\xf3zef Rotblat'], ['Konstanty Korniakt', 'Antoni Protazy Potocki', 'Henryk Lubienski', 'Leopold Kronenberg', 'Franciszek Ksawery Branicki', 'Maksymilian Faktorowicz', 'Jan Kulczyk'], ['Kazimierz Siemienowicz', 'Tylman Gamerski', 'Laurynas Gucevicius', 'Piotr Steinkeller', 'Ignacy Lukasiewicz', 'Stefan Drzewiecki', 'Kasimiersz Proszynski', 'Tadeusz Sendzimir', 'Stefan Tyszkiewicz'], ['Wladyslaw Lokietek', 'Andrzej Frycz Modrzewski', 'Jan Zamoyski', 'fElzbieta Sieniawska', 'Stanislaw Staszic', 'Scipione Piattoli', 'Adam Jerzy Czartoryski', 'Ignacy Daszynski', 'Jozef Pilsudski', 'Wladyslaw Sikorski'], ['Mieszko', 'Wladyslaw Jagiello', 'Jan Tarnowski', 'Stefan Batory', u'Stanislaw Z\xf3lkiewski', 'Stefan Czarniecki', 'Tadeusz Kosciuszko', 'Jan Henryk Dabrowski', 'Ignacy Pradzynski', u'J\xf3zef Bem', 'fEmilia Plater', 'Wladyslaw Sikorski', 'Kazimierz Sosnkowski', 'Stanislaw Maczek'], ['Jerzy Franciszek Kulczycki', 'fZofia Potocka', u'fKarolina Sobanska', 'Jan Kowalewski', 'Jerzy Sosnowski', 'Marian Rejewski', 'Kazimierz Leski', 'fKrystyna Skarbek', u'Ryszard Kuklinski']], [['Maui', "Kuamo'o Mo'okini", 'Te Kooti', 'fAngata', 'Rua Kenana Hepetipa'], ['Hawaiiloa', "Hotu Matu'a", 'Ui-te-Rangiora', 'Kupe', 'fKawena', 'Uiliami Leilua Vi', 'Rangi Hetet'], ["Nga'ara", 'Te Rangi Hiroa', 'Mau Piailug'], ['Tupaia', 'Mai', 'fPiipi Raumati', 'Tuilaepa Aiono Sailele Malielegaoi'], ['Olisihpa', "Tu'itatui", 'Uluakimata'], ['Talatama', 'fSalamasina', "fKa'ahumanu", 'Haalilio', 'fMeri Te Tai Mangakahia', 'Apirana Ngata'], ['fNafanua', 'Momo', 'Kamehameha', 'Te Rauparaha', 'Hone Heke', 'Seru Epenisa Cakobau'], []], [[u'Ant\xf3nio de Lisboa', u'fIsabel de Arag\xe3o', u'Jo\xe3o de Deus', u'Jo\xe3o de Brito', 'fRita Lopes de Almeida', 'Agostinho da Silva'], [u'Fern\xe3o Lopes', u'Nuno Gon\xe7alves', u'Lu\xeds de Cam\xf5es', u'Ant\xf3nio Ferreira', u'Jo\xe3o de Barros', 'Machado de Castro', 'Antero de Quental', u'Jos\xe9 Maria de E\xe7a de Queir\xf3s', 'Fernando Pessoa', u'fAm\xe1lia Rodrigues', u'Jos\xe9 Saramago'], ['Garcia de Orta', 'Pedro Nunes', 'Amato Lusitano', 'Jacob de Castro Sarmento', 'Froilano de Mello', 'Abel Salazar', u'Ant\xf3nio Egas Moniz'], ['Vasco da Gama', 'Francisco de Almeida', 'Henrique o Navegador', 'Bartolomeu Dias', u'Pedro \xc1lvares Cabral', u'Fern\xe3o Pires de Andrade', 'fGracia Mendes Nasi', u'Fern\xe3o Mendes Pinto', 'fAntonia Ferreira', u'Ant\xf3nio Champalimaud'], ['Mateus Fernandes', 'Diogo de Arruda', 'Diogo de Boitaca', u'Jo\xe3o Antunes', u'Bartolomeu de Gusm\xe3o', 'Carlos Amarante', u'Jos\xe9 Marques da Silva', u'\xc1lvaro Siza Vieira'], ['Henrique de Avis', u'Trist\xe3o da Cunha', u'Jo\xe3o o Restaurador', u'fLuisa de Guzm\xe1n', u'Alexandre de Gusm\xe3o', u'Sebasti\xe3o Jos\xe9 de Carvalho e Melo', 'Mouzinho da Silveira', u'Ant\xf3nio Lu\xeds de Seabra', 'Afonso Costa', u'Ant\xf3nio de Oliveria Salazar', u'Ant\xf3nio Guterres'], ['Geraldo sem Pavor', u'Nuno \xc1lvares Pereira', u'\xc1lvaro Vaz de Almada', 'Afonso de Albuquerque', 'Matias de Albuquerque', u'Ant\xf3nio Jos\xe9 Severim de Noronha', 'Otelo Saraiva de Carvalho'], ['Roderigo Lopez', u'Agostinho Louren\xe7o']], [['fClaudia Quinta', 'Petrus', 'Paulus Tarsensis', 'Augustinus Hipponensis', 'Aurelius Ambrosius', 'Eusebius Pamphili', 'fMarcella'], ['Publius Vergilius Maro', 'fIaia', 'Titus Livius', 'Publius Ovidius Naso', 'Plutarchus', 'Decimus Iunius Iuvenalis'], ['Marcus Terentius Varro', 'Titus Lucretius Carus', 'Sosigenes', 'Antonius Castor', 'Gaius Plinius Secundus', 'Strabo', 'Lucius Annaeus Seneca'], ['Marcus Crassus', 'Publius Sittius', 'Titus Pomponius Atticus', 'Lucius Caecilius Iucundus'], ['Sergius Orata', 'Marcus Vitruvius Pollio', 'Celer', 'Marcus Vipsanius Agrippa', 'Sextus Julius Frontinus', 'Apollodorus Damascenus'], ['Publius Valerius Publicola', 'Lucius Quinctius Cincinnatus', 'Quintus Hortensius', 'Marcus Porcius Cato', 'Marcus Tullius Cicero', 'Lucius Cornelius Sulla', 'fLivia Drusilla', 'fFulvia', 'Diocletianus'], ['Scipio Africanus', 'Gaius Marius', 'Gnaeus Pompeius Magnus', 'Vaspasianus', 'Traianus', 'fAgrippina', 'Hadrianus', 'fAlbia Dominica'], []], [['fOlga', 'Sergey Radonezhsky', 'Paisiy Yaroslavov', 'Feofan Prokopovich', 'Seraphim Sarovsky', 'fHelena Blavatsky', 'Grigori Rasputin', 'Nikolai Rerikh', 'Nikolai Berdyaev', 'Georges Florovsky', 'Alexei Losev'], ['Feofan Grek', 'Andrei Rublev', 'Antiokh Kantemir', 'Alexander Sumarokov', 'Fedot Shubin', 'Gavrila Derzhavin', 'Alexander Pushkin', 'Fyodor Dostoyevsky', 'Leo Tolstoy', 'Pyotr Ilyich Tchaikovsky', 'Modest Mussorgsky', 'Anton Chekov', 'Wassily Kandinsky', 'fAnna Pavlova', 'fNatalia Goncharova', 'Dmitri Shostakovich'], ['Mikhail Lomonosov', 'Andrei Ivanovich Leksel', 'Nikolai Lobachevsky', 'Mikhail Ostrogradsky', 'Dmitri Mendeleyev', 'fSofia Kovalevskaya', 'Konstantin Tsiolkovsky', 'Pavel Cherenkov', 'Yulii Borisovich Khariton'], ['Afanasiy Nikitin', 'Vitus Bering', 'Grigory Shelikhov', 'Pavel Lebedev-Lastochkin', 'Ivan Kruzenshtern', 'Nikolai Chukmaldin', 'Karl Faberzhe', 'Nikolai Kondratiev'], ['Lazar Serb', 'Postnik Yakovlev', 'Vasily Bazhenov', 'Ivan Starov', 'Vladimir Shukhov', 'Sergey Prokudin-Gorsky', 'Mikhail Kalashnikov', 'Sergei Korolev', 'Andrey Tupolev', u'L\xe9on Theremin', 'Vladimir Zvorykin', 'Igor Sikorsky', 'fValentina Tereshkova'], ['Vladimir Sviatoslavich', 'Yaroslav Mudry', 'fMarfa Posadnitsa', 'Ivan Vasilyevich', 'Vasily Tatishchev', 'Nikita Panin', 'fYekaterina Vorontsova-Dashkova', 'Mikhail Speransky', 'Mikhail Bakunin', 'Vladimir Lenin', 'Leon Trotsky', 'fAlexandra Kollontai', 'Andrei Sakharov', 'Mikhail Gorbachev'], ['Alexander Nevsky', 'Ivan Grozny', 'Mikhail Romanov', 'Alexander Suvorov', 'Grigory Potemkin', 'Pavel Nakhimov', 'Mikhail Skobelev', 'fVasilisa Kozhina', 'fNadezhda Durova', 'Mikhail Tukhachevsky', 'Georgy Zhukov', 'Vasily Chuikov'], ['Fyodor Romodanovsky', 'Alexander Benkendorf', 'Pyotr Rachkovsky', 'Ilie Catarau', 'Felix Dzerzhinsky', 'Ivan Serov', u'S\xe1ndor Goldberger', 'Lavrentiy Beria', 'Oleg Gordievsky']], [['Juan de Ortega', u'Domingo de Guzm\xe1n', 'Ignacio de Loyola', u'Juan de Sep\xfalveda', u'fTeresa de \xc1vila', u'Francisco Su\xe1rez', u'Bartolom\xe9 de Las Casas', u'Jun\xedpero Serra', 'fJoaquima de Vedruna', u'Josemar\xeda Escriv\xe1'], ['Gonzalo de Berceo', 'Juan Manuel', 'Miguel de Cervantes', 'Garcilaso de la Vega', 'Lope de Vega', u'Diego de Silva Vel\xe1zquez', u'fJuana In\xe9s de la Cruz', 'Francisco de Goya', u'fGertrudis G\xf3mez de Avellaneda', u'Gustavo Adolfo B\xe9cquer', u'fRosal\xeda de Castro', u'Isaac Alb\xe9niz', u'Benito P\xe9rez Gald\xf3s', 'Pablo Picasso', u'Joan Mir\xf3', u'Luis Bu\xf1uel', u'Salvador Dal\xed'], ['Gerardo de Cremona', 'Yehuda ben Moshe', 'Ramon Llull', 'Miguel Serveto', u'Carlos de Sig\xfcenza y G\xf3ngora', 'Antonio de Ulloa', u'Jos\xe9 Celestino Mutis', u'Santiago Ram\xf3n y Cajal', 'Severo Ochoa'], [u'Crist\xf3bal Col\xf3n', 'Fernando de Magallanes', u'Mart\xedn de Azpilcueta', 'Hernando de Soto', u'Jos\xe9 Penso de la Vega', 'Salvador Fidalgo', 'Juan March Ordinas', 'Amancio Ortega'], ['Juan Bautista de Toledo', 'Juan de Herrera', u'Agust\xedn de Betancourt', 'Alberto de Palacio y Elissague', 'Esteban Terradas i Illa', u'Antoni Gaud\xed', 'Leonardo Torres y Quevedo', 'Juan de la Cierva'], ['Alfonso el Sabio', u'Francisco Jim\xe9nez de Cisneros', 'Francisco de Vitoria', u'Jos\xe9 de G\xe1lvez', u'Jos\xe9 Moni\xf1o', 'Juan Prim', u'Llu\xeds Companys', u'fDolores Ib\xe1rruri'], ['El Cid', 'Alfonso el Bravo', 'Jaume el Conqueridor', 'Francisco Coronado', u'Hern\xe1n Cort\xe9s', 'Francisco Pizarro', u'\xc1lvaro de Baz\xe1n', u'fMar\xeda Pacheco', u'Fernando \xc1lvarez de Toledo', u'Ambrosio Sp\xednola Doria', u'Bernardo de G\xe1lvez', u'fAgustina de Arag\xf3n', 'Fernando Villaamil', 'Emilio Mola', 'Vicente Rojo Lluch', 'Mohamed ben Mizzian'], [u'Tom\xe1s de Torquemada', 'Bernardino de Mendoza', u'fManuela Desvalls Verg\xf3s', 'Ali Bey el Abbassi', u'Juan Pujol Garc\xeda', u'Ram\xf3n Mercader']], [[], [], [], [], [], [], [], []], [[], [], [], [], [], [], [], []], [['Lithai', 'Luang Pu Thuat', 'Upali Thera', 'Somdej Toh', 'Paramanuchitchinorot', 'Vajirananavarorasa', 'Luang Pu Sodh Candasaro', 'Phra Dharmakosacarya', 'fChandra Khonnokyoong', 'Ajahn Chah'], ['Si Prat', 'Thammathibet', 'Khrua In Khong', 'Phra Phutthaloetla Naphalai', 'Sunthorn Phu', 'Pin Malakul'], ['Ramkhamhaeng', 'Dan Beach Bradley', 'Damrong Rajanubhab', 'Mahidol Adulyadej', 'Phraya Anuman Rajadhon', 'fKrisana Kraisintu', 'Shaiwatna Kupratakul'], ['Uthong', 'Yamada Nagamasa', 'Low Kiok Chiang', 'Puey Ungphakorn', 'fLursakdi Sampatisiri'], ['Chettathirat', 'Tok Kayan', 'Ravi Ravendro', 'Ercole Manfredi', 'Purachatra Jayakara', 'Punya Thitimajshima'], ['Borommatrailokkanat', 'Narai', 'Kosa Pan', 'Chaophraya Wichayen', 'Prayurawongse', 'Sri Suriwongse', 'Chulalongkorn', 'Pridi Banomyong'], ['Ramesuan', 'Chaiyachetthathirat', 'Taksin', 'Phraya Phichai', 'Thongduang', 'Bodindecha', 'Phraya Phahonphonphayuhasena', 'Plaek Phibunsongkhram'], ['fThao Suranari']], [['Gendun Drup', 'Gendun Gyatso', 'Sonam Gyatso', 'Yonten Gyatso', 'Tsangyang Gyatso', 'Tenzin Gyatso'], ['fYeshe Tsogyal', 'Milarepa', u'Ch\xf6ying Dorje', 'Situ Panchen', u'Gend\xfcn Ch\xf6phel'], ['Thonmi Sambhota', 'Yuthog Yontan Gonpo', 'Tsongkhapa', 'Kunkhyen Pema Karpo', 'Khyenrab Norbu'], ['Sonam Rapten', 'Tsarong'], ['Rinchen Zangpo', 'Thang Tong Gyalpo', 'Desi Sangye Gyatso'], [u'fThrimal\xf6', u'Gar Tongsten Y\xfclsung', 'Paljor Dorje Shatra', 'Lhalu Tsewang Dorje'], ['Gar Trinring Tsendro', 'Chimshang Gyalsig Shuteng', 'Nganlam Takdra Lukhong', 'Nanam Shang Gyaltsen Lhanang', 'Ngawang Namgyal'], []], [['Tatpar Qaghan', 'Bulan', 'Abu Mansur al-Maturidi', 'Muhammad al-Bukhari', 'Al-Ghazali', 'Ahmad Yasawi', 'fFatima al-Samarqandi', 'Haji Bektash Veli'], ['Yusuf Balasaguni', 'Suzani Samarqandi', 'Nizami Ganjavi', 'Rumi', 'Izzeddin Hasanoglu', 'Imadaddin Nasimi', "Alisher Nava'i", 'Khasta Qasim', 'Magtymguly Pyragy', 'Qurmangazy Sagyrbaiuly', 'Abai Qunanbaiuly', 'fNodira', 'Hamza Hakimzade Niyazi', "G'afur G'ulom", 'Chinghiz Aitmatov'], ['Al-Farabi', 'Ismail ibn Hammad al-Jawhari', 'Ibn Sina', 'Omar Khayyam', 'Mahmud al-Kashgari', 'Nizami Aruzi', 'Qadi Zada al-Rumi', 'Jamshid al-Kashi', 'Ulugh Beg', 'Ali Qushji', 'Shoqan Walikhanov', 'Kasym Tynystanov'], ['Maniakh', 'Muqan Qaghan', 'Sheguy', 'Ahmad ibn Rustah', 'Bar Sauma', 'Yahballaha'], ['Omurtag', 'Abu-Mahmud Khojandi', 'Al-Biruni', 'fSaray Mulk', 'Kanysh Satbayev'], [u'Ist\xe4mi', 'Ishbara Qaghan', 'Ashina Simo', 'Nizam al-Mulk', 'fTerken Khatun', 'Aq Sunqur al-Hajib', 'Abd-al-Razzaq Samarqandi', 'Muhammad Shaybani', 'Abdullah Khan', 'Alikhan Bukeikhanov', 'Sopubek Begaliev'], ['Tong Yabghu Qaghan', 'Qapaghan Qaghan', u'K\xfcltigin', 'Tughril', 'Anushtegin Gharchai', 'Nur ad-Din Zengi', 'Uzun Hasan', 'Ablai Khan', 'Raiymbek Batyr', 'Sobir Rakhimov'], []], [['Ansgar', u'Haraldr Bl\xe1tonn', 'Erik den Helige', 'fBirgitta Birgersdotter', 'Johannes Campanius', 'Emanuel Swedenborg', 'Hans Nielsen Hauge', u'S\xf8ren Kierkegaard', u'Sveinbj\xf6rn Beinteinsson'], ['Bragi Boddason', u'fJ\xf3runn sk\xe1ldm\xe6r', u'Of\xe6igr \xd8pir', 'Snorri Sturluson', u'Nils H\xe5kansson', 'Georg Stiernhielm', 'Johan Nordahl Brun', 'Hans Christian Andersen', 'Olav Duun', 'Johan Ludvig Runeberg', 'fJohanna Maria Lind', 'Edvard Munch', 'Edvard Grieg', 'Jean Sibelius', 'fKaren Blixen', u'Halld\xf3r Laxness', 'fAstrid Lindgren', 'Ingmar Bergman'], ['Oddi Helgason', 'Tycho Brahe', 'fSophia Brahe', 'Mikael Agricola', u'Ole R\xf8mer', 'Anders Celsius', u'Carl von Linn\xe9', u'J\xf6ns Jacob Berzelius', 'Niels Henrik Abel', 'Johannes Rydberg', u'Anders \xc5ngstr\xf6m', 'Niels Ryberg Finsen', 'Niels Bohr'], [u'H\xe5kon Sigurdsson', u'Eir\xedkr Rau\xf0i', u'Leifr Eir\xedksson', u'fGudrid Thorbjarnard\xf3ttir', 'fSigbrit Willoms', 'Magnus Heinason', 'fChristina Piper', 'Niclas Sahlgren', 'Rutger Macklean', 'Sven Hedin', 'Roald Amundsen', 'Ole Kirk Christiansen', 'Ragnar Frisch', 'Ingvar Kamprad'], ['Hercules von Oberberg', 'Nicodemus Tessin', 'Christopher Polhem', 'Johan Ericsson', 'Per Georg Scheutz', 'Alfred Nobel', 'Lars Magnus Ericsson', 'Arne Jacobsen', u'J\xf8rn Utzon', u'Ivar Gi\xe6ver'], ['Gorm den Gamle', u'fGunnhildr Gormsd\xf3ttir', 'Birger Jarl', 'fMargrete Valdemarsdatter', 'Gustav Vasa', 'Axel Oxenstierna', 'fKristina', 'Peter Estenberg', 'Arvid Horn', 'Gustaf Mauritz Armfelt', 'Nikolaj Frederik Severin Grundtvig', 'Trygve Lie', u'Dag Hammarskj\xf6ld', 'Olof Palme'], [u'fHla\xf0ger\xf0r', u'Eir\xedkr Bl\xf3\xf0\xf8x', u'Sveinn Tj\xfaguskegg', u'Harald Har\xf0r\xe1\xf0i', 'Knutr', 'Gustav Vasa', 'Lennart Torstensson', 'Peter Tordenskjold', 'fIngela Gathenhielm', 'Carl Gustaf Emil Mannerheim', 'Carl Gustav Fleischer'], ['fBrita Tott', 'fAnna Maria Clodt', 'fCharlotte Eckerman', u'fEva L\xf6wen', u'J\xf8rgen J\xf8rgensen', 'Carlos Adlercreutz', 'Kai Henning Bothildsen Nielsen', u'fAstrid D\xf8vle', 'Stig Bergling']], [[], [], [], [], [], [], [], []], [[], [], [], [], [], [], [], []], [[], [], [], [], [], [], [], []], [[], [], [], [], [], [], [], []], [[], [], [], [], [], [], [], []], [[], [], [], [], [], [], [], []]]
21:36:34 INFO : WidgetUtil - WidgetTypes.WIDGET_PEDIA_JUMP_TO_RESOURCE = 187
21:36:34 INFO : WidgetUtil - WidgetTypes.WIDGET_ESPIONAGE_SELECT_PLAYER = 188
21:36:34 INFO : WidgetUtil - WidgetTypes.WIDGET_ESPIONAGE_SELECT_CITY = 189
21:36:34 INFO : WidgetUtil - WidgetTypes.WIDGET_ESPIONAGE_SELECT_MISSION = 190
21:36:34 INFO : WidgetUtil - WidgetTypes.WIDGET_GO_TO_CITY = 191
load_module CvPediaMain
load_module CvPediaScreen
load_module CvScreen
load_module CvPediaCivilization
load_module CvPediaLeader
load_module CvPediaCivic
load_module CvPediaReligion
load_module CvPediaCorporation
load_module CvPediaSpecialist
load_module CvPediaTech
load_module CvPediaUnit
load_module CvPediaUnitChart
load_module CvPediaPromotion
load_module CvPediaBuilding
load_module CvPediaProject
load_module CvPediaTerrain
load_module CvPediaFeature
load_module CvPediaResource
load_module CvPediaImprovement
load_module CvPediaRoute
load_module CvPediaCultureLevel
load_module CvPediaConcepts
load_module TraitUtil
load_module UnitUpgradesGraph
load_module CvPediaHistory
load_module CvWBPopups
load_module CvCameraControls
load_module CvAdvisorUtils
load_module CvRFCEventHandler
load_module Resources
load_module Plague
load_module Communications
load_module Companies
load_module AIParameters
load_module BugEventManager
load_module InputUtil
21:36:34 DEBUG: BugUtil - extending BugEventManager.preGameStart instead CvAppInterface
21:36:34 DEBUG: BugEventManager - adding event 'PreGameStart'
21:36:34 DEBUG: BugEventManager - adding event 'BeginActivePlayerTurn'
21:36:34 DEBUG: BugEventManager - adding event 'SwitchHotSeatPlayer'
21:36:34 DEBUG: BugEventManager - adding event 'LanguageChanged'
21:36:34 DEBUG: BugEventManager - adding event 'ResolutionChanged'
21:36:34 DEBUG: BugEventManager - adding event 'PythonReloaded'
21:36:34 DEBUG: BugEventManager - adding event 'unitUpgraded'
21:36:34 DEBUG: BugEventManager - adding event 'unitCaptured'
21:36:34 DEBUG: BugEventManager - adding event 'combatWithdrawal'
21:36:34 DEBUG: BugEventManager - adding event 'combatRetreat'
21:36:34 DEBUG: BugEventManager - adding event 'combatLogCollateral'
21:36:34 DEBUG: BugEventManager - adding event 'combatLogFlanking'
21:36:34 DEBUG: BugEventManager - adding event 'playerRevolution'
21:36:34 DEBUG: BugInit - game not fully initialized
PY:OnInit

The other files in the logs folder don't seem to have any other details. So I'm stumped.

I'm not sure if using DoC as a base is a good idea because it does a lot of stuff that is custom to the map and the civs in the game, and it seems hard to untangle all that code from the rest that you want to keep. But I don't have a better idea for what to use instead either.
It is looking like it'll be hard to untangle.. *sigh* It has some nice features I'd like to use (stability, immigration, passive spread of corporations, great statePlsmen, slavery, and the possibility of having additional states seek indepdendence), more importantly though I suppose is this thread and the active community to hopefully help out a newbie like me. Plus, I’ve always had a soft spot for Rhye’s and Fall (you’ll notice my name listed in the BtS credits as a beta tester for the mod).

But yea, you're probably right that the parts of DoC I wouldn't need are pretty central to it. More to cut than to keep. I was also considering Legends of Revolution since it is comparatively simpler and isn't overstuffed with content I'd need to remove. I dunno.
 
Last edited:
But yea, you're probably right that the parts of DoC I wouldn't need are pretty central to it. More to cut than to keep. I was also considering Legends of Revolution since it is comparatively simpler and isn't overstuffed with content I'd need to remove. I dunno.

What would be easier would be reimplementing those features in a mod from scratch, I think.
 
Hello everyone,
Working on the 1.15 version, I noticed that there is no FounMap for the Mughals in the CityManager file.
Is it simply possible to add it by writing iLangMughals : and then pasting a copied "-1" frame ?
Thanks
 
The short answer is yes. If you keep the existing languages for the Mughals in the priority list, everything will work. If you don't, you also need to make sure the new language covers city renaming.

Mughal city names are currently covered as part of the Persian language, with Arab and Indian names as fallback.
 
Back
Top Bottom