This commit is contained in:
Jeffreytsai1004 2025-04-17 04:52:48 +08:00
commit 9985b73dc1
3708 changed files with 2387532 additions and 0 deletions

5
CleanPycache.bat Normal file
View File

@ -0,0 +1,5 @@
@echo off
REM Delete all __pycache__ folders
for /d /r %%d in (__pycache__) do @if exist "%%d" rd /s /q "%%d"
echo Cleaned up!

20
Install.mel Normal file
View File

@ -0,0 +1,20 @@
global proc install()
{
string $scriptPath = `whatIs install`;
string $dirPath = `substring $scriptPath 25 (size($scriptPath))`;
$dirPath = `dirname $dirPath`;
string $pythonPath = $dirPath + "/Install.py";
$pythonPath = substituteAllString($pythonPath, "\\", "/");
string $pythonCmd = "import os, sys\n";
$pythonCmd += "INSTALL_PATH = r'" + $pythonPath + "'\n";
$pythonCmd += "if INSTALL_PATH not in sys.path: sys.path.append(os.path.dirname(INSTALL_PATH))\n";
$pythonCmd += "import sys\n";
$pythonCmd += "if sys.version_info[0] >= 3:\n";
$pythonCmd += " exec(open(INSTALL_PATH, encoding='utf-8').read())\n";
$pythonCmd += "else:\n";
$pythonCmd += " exec(open(INSTALL_PATH).read())\n";
python($pythonCmd);
}
install();

502
Install.py Normal file
View File

@ -0,0 +1,502 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#===================================== 1. Module Imports =====================================
# Standard library imports
import os
import sys
import webbrowser
# Maya imports
import maya.mel as mel
import maya.cmds as cmds
import maya.OpenMayaUI as omui
# Qt imports
try:
from PySide2 import QtWidgets, QtCore, QtGui
from shiboken2 import wrapInstance
except:
from PySide6 import QtWidgets, QtCore, QtGui
from shiboken6 import wrapInstance
#===================================== 2. Global Variables =====================================
# Path configurations
try:
ROOT_PATH = os.path.dirname(INSTALL_PATH)
except NameError:
ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
# Tool information
TOOL_NAME = "MetaBox"
TOOL_VERSION = "Beta v1.0.0"
TOOL_AUTHOR = "CGNICO"
TOOL_LANG = 'en_US'
SCRIPTS_PATH = os.path.join(ROOT_PATH, "Scripts")
ICONS_PATH = os.path.join(ROOT_PATH, "icons")
TOOL_ICON = os.path.join(ICONS_PATH, "mtblogo.png")
DEFAULT_ICON = "commandButton.png"
TOOL_HELP_URL = "http://10.72.61.59:3000/ArtGroup/{}/wiki".format(TOOL_NAME)
TOOL_WSCL_NAME = "ToolBoxWorkSpaceControl"
MOD_FILE_NAME = "{}.mod".format(TOOL_NAME)
MAIN_SCRIPT_NAME = "{}.py".format(TOOL_NAME)
# UI Style configurations
BUTTON_STYLE = """
QPushButton {
background-color: #D0D0D0;
color: #303030;
border-radius: 10px;
padding: 5px;
font-weight: bold;
min-width: 80px;
}
QPushButton:hover {
background-color: #E0E0E0;
}
QPushButton:pressed {
background-color: #C0C0C0;
}
"""
MESSAGE_BUTTON_STYLE = """
QPushButton {
background-color: #B0B0B0;
color: #303030;
border-radius: 10px;
padding: 5px;
font-weight: bold;
min-width: 80px;
}
QPushButton:hover {
background-color: #C0C0C0;
}
QPushButton:pressed {
background-color: #A0A0A0;
}
"""
#===================================== 3. Utility Functions =====================================
def maya_main_window():
"""Get Maya main window as QWidget"""
main_window_ptr = omui.MQtUtil.mainWindow()
return wrapInstance(int(main_window_ptr), QtWidgets.QWidget)
def ensure_directory(directory_path):
"""Ensure directory exists, create if not"""
if not os.path.exists(directory_path):
os.makedirs(directory_path)
print("Created directory: {}".format(directory_path))
return directory_path
def get_maya_modules_dir():
"""Get Maya modules directory path"""
maya_app_dir = cmds.internalVar(userAppDir=True)
return ensure_directory(os.path.join(maya_app_dir, "modules"))
#===================================== 4. UI Component Classes =====================================
class SetButton(QtWidgets.QPushButton):
"""Custom styled button for installation interface"""
def __init__(self, text):
super(SetButton, self).__init__(text)
self.setStyleSheet(BUTTON_STYLE)
#===================================== 5. Main Window Class =====================================
class InstallDialog(QtWidgets.QDialog):
def __init__(self, parent=maya_main_window()):
super(InstallDialog, self).__init__(parent)
self.setup_ui()
def setup_ui(self):
"""Initialize and setup UI components"""
self.setWindowTitle("{} Installation".format(TOOL_NAME))
self.setFixedSize(220, 120)
self.setup_window_icon()
self.create_widgets()
self.create_layouts()
self.create_connections()
def setup_window_icon(self):
"""Setup window icon if available"""
if os.path.exists(TOOL_ICON):
self.setWindowIcon(QtGui.QIcon(TOOL_ICON))
else:
print("Warning: Icon file not found: {}".format(TOOL_ICON))
#----------------- 5.1 UI Methods -----------------
def create_widgets(self):
self.new_shelf_toggle = QtWidgets.QCheckBox("{} Installation".format(TOOL_NAME))
self.install_button = SetButton("Install " + TOOL_NAME)
self.uninstall_button = SetButton("Uninstall " + TOOL_NAME)
def create_layouts(self):
main_layout = QtWidgets.QVBoxLayout(self)
main_layout.setContentsMargins(10, 2, 10, 5)
main_layout.setSpacing(5)
header_layout = QtWidgets.QHBoxLayout()
header_layout.setSpacing(5)
welcome_label = QtWidgets.QLabel("Welcome to " + TOOL_NAME + "!")
welcome_label.setStyleSheet("font-size: 11px; padding: 0px; margin: 0px;")
header_layout.addWidget(welcome_label)
header_layout.addStretch()
main_layout.addLayout(header_layout)
main_layout.addWidget(self.install_button)
main_layout.addWidget(self.uninstall_button)
self.install_button.setFixedHeight(30)
self.uninstall_button.setFixedHeight(30)
def create_connections(self):
self.install_button.clicked.connect(self.install)
self.uninstall_button.clicked.connect(self.uninstall)
def create_styled_message_box(self, title, text):
msg_box = QtWidgets.QMessageBox(self)
msg_box.setWindowTitle(title)
msg_box.setText(text)
msg_box.setStandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No)
button_style = """
QPushButton {
background-color: #B0B0B0;
color: #303030;
border-radius: 10px;
padding: 5px;
font-weight: bold;
min-width: 80px;
}
QPushButton:hover {
background-color: #C0C0C0;
}
QPushButton:pressed {
background-color: #A0A0A0;
}
"""
for button in msg_box.buttons():
button.setStyleSheet(button_style)
return msg_box
#----------------- 5.2 Event Handler Methods -----------------
def event(self, event):
if event.type() == QtCore.QEvent.EnterWhatsThisMode:
QtWidgets.QWhatsThis.leaveWhatsThisMode()
self.open_help_url()
return True
return QtWidgets.QDialog.event(self, event)
def closeEvent(self, event):
"""Handle window close event"""
try:
super(InstallDialog, self).closeEvent(event)
except Exception as e:
print("Error closing window: {}".format(e))
event.accept()
def helpEvent(self, event):
self.open_help_url()
event.accept()
#----------------- 5.3 Utility Methods -----------------
def open_help_url(self):
webbrowser.open(TOOL_HELP_URL)
QtWidgets.QApplication.restoreOverrideCursor()
def get_script_path(self):
maya_script = mel.eval('getenv("MAYA_SCRIPT_NAME")')
if maya_script and os.path.exists(maya_script):
return os.path.dirname(maya_script)
for sys_path in sys.path:
install_path = os.path.join(sys_path, "install.py")
if os.path.exists(install_path):
return os.path.dirname(install_path)
return os.getcwd()
#----------------- 5.4 Installation Methods -----------------
def install(self):
"""Handle install request with error handling"""
if not self._validate_paths():
return
msg_box = self.create_styled_message_box(
"Confirm Installation",
"Are you sure you want to install {}?".format(TOOL_NAME)
)
if msg_box.exec_() == QtWidgets.QMessageBox.Yes:
try:
self.install_tool()
self.close()
except Exception as e:
error_msg = "Error during installation: {}".format(e)
print(error_msg)
QtWidgets.QMessageBox.critical(self, "Error", error_msg)
def uninstall(self, *args):
"""Handle uninstall request"""
msg_box = self.create_styled_message_box(
"Confirm Uninstallation",
"Are you sure you want to uninstall {}?".format(TOOL_NAME)
)
if msg_box.exec_() == QtWidgets.QMessageBox.Yes:
try:
self.uninstall_tool()
self.close()
except Exception as e:
error_msg = "Error during uninstallation: {}".format(e)
print(error_msg)
QtWidgets.QMessageBox.critical(self, "Error", error_msg)
else:
print("Uninstallation cancelled")
def create_mod_file(self):
"""Create or update the .mod file for Maya"""
modules_dir = get_maya_modules_dir()
mod_content = """+ {TOOL_NAME} 1.0 {ROOT_PATH}
scripts: {SCRIPTS_PATH}
""".format(TOOL_NAME=TOOL_NAME, ROOT_PATH=ROOT_PATH, SCRIPTS_PATH=SCRIPTS_PATH)
mod_file_path = os.path.join(modules_dir, MOD_FILE_NAME)
self._write_mod_file(mod_file_path, mod_content)
def _write_mod_file(self, file_path, content):
"""Helper method to write .mod file"""
try:
with open(file_path, "w") as f:
f.write(content)
print("Successfully created/updated: {}".format(file_path))
except Exception as e:
error_msg = "Error writing .mod file: {}".format(e)
print(error_msg)
QtWidgets.QMessageBox.critical(self, "Error", error_msg)
def uninstall_mod_file(self):
modules_dir = get_maya_modules_dir()
mod_file_path = os.path.join(modules_dir, MOD_FILE_NAME)
if os.path.exists(mod_file_path):
try:
os.remove(mod_file_path)
print("{} file deleted".format(MOD_FILE_NAME))
except Exception as e:
print("Error deleting {}.mod file: {}".format(TOOL_NAME, e))
def clean_existing_buttons(self):
if cmds.shelfLayout(TOOL_NAME, exists=True):
buttons = cmds.shelfLayout(TOOL_NAME, query=True, childArray=True) or []
for btn in buttons:
if cmds.shelfButton(btn, query=True, exists=True):
label = cmds.shelfButton(btn, query=True, label=True)
if label == TOOL_NAME:
cmds.deleteUI(btn)
print("Deleted existing {} button: {}".format(TOOL_NAME, btn))
def install_tool(self):
"""Install the tool to Maya"""
if not os.path.exists(SCRIPTS_PATH):
print("Error: Scripts path does not exist: {}".format(SCRIPTS_PATH))
return
main_script = os.path.join(SCRIPTS_PATH, MAIN_SCRIPT_NAME)
if not os.path.exists(main_script):
print("Error: Main script file not found: {}".format(main_script))
return
# Add scripts path to Python path
if SCRIPTS_PATH not in sys.path:
sys.path.insert(0, SCRIPTS_PATH)
# Create shelf and button
self._create_shelf_button()
self.create_mod_file()
# 切换到新创建的工具架
try:
cmds.shelfTabLayout("ShelfLayout", edit=True, selectTab=TOOL_NAME)
print("Switched to {} shelf".format(TOOL_NAME))
except Exception as e:
print("Error switching to {} shelf: {}".format(TOOL_NAME, e))
self._show_install_success_message()
def _create_shelf_button(self):
"""Create shelf button for the tool"""
shelf_layout = mel.eval('$tmpVar=$gShelfTopLevel')
# Create shelf if not exists
if not cmds.shelfLayout(TOOL_NAME, exists=True):
cmds.shelfLayout(TOOL_NAME, parent=shelf_layout)
# Clean existing buttons
self.clean_existing_buttons()
# Create new button
icon_path = TOOL_ICON if os.path.exists(TOOL_ICON) else DEFAULT_ICON
command = self._get_shelf_button_command()
cmds.shelfButton(
parent=TOOL_NAME,
image1=icon_path,
label=TOOL_NAME,
command=command,
sourceType="python",
annotation="{} {}".format(TOOL_NAME, TOOL_VERSION),
noDefaultPopup=True,
style="iconOnly"
)
def _get_shelf_button_command(self):
"""Get the command string for shelf button"""
return """
import sys
import os
SCRIPTS_PATH = '{SCRIPTS_PATH}'
if SCRIPTS_PATH not in sys.path:
sys.path.insert(0, SCRIPTS_PATH)
os.chdir(SCRIPTS_PATH)
try:
import {TOOL_NAME}
{TOOL_NAME}.show()
except ImportError as e:
print("Error importing {TOOL_NAME}:", str(e))
print("Scripts path:", SCRIPTS_PATH)
print("sys.path:", sys.path)
print("Contents of Scripts folder:", os.listdir(SCRIPTS_PATH))
""".format(SCRIPTS_PATH=SCRIPTS_PATH,TOOL_NAME=TOOL_NAME)
def uninstall_tool(self):
"""Uninstall the tool from Maya"""
window_name = "{TOOL_NAME}Window".format(TOOL_NAME=TOOL_NAME)
dock_name = "{TOOL_NAME}WindowDock".format(TOOL_NAME=TOOL_NAME)
shelf_file = "shelf_{TOOL_NAME}.mel".format(TOOL_NAME=TOOL_NAME)
if cmds.window(window_name, exists=True):
try:
cmds.deleteUI(window_name)
except Exception as e:
print("Error closing {} window: {}".format(TOOL_NAME, e))
if cmds.dockControl(dock_name, exists=True):
try:
cmds.deleteUI(dock_name)
except Exception as e:
print("Error closing docked {} window: {}".format(TOOL_NAME, e))
self.uninstall_mod_file()
# 移除工具架之前先获取当前工具架
current_shelf = cmds.shelfTabLayout("ShelfLayout", query=True, selectTab=True)
# 删除工具架和按钮
if cmds.shelfLayout(TOOL_NAME, exists=True):
try:
cmds.deleteUI(TOOL_NAME, layout=True)
except Exception as e:
print("Error deleting {} shelf: {}".format(TOOL_NAME, e))
self._clean_all_shelf_buttons()
# 从Python路径中移除
if SCRIPTS_PATH in sys.path:
sys.path.remove(SCRIPTS_PATH)
# 删除工具架文件
shelf_path = os.path.join(
cmds.internalVar(userAppDir=True),
cmds.about(version=True),
"prefs",
"shelves",
"shelf_{}.mel".format(TOOL_NAME)
)
if os.path.exists(shelf_path):
try:
os.remove(shelf_path)
except Exception as e:
print("Error deleting shelf file: {}".format(e))
# 如果当前工具架是被删除的工具架,切换到其他工具架
if current_shelf == TOOL_NAME:
shelves = cmds.shelfTabLayout("ShelfLayout", query=True, childArray=True)
if shelves and len(shelves) > 0:
cmds.shelfTabLayout("ShelfLayout", edit=True, selectTab=shelves[0])
self._show_uninstall_success_message()
def _clean_all_shelf_buttons(self):
"""Clean up all shelf buttons related to the tool"""
all_shelves = cmds.shelfTabLayout("ShelfLayout", query=True, childArray=True) or []
for shelf in all_shelves:
shelf_buttons = cmds.shelfLayout(shelf, query=True, childArray=True) or []
for btn in shelf_buttons:
if cmds.shelfButton(btn, query=True, exists=True):
if cmds.shelfButton(btn, query=True, label=True) == TOOL_NAME:
cmds.deleteUI(btn)
def _show_uninstall_success_message(self):
"""Show uninstallation success message"""
msg_box = QtWidgets.QMessageBox()
msg_box.setWindowTitle("Uninstallation Successful")
msg_box.setText("{} has been successfully uninstalled!".format(TOOL_NAME))
msg_box.setStandardButtons(QtWidgets.QMessageBox.Ok)
for button in msg_box.buttons():
button.setStyleSheet(MESSAGE_BUTTON_STYLE)
msg_box.exec_()
def _show_install_success_message(self):
msg_box = QtWidgets.QMessageBox()
msg_box.setWindowTitle("Installation Successful")
msg_box.setText("{} has been successfully installed!".format(TOOL_NAME))
msg_box.setStandardButtons(QtWidgets.QMessageBox.Ok)
for button in msg_box.buttons():
button.setStyleSheet(MESSAGE_BUTTON_STYLE)
msg_box.exec_()
def _validate_paths(self):
"""Validate all required paths exist"""
paths = {
"Root": ROOT_PATH,
"Scripts": SCRIPTS_PATH,
"Icons": ICONS_PATH
}
for name, path in paths.items():
if not os.path.exists(path):
error_msg = "Error: {} path does not exist: {}".format(name, path)
print(error_msg)
QtWidgets.QMessageBox.critical(self, "Error", error_msg)
return False
return True
def _log(self, message, error=False):
"""Log messages with timestamp"""
from datetime import datetime
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
log_message = "[{timestamp}] {message}".format(timestamp=timestamp, message=message)
print(log_message)
if error:
QtWidgets.QMessageBox.critical(self, "Error", message)
def _load_mel_shelf(self):
"""Load mel shelf file with error handling"""
try:
mel.eval('loadNewShelf "shelf_{}.mel"'.format(TOOL_NAME))
except Exception as e:
self._log("Error loading shelf file: {}".format(e), error=True)
#===================================== 6. Main Function =====================================
def main():
"""Main entry point for the installer"""
app = QtWidgets.QApplication.instance() or QtWidgets.QApplication(sys.argv)
dialog = InstallDialog()
dialog.show()
return app.exec_()
if __name__ == "__main__":
main()

1
README.md Normal file
View File

@ -0,0 +1 @@
# MetaBox

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 743 B

View File

@ -0,0 +1,87 @@
/* XPM */
static char *biped_103_195_OffK0[] = {
/* columns rows colors chars-per-pixel */
"23 23 58 1",
" c #BC6C6C",
". c #BC6D6D",
"X c #BD6C6C",
"o c #BE6C6C",
"O c #B37C7C",
"+ c #B37D7D",
"@ c #B47C7C",
"# c #B47D7D",
"$ c #DF3232",
"% c #DD3636",
"& c #DD3737",
"* c #DE3535",
"= c #DE3636",
"- c #DC3838",
"; c #F70B0B",
": c #F70C0C",
"> c #FB0505",
", c #FA0707",
"< c #FE0000",
"1 c red",
"2 c #F90808",
"3 c #F21313",
"4 c #F31313",
"5 c #F21414",
"6 c #E62727",
"7 c #E52929",
"8 c #E62828",
"9 c #E62929",
"0 c #E03030",
"q c #E13030",
"w c #E13131",
"e c #E03232",
"r c #CD5151",
"t c #CD5252",
"y c #CE5151",
"u c #D34646",
"i c #D34747",
"p c #D44646",
"a c #C36161",
"s c #C36262",
"d c #C46161",
"f c #C56161",
"g c #9F9D9D",
"h c gray62",
"j c #9F9E9E",
"k c #A59393",
"l c #A79191",
"z c #A69393",
"x c #A79292",
"c c #A59595",
"v c #A49696",
"b c #A09B9B",
"n c #A19B9B",
"m c #A29B9B",
"M c #A09D9D",
"N c #A19C9C",
"B c #A09E9E",
"V c gray75",
/* pixels */
"VVVVVVVVVVVVVVVVVVVVVVV",
"VhhhhMl@di&e&is+zmhhhhV",
"Vhhhc+y73:2>2:37t+vhhhV",
"VhMzX-5>1111111>5- khhV",
"VhcX$;11111111111;$ vhV",
"Vm@-;1111111111111;-OmV",
"Vzy31111111111111113yzV",
"V@6>111111111111111>6+V",
"Vd5111111111111111113dV",
"Vp:11111111111111111:iV",
"V&2111111111111111112&V",
"Ve>11111111111111111>$V",
"V&>11111111111111111>&V",
"Vp:11111111111111111;iV",
"Vd3111111111111111113sV",
"V@6>111111111111111>6+V",
"Vzy31111111111111113yzV",
"Vm@&21111111111111;-+mV",
"VhcX$:11111111111;$XchV",
"VhMzX-5>1111111>3-XzhhV",
"VhhMc@y6422>2;46y@zghhV",
"VhhhMMz@dp&e&pd@zmhhhhV",
"VVVVVVVVVVVVVVVVVVVVVVV"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 555 B

View File

@ -0,0 +1,64 @@
/* XPM */
static char *biped_103_195_OffK1[] = {
/* columns rows colors chars-per-pixel */
"23 23 35 1",
" c #FF4444",
". c #FF4646",
"X c #FF4747",
"o c #FF4848",
"O c #FF4949",
"+ c #FF4A4A",
"@ c #FF4C4C",
"# c #FF5454",
"$ c #FF5555",
"% c #FF5858",
"& c #FF5959",
"* c #FF5A5A",
"= c #FF5B5B",
"- c #EA7F7F",
"; c #EB7F7F",
": c #EC7E7E",
"> c #EC7F7F",
", c #FF6060",
"< c #FF6161",
"1 c #FF6565",
"2 c #FF6B6B",
"3 c #FF6C6C",
"4 c #F77777",
"5 c #F87676",
"6 c #F87777",
"7 c #F97676",
"8 c #FF7070",
"9 c gray75",
"0 c #E38484",
"q c #E58383",
"w c #E68383",
"e c #E48484",
"r c #E98080",
"t c #E98181",
"y c #EA8080",
/* pixels */
"99999999999999999999999",
"9000eey52<=$=<34:eee009",
"900ey61$@XXXXX@$15ye009",
"90e-8=XXX X X XX@=8-e09",
"9ey8=X X=8ye9",
"9w5=XX X=5e9",
"9:1@ X@1y9",
"95$X X$69",
"93X X39",
"9<X X<9",
"9=X X=9",
"9=X X=9",
"9=XX X=9",
"9<X X<9",
"92XX XX@39",
"95$X X$69",
"9:1@X X@1-9",
"9w5=X X=5w9",
"9ey8=X X=8y09",
"9ee-8=XX X XX=8yee9",
"90eey51$@XXXXX@$15ye009",
"900eee:53<===<25:we0009",
"99999999999999999999999"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 552 B

View File

@ -0,0 +1,77 @@
/* XPM */
static char *biped_103_195_OnK0[] = {
/* columns rows colors chars-per-pixel */
"23 23 48 1",
" c #7EA544",
". c #7EA644",
"X c #7CB044",
"o c #7CB144",
"O c #79C144",
"+ c #79C244",
"@ c #7AC044",
"# c #7AC144",
"$ c #75D744",
"% c #76D644",
"& c #76D744",
"* c #75D844",
"= c #75DA44",
"- c #75DB44",
"; c #73E244",
": c #73E344",
"> c #74E044",
", c #74E144",
"< c #74E244",
"1 c #74E344",
"2 c #8F4444",
"3 c #8F4544",
"4 c #8E4A44",
"5 c #8F4A44",
"6 c #8E4C44",
"7 c #8E4D44",
"8 c #8D5044",
"9 c #8D5144",
"0 c #8C5844",
"q c #8C5944",
"w c #886C44",
"e c #886D44",
"r c #886E44",
"t c #877444",
"y c #877544",
"u c #867744",
"i c #877744",
"p c #867A44",
"a c #867B44",
"s c #857C44",
"d c #857D44",
"f c #867C44",
"g c #838A44",
"h c #838B44",
"j c #838C44",
"k c #819644",
"l c #819744",
"z c gray75",
/* pixels */
"zzzzzzzzzzzzzzzzzzzzzzz",
"z:::::<+.jdyahXo$:::::z",
"z:::$ole097479qr o-1::z",
"z:<$od0443323337qdo*::z",
"z:<oa9322222222237ao-1z",
"z<od932222222222227dO-z",
"z- 0322222222222223q %z",
"zow33222222222222237roz",
"z.0222222222222222220.z",
"zg9322222222222222229gz",
"za7322222222222222227az",
"zy4222222222222222227uz",
"zd7322222222222222224uz",
"zg9222222222222222227gz",
"zX0222222222222222220.z",
"zow52222222222222224wOz",
"z$ 03222222222222230l-z",
"z<od932222222222227do:z",
"z1$oa7322223222229uo-:z",
"z11$Xd05222322240ao$1:z",
"z::1$o e077470qr O-111z",
"z:::1<-o.gayah.+%::111z",
"zzzzzzzzzzzzzzzzzzzzzzz"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

View File

@ -0,0 +1,64 @@
/* XPM */
static char *biped_103_195_OnK1[] = {
/* columns rows colors chars-per-pixel */
"23 23 35 1",
" c #FF6666",
". c #FF6B66",
"X c #FF6D66",
"o c #FF6E66",
"O c #FF7166",
"+ c #FF7266",
"@ c #FF7966",
"# c #FF7A66",
"$ c #FF8D66",
"% c #FF8E66",
"& c #FF8F66",
"* c #FF9666",
"= c #FF9766",
"- c #FF9866",
"; c #FF9B66",
": c #FF9C66",
"> c #FF9D66",
", c #FF9E66",
"< c #FFAC66",
"1 c #FFAD66",
"2 c #FFB766",
"3 c #FFB866",
"4 c #FFC766",
"5 c #FFC866",
"6 c #FFD266",
"7 c #FFD366",
"8 c #FFE266",
"9 c #FFE366",
"0 c #FFF766",
"q c #FFF866",
"w c #FFF966",
"e c #FFFB66",
"r c #FFFC66",
"t c #FFFF66",
"y c gray75",
/* pixels */
"yyyyyyyyyyyyyyyyyyyyyyy",
"ytttttw94<,*-<590ttttty",
"ytttw93%#Ooooo#*29tttty",
"yttw7,#. .#,7wtty",
"ytw7-O o-7tty",
"yt9,O O,9ty",
"y02# #20y",
"y9%. .%9y",
"y4# #4y",
"y<O O<y",
"y-o o-y",
"y*o o*y",
"y,o o,y",
"y<O O<y",
"y4# #4y",
"y9%o .%9y",
"y02@ #20y",
"yt9,o O,9ty",
"ytw7*O O-7wty",
"yttw7,#. .#,7wtty",
"ytttw92%#OoooO@%29wttty",
"yttttt094<---<490ttttty",
"yyyyyyyyyyyyyyyyyyyyyyy"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 B

View File

@ -0,0 +1,26 @@
/* XPM */
static char *biped_103_73_OffK0[] = {
/* columns rows colors chars-per-pixel */
"34 18 2 1",
" c gray62",
". c gray75",
/* pixels */
"..................................",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
".................................."
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 B

View File

@ -0,0 +1,26 @@
/* XPM */
static char *biped_103_73_OffK1[] = {
/* columns rows colors chars-per-pixel */
"34 18 2 1",
" c gray75",
". c #E38484",
/* pixels */
" ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" ................................ ",
" "
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 B

View File

@ -0,0 +1,26 @@
/* XPM */
static char *biped_103_73_OnK0[] = {
/* columns rows colors chars-per-pixel */
"34 18 2 1",
" c #73E344",
". c gray75",
/* pixels */
"..................................",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
".................................."
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 B

View File

@ -0,0 +1,26 @@
/* XPM */
static char *biped_103_73_OnK1[] = {
/* columns rows colors chars-per-pixel */
"34 18 2 1",
" c #FFFF66",
". c gray75",
/* pixels */
"..................................",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
".................................."
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 B

View File

@ -0,0 +1,68 @@
/* XPM */
static char *biped_104_168_OffK0[] = {
/* columns rows colors chars-per-pixel */
"21 22 40 1",
" c #BF6868",
". c #BD6D6D",
"X c #B57A7A",
"o c #B97272",
"O c #BB7171",
"+ c #BA7373",
"@ c #EB1E1E",
"# c #ED1B1B",
"$ c #EF1818",
"% c #F70D0D",
"& c #F60E0E",
"* c #FE0101",
"= c red",
"- c #F31313",
"; c #F11515",
": c #E32C2C",
"> c #E62828",
", c #C95757",
"< c #C95858",
"1 c #D14C4C",
"2 c #C36363",
"3 c #C16464",
"4 c gray62",
"5 c #9F9E9E",
"6 c #AF8383",
"7 c #AE8484",
"8 c #A98D8D",
"9 c #A88F8F",
"0 c #AC8888",
"q c #AC8989",
"w c #A39797",
"e c #A69191",
"r c #A79191",
"t c #A59494",
"y c #A49797",
"u c #A19B9B",
"i c #A29999",
"p c #A39898",
"a c #B18080",
"s c gray75",
/* pixels */
"sssssssssssssssssssss",
"s4444444t i44444444s",
"s44444447;;e44444444s",
"s4444444a==944444444s",
"s4444444a==944444444s",
"s4444444a==944444444s",
"s4444444a==944444444s",
"s4444444a==944444444s",
"s4444445a==e44444444s",
"s9888888o==a9988999ts",
"s>>@###>$==#@@#@@@:3s",
"s%================-,s",
"s.......<==2......+qs",
"swtitpppX==qiiptpppis",
"s4445554a==955455554s",
"s4444444a==944444444s",
"s4444444a==944444444s",
"s4444444a==944444444s",
"s4444444a==944444444s",
"s44444447&&944444444s",
"s4444444911p44444444s",
"sssssssssssssssssssss"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 B

View File

@ -0,0 +1,64 @@
/* XPM */
static char *biped_104_168_OffK1[] = {
/* columns rows colors chars-per-pixel */
"21 22 36 1",
" c #FF4444",
". c #FF4545",
"X c #FF4A4A",
"o c #FF4C4C",
"O c #FF4D4D",
"+ c #FF4E4E",
"@ c #FF4F4F",
"# c #FF5151",
"$ c #FF5454",
"% c #FF5656",
"& c #EB7F7F",
"* c #EC7E7E",
"= c #ED7E7E",
"- c #EE7D7D",
"; c #FF6363",
": c #FF6767",
"> c #FF6868",
", c #FF6C6C",
"< c #FF6D6D",
"1 c #FF6E6E",
"2 c #F17B7B",
"3 c #F37979",
"4 c #F47979",
"5 c #F67878",
"6 c #FA7575",
"7 c #FF7070",
"8 c #FE7272",
"9 c #FF7272",
"0 c gray75",
"q c #E38484",
"w c #E68282",
"e c #E68383",
"r c #E48484",
"t c #E88181",
"y c #E98181",
"u c #EA8080",
/* pixels */
"000000000000000000000",
"0qqqqqqqu11wqqqqqqqq0",
"0qqqqqqq3OO&qqqqqqqq0",
"0qqqqqqq5 *qqqqqqqq0",
"0qqqqqqq5 *qqqqqqqq0",
"0qqqqqqq5 *qqqqqqqq0",
"0qqqqqqq5 *qqqqqqqq0",
"0qqqqqqq5 *qqqqqqqq0",
"0qqqqqqq5 *qwqqwqqq0",
"0-**--**8 5**-****u0",
"0%######O #######%10",
"0X O>0",
"08888818> 1888888830",
"0uuuuuuu6 3uuuuuuuw0",
"0qqqqqqq5 *qqqqqqqq0",
"0qqqqqqq5 *qqqqqqqq0",
"0qqqqqqq5 &qqqqqqqq0",
"0qqqqqqq5 &qqqqqqqq0",
"0qqqqqqq5 *qqqqqqqq0",
"0qqqqqqq5XX*qqqqqqqq0",
"0qqqqqqq*;;uqqqqqqqq0",
"000000000000000000000"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 B

View File

@ -0,0 +1,67 @@
/* XPM */
static char *biped_104_168_OnK0[] = {
/* columns rows colors chars-per-pixel */
"21 22 39 1",
" c #7DA944",
". c #7EA844",
"X c #7DAD44",
"o c #7BB744",
"O c #7CB244",
"+ c #7CB644",
"@ c #7BB844",
"# c #7ABF44",
"$ c #77CD44",
"% c #77CE44",
"& c #79C544",
"* c #78C844",
"= c #78C944",
"- c #76D244",
"; c #76D344",
": c #76D444",
"> c #76D644",
", c #75D944",
"< c #75DB44",
"1 c #75DC44",
"2 c #75DD44",
"3 c #74DE44",
"4 c #73E344",
"5 c #74E044",
"6 c #8F4444",
"7 c #8F4644",
"8 c #8D5244",
"9 c #8D5344",
"0 c #8C5744",
"q c #8B5D44",
"w c #8C5A44",
"e c #8A6044",
"r c #8A6344",
"t c #886D44",
"y c #877144",
"u c #829044",
"i c #809C44",
"p c #809D44",
"a c gray75",
/* pixels */
"aaaaaaaaaaaaaaaaaaaaa",
"a4444444,XX344444444a",
"a4444444=ww:44444444a",
"a4444444&66:44444444a",
"a4444444&66:44444444a",
"a4444444&66:44444444a",
"a4444444&66:44444444a",
"a4444444&66:44444444a",
"a4444545&66:44445445a",
"a;;;:;:;@66&;;;;;;:3a",
"atrrrrrrq66rrrrrrry.a",
"a877777766667666770ia",
"a+OOOOOOi67.+OOOOO+$a",
"a33,,33,#66$3,333335a",
"a4544444&67:44554444a",
"a4444444&67:44444444a",
"a4444444&66>55444444a",
"a4444444&66;44444444a",
"a4444444&66>44444444a",
"a4444444=88>44444444a",
"a4444444:uu344444444a",
"aaaaaaaaaaaaaaaaaaaaa"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B

View File

@ -0,0 +1,63 @@
/* XPM */
static char *biped_104_168_OnK1[] = {
/* columns rows colors chars-per-pixel */
"21 22 35 1",
" c #FF6666",
". c #FF6766",
"X c #FF7366",
"o c #FF7466",
"O c #FF7966",
"+ c #FF7B66",
"@ c #FF7E66",
"# c #FF8166",
"$ c #FF8466",
"% c #FF8E66",
"& c #FF9266",
"* c #FFB266",
"= c #FFBD66",
"- c #FFBE66",
"; c #FFC966",
": c #FFCA66",
"> c #FFCE66",
", c #FFD366",
"< c #FFD766",
"1 c #FFD866",
"2 c #FFD966",
"3 c #FFE066",
"4 c #FFE666",
"5 c #FFE966",
"6 c #FFEA66",
"7 c #FFEE66",
"8 c #FFEF66",
"9 c #FFF366",
"0 c #FFF566",
"q c #FFF766",
"w c #FFFA66",
"e c #FFFD66",
"r c #FFFE66",
"t c #FFFF66",
"y c gray75",
/* pixels */
"yyyyyyyyyyyyyyyyyyyyy",
"ytttttttw>>ttttttttty",
"yttttttt6++0tttttttty",
"yttttttt4 0tttttttty",
"yttttttt4 0tttttttty",
"yttttttt4 0tttttttty",
"yttttttt4 0tttttttty",
"yttttttt4 0tttttttty",
"yttttttt4 0tttttttty",
"y09099901 40999900ty",
"y%$$#$#$@ #$$#$$$&;y",
"yX.... .... +-y",
"y,,,,,,,- ;,,,,,,,7y",
"ytttttwt2 7ttwttttty",
"yttttttt6 0tttttttty",
"yttttttt6 0tttttttty",
"yttttttt4 0tttttttty",
"yttttttt4 0tttttttty",
"yttttttt4 0tttttttty",
"yttttttt6XX0tttttttty",
"yttttttt0**ttttttttty",
"yyyyyyyyyyyyyyyyyyyyy"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,162 @@
/* XPM */
static char *biped_104_96_OffK0[] = {
/* columns rows colors chars-per-pixel */
"30 30 126 2",
" c #7DADBD",
". c #7DADBE",
"X c #7CAEBE",
"o c #7CAEBF",
"O c #7DAEBE",
"+ c #7DAEBF",
"@ c #7EADBC",
"# c #7EADBD",
"$ c #7FADBC",
"% c #7EAEBC",
"& c #7EAEBD",
"* c #7EAEBE",
"= c #58BDDF",
"- c #58BEDF",
"; c #59BEDF",
": c #5BBCDC",
"> c #5BBCDD",
", c #5BBDDD",
"< c #5ABDDE",
"1 c #5FBBD9",
"2 c #5EBBDA",
"3 c #5DBCDB",
"4 c #5EBCDA",
"5 c #5EBCDB",
"6 c #5CBCDC",
"7 c #56BFE1",
"8 c #57BEE0",
"9 c #57BEE1",
"0 c #58BEE0",
"q c #6AB6CF",
"w c #6BB6CE",
"e c #6BB6CF",
"r c #6EB4CB",
"t c #6FB4CB",
"y c #6CB5CD",
"u c #6DB4CC",
"i c #6DB5CC",
"p c #6DB5CD",
"a c #6CB5CE",
"s c #6CB6CD",
"d c #6EB5CC",
"f c #61BAD7",
"g c #63B9D5",
"h c #62B9D6",
"j c #63B9D6",
"k c #62BAD6",
"l c #63BAD6",
"z c #64B9D4",
"x c #64B9D5",
"c c #65B8D4",
"v c #60BBD8",
"b c #60BBD9",
"n c #61BAD8",
"m c #79AFC0",
"M c #7AAFC0",
"N c #7BAEC0",
"B c #73B3C7",
"V c #75B1C4",
"C c #70B3C9",
"Z c #78B0C2",
"A c #79B0C2",
"S c #47C5EF",
"D c #4FC1E7",
"F c #4FC2E7",
"G c #49C4ED",
"H c #48C4EE",
"J c #50C1E7",
"K c #51C1E6",
"L c #50C2E7",
"P c gray62",
"I c #9E9E9F",
"U c #9E9F9F",
"Y c #9D9FA0",
"T c #9E9FA0",
"R c #8DA7AF",
"E c #8FA5AD",
"W c #8FA6AD",
"Q c #8EA6AE",
"! c #8FA6AE",
"~ c #84ABB7",
"^ c #85AAB6",
"/ c #87A9B5",
"( c #86A9B6",
") c #86AAB5",
"_ c #87AAB5",
"` c #86AAB6",
"' c #86ABB6",
"] c #83ABB8",
"[ c #80ACBB",
"{ c #81ACBB",
"} c #80ADBC",
"| c #89A9B3",
" . c #8BA8B1",
".. c #8AA8B2",
"X. c #8AA9B2",
"o. c #88A9B4",
"O. c #96A3A7",
"+. c #97A2A6",
"@. c #97A3A6",
"#. c #93A4A9",
"$. c #92A4AA",
"%. c #92A5AA",
"&. c #92A5AB",
"*. c #93A5AA",
"=. c #90A5AC",
"-. c #90A6AD",
";. c #94A3A8",
":. c #95A3A8",
">. c #94A4A9",
",. c #95A4A8",
"<. c #9AA1A3",
"1. c #9BA0A2",
"2. c #9BA1A2",
"3. c #9BA1A3",
"4. c #98A1A4",
"5. c #98A2A5",
"6. c #99A2A4",
"7. c #99A2A5",
"8. c #9AA1A4",
"9. c #9AA2A4",
"0. c #9CA0A1",
"q. c #9DA0A0",
"w. c #9DA0A1",
"e. c #9CA1A2",
"r. c #9EA0A0",
"t. c gray75",
/* pixels */
"t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.",
"t.P P P P P P P P 8.X.C 5 8 H H 8 5 u R 3.P P P P P P P P t.",
"t.P P P P P U @.M < K f p B O O B p < F < A @.P P P P P P t.",
"t.P P P P U ) j = p ) ! >.@.8.3.@.;.R ] p 8 j ) P P P P P t.",
"t.P P P r.O 1 j O %.r.U U U U U U U U I ;.O j 1 O r.U P P t.",
"t.P P r.O 1 q _ r.U U P P P P P P P P U U 3.) q 1 O U P P t.",
"t.P P ) 1 p R r.r.P P P P P P P P P P P P U 3.R q 1 ) P P t.",
"t.P @.j z X.r.P P P P P P P P P P P P P P P U U X.z j 8.P t.",
"t.P O < O 3.P P P P P P P P P P P P P P P P P P 8.O 8 M P t.",
"t.8.5 q %.r.P P P P P P P P P P P P P P P P P P P ;.q = @.t.",
"t.) K ] r.P P P P P P P P P P P P P P P P P P P U U ^ 7 o.t.",
"t.p 5 R U P P P P P P P P P P P P P P P P P P P U U R 1 u t.",
"t.< r @.P P P P P P P P P P P P P P P P P P P P P P ;.q = t.",
"t.F Z @.P P P P P P P P P P P P P P P P P P P P P P @.M 7 t.",
"t.G X 3.P P P P P P P P P P P P P P P P P P P P P P 3.O G t.",
"t.G X 3.P P P P P P P P P P P P P P P P P P P P P P 3.O G t.",
"t.F o @.P P P P P P P P P P P P P P P P P P P P P P @.Z F t.",
"t.: u @.P P P P P P P P P P P P P P P P P P P P P P ;.p > t.",
"t.q j E P P P P P P P P P P P P P P P P P P P P P P ! f u t.",
"t.) F ) I P P P P P P P P P P P P P P P P P P P U r.) K ) t.",
"t.8.< p E P P P P P P P P P P P P P P P P P P P P %.p < 8.t.",
"t.U X - @ 3.P P P P P P P P P P P P P P P P P P r.$ - O U t.",
"t.r.@.j c R P P P P P P P P P P P P P P P P P U X.c j @.U t.",
"t.P P ) 1 q R r.P P P P P P P P P P P P P U r.R q 5 ) U P t.",
"t.P P r.O 5 q X.r.P P P P P P P P P P P P r._ q 1 O r.P P t.",
"t.P P U 3.O 5 c $ %.P P P P P P P P P 3.%.@ z 1 M r.U P P t.",
"t.P P P U r.' j < r ) ! >.@.3.3.@.;.R ) q 8 j ) r.U P P P t.",
"t.P P P P U U >.Z - K j r Z @ @ V u 1 F < A >.U U P P P P t.",
"t.P P P P P P U U 8.X.p < 8 S S 8 > u X.8.P U P P P P P P t.",
"t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t."
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,134 @@
/* XPM */
static char *biped_104_96_OffK1[] = {
/* columns rows colors chars-per-pixel */
"30 30 98 2",
" c #9B919E",
". c #9B919F",
"X c #9C909E",
"o c #9C919E",
"O c #9D909E",
"+ c #9D919E",
"@ c #9E909D",
"# c #9F909D",
"$ c #9E909E",
"% c #8E93A3",
"& c #8C93A4",
"* c #8D93A4",
"= c #9492A1",
"- c #9592A1",
"; c #9692A1",
": c #A38F9C",
"> c #A48F9B",
", c #A58F9B",
"< c #A68F9B",
"1 c #A78F9A",
"2 c #AF8D97",
"3 c #A98E99",
"4 c #A88F9A",
"5 c #A98E9A",
"6 c #A98F9A",
"7 c #AA8E99",
"8 c #AF8D98",
"9 c #A0909D",
"0 c #A1909C",
"q c #A1909D",
"w c #A2909C",
"e c #A3909C",
"r c #B08D97",
"t c #B18D96",
"y c #B18D97",
"u c #B28D96",
"i c #B38C96",
"p c #B38D96",
"a c #B48C95",
"s c #B58C95",
"d c #B48D96",
"f c #BA8B93",
"g c #B88C94",
"h c #BD8B92",
"j c #BE8A91",
"k c #BF8A91",
"l c gray75",
"z c #C5898F",
"x c #C8898E",
"c c #C9898E",
"v c #CA888D",
"b c #CA898D",
"n c #CB888D",
"m c #CB898D",
"M c #CF888B",
"N c #CC888D",
"B c #CD888C",
"V c #CD888D",
"C c #CE888C",
"Z c #CF888C",
"A c #C08A91",
"S c #C18A91",
"D c #C28A90",
"F c #C28A91",
"G c #C38A90",
"H c #C48990",
"J c #C48A90",
"K c #C58A90",
"L c #D2878B",
"P c #D3878A",
"I c #D48789",
"U c #D58789",
"Y c #D4878A",
"T c #D5878A",
"R c #D68789",
"E c #D78688",
"W c #D78689",
"Q c #D78789",
"! c #D0888C",
"~ c #DB8687",
"^ c #DC8587",
"/ c #DD8586",
"( c #DD8587",
") c #DC8687",
"_ c #DE8586",
"` c #DF8586",
"' c #D88688",
"] c #D88689",
"[ c #D98688",
"{ c #DA8688",
"} c #E08585",
"| c #E18485",
" . c #E18585",
".. c #E08586",
"X. c #E28484",
"o. c #E28485",
"O. c #E38484",
"+. c #E38585",
/* pixels */
"l l l l l l l l l l l l l l l l l l l l l l l l l l l l l l ",
"l O.O.O.O.O.O.O.O.O.N a e + % % + w a Z ^ O.O.O.O.O.O.O.O.l ",
"l O.O.O.O.O.+.^ h + ; < u g F F g u w = w h ^ O.O.O.O.O.O.l ",
"l O.O.O.O.O.N > + u m T [ ~ ^ O.~ [ M m 8 + < N O.O.O.O.O.l ",
"l O.O.O.O.F w 6 K T O.O.O.O.O.O.O.O.O.O.T F 6 e x ^ O.O.O.l ",
"l O.O.O.F > 2 N O.O.O.O.O.O.O.O.O.O.O.O.O.O.N 8 e x O.O.O.l ",
"l O.O.m > u L O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.M 2 < m X.O.l ",
"l O.^ 4 4 M O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.N 4 4 ^ O.l ",
"l +.F + K ^ O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.^ z + F O.l ",
"l ^ w 8 R O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.T 2 + ^ l ",
"l N ; m O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.X.m ; M l ",
"l u e M O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.X.L < u l ",
"l w u [ O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.~ u + l ",
"l ; h ^ O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.^ h = l ",
"l % F ^ O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.X.X.^ z % l ",
"l % z ^ O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.X.^ z % l ",
"l ; h ^ O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.^ h ; l ",
"l + u E O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.~ u + l ",
"l u < I O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.X.X.L : u l ",
"l m . x X.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.X.X.m ; C l ",
"l ^ w u E X.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.+.[ u : ^ l ",
"l O.F + x ^ O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.^ x + F O.l ",
"l O.^ > 2 M X.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.C 4 4 ^ O.l ",
"l O.O.m e u M O.O.O.O.O.O.O.O.O.O.O.O.O.O.X.X.L u < N O.O.l ",
"l O.O.O.z > u N O.O.O.O.+.O.O.O.O.O.O.O.O.X.C 8 : F X.X.O.l ",
"l O.O.O.^ z w 6 x R O.O.+.+.O.O.O.O.X.X.T K 4 : F X.O.X.O.l ",
"l O.O.O.O.+.N > + a m M [ ~ O.^ ~ [ T m 8 + < m +.O.O.O.O.l ",
"l O.O.O.O.O.O.[ h + ; > a f F F f u w = + h [ O.O.O.O.O.O.l ",
"l O.O.O.O.O.O.O.O.O.N a w . & & . : u N O.O.O.O.O.O.O.O.O.l ",
"l l l l l l l l l l l l l l l l l l l l l l l l l l l l l l "
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,86 @@
/* XPM */
static char *biped_104_96_OnK0[] = {
/* columns rows colors chars-per-pixel */
"30 30 50 1",
" c #59FF44",
". c #5AFF44",
"X c #5CFF44",
"o c #5EFF44",
"O c #5FFF44",
"+ c #6EEB44",
"@ c #6FEA44",
"# c #6FEB44",
"$ c #6DED44",
"% c #6CEE44",
"& c #6CEF44",
"* c #6DEE44",
"= c #6EEC44",
"- c #66F744",
"; c #67F644",
": c #60FF44",
"> c #61FE44",
", c #61FF44",
"< c #62FD44",
"1 c #62FE44",
"2 c #62FF44",
"3 c #65F844",
"4 c #65F944",
"5 c #64FA44",
"6 c #64FB44",
"7 c #65FA44",
"8 c #66F844",
"9 c #68F344",
"0 c #69F244",
"q c #69F344",
"w c #6AF144",
"e c #6BF044",
"r c #6AF244",
"t c #6AF344",
"y c #68F544",
"u c #69F444",
"i c #6CF044",
"p c #73E344",
"a c #71E644",
"s c #71E744",
"d c #72E544",
"f c #73E444",
"g c #73E544",
"h c #72E644",
"j c #72E744",
"k c #70E844",
"l c #70E944",
"z c #71E844",
"x c #70EA44",
"c c gray75",
/* pixels */
"cccccccccccccccccccccccccccccc",
"cpppppppff$5,O..O,;$ffpppppppc",
"cpppffffqO.,55&q;,,.O;ffpppppc",
"cpppff&,O5i#zzzfzz$&5OO%fppppc",
"cpfff&,,&zffffffffff#&,,&fpppc",
"cpffqO6$zffppppppppfff$,,;fppc",
"cpp&,5$fffppppppppppfff$5,%fpc",
"cff,,$ffpfppppppppppppff$,,fpc",
"cf&Oqffppppppppppppppppff&O&pc",
"czO5#fppppppppppppppppppf#,Ofc",
"c%.&ffppppppppppppppppppff&.$c",
"c5O#ffppppppppppppppppppff#,5c",
"cO5zppppppppppppppppppppfp#5Oc",
"c.;fppppppppppppppppppppfpf;.c",
"c.qfppppppppppppppppppppppf;.c",
"c.qfppppppppppppppppppppppf9.c",
"c.9appppppppppppppppppppppf;Oc",
"cO;#pppppppppppppppppppppp#5Oc",
"c5,#ppppppppppppppppppppff#,5c",
"ciO%ffppppppppppppppppppff%.%c",
"c#O5#fffppppppppppppppppf$5Ofc",
"cf&O&fpfppppppppppppppppf&O&fc",
"cfz,5%fpppppppppppppppff$,,zfc",
"cpf%O5%fppppppppppppppf$5,&ffc",
"cppfq,,#fpppfppppppppf%5Oqffpc",
"cpffz&,,&#ppffppppff#&,O&zffpc",
"cpppff%,,5%#affafz#&5O,$fffppc",
"cppppfp#qO.O5;;&55O.Oq#ffppppc",
"cppppppfff$5OO..OO5$fffpfppppc",
"cccccccccccccccccccccccccccccc"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 B

View File

@ -0,0 +1,38 @@
/* XPM */
static char *biped_104_96_OnK1[] = {
/* columns rows colors chars-per-pixel */
"30 30 2 1",
" c #FFFF66",
". c gray75",
/* pixels */
"..............................",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
". .",
".............................."
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 919 B

View File

@ -0,0 +1,209 @@
/* XPM */
static char *biped_105_46_OffK0[] = {
/* columns rows colors chars-per-pixel */
"34 20 183 2",
" c gray54",
". c #8B8B8B",
"X c #8C8C8B",
"o c gray55",
"O c #8C8C8D",
"+ c #8C8D8C",
"@ c #8D8C8D",
"# c #8D8D8D",
"$ c #8F8F8E",
"% c gray56",
"& c #908F8F",
"* c #909090",
"= c #909191",
"- c #919190",
"; c gray57",
": c #919192",
"> c #929191",
", c #929292",
"< c #939292",
"1 c #939293",
"2 c #939393",
"3 c gray58",
"4 c #959595",
"5 c gray59",
"6 c #969797",
"7 c #979897",
"8 c #989898",
"9 c #999998",
"0 c gray60",
"q c #9A9A9A",
"w c #9B9B9B",
"e c #9B9C9B",
"r c #9D9D9D",
"t c gray62",
"y c #A1A1A2",
"u c #A1A2A1",
"i c #A2A2A2",
"p c #A3A3A2",
"a c #A3A3A4",
"s c #A4A3A4",
"d c #A4A4A4",
"f c #A9A9A8",
"g c #A9A9A9",
"h c #ABABAA",
"j c #ABACAB",
"k c gray68",
"l c #AEAEAE",
"z c #AFAFAF",
"x c #B0B0B1",
"c c #B2B1B1",
"v c gray70",
"b c #B5B5B4",
"n c #B5B6B5",
"m c #B7B8B7",
"M c #B9B9B9",
"N c #BBBBBB",
"B c #BCBDBD",
"V c gray",
"C c #BFBFBE",
"Z c gray75",
"A c #C0C1C0",
"S c #C1C1C0",
"D c #C3C3C2",
"F c #C5C6C6",
"G c #C6C6C6",
"H c #C7C6C6",
"J c #CBCBCB",
"K c #CBCCCB",
"L c #CCCDCC",
"P c #CCCDCD",
"I c #CECECF",
"U c #D1D1D2",
"Y c #D1D2D1",
"T c #D5D5D5",
"R c #D6D6D7",
"E c #D6D7D7",
"W c #D7D7D7",
"Q c #D8D7D7",
"! c #D8D9D8",
"~ c gray85",
"^ c #DDDEDE",
"/ c gray87",
"( c #DEDFDF",
") c #DFDFDF",
"_ c #DFE0E0",
"` c #DFE1E1",
"' c #E1E2E1",
"] c #E3E2E2",
"[ c gray89",
"{ c #E3E4E3",
"} c #E5E4E5",
"| c #E5E5E4",
" . c #E7E6E6",
".. c #E7E7E7",
"X. c #E7E8E7",
"o. c #E8E7E8",
"O. c gray91",
"+. c #E9E8E8",
"@. c #E9E9E9",
"#. c #EAE9EA",
"$. c #EBEAEB",
"%. c #EBECEB",
"&. c #ECEBEB",
"*. c gray93",
"=. c #EDEEEE",
"-. c #EEECEC",
";. c #EEEDEE",
":. c #EEEFEF",
">. c gray94",
",. c #F0F0F1",
"<. c #F1F0F1",
"1. c #F1F2F1",
"2. c #F3F3F4",
"3. c #F3F4F4",
"4. c #F4F4F3",
"5. c #F4F4F4",
"6. c #F4F4F5",
"7. c #F6F6F5",
"8. c #F6F6F6",
"9. c #F7F7F6",
"0. c #F8F7F8",
"q. c #F8F9F9",
"w. c #F9F8F8",
"e. c #F9F9F8",
"r. c #F8FAF8",
"t. c #F9FAF9",
"y. c #F9FAFA",
"u. c #FAF8F9",
"i. c #FAF9F8",
"p. c #FAF9F9",
"a. c #FAF9FA",
"s. c #FBFCFC",
"d. c #FCFCFB",
"f. c gray99",
"g. c #FCFCFD",
"h. c #FCFDFD",
"j. c #FDFCFD",
"k. c #FDFDFC",
"l. c #FDFDFD",
"z. c #FCFCFF",
"x. c #FCFDFE",
"c. c #FCFDFF",
"v. c #FDFCFE",
"b. c #FDFCFF",
"n. c #FDFDFE",
"m. c #FDFDFF",
"M. c #FCFFFD",
"N. c #FDFEFC",
"B. c #FDFEFD",
"V. c #FDFFFC",
"C. c #FDFFFD",
"Z. c #FCFEFE",
"A. c #FCFEFF",
"S. c #FCFFFE",
"D. c #FDFEFE",
"F. c #FDFEFF",
"G. c #FDFFFE",
"H. c #FDFFFF",
"J. c #FEFCFD",
"K. c #FEFDFC",
"L. c #FEFDFD",
"P. c #FFFCFD",
"I. c #FFFDFD",
"U. c #FEFCFE",
"Y. c #FEFCFF",
"T. c #FEFDFE",
"R. c #FEFDFF",
"E. c #FFFDFE",
"W. c #FFFDFF",
"Q. c #FEFEFC",
"!. c #FEFEFD",
"~. c #FEFFFD",
"^. c #FFFEFC",
"/. c #FFFEFD",
"(. c #FFFFFD",
"). c #FEFEFE",
"_. c #FEFEFF",
"`. c #FEFFFE",
"'. c #FEFFFF",
"]. c #FFFEFE",
"[. c #FFFEFF",
"{. c #FFFFFE",
"}. c gray100",
/* pixels */
"Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z C C Z Z Z Z Z Z Z Z Z Z Z Z ",
"Z 8 8 8 5 5 : # O O . . . . O # O O # # @ @ @ * 1 5 8 t d g z n Z Z ",
"Z i i i d g k v M Z D K U T T T W W E E W W W / ] ] [ ..O.o.&.&.,.Z ",
"Z / / ( ` ] | O.$.=.2.2.2.y.y.y.i.i.y.y.y.y.y.P.).).).).).).).).).Z ",
"Z s.s.).).).K.).P.).s.).).).).s.K.K.s.).).).P.).).).).).).).K.).P.Z ",
"Z ).).).).).K.).).).).).).).).).).K.).).).).).).).).).).).).K.).).Z ",
"Z ).).).).).).K.).).).).K.).).).K.).).).K.).).K.).).).).).).).).).Z ",
"Z ).).).).).K.).s.).).).).).).).).).).).).).).).).).).).).K.).).).C ",
"Z ).).).).).).).).).s.).).P.).).).).).).).).).K.).P.d.).).).).).).C ",
"Z ).P.).).).s.).).).).).P.P.P.s.).).).).K.).).).P.).).).).).s.).).Z ",
"C ).).).).).).).).).).).).z.).).).).).).).).).K.).).).).s.).s.).).Z ",
"C ).d.).).).).).).s.s.).).).).).).).).).).).).).).K.).K.).K.K.K.).Z ",
"C ).P.P.).).).).).).K.s.).K.).).P.).).).).).).).).).K.).).).).s.).Z ",
"Z ).).).).).).).).s.).).d.).).).).).).K.).).).).).).K.).).s.).s.).Z ",
"Z | | O.&.<.2.2.2.y.).).).).).).s.K.).).).).s.).).).).K.).P.).).).Z ",
"Z k v v n N Z Z D F K Y E _ X.&.4.y.K.K.s.).).d.).).s.P.).).).).).Z ",
"Z : = = $ $ $ = $ : 3 e a j b B D I T W _ { O.<.2.d.d.).).s.).).).Z ",
"Z t t t t t t t t t t e 7 : $ # # : 5 8 i j n Z K T / { X.%.<.2.9.Z ",
"Z t t t t t t t t t t t t t t t t t t e 8 : # X . - 9 a x Z K T Z ",
"Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z Z C C C Z Z Z Z Z Z Z Z Z Z Z "
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 423 B

View File

@ -0,0 +1,111 @@
/* XPM */
static char *biped_105_46_OffK1[] = {
/* columns rows colors chars-per-pixel */
"34 20 85 1",
" c #CF7C7C",
". c #D07C7C",
"X c #D17C7C",
"o c #D17C7D",
"O c #D17D7C",
"+ c #D17D7D",
"@ c #D27D7D",
"# c #D47E7D",
"$ c #D47E7E",
"% c #D57E7E",
"& c #D67E7E",
"* c #D67F7F",
"= c #D77F7F",
"- c #D87F7F",
"; c gray75",
": c #D98080",
"> c #DA8080",
", c #DB8181",
"< c #DC8181",
"1 c #DD8181",
"2 c #DD8281",
"3 c #DD8282",
"4 c #DF8282",
"5 c #E08383",
"6 c #E28383",
"7 c #E38484",
"8 c #E68585",
"9 c #E78585",
"0 c #E88685",
"q c #E88686",
"w c #E98686",
"e c #EE8888",
"r c #F08989",
"t c #F28A8A",
"y c #F38A8A",
"u c #F38B8B",
"i c #F58B8B",
"p c #F78B8B",
"a c #F88C8C",
"s c #F98D8D",
"d c #FA8D8D",
"f c #FC8E8E",
"g c #FE8E8E",
"h c #FF8F8F",
"j c #FF9090",
"k c #FF9191",
"l c #FF9291",
"z c #FF9292",
"x c #FF9494",
"c c #FF9696",
"v c #FF9796",
"b c #FF9797",
"n c #FF9898",
"m c #FF9998",
"M c #FF9A9A",
"N c #FF9A9B",
"B c #FF9B9A",
"V c #FF9B9B",
"C c #FF9B9C",
"Z c #FF9C9B",
"A c #FF9D9D",
"S c #FF9E9E",
"D c #FF9F9F",
"F c #FFA09F",
"G c #FFA0A0",
"H c #FFA1A1",
"J c #FFA1A2",
"K c #FFA2A2",
"L c #FFA2A3",
"P c #FFA3A3",
"I c #FFA3A4",
"U c #FFA4A4",
"Y c #FFA4A5",
"T c #FFA5A5",
"R c #FFA6A6",
"E c #FFA6A7",
"W c #FFA7A7",
"Q c #FFA7A8",
"! c #FFA8A8",
"~ c #FFA8A9",
"^ c #FFA9A8",
"/ c #FFA9A9",
"( c #FFA9AA",
") c #FFAAA9",
"_ c #FFAAAA",
/* pixels */
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
";111,,:@@@ @ @ @@@@@ $:,16weush;",
";9999eesfhccmmCmCmCmCmCAGGKKKLLLT;",
";AAAAAKKKPT/W/////W//W/_/_///__/_;",
";_______________//_______________;",
";________________________________;",
";________________________________;",
";________________________________;",
";________________________________;",
";________________________________;",
";________________________________;",
";________________________________;",
";_///____________________________;",
";_//__//___/__//_________________;",
";KKKTTT/////_/_/_/_______________;",
";uppfhhzhccmAAKT///______________;",
";:$$$$$$@:,79eshccmAAKKTW/////__/;",
";77777777744,:@@@@,19eshcmAKKPTW/;",
";77777777777779759511-@@ @@19ihmm;",
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

View File

@ -0,0 +1,86 @@
/* XPM */
static char *biped_105_46_OnK0[] = {
/* columns rows colors chars-per-pixel */
"34 20 60 1",
" c #6DCF44",
". c #6DD044",
"X c #6ED144",
"o c #6ED244",
"O c #6FD344",
"+ c #6FD444",
"@ c #6FD544",
"# c #6FD644",
"$ c #6FD744",
"% c #70D744",
"& c #70D844",
"* c #70D944",
"= c #70DA44",
"- c #71DB44",
"; c #71DC44",
": c #71DD44",
"> c #71DE44",
", c #72DF44",
"< c #72E044",
"1 c #73E244",
"2 c #73E344",
"3 c #74E644",
"4 c #74E744",
"5 c #74E844",
"6 c #75E844",
"7 c #75E944",
"8 c #76EE44",
"9 c #77F044",
"0 c #78F244",
"q c #78F344",
"w c #78F444",
"e c #78F544",
"r c #79F644",
"t c #79F844",
"y c #7AF944",
"u c #7AFA44",
"i c #7AFB44",
"p c #7AFC44",
"a c #7BFD44",
"s c #7CFF44",
"d c #7DFF44",
"f c #7EFF44",
"g c #7FFF44",
"h c #80FF44",
"j c #81FF44",
"k c #82FF44",
"l c #83FF44",
"z c #84FF44",
"x c #85FF44",
"c c #86FF44",
"v c #87FF44",
"b c #88FF44",
"n c #89FF44",
"m c #8AFF44",
"M c #8BFF44",
"N c #8CFF44",
"B c #8DFF44",
"V c #8EFF44",
"C c #8FFF44",
"Z c gray75",
/* pixels */
"ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ",
"Z:::==@OOO OO O OO%%=:,78wtdZ",
"Z444780tpdggggccccgccgccmmcmmmVmVZ",
"ZcccccmmmmVVVVVVVVVVVVVCVVCCVCCVCZ",
"ZCCCVCCCCCCCCCCCVVCCCCCCCCCCVCCCCZ",
"ZCCCVCCCCCCCCCCCCVCCCCCCCCCCCCCCCZ",
"ZCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCZ",
"ZCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCZ",
"ZCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCZ",
"ZCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCZ",
"ZCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCZ",
"ZCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCZ",
"ZCVVCCCCCCCCCCCCCCCCCCCCCCCCCCCCCZ",
"ZCVVCCCVCCCCCCCCCCCCCCCCCCCCCCCCCZ",
"ZmmmmmVVVVCCCVVCCCCCCCCCCCCCCCCCCZ",
"Z0etpdpddgggcmmmVVCCCCCCCCCCCCCCCZ",
"Z@@@O@@@@@:,79tddgccccmmVVVVCVCCVZ",
"Z4,4,4,4,4,:=@%OOO$:79tdggcmmmmVVZ",
"Z,4,4,4,4,,4,41133,,$$OO %%=4wdgcZ",
"ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

View File

@ -0,0 +1,42 @@
/* XPM */
static char *biped_105_46_OnK1[] = {
/* columns rows colors chars-per-pixel */
"34 20 16 1",
" c #FFF066",
". c #FFF166",
"X c #FFF266",
"o c #FFF366",
"O c #FFF566",
"+ c #FFF666",
"@ c #FFF766",
"# c #FFF866",
"$ c #FFF966",
"% c #FFFA66",
"& c #FFFB66",
"* c #FFFC66",
"= c #FFFD66",
"- c #FFFE66",
"; c #FFFF66",
": c gray75",
/* pixels */
"::::::::::::::::::::::::::::::::::",
":----%OOOoo ooooooooooO%--------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":--------------------------------:",
":%OOOOOOO%-----------------------:",
":------------%OOOO%--------------:",
":--------------------%OoooO------:",
"::::::::::::::::::::::::::::::::::"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 B

View File

@ -0,0 +1,71 @@
/* XPM */
static char *biped_107_146_OffK0[] = {
/* columns rows colors chars-per-pixel */
"15 15 50 1",
" c #0E00EF",
". c #0F00EE",
"X c blue",
"o c #0B00F2",
"O c #0C02F3",
"+ c #1207EF",
"@ c #1B05E4",
"# c #1C06E4",
"$ c #5130C0",
"% c #6B45AF",
"& c #6D47AE",
"* c #6E48AD",
"= c #714BAB",
"- c #714CAB",
"; c #6B6BBE",
": c #6D6ABB",
"> c #6C69BC",
", c #6F6CBB",
"< c #6C6CBD",
"1 c #6D6DBC",
"2 c #6E6EBC",
"3 c #7260B3",
"4 c #7367B4",
"5 c #706DB9",
"6 c #716CB8",
"7 c #716DB8",
"8 c #706DBA",
"9 c #716EB9",
"0 c #786DB2",
"q c #796EB1",
"w c #786EB2",
"e c #7A6FB0",
"r c #554AC7",
"t c #564BC6",
"y c gray62",
"u c #9E9E9F",
"i c #9183A2",
"p c #918EA5",
"a c #928FA5",
"s c #958AA1",
"d c #958BA0",
"f c #968BA0",
"g c #9696A3",
"h c #9796A3",
"j c #9595A4",
"k c #9695A4",
"l c #9696A4",
"z c #9896A1",
"x c #9996A1",
"c c gray75",
/* pixels */
"ccccccccccccccc",
"cyyyyg5+2gyyyyc",
"cyyyyj;X>gyyyyc",
"cyyyyj;X>jyyyyc",
"cyyyyj2X2gyyyyc",
"cxxxxp>X:aujjuc",
"cq00q4rXr4q00qc",
"c#....oXo....@c",
"c-*&*%$X$%*&*=c",
"cdssdi3X3idsffc",
"cuuuuh5X5hyuuuc",
"cyyyyj>X2jyyyyc",
"cyyyyj;X>juuuuc",
"cyyyyj2O5juuuuc",
"ccccccccccccccc"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 B

View File

@ -0,0 +1,67 @@
/* XPM */
static char *biped_107_146_OffK1[] = {
/* columns rows colors chars-per-pixel */
"15 15 46 1",
" c #4444AA",
". c #5044A5",
"X c #5145A6",
"o c #5344A4",
"O c #5444A4",
"+ c #5747A4",
"@ c #6046A0",
"# c #6047A0",
"$ c #965891",
"% c #9A6294",
"& c #9B6294",
"* c #B0608A",
"= c #B1618A",
"- c #B2618A",
"; c #B3628A",
": c #B56289",
"> c #B66389",
", c #B76B8C",
"< c #B86E8D",
"1 c #B06F90",
"2 c #B16F90",
"3 c #B26F90",
"4 c #B4708F",
"5 c #B5708F",
"6 c #B6708E",
"7 c #B6718E",
"8 c #BF718B",
"9 c #BC708C",
"0 c #BD708C",
"q c #B07090",
"w c #B17090",
"e c #B27090",
"r c #B37190",
"t c #D67985",
"y c #D67D87",
"u c #D67E87",
"i c #DA7C85",
"p c #DB7C85",
"a c gray75",
"s c #DA8086",
"d c #DB8086",
"f c #DB8186",
"g c #DD8185",
"h c #DC8086",
"j c #DE8185",
"k c #E38484",
/* pixels */
"aaaaaaaaaaaaaaa",
"akkkkd5+rhkkkka",
"akkkkd1 wskkkka",
"akkkkd1 wskkkka",
"akkkkdw rhkkkka",
"aggkgy1 1igggga",
"at<<9,& &<<<98a",
"aOo+.+. oO++.@a",
"a:*===$ $===-:a",
"atiiit, ,tipipa",
"akkkkg5 <gkkkka",
"akkkkd1 wdkkkka",
"akkkkiw wskkkka",
"akkkkdr.rskkkka",
"aaaaaaaaaaaaaaa"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 B

View File

@ -0,0 +1,60 @@
/* XPM */
static char *biped_107_146_OnK0[] = {
/* columns rows colors chars-per-pixel */
"15 15 39 1",
" c #444444",
". c #484444",
"X c #494444",
"o c #484744",
"O c #4A4C44",
"+ c #4C4944",
"@ c #4D4B44",
"# c #5C7544",
"$ c #5E8F44",
"% c #648A44",
"& c #648C44",
"* c #658C44",
"= c #658D44",
"- c #669044",
"; c #66A544",
": c #64AE44",
"> c #65AF44",
", c #66AC44",
"< c #64B044",
"1 c #64B144",
"2 c #65B144",
"3 c #65B244",
"4 c #65B344",
"5 c #66B144",
"6 c #66B244",
"7 c #66B344",
"8 c #68B244",
"9 c #69B444",
"0 c #6FC844",
"q c #6FD344",
"w c #70CF44",
"e c #71CF44",
"r c #71D044",
"t c #70DA44",
"y c #71DA44",
"u c #71DB44",
"i c #72DB44",
"p c #73E344",
"a c gray75",
/* pixels */
"aaaaaaaaaaaaaaa",
"appppy6O4uppppa",
"appppt6 1yppppa",
"appppt: 1yppppa",
"appppu6 4uppppa",
"auuuyq: ,quuuya",
"a9888,$ $,8889a",
"a@XXXX XXXXX@a",
"a-===%# #%==%-a",
"areer0; ;0r0qra",
"appppy6 4uppppa",
"appppt, 6uppppa",
"appppy6 1uppppa",
"appppy6 6uppppa",
"aaaaaaaaaaaaaaa"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 B

View File

@ -0,0 +1,51 @@
/* XPM */
static char *biped_107_146_OnK1[] = {
/* columns rows colors chars-per-pixel */
"15 15 30 1",
" c #FF6666",
". c #FF6866",
"X c #FF6B66",
"o c #FF6C66",
"O c #FF6D66",
"+ c #FF9666",
"@ c #FFAB66",
"# c #FFAD66",
"$ c #FFAE66",
"% c #FFB066",
"& c #FFB166",
"* c #FFB266",
"= c #FFC666",
"- c #FFCD66",
"; c #FFCF66",
": c #FFD066",
"> c #FFD166",
", c #FFD266",
"< c #FFD366",
"1 c #FFD466",
"2 c #FFD566",
"3 c #FFE966",
"4 c #FFF066",
"5 c #FFF166",
"6 c #FFF466",
"7 c #FFF566",
"8 c #FFFB66",
"9 c #FFFC66",
"0 c #FFFF66",
"q c gray75",
/* pixels */
"qqqqqqqqqqqqqqq",
"q00000,X,80000q",
"q00008, ,80000q",
"q00008, ,80000q",
"q00000, 200000q",
"q88086- ,68000q",
"q2,22-$ $-,2,2q",
"qX Xq",
"q$$$$@+ +@$$$$q",
"q55553= =35353q",
"q00000, ,80000q",
"q00008- ,00000q",
"q00008, ,80000q",
"q00008,X,00000q",
"qqqqqqqqqqqqqqq"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 B

View File

@ -0,0 +1,60 @@
/* XPM */
static char *biped_113_35_OffK0[] = {
/* columns rows colors chars-per-pixel */
"11 11 43 1",
" c #B77D37",
". c #B77C38",
"X c #B77D39",
"o c #B77E3A",
"O c #B77E3B",
"+ c #B67E3C",
"@ c #B67F3D",
"# c #B77E3C",
"$ c #B87A32",
"% c #B87A33",
"& c #B87B33",
"* c #B87B35",
"= c #B87C37",
"- c #B87D37",
"; c #AF8859",
": c #AF895A",
"> c #B3824A",
", c #B3834B",
"< c #B3844D",
"1 c #B2844F",
"2 c #B18551",
"3 c #B18653",
"4 c #B28450",
"5 c #B08755",
"6 c #B18655",
"7 c #B08859",
"8 c #A7937C",
"9 c #A7947D",
"0 c #A7947E",
"q c #A99074",
"w c #A99175",
"e c #A99177",
"r c #A8937A",
"t c #A8937B",
"y c #9F9D9B",
"u c #9F9E9B",
"i c gray62",
"p c #A59683",
"a c #A59684",
"s c #A09D99",
"d c #A19D99",
"f c #A09D9A",
"g c gray75",
/* pixels */
"ggggggggggg",
"gidt<-<8dig",
"gy96-&-69ig",
"gp;X&&&X;ag",
"g;+$&&&&+;g",
"gX&$&&$$*+g",
"g+$$$$$$*+g",
"g4*$$$$&X2g",
"gt<=&$$*2tg",
"gdq>=&&>edg",
"ggggggggggg"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 B

View File

@ -0,0 +1,49 @@
/* XPM */
static char *biped_113_35_OffK1[] = {
/* columns rows colors chars-per-pixel */
"11 11 32 1",
" c #FB775C",
". c #FB775D",
"X c #FD7659",
"o c #FC765A",
"O c #FC765B",
"+ c #FD765A",
"@ c #FD765B",
"# c #FC775C",
"$ c #EE7E73",
"% c #ED7F75",
"& c #ED7F76",
"* c #EE7F74",
"= c #F57A67",
"- c #F77964",
"; c #F77965",
": c #F67A65",
"> c #F67A66",
", c #F47B68",
"< c #F47B69",
"1 c #F57B68",
"2 c #F87962",
"3 c #F87963",
"4 c #EB8077",
"5 c #EC8076",
"6 c #EC8077",
"7 c #EA8079",
"8 c #EA8179",
"9 c gray75",
"0 c #E38484",
"q c #E48383",
"w c #E58382",
"e c #E48483",
/* pixels */
"99999999999",
"90q&2@26ee9",
"9q6>@X@>4e9",
"97,#X@@#,79",
"9,oXXXXX ,9",
"9oXXXXXX@ 9",
"9 XXXXXX@ 9",
"9>@XXXXX >9",
"9*-@XXX@-*9",
"9w$-XX@2$w9",
"99999999999"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 B

View File

@ -0,0 +1,42 @@
/* XPM */
static char *biped_113_35_OnK0[] = {
/* columns rows colors chars-per-pixel */
"11 11 25 1",
" c #7BBF44",
". c #7BC044",
"X c #7BC144",
"o c #7AC244",
"O c #7AC344",
"+ c #7BC244",
"@ c #79C744",
"# c #79C844",
"$ c #79C944",
"% c #79CA44",
"& c #79CB44",
"* c #78CC44",
"= c #78CD44",
"- c #76D544",
"; c #76D644",
": c #76D744",
"> c #75DA44",
", c #75DB44",
"< c #76D844",
"1 c #76D944",
"2 c #73E244",
"3 c #73E344",
"4 c #74E144",
"5 c #74E244",
"6 c gray75",
/* pixels */
"66666666666",
"63,>%O%>336",
"63>%...*,36",
"6>%o. .o=,6",
"6*o.. .O*6",
"6O. .O6",
"6o. .O6",
"6%. ..*6",
"6>%. .%>6",
"6,;%...%;,6",
"66666666666"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

View File

@ -0,0 +1,37 @@
/* XPM */
static char *biped_113_35_OnK1[] = {
/* columns rows colors chars-per-pixel */
"11 11 20 1",
" c #FFE166",
". c #FFE266",
"X c #FFE366",
"o c #FFE466",
"O c #FFE566",
"+ c #FFE866",
"@ c #FFE966",
"# c #FFEA66",
"$ c #FFEB66",
"% c #FFEC66",
"& c #FFED66",
"* c #FFEE66",
"= c #FFEF66",
"- c #FFF666",
"; c #FFF766",
": c #FFF966",
"> c #FFFA66",
", c #FFFC66",
"< c #FFFF66",
"1 c gray75",
/* pixels */
"11111111111",
"1<<:@.@:<<1",
"1<:&..o&:<1",
"1<&....o&<1",
"1&. . o&1",
"1.. .o1",
"1o ..1",
"1@. o&1",
"1:@.. o@:1",
"1<-@.. o:<1",
"11111111111"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 B

View File

@ -0,0 +1,71 @@
/* XPM */
static char *biped_117_13_OffK0[] = {
/* columns rows colors chars-per-pixel */
"15 15 50 1",
" c #0E00EF",
". c #0F00EE",
"X c blue",
"o c #0B00F2",
"O c #0C02F3",
"+ c #1207EF",
"@ c #1B05E4",
"# c #1C06E4",
"$ c #5130C0",
"% c #6B45AF",
"& c #6D47AE",
"* c #6E48AD",
"= c #714BAB",
"- c #714CAB",
"; c #6B6BBE",
": c #6C69BB",
"> c #6C69BC",
", c #6F6CBB",
"< c #6C6CBD",
"1 c #6D6DBC",
"2 c #6E6EBC",
"3 c #7260B3",
"4 c #7367B4",
"5 c #706DB9",
"6 c #716CB8",
"7 c #716DB8",
"8 c #706DBA",
"9 c #716EB9",
"0 c #786DB2",
"q c #796EB1",
"w c #786EB2",
"e c #7A6FB0",
"r c #7B6FB0",
"t c #554AC7",
"y c #564BC6",
"u c gray62",
"i c #9E9E9F",
"p c #9183A2",
"a c #918EA5",
"s c #958AA1",
"d c #958BA0",
"f c #968BA0",
"g c #9696A3",
"h c #9796A3",
"j c #9595A4",
"k c #9695A4",
"l c #9696A4",
"z c #9896A1",
"x c #9996A1",
"c c gray75",
/* pixels */
"ccccccccccccccc",
"cuuuug5+5juuuuc",
"cuuuuj;X<juuuuc",
"cuuuuj;X2juuuuc",
"cuuuuj2X2juuuuc",
"cxxxxa>X:axxxxc",
"cq00q4tXt4qqqqc",
"c#....oXo... @c",
"c-*&*%$X$%*&&=c",
"cfssfp3X3pfsssc",
"ciiiih5X5juiuuc",
"cuuuuj>X2juuuuc",
"cuuuuj;X2juuuuc",
"cuuuuj2O,juuuuc",
"ccccccccccccccc"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 B

View File

@ -0,0 +1,66 @@
/* XPM */
static char *biped_117_13_OffK1[] = {
/* columns rows colors chars-per-pixel */
"15 15 45 1",
" c #4444AA",
". c #5044A5",
"X c #5145A6",
"o c #5344A4",
"O c #5444A4",
"+ c #5747A4",
"@ c #6046A0",
"# c #6147A0",
"$ c #965891",
"% c #9A6294",
"& c #9B6294",
"* c #B0608A",
"= c #B1618A",
"- c #B2618A",
"; c #B3628A",
": c #B56289",
"> c #B66389",
", c #B76B8C",
"< c #B86E8D",
"1 c #B06F90",
"2 c #B16F90",
"3 c #B4708F",
"4 c #B5708F",
"5 c #B6708E",
"6 c #B6718E",
"7 c #BF718B",
"8 c #BC708C",
"9 c #BD708C",
"0 c #B07090",
"q c #B17090",
"w c #B27090",
"e c #C0718B",
"r c #D67985",
"t c #D67D87",
"y c #D67E87",
"u c #DA7C85",
"i c #DB7C85",
"p c gray75",
"a c #DA8086",
"s c #DB8086",
"d c #DB8186",
"f c #DD8185",
"g c #DC8086",
"h c #DE8185",
"j c #E38484",
/* pixels */
"ppppppppppppppp",
"pjjjjs4+4sjjjjp",
"pjjjjs1 qsjjjjp",
"pjjjjs1 qsjjjjp",
"pjjjjsq qfjjjjp",
"pffjft1 1tffffp",
"pe<<8,& &,8787p",
"p#o+.+. .o+O.#p",
"p>----$ $*---:p",
"piiiur, ,ruuuup",
"pjjjjs4 4sjjjjp",
"pjjjjsq qsjjjjp",
"pjjjjuq qsjjjjp",
"pjjjjs4.4sjjjjp",
"ppppppppppppppp"
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 323 B

View File

@ -0,0 +1,58 @@
/* XPM */
static char *biped_117_13_OnK0[] = {
/* columns rows colors chars-per-pixel */
"15 15 37 1",
" c #444444",
". c #484444",
"X c #494444",
"o c #484744",
"O c #4A4C44",
"+ c #4C4944",
"@ c #4D4B44",
"# c #5C7544",
"$ c #5E8F44",
"% c #648A44",
"& c #648C44",
"* c #658C44",
"= c #658D44",
"- c #669044",
"; c #66A544",
": c #64AE44",
"> c #66AC44",
", c #64B044",
"< c #64B144",
"1 c #65B144",
"2 c #65B244",
"3 c #66B144",
"4 c #66B244",
"5 c #66B344",
"6 c #68B244",
"7 c #69B444",
"8 c #6FC844",
"9 c #6FD344",
"0 c #70CF44",
"q c #71CF44",
"w c #71D044",
"e c #70DA44",
"r c #71DA44",
"t c #71DB44",
"y c #72DB44",
"u c #73E344",
"i c gray75",
/* pixels */
"iiiiiiiiiiiiiii",
"iuuuur4O4euuuui",
"iuuuue4 2euuuui",
"iuuuue: 2ruuuui",
"iuuuut4 5tuuuui",
"itttr9: >9tttti",
"i7666>$ $>6477i",
"i@XXXX XXXXX@i",
"i-===%# #%===-i",
"iwqqw8; ;8w889i",
"iuuuur4 5tuuuui",
"iuuuue> 2tuuuui",
"iuuuur4 2euuuui",
"iuuuur4 4tuuuui",
"iiiiiiiiiiiiiii"
};

Some files were not shown because too many files have changed in this diff Show More