From c377d661268f0f924b50dcc1c105747d8cedaf1e Mon Sep 17 00:00:00 2001 From: Gerasim Troeglazov <3dEyes@gmail.com> Date: Sun, 29 Aug 2021 14:22:16 +1000 Subject: [PATCH] Cortex: use vector icons Change-Id: I49f6bdf93366221330ca29281e3465d9b7452402 Reviewed-on: https://review.haiku-os.org/c/haiku/+/4405 Tested-by: Commit checker robot Reviewed-by: waddlesplash --- .../DormantNodeView/DormantNodeListItem.cpp | 17 +- .../cortex/MediaRoutingView/MediaJack.cpp | 2 +- .../MediaRoutingView/MediaNodePanel.cpp | 37 +- src/apps/cortex/support/MediaIcon.cpp | 150 +- src/apps/cortex/support/MediaIconBits.h | 2057 ++++++++--------- 5 files changed, 1001 insertions(+), 1262 deletions(-) diff --git a/src/apps/cortex/DormantNodeView/DormantNodeListItem.cpp b/src/apps/cortex/DormantNodeView/DormantNodeListItem.cpp index 95fe004610..daaefd56fd 100644 --- a/src/apps/cortex/DormantNodeView/DormantNodeListItem.cpp +++ b/src/apps/cortex/DormantNodeView/DormantNodeListItem.cpp @@ -108,21 +108,8 @@ void DormantNodeListItem::DrawItem( r.top += (frame.Height() / 2.0) - (B_MINI_ICON / 2.0); r.right = r.left + B_MINI_ICON - 1.0; r.bottom = r.top + B_MINI_ICON - 1.0; - if (IsSelected()) { - owner->SetHighColor(255, 255, 255, 255); - owner->FillRect(r); - owner->SetDrawingMode(B_OP_INVERT); - owner->DrawBitmap(m_icon, r.LeftTop()); - owner->SetDrawingMode(B_OP_ALPHA); - owner->SetHighColor(0, 0, 0, 180); - owner->SetBlendingMode(B_CONSTANT_ALPHA, B_ALPHA_COMPOSITE); - owner->DrawBitmap(m_icon, r.LeftTop()); - owner->SetDrawingMode(B_OP_OVER); - } - else { - owner->SetDrawingMode(B_OP_OVER); - owner->DrawBitmap(m_icon, r.LeftTop()); - } + owner->SetDrawingMode(B_OP_OVER); + owner->DrawBitmap(m_icon, r.LeftTop()); } // Draw label diff --git a/src/apps/cortex/MediaRoutingView/MediaJack.cpp b/src/apps/cortex/MediaRoutingView/MediaJack.cpp index 9691383fdf..350303ba8e 100644 --- a/src/apps/cortex/MediaRoutingView/MediaJack.cpp +++ b/src/apps/cortex/MediaRoutingView/MediaJack.cpp @@ -409,7 +409,7 @@ void MediaJack::_updateBitmap() { delete m_bitmap; } - BBitmap *tempBitmap = new BBitmap(Frame().OffsetToCopy(0.0, 0.0), B_CMAP8, true); + BBitmap *tempBitmap = new BBitmap(Frame().OffsetToCopy(0.0, 0.0), B_RGBA32, true); tempBitmap->Lock(); { BView *tempView = new BView(tempBitmap->Bounds(), "", B_FOLLOW_NONE, 0); diff --git a/src/apps/cortex/MediaRoutingView/MediaNodePanel.cpp b/src/apps/cortex/MediaRoutingView/MediaNodePanel.cpp index da208e5c97..9cf4310d5c 100644 --- a/src/apps/cortex/MediaRoutingView/MediaNodePanel.cpp +++ b/src/apps/cortex/MediaRoutingView/MediaNodePanel.cpp @@ -891,7 +891,8 @@ void MediaNodePanel::_updateBitmap() { delete m_bitmap; } - BBitmap *tempBitmap = new BBitmap(Frame().OffsetToCopy(0.0, 0.0), B_CMAP8, true); + BBitmap *tempBitmap = new BBitmap(Frame().OffsetToCopy(0.0, 0.0), + B_RGBA32, true); tempBitmap->Lock(); { BView *tempView = new BView(tempBitmap->Bounds(), "", B_FOLLOW_NONE, 0); @@ -946,21 +947,8 @@ void MediaNodePanel::_drawInto( { p.x = m_bodyRect.left + m_bodyRect.Width() / 2.0 - B_LARGE_ICON / 2.0; p.y = m_labelRect.bottom + m_bodyRect.Height() / 2.0 - B_LARGE_ICON / 2.0; - if (isSelected()) - { - target->SetDrawingMode(B_OP_INVERT); - target->DrawBitmapAsync(m_icon, p); - target->SetDrawingMode(B_OP_ALPHA); - target->SetHighColor(0, 0, 0, 180); - target->SetBlendingMode(B_CONSTANT_ALPHA, B_ALPHA_COMPOSITE); - target->DrawBitmapAsync(m_icon, p); - target->SetDrawingMode(B_OP_OVER); - } - else - { - target->SetDrawingMode(B_OP_OVER); - target->DrawBitmapAsync(m_icon, p); - } + target->SetDrawingMode(B_OP_OVER); + target->DrawBitmapAsync(m_icon, p); } // Draw label @@ -1012,21 +1000,8 @@ void MediaNodePanel::_drawInto( { p.x = m_bodyRect.left + M_BODY_H_MARGIN; p.y = m_bodyRect.top + (m_bodyRect.Height() / 2.0) - (B_MINI_ICON / 2.0); - if (isSelected()) - { - target->SetDrawingMode(B_OP_INVERT); - target->DrawBitmapAsync(m_icon, p); - target->SetDrawingMode(B_OP_ALPHA); - target->SetHighColor(0, 0, 0, 180); - target->SetBlendingMode(B_CONSTANT_ALPHA, B_ALPHA_COMPOSITE); - target->DrawBitmapAsync(m_icon, p); - target->SetDrawingMode(B_OP_OVER); - } - else - { - target->SetDrawingMode(B_OP_OVER); - target->DrawBitmapAsync(m_icon, p); - } + target->SetDrawingMode(B_OP_OVER); + target->DrawBitmapAsync(m_icon, p); } // Draw label diff --git a/src/apps/cortex/support/MediaIcon.cpp b/src/apps/cortex/support/MediaIcon.cpp index 55c57cf4cc..da8da36055 100644 --- a/src/apps/cortex/support/MediaIcon.cpp +++ b/src/apps/cortex/support/MediaIcon.cpp @@ -47,6 +47,9 @@ #include // Support Kit #include +// Interface Kit +#include + __USE_CORTEX_NAMESPACE @@ -61,7 +64,7 @@ __USE_CORTEX_NAMESPACE MediaIcon::MediaIcon( const live_node_info &nodeInfo, icon_size size) - : BBitmap(BRect(0.0, 0.0, size - 1.0, size - 1.0), B_CMAP8), + : BBitmap(BRect(0.0, 0.0, size - 1.0, size - 1.0), B_RGBA32), m_size(size), m_nodeKind(nodeInfo.node.kind) { D_ALLOC(("MediaIcon::MediaIcon(live_node_info '%s')\n", nodeInfo.name)); @@ -72,7 +75,7 @@ MediaIcon::MediaIcon( MediaIcon::MediaIcon( const dormant_node_info &nodeInfo, icon_size size) - : BBitmap(BRect(0.0, 0.0, size - 1.0, size - 1.0), B_CMAP8), + : BBitmap(BRect(0.0, 0.0, size - 1.0, size - 1.0), B_RGBA32), m_size(size), m_nodeKind(0) { D_ALLOC(("MediaIcon::MediaIcon(dormant_node_info '%s')\n", nodeInfo.name)); @@ -204,12 +207,13 @@ MediaIcon::_findIconFor(const dormant_node_info &nodeInfo) bool videoIn = false, videoOut = false; _getMediaTypesFor(flavorInfo, &audioIn, &audioOut, &videoIn, &videoOut); _findDefaultIconFor(audioIn, audioOut, videoIn, videoOut); + } else if (BString(nodeInfo.name).Compare("System clock") == 0) { + BIconUtils::GetVectorIcon(M_TIME_SOURCE_ICON, + sizeof(M_TIME_SOURCE_ICON), this); } else { // use generic icon in case we couldn't get any info - if (m_size == B_LARGE_ICON) - SetBits(M_GENERIC_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_GENERIC_ICON.small, 256, 0, B_CMAP8); + BIconUtils::GetVectorIcon(M_GENERIC_ICON, + sizeof(M_GENERIC_ICON), this); } } @@ -228,7 +232,8 @@ MediaIcon::_getMediaTypesFor(const live_node_info &nodeInfo, bool *audioIn, int32 numberOfFreeOutputs, numberOfConnectedOutputs; media_output outputs[numberOfOutputs]; BMediaRoster *roster = BMediaRoster::CurrentRoster(); - if (roster->GetFreeInputsFor(nodeInfo.node, inputs, numberOfInputs, &numberOfFreeInputs) == B_OK) { + if (roster->GetFreeInputsFor(nodeInfo.node, inputs, numberOfInputs, + &numberOfFreeInputs) == B_OK) { for (int32 i = 0; i < numberOfFreeInputs; i++) { if ((inputs[i].format.type == B_MEDIA_RAW_AUDIO) || (inputs[i].format.type == B_MEDIA_ENCODED_AUDIO)) { @@ -241,7 +246,8 @@ MediaIcon::_getMediaTypesFor(const live_node_info &nodeInfo, bool *audioIn, } } } - if (roster->GetConnectedInputsFor(nodeInfo.node, inputs, numberOfInputs, &numberOfConnectedInputs) == B_OK) { + if (roster->GetConnectedInputsFor(nodeInfo.node, inputs, numberOfInputs, + &numberOfConnectedInputs) == B_OK) { for (int32 i = 0; i < numberOfConnectedInputs; i++) { if ((inputs[i].format.type == B_MEDIA_RAW_AUDIO) || (inputs[i].format.type == B_MEDIA_ENCODED_AUDIO)) { @@ -254,7 +260,8 @@ MediaIcon::_getMediaTypesFor(const live_node_info &nodeInfo, bool *audioIn, } } } - if (roster->GetFreeOutputsFor(nodeInfo.node, outputs, numberOfOutputs, &numberOfFreeOutputs) == B_OK) { + if (roster->GetFreeOutputsFor(nodeInfo.node, outputs, numberOfOutputs, + &numberOfFreeOutputs) == B_OK) { for (int32 i = 0; i < numberOfFreeOutputs; i++) { if ((outputs[i].format.type == B_MEDIA_RAW_AUDIO) || (outputs[i].format.type == B_MEDIA_ENCODED_AUDIO)) { @@ -267,7 +274,8 @@ MediaIcon::_getMediaTypesFor(const live_node_info &nodeInfo, bool *audioIn, } } } - if (roster->GetConnectedOutputsFor(nodeInfo.node, outputs, numberOfOutputs, &numberOfConnectedOutputs) == B_OK) { + if (roster->GetConnectedOutputsFor(nodeInfo.node, outputs, numberOfOutputs, + &numberOfConnectedOutputs) == B_OK) { for (int32 i = 0; i < numberOfConnectedOutputs; i++) { if ((outputs[i].format.type == B_MEDIA_RAW_AUDIO) || (outputs[i].format.type == B_MEDIA_ENCODED_AUDIO)) { @@ -322,133 +330,97 @@ void MediaIcon::_findDefaultIconFor( D_INTERNAL(("MediaIcon::_findDefaultIcon()\n")); if (_isTimeSource()) { - if (m_size == B_LARGE_ICON) - SetBits(M_TIME_SOURCE_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_TIME_SOURCE_ICON.small, 256, 0, B_CMAP8); + BIconUtils::GetVectorIcon(M_TIME_SOURCE_ICON, + sizeof(M_TIME_SOURCE_ICON), this); return; } if (_isSystemMixer()) { - if (m_size == B_LARGE_ICON) - SetBits(M_AUDIO_MIXER_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_AUDIO_MIXER_ICON.small, 256, 0, B_CMAP8); + BIconUtils::GetVectorIcon(M_AUDIO_MIXER_ICON, + sizeof(M_AUDIO_MIXER_ICON), this); return; } if (m_nodeKind & B_FILE_INTERFACE) { if (_isProducer()) { - if (m_size == B_LARGE_ICON) - SetBits(M_FILE_READER_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_FILE_READER_ICON.small, 256, 0, B_CMAP8); + BIconUtils::GetVectorIcon(M_FILE_READER_ICON, + sizeof(M_FILE_READER_ICON), this); return; - } - else { - if (m_size == B_LARGE_ICON) - SetBits(M_FILE_WRITER_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_FILE_WRITER_ICON.small, 256, 0, B_CMAP8); + } else { + BIconUtils::GetVectorIcon(M_FILE_WRITER_ICON, + sizeof(M_FILE_WRITER_ICON), this); return; } } if (_isPhysicalInput()) { - if (audioOut) { - if (m_size == B_LARGE_ICON) - SetBits(M_AUDIO_INPUT_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_AUDIO_INPUT_ICON.small, 256, 0, B_CMAP8); + if (audioIn) { + BIconUtils::GetVectorIcon(M_AUDIO_DEVICE_ICON, + sizeof(M_AUDIO_DEVICE_ICON), this); return; - } - else if (videoOut) { - if (m_size == B_LARGE_ICON) - SetBits(M_VIDEO_INPUT_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_VIDEO_INPUT_ICON.small, 256, 0, B_CMAP8); + } else if (audioOut) { + BIconUtils::GetVectorIcon(M_AUDIO_INPUT_ICON, + sizeof(M_AUDIO_INPUT_ICON), this); + return; + } else if (videoOut) { + BIconUtils::GetVectorIcon(M_VIDEO_INPUT_ICON, + sizeof(M_VIDEO_INPUT_ICON), this); return; } } if (_isPhysicalOutput()) { if (audioIn) { - if (m_size == B_LARGE_ICON) - SetBits(M_AUDIO_OUTPUT_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_AUDIO_OUTPUT_ICON.small, 256, 0, B_CMAP8); + BIconUtils::GetVectorIcon(M_AUDIO_OUTPUT_ICON, + sizeof(M_AUDIO_OUTPUT_ICON), this); return; - } - else if (videoIn) { - if (m_size == B_LARGE_ICON) - SetBits(M_VIDEO_OUTPUT_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_VIDEO_OUTPUT_ICON.small, 256, 0, B_CMAP8); + } else if (videoIn) { + BIconUtils::GetVectorIcon(M_VIDEO_OUTPUT_ICON, + sizeof(M_VIDEO_OUTPUT_ICON), this); return; } } if (_isProducer()) { if (audioOut) { - if (m_size == B_LARGE_ICON) - SetBits(M_AUDIO_PRODUCER_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_AUDIO_PRODUCER_ICON.small, 256, 0, B_CMAP8); + BIconUtils::GetVectorIcon(M_AUDIO_PRODUCER_ICON, + sizeof(M_AUDIO_PRODUCER_ICON), this); return; - } - else if (videoOut) { - if (m_size == B_LARGE_ICON) - SetBits(M_VIDEO_PRODUCER_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_VIDEO_PRODUCER_ICON.small, 256, 0, B_CMAP8); + } else if (videoOut) { + BIconUtils::GetVectorIcon(M_VIDEO_PRODUCER_ICON, + sizeof(M_VIDEO_PRODUCER_ICON), this); return; } } if (_isFilter()) { if (audioIn && audioOut && !videoIn && !videoOut) { - if (m_size == B_LARGE_ICON) - SetBits(M_AUDIO_FILTER_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_AUDIO_FILTER_ICON.small, 256, 0, B_CMAP8); + BIconUtils::GetVectorIcon(M_AUDIO_FILTER_ICON, + sizeof(M_AUDIO_FILTER_ICON), this); return; - } - else if (audioIn && !videoIn && videoOut) { - if (m_size == B_LARGE_ICON) - SetBits(M_AUDIO_CONSUMER_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_AUDIO_CONSUMER_ICON.small, 256, 0, B_CMAP8); + } else if (audioIn && !videoIn && videoOut) { + BIconUtils::GetVectorIcon(M_AUDIO_CONSUMER_ICON, + sizeof(M_AUDIO_CONSUMER_ICON), this); return; - } - else if (!audioIn && !audioOut && videoIn && videoOut) { - if (m_size == B_LARGE_ICON) - SetBits(M_VIDEO_FILTER_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_VIDEO_FILTER_ICON.small, 256, 0, B_CMAP8); + } else if (!audioIn && !audioOut && videoIn && videoOut) { + BIconUtils::GetVectorIcon(M_VIDEO_FILTER_ICON, + sizeof(M_VIDEO_FILTER_ICON), this); return; } } if (_isConsumer()) { if (audioIn) { - if (m_size == B_LARGE_ICON) - SetBits(M_AUDIO_CONSUMER_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_AUDIO_CONSUMER_ICON.small, 256, 0, B_CMAP8); + BIconUtils::GetVectorIcon(M_AUDIO_CONSUMER_ICON, + sizeof(M_AUDIO_CONSUMER_ICON), this); return; - } - else if (videoIn) { - if (m_size == B_LARGE_ICON) - SetBits(M_VIDEO_CONSUMER_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_VIDEO_CONSUMER_ICON.small, 256, 0, B_CMAP8); + } else if (videoIn) { + BIconUtils::GetVectorIcon(M_VIDEO_CONSUMER_ICON, + sizeof(M_VIDEO_CONSUMER_ICON), this); return; } } // assign a default icon - if (m_size == B_LARGE_ICON) - SetBits(M_GENERIC_ICON.large, 1024, 0, B_CMAP8); - else if (m_size == B_MINI_ICON) - SetBits(M_GENERIC_ICON.small, 256, 0, B_CMAP8); + BIconUtils::GetVectorIcon(M_GENERIC_ICON, sizeof(M_GENERIC_ICON), this); } diff --git a/src/apps/cortex/support/MediaIconBits.h b/src/apps/cortex/support/MediaIconBits.h index 59a2deb4f1..97270981dd 100644 --- a/src/apps/cortex/support/MediaIconBits.h +++ b/src/apps/cortex/support/MediaIconBits.h @@ -38,6 +38,7 @@ // ( in order of appearance ) // // - M_GENERIC_ICON +// - M_AUDIO_DEVICE_ICON // - M_AUDIO_INPUT_ICON // - M_AUDIO_OUTPUT_ICON // - M_AUDIO_MIXER_ICON @@ -53,1158 +54,962 @@ // - M_FILE_READER_ICON // - M_FILE_WRITER_ICON -struct media_icon -{ - uchar large[1024]; - uchar small[256]; +const unsigned char M_GENERIC_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x0e, 0x05, 0x00, 0x02, 0x00, 0x06, 0x02, 0x3c, + 0x43, 0xc6, 0xb9, 0xe5, 0xe2, 0x3a, 0x85, 0xa8, 0x3c, 0xee, 0x41, 0x42, + 0x68, 0xf4, 0x4a, 0x44, 0x59, 0x00, 0xc6, 0xd7, 0xf5, 0xff, 0x6b, 0x94, + 0xdd, 0x03, 0xec, 0x66, 0x66, 0x02, 0x00, 0x06, 0x02, 0x3b, 0x2b, 0x47, + 0xbb, 0x18, 0x65, 0x3d, 0x0f, 0xa5, 0x3d, 0x22, 0x51, 0x48, 0x29, 0x70, + 0x46, 0xca, 0x19, 0x00, 0xff, 0xec, 0x4b, 0xff, 0xf0, 0xa5, 0x06, 0x02, + 0x00, 0x06, 0x02, 0x3b, 0x30, 0x49, 0x39, 0x6b, 0x0a, 0xba, 0x90, 0x83, + 0x3c, 0x64, 0x6e, 0x4a, 0x10, 0x15, 0x43, 0x29, 0x95, 0x00, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0x89, 0x02, 0x00, 0x06, 0x02, 0x3c, 0x71, 0xe3, + 0x3a, 0x0c, 0x78, 0xba, 0x15, 0xe4, 0x3c, 0x7d, 0x21, 0x49, 0x05, 0x55, + 0x49, 0x45, 0x57, 0x00, 0xe3, 0xed, 0xff, 0xff, 0x9e, 0xc2, 0xff, 0x03, + 0xff, 0xac, 0xac, 0x02, 0x00, 0x06, 0x02, 0x3a, 0x1d, 0xa6, 0x39, 0x3f, + 0x04, 0xbb, 0xb5, 0xbc, 0x3c, 0x6b, 0x07, 0x4a, 0xea, 0x36, 0x48, 0x09, + 0x11, 0x00, 0xf9, 0x9b, 0x05, 0xff, 0xfc, 0xb2, 0x3d, 0x03, 0x00, 0x3c, + 0xb0, 0x02, 0x00, 0x06, 0x02, 0x3c, 0x0a, 0xe6, 0x3b, 0x39, 0x27, 0xbc, + 0x61, 0x1e, 0x3d, 0x03, 0xff, 0x4c, 0x25, 0x62, 0x4a, 0x1a, 0x96, 0x00, + 0xa3, 0x04, 0x3c, 0xff, 0xff, 0x90, 0xaf, 0x03, 0xc9, 0x3b, 0x3b, 0x03, + 0x0d, 0x29, 0x64, 0x02, 0x00, 0x06, 0x02, 0xbd, 0x49, 0x8b, 0x3e, 0x11, + 0x59, 0xbf, 0x21, 0x9b, 0xbe, 0x7d, 0x2f, 0x4c, 0x1b, 0x8f, 0x4a, 0x33, + 0x13, 0x00, 0xbd, 0x0f, 0x0f, 0xff, 0xe9, 0x84, 0x84, 0x04, 0x01, 0x74, + 0x10, 0x0a, 0x08, 0x32, 0x5e, 0x38, 0x5e, 0x40, 0x56, 0x4e, 0x5e, 0x54, + 0x5e, 0x60, 0x50, 0x58, 0x4c, 0x3e, 0x51, 0x0a, 0x06, 0x2e, 0x2c, 0x2e, + 0x3e, 0x3e, 0x45, 0x4a, 0x3c, 0x4a, 0x2a, 0x3a, 0x25, 0x0a, 0x04, 0x2e, + 0x2c, 0x2e, 0x3e, 0x3e, 0x45, 0x3e, 0x32, 0x0a, 0x04, 0x2e, 0x2c, 0x3e, + 0x32, 0x4a, 0x2a, 0x3a, 0x25, 0x0a, 0x04, 0x3e, 0x32, 0x3e, 0x45, 0x4a, + 0x3c, 0x4a, 0x2a, 0x0a, 0x03, 0x38, 0x42, 0x3c, 0x4d, 0x3c, 0x44, 0x0a, + 0x06, 0x22, 0x42, 0x22, 0x54, 0x32, 0x5c, 0x3e, 0x51, 0x3e, 0x40, 0x2e, + 0x3a, 0x0a, 0x04, 0x22, 0x42, 0x22, 0x54, 0x32, 0x5c, 0x32, 0x49, 0x0a, + 0x04, 0x22, 0x42, 0x32, 0x49, 0x3e, 0x40, 0x2e, 0x3a, 0x0a, 0x04, 0x32, + 0x49, 0x32, 0x5c, 0x3e, 0x51, 0x3e, 0x40, 0x0a, 0x06, 0x3e, 0x42, 0x3e, + 0x54, 0x4e, 0x5c, 0x5a, 0x50, 0x5a, 0x3f, 0x4a, 0x39, 0x0a, 0x04, 0xc2, + 0x22, 0xc2, 0x0f, 0x4e, 0x49, 0x5a, 0x3f, 0x52, 0x3c, 0x0a, 0x04, 0x3e, + 0x42, 0xc2, 0x22, 0xc2, 0x0f, 0x52, 0x3c, 0x4a, 0x39, 0x0a, 0x05, 0x41, + 0x51, 0xc0, 0x8b, 0xc8, 0x83, 0x4e, 0x5c, 0x4e, 0x49, 0xc2, 0x2a, 0xc2, + 0x13, 0x0a, 0x05, 0x3e, 0x42, 0x3e, 0x54, 0xc0, 0x8b, 0xc8, 0x83, 0x41, + 0x51, 0xc2, 0x2a, 0xc2, 0x13, 0x0a, 0x04, 0x4e, 0x49, 0x4e, 0x5c, 0x5a, + 0x50, 0x5a, 0x3f, 0x11, 0x0a, 0x0d, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x01, + 0x06, 0x18, 0x15, 0xff, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x00, 0x01, + 0x06, 0x18, 0x00, 0x15, 0x01, 0x17, 0x86, 0x00, 0x04, 0x0a, 0x01, 0x01, + 0x07, 0x00, 0x0a, 0x08, 0x01, 0x09, 0x00, 0x0a, 0x0b, 0x01, 0x05, 0x20, + 0x20, 0x21, 0x0a, 0x05, 0x01, 0x08, 0x00, 0x0a, 0x00, 0x01, 0x0a, 0x10, + 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x02, 0x01, 0x0d, 0x00, 0x0a, 0x0a, + 0x01, 0x0e, 0x00, 0x0a, 0x09, 0x02, 0x04, 0x0f, 0x00, 0x0a, 0x06, 0x01, + 0x0b, 0x00, 0x0a, 0x0c, 0x01, 0x0c, 0x00, 0x0a, 0x00, 0x01, 0x01, 0x10, + 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x03, 0x01, 0x02, 0x00, 0x0a, 0x04, + 0x01, 0x03, 0x00, 0x0a, 0x07, 0x01, 0x04, 0x00 }; -const media_icon M_GENERIC_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x1b,0x0e, - 0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x1b,0x1b,0x1b, - 0x1b,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x1b,0x1b,0x1b,0x1b, - 0x1b,0x1b,0x1b,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x1b,0x1b,0x1b,0x1b,0x1b, - 0x1b,0x1b,0x1b,0x1b,0x1b,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b, - 0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x18,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b, - 0x1b,0x1b,0x1b,0x1b,0x1b,0x18,0x18,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x3f,0x3f,0x1b,0x1b,0x1b,0x1b,0x1b, - 0x1b,0x1b,0x1b,0x1b,0x18,0x18,0x18,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x1a,0x1a,0x3f,0x3f,0x1b,0x1b,0x1b, - 0x1b,0x1b,0x1b,0x18,0x18,0x18,0x18,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x1a,0x1a,0x1a,0x1a,0x3f,0x3f,0x1b, - 0x1b,0x1b,0x18,0x18,0x18,0x18,0x18,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0xff,0x0e,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x3f, - 0x3f,0x18,0x18,0x18,0x18,0x18,0x18,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x0e,0x17,0x0e,0x0e,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x18,0x18,0x18,0x18,0x18,0x18,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x0e,0x17,0x17,0x17,0x0e,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x18,0x18,0x18,0x18,0x18,0x18,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x0e,0x17,0x17,0x17,0x17,0x0e,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x18,0x18,0x18,0x18,0x18,0x18,0x0e,0x16,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x0e,0x06,0x05,0x06,0x17,0x17,0x00,0x1a,0x1a,0x00,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x18,0x18,0x18,0x18,0x18,0x18,0x0e,0x16,0x16,0x1a,0x0e,0x0e,0xff,0xff,0xff, - 0xff,0x0e,0x04,0x1e,0x1e,0x1e,0x05,0x06,0x00,0x1a,0x00,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x18,0x18,0x18,0x18,0x18,0x0e,0x16,0x16,0x1a,0x1a,0x1a,0x13,0x0e,0xff,0xff, - 0x0e,0x04,0x3f,0x3f,0x1e,0x1e,0x1e,0x1e,0x00,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x18,0x18,0x18,0x18,0x0e,0x16,0x16,0x1a,0x1a,0x1a,0x13,0x13,0x0e,0xff,0xff, - 0x0e,0x05,0x19,0x19,0x3f,0x3f,0x1e,0x1e,0x1e,0x06,0x06,0x00,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x18,0x18,0x18,0x0e,0x16,0x16,0x1a,0x1a,0x1a,0x13,0x13,0x13,0x0e,0xff,0xff, - 0x0e,0x05,0x19,0xd5,0x0c,0x19,0x3f,0x3f,0x1e,0x1e,0x1e,0x01,0x0e,0x0e,0x1a,0x1a, - 0x1a,0x18,0x18,0x0e,0x16,0x16,0x1a,0x1a,0x1a,0x13,0x13,0x13,0x13,0x0e,0xff,0xff, - 0x0e,0x05,0x19,0xd5,0x60,0x0c,0x0a,0x19,0x3f,0x3f,0x16,0x01,0x15,0x15,0x0e,0x0e, - 0x1a,0x18,0x0e,0x3f,0x3f,0x1a,0x1a,0x1a,0x13,0x13,0x13,0x13,0x13,0x0e,0xff,0xff, - 0x0e,0x05,0x19,0xd5,0x60,0x60,0x86,0xd5,0x15,0x19,0x0f,0x03,0x03,0x04,0x0e,0x13, - 0x0e,0x0e,0x14,0x14,0x14,0x3f,0x3f,0x13,0x13,0x13,0x13,0x13,0x13,0x0e,0xff,0xff, - 0x0e,0x05,0x19,0xd5,0x60,0x60,0x86,0xd3,0x60,0x19,0x0f,0x04,0x1b,0x1b,0x04,0x03, - 0x13,0x13,0x14,0x14,0x14,0x14,0x14,0x13,0x13,0x13,0x13,0x13,0x13,0x0e,0xff,0xff, - 0x0e,0x05,0x19,0xd3,0x86,0x86,0x86,0x23,0x60,0x19,0x03,0x3f,0x3f,0x1b,0x1b,0x1b, - 0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x13,0x13,0x13,0x13,0x13,0x13,0x0e,0xff,0xff, - 0x0e,0x00,0x19,0x19,0x1d,0x3f,0xd3,0xd3,0x60,0x19,0x04,0x1a,0x14,0x3f,0x3f,0x0f, - 0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x13,0x13,0x13,0x13,0x13,0x13,0x0e,0xff,0xff, - 0x0e,0x16,0x02,0x02,0x19,0x19,0x3f,0x3f,0x60,0x19,0x04,0x1a,0x04,0x0d,0x1a,0x0f, - 0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x13,0x13,0x13,0x13,0x13,0x13,0x0e,0x11,0xff, - 0x0e,0x16,0x16,0x16,0x02,0x02,0x19,0x1a,0x20,0x19,0x03,0x1a,0x0e,0x04,0x1a,0x0f, - 0x03,0x14,0x14,0x14,0x14,0x14,0x14,0x13,0x13,0x13,0x13,0x13,0x0e,0x11,0x11,0xff, - 0x0e,0x0e,0x16,0x16,0x16,0x16,0x02,0x02,0x19,0x2a,0x04,0x1a,0x1a,0x15,0x1a,0x0f, - 0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x13,0x13,0x13,0x13,0x0e,0x11,0x11,0x11,0xff, - 0xff,0xff,0x0e,0x0e,0x16,0x16,0x16,0x16,0x02,0x05,0x04,0x1b,0x1a,0x1a,0x2b,0x0f, - 0x04,0x0e,0x14,0x14,0x14,0x14,0x14,0x13,0x13,0x13,0x0e,0x11,0x11,0x11,0x11,0xff, - 0xff,0xff,0xff,0xff,0x0e,0x0e,0x16,0x16,0x16,0x15,0x15,0x03,0x04,0x1a,0x1a,0x04, - 0x11,0x11,0x0e,0x0e,0x14,0x14,0x14,0x13,0x13,0x0e,0x11,0x11,0x11,0x11,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x0e,0x16,0x15,0x0e,0x11,0x00,0x04,0x04,0x11, - 0xff,0xff,0xff,0xff,0x0e,0x0e,0x14,0x13,0x0e,0x11,0x11,0x11,0x11,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x0e,0x11,0x11,0x11,0x11,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x0e,0x11,0x11,0x11,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x1b,0x1b,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x0e,0x1b,0x1b,0x1b,0x1b,0x1b,0x0e,0x0e,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x0e,0x1f,0x1b,0x1b,0x1b,0x1b,0x1f,0x18,0x0e,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x0e,0x1a,0x1f,0x1f,0x1b,0x1f,0x18,0x18,0x0e,0xff,0xff,0xff, - 0xff,0x00,0x01,0x0e,0x0e,0x1a,0x1a,0x1a,0x3f,0x18,0x18,0x18,0x0e,0xff,0xff,0xff, - 0x00,0x04,0x1c,0x05,0x04,0x1a,0x1a,0x1a,0x1a,0x18,0x18,0x18,0x0e,0x0e,0xff,0xff, - 0x00,0x3f,0x3f,0x1e,0x1e,0x06,0x04,0x1a,0x1a,0x18,0x18,0x18,0x0e,0x1a,0x0e,0x0e, - 0x00,0x19,0x86,0x18,0x3f,0x3f,0x17,0x05,0x1a,0x18,0x18,0x0e,0x1a,0x1f,0x13,0x0e, - 0x00,0x18,0xad,0xac,0x19,0x1a,0x0b,0x05,0x04,0x18,0x0e,0x1a,0x1f,0x13,0x13,0x0e, - 0x00,0x19,0xac,0xad,0x23,0x1c,0x0a,0x3f,0x1b,0x05,0x05,0x1f,0x13,0x13,0x13,0x0e, - 0x00,0x00,0x18,0x60,0x86,0x1c,0x07,0x13,0x3f,0x0f,0x05,0x14,0x13,0x13,0x13,0x0e, - 0x0e,0x16,0x04,0x00,0x22,0xc4,0x08,0x0a,0x12,0x0f,0x04,0x14,0x13,0x13,0x13,0x0e, - 0x0e,0x16,0x16,0x16,0x00,0x00,0x0b,0x11,0x82,0x0f,0x04,0x14,0x13,0x13,0x13,0x0e, - 0xff,0x0e,0x0e,0x16,0x16,0x16,0x04,0x04,0x11,0x05,0x0e,0x14,0x13,0x13,0x0e,0x11, - 0xff,0xff,0xff,0x0e,0x0e,0x0e,0x0e,0xff,0x00,0xff,0xff,0x0e,0x0e,0x0e,0x11,0x11 - } +const unsigned char M_AUDIO_DEVICE_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x08, 0x05, 0x01, 0x02, 0x00, 0x06, 0x02, 0x39, + 0xf8, 0x17, 0x3b, 0x79, 0x14, 0xbb, 0x79, 0x14, 0x39, 0xf8, 0x17, 0x4a, + 0x3f, 0xa1, 0x49, 0xa2, 0xb7, 0x01, 0x02, 0xd4, 0x7d, 0xff, 0x03, 0xa1, + 0x97, 0x02, 0x00, 0x16, 0x05, 0x3b, 0xb7, 0xb2, 0xbc, 0xf3, 0x32, 0x39, + 0x62, 0x5b, 0x38, 0x21, 0xe3, 0x4a, 0x58, 0x09, 0x4a, 0xd9, 0xaf, 0x00, + 0x0c, 0x5e, 0x79, 0xa5, 0xc6, 0xc9, 0xa2, 0xff, 0xe8, 0x02, 0x00, 0x16, + 0x02, 0x36, 0xd6, 0xe9, 0x38, 0x82, 0x78, 0xb9, 0x7b, 0x43, 0x37, 0xf0, + 0x67, 0x4a, 0x89, 0xc8, 0x4b, 0x17, 0xe1, 0x00, 0xd3, 0xff, 0xa9, 0x02, + 0x00, 0x16, 0x02, 0x34, 0x0a, 0xa1, 0x38, 0x57, 0x0f, 0xb9, 0xe8, 0x79, + 0x35, 0x68, 0xd5, 0x49, 0x9e, 0x45, 0x49, 0x89, 0xe3, 0x00, 0x71, 0xff, + 0x01, 0x02, 0x00, 0x06, 0x02, 0x38, 0x87, 0xa2, 0x3b, 0xcb, 0x73, 0xbb, + 0xcb, 0x73, 0x38, 0x87, 0xa2, 0x4a, 0x60, 0xf4, 0x49, 0x3c, 0x2e, 0x01, + 0xff, 0xf2, 0xac, 0xff, 0xff, 0xd8, 0x05, 0x01, 0x01, 0x00, 0x00, 0x6b, + 0x01, 0xff, 0xde, 0x00, 0xd6, 0x0d, 0x0a, 0x08, 0x24, 0x40, 0x48, 0x52, + 0x58, 0x42, 0xc6, 0xe5, 0xbf, 0x66, 0x4f, 0x42, 0x45, 0x3d, 0xc3, 0x06, + 0xbd, 0x96, 0x36, 0x32, 0x06, 0x09, 0xda, 0xdb, 0x02, 0x42, 0x58, 0x46, + 0x5a, 0x58, 0x44, 0x56, 0xc1, 0x81, 0xc8, 0xc0, 0x44, 0x56, 0x5a, 0x40, + 0x5a, 0x40, 0x5a, 0x3f, 0x5c, 0x3c, 0x3a, 0x5a, 0x3a, 0x5a, 0x3b, 0x5a, + 0x3a, 0x42, 0x50, 0x06, 0x06, 0x6e, 0x0b, 0x42, 0x58, 0x5a, 0x40, 0x5a, + 0x40, 0x5a, 0x3f, 0x5d, 0x3b, 0x39, 0x5a, 0x3a, 0x5a, 0x3b, 0x5a, 0x3a, + 0x42, 0x50, 0x06, 0x09, 0xda, 0x6e, 0x02, 0x42, 0x50, 0x46, 0x52, 0x54, + 0x44, 0x55, 0x44, 0x53, 0x44, 0x57, 0x46, 0x58, 0x45, 0x56, 0x45, 0x57, + 0x45, 0x55, 0x48, 0x52, 0x50, 0x42, 0x4e, 0x06, 0x07, 0xda, 0x26, 0x42, + 0x50, 0x46, 0x52, 0x54, 0x44, 0x55, 0x44, 0x53, 0x44, 0x57, 0x46, 0x58, + 0x5a, 0x42, 0x58, 0x0a, 0x04, 0x4d, 0x4c, 0x50, 0x49, 0x50, 0x45, 0x4d, + 0x48, 0x0a, 0x04, 0x37, 0x3a, 0x3f, 0x3e, 0x3a, 0x43, 0x32, 0x3f, 0x08, + 0x05, 0x37, 0x34, 0x29, 0x40, 0x37, 0x47, 0x3a, 0x45, 0x49, 0x4d, 0x08, + 0x05, 0x3a, 0x35, 0x33, 0x3b, 0x3e, 0x42, 0x3d, 0x43, 0x4b, 0x4b, 0x08, + 0x04, 0x3d, 0x37, 0x32, 0x41, 0x36, 0x43, 0x40, 0x39, 0x08, 0x07, 0x44, + 0x3b, 0x41, 0x3e, 0x43, 0x42, 0x40, 0x46, 0x43, 0x48, 0x48, 0x42, 0x50, + 0x46, 0x0a, 0x0d, 0x46, 0x5c, 0x4c, 0x5c, 0x48, 0x5a, 0x60, 0x42, 0x60, + 0x3d, 0x5e, 0x3d, 0x5b, 0x3f, 0x57, 0x42, 0x4c, 0x3e, 0x4d, 0x3c, 0x36, + 0x31, 0x24, 0x44, 0x46, 0x55, 0x0a, 0x04, 0x34, 0x33, 0x47, 0x3c, 0x49, + 0x3b, 0x36, 0x32, 0x0c, 0x0a, 0x06, 0x01, 0x0b, 0x00, 0x0a, 0x00, 0x01, + 0x00, 0x10, 0x01, 0x17, 0x84, 0x10, 0x04, 0x0a, 0x01, 0x01, 0x00, 0x00, + 0x0a, 0x06, 0x04, 0x07, 0x08, 0x09, 0x0a, 0x10, 0x01, 0x17, 0x81, 0x00, + 0x04, 0x0a, 0x04, 0x01, 0x06, 0x00, 0x0a, 0x04, 0x01, 0x06, 0x02, 0x3f, + 0x1c, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x1c, 0x71, 0x47, + 0x71, 0xc7, 0x47, 0x31, 0xc7, 0x0a, 0x00, 0x01, 0x01, 0x10, 0x01, 0x17, + 0x84, 0x10, 0x04, 0x0a, 0x02, 0x01, 0x02, 0x00, 0x0a, 0x00, 0x01, 0x03, + 0x00, 0x0a, 0x03, 0x01, 0x04, 0x00, 0x0a, 0x00, 0x01, 0x05, 0x00, 0x0a, + 0x07, 0x01, 0x0c, 0x00 }; -const media_icon M_AUDIO_INPUT_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x3f,0x3f,0x3f, - 0x3f,0x3f,0x3f,0x0f,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x09,0x09,0x09,0x12, - 0x19,0x19,0x19,0x19,0x15,0x15,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x1c,0x19, - 0x12,0x09,0x09,0x09,0x15,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x09,0x09,0x09,0x0f,0x19, - 0x1c,0x1c,0x1c,0x17,0x05,0x05,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x19,0x19, - 0x09,0x09,0x09,0x05,0x11,0x0f,0x05,0x0a,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x09,0x09,0x09,0x16,0x19, - 0x1c,0x1c,0x1c,0x17,0x05,0x05,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x19,0x19,0x12, - 0x09,0x09,0x09,0x05,0x0f,0x0f,0x05,0x0e,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x09,0x09,0x09,0x12,0x19,0x1c, - 0x1c,0x1c,0x17,0x0f,0x05,0x05,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x19,0x19,0x0c, - 0x09,0x09,0x05,0x05,0x0f,0x0f,0x05,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x09,0x09,0x12,0x19,0x19,0x1c, - 0x1c,0x1c,0x17,0x0f,0x05,0x05,0x0d,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x19,0x19,0x09,0x09, - 0x09,0x09,0x05,0x05,0x0f,0x0f,0x0a,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x09,0x09,0x0f,0x16,0x19,0x1c,0x1c, - 0x1c,0x17,0x0f,0x0f,0x05,0x05,0x0d,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x19,0x19,0x12,0x09,0x09, - 0x09,0x05,0x05,0x05,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x09,0x09,0x12,0x19,0x19,0x1c,0x1c, - 0x1c,0x15,0x0f,0x0f,0x05,0x0a,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x19,0x19,0x19,0x19,0x09,0x09,0x09, - 0x09,0x05,0x05,0x05,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x19,0x19,0x19,0x19,0x09,0x09,0x09, - 0x09,0x05,0x05,0x05,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x19,0x19,0x19,0x19,0x19,0x19, - 0x19,0x0f,0x0f,0x0f,0x05,0x0d,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x0f,0x0f,0x0f,0x0f, - 0x0f,0x09,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x0f,0x0f, - 0x09,0x09,0x09,0x09,0x09,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x09, - 0x09,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x19, - 0x0f,0x09,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x19, - 0x0f,0x09,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x19, - 0x0f,0x09,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x0f,0x19, - 0x0f,0x09,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x3f,0x3f,0x0f,0x19, - 0x0f,0x09,0x00,0x09,0x09,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x3f,0x3f,0x3f,0x19,0x19,0x0f,0x19, - 0x0f,0x09,0x00,0x09,0x09,0x09,0x09,0x09,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x3f,0x19,0x19,0x19,0x19,0x19,0x15,0x09, - 0x09,0x09,0x09,0x0f,0x0f,0x09,0x09,0x09,0x09,0x09,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x15,0x15,0x1c,0x1c,0x1c,0x19,0x19,0x19,0x15, - 0x15,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0x09,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x19,0x19,0x15,0x15, - 0x15,0x15,0x0f,0x0f,0x0f,0x09,0x09,0x09,0x00,0x09,0x0f,0x0f,0x0f,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x15,0x15,0x0f,0x0f, - 0x0f,0x0f,0x09,0x09,0x09,0x00,0x00,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x3f,0x3f,0x19,0x0f,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x0f,0x15,0x05,0x0f,0x0a,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x3f,0x19,0x19,0x19,0x19,0x05,0x0e,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x0f,0x15,0x09,0x05,0x0f,0x0f,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x3f,0x3f,0x19,0x19,0x19,0x05,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x19,0x15,0x05,0x05,0x0f,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x19,0x0f,0x19,0x0f,0x0f,0x05,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x19,0x19,0x19,0x19,0x0f,0x05,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x0f,0x09,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x19,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x19,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x3f,0x19,0x09,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x3f,0x3f,0x19,0x09,0x09,0x0f,0x00,0x00,0x0f,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x19,0x19,0x15,0x15,0x0f,0x00,0x00,0x0f,0x0f,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff - } +const unsigned char M_AUDIO_INPUT_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x0c, 0x02, 0x00, 0x12, 0x02, 0x37, 0x50, 0xa4, + 0x38, 0x0a, 0xe1, 0xb8, 0x0a, 0xe1, 0x37, 0x50, 0xa4, 0x4c, 0x02, 0x51, + 0x4b, 0x34, 0xcc, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x05, 0x00, 0x03, + 0xc7, 0xd0, 0xd8, 0x03, 0x49, 0x68, 0x7b, 0x02, 0x00, 0x12, 0x03, 0xa9, + 0xd7, 0x00, 0x39, 0xfa, 0xe1, 0xb9, 0xfa, 0xe1, 0xa9, 0xd7, 0x00, 0x4a, + 0x84, 0xa3, 0x4b, 0x81, 0x1e, 0x00, 0x00, 0xff, 0xa9, 0x00, 0xff, 0xff, + 0x00, 0x00, 0x02, 0x00, 0x02, 0x04, 0x26, 0x8f, 0x40, 0x3b, 0xae, 0xb8, + 0xbb, 0xae, 0xb8, 0x26, 0x8f, 0x40, 0x4b, 0x90, 0x28, 0x4b, 0x12, 0x66, + 0x42, 0x7f, 0x90, 0x9c, 0xff, 0x79, 0xff, 0xff, 0xff, 0xff, 0xd1, 0xc5, + 0xcc, 0xd1, 0xff, 0xff, 0xc5, 0xcc, 0xd1, 0x00, 0x02, 0x00, 0x02, 0x03, + 0xa9, 0x33, 0x2f, 0x39, 0xef, 0x5c, 0xb9, 0xef, 0x5c, 0xa9, 0x33, 0x2f, + 0x4b, 0x26, 0x00, 0x4b, 0x81, 0x5c, 0x00, 0x17, 0x48, 0x61, 0xff, 0xa9, + 0x7a, 0x90, 0x9c, 0xff, 0xff, 0x7a, 0x90, 0x9c, 0x00, 0x02, 0x00, 0x06, + 0x03, 0x37, 0xd3, 0x33, 0x38, 0xef, 0xff, 0xb8, 0xef, 0xff, 0x37, 0xd3, + 0x33, 0x49, 0xf2, 0xe1, 0x4a, 0x59, 0x1e, 0x00, 0xc1, 0xcb, 0xd2, 0x75, + 0xff, 0xff, 0xff, 0xff, 0x9d, 0xab, 0xb6, 0x02, 0x01, 0x06, 0x02, 0x3a, + 0x45, 0xa1, 0x3a, 0xde, 0x69, 0xb8, 0xe2, 0x19, 0x38, 0x48, 0x16, 0x48, + 0xda, 0xf8, 0x4b, 0x31, 0xeb, 0x73, 0x73, 0x8b, 0x98, 0xfe, 0x20, 0x49, + 0x65, 0x02, 0x00, 0x06, 0x02, 0xba, 0x04, 0x7a, 0x3c, 0x0a, 0xb8, 0xbc, + 0x0a, 0xb8, 0xba, 0x04, 0x7a, 0x48, 0x39, 0x70, 0x47, 0xd7, 0x5c, 0x00, + 0xd2, 0xd2, 0xd2, 0xff, 0x84, 0x95, 0x9d, 0x02, 0x01, 0x06, 0x02, 0xb8, + 0xac, 0xd9, 0x3e, 0x1d, 0x2f, 0xbb, 0xac, 0x08, 0xb6, 0x52, 0xbd, 0x4a, + 0xee, 0x4f, 0x48, 0x89, 0x85, 0x00, 0x8a, 0x9e, 0xaa, 0xff, 0x3b, 0x60, + 0x7a, 0x02, 0x01, 0x06, 0x02, 0xb8, 0x66, 0x66, 0x3d, 0xc7, 0xae, 0xbc, + 0x58, 0x79, 0xb6, 0xf9, 0xdb, 0x49, 0x38, 0x9e, 0x46, 0x0c, 0xc2, 0x00, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0xb9, 0xc0, 0x2d, 0x00, 0x04, 0x40, 0x52, + 0x40, 0x52, 0x44, 0x52, 0x48, 0x5c, 0x42, 0x5c, 0x4e, 0x5c, 0x54, 0x56, + 0x50, 0x52, 0xc8, 0xc8, 0xc9, 0x94, 0x5c, 0x5e, 0xc9, 0xd7, 0xca, 0xa3, + 0x5c, 0x5e, 0x06, 0x07, 0xfe, 0x1f, 0x2e, 0x53, 0x2c, 0x4d, 0x2a, 0x51, + 0xb8, 0x4f, 0xc3, 0xdd, 0x30, 0x45, 0xb8, 0xd8, 0xc2, 0xce, 0x32, 0x46, + 0x36, 0x48, 0x34, 0x47, 0x34, 0x4c, 0x30, 0x54, 0x32, 0x50, 0xb9, 0x1b, + 0xc7, 0x96, 0x2e, 0x53, 0xb8, 0xd8, 0xc7, 0x73, 0x2e, 0x53, 0x53, 0x06, + 0x07, 0xfe, 0x1f, 0x2e, 0x53, 0x2c, 0x4d, 0x2a, 0x51, 0xb8, 0x4f, 0xc3, + 0xdd, 0x30, 0x45, 0xb8, 0xd8, 0xc2, 0xce, 0x32, 0x46, 0x36, 0x48, 0x34, + 0x47, 0x34, 0x4c, 0x30, 0x54, 0x32, 0x50, 0xb9, 0x1b, 0xc7, 0x96, 0x2e, + 0x53, 0xb8, 0xd8, 0xc7, 0x73, 0x2e, 0x53, 0x53, 0x06, 0x07, 0xef, 0x1f, + 0x3e, 0x4c, 0x3e, 0x4c, 0x3c, 0x4e, 0x38, 0x52, 0x3a, 0x50, 0x34, 0x56, + 0x30, 0x54, 0x2e, 0x4e, 0x2c, 0x52, 0xb9, 0x1b, 0xc4, 0x43, 0x32, 0x46, + 0xb9, 0xa3, 0xc3, 0x34, 0x36, 0x48, 0x3e, 0x4c, 0x3a, 0x4a, 0x3e, 0x4c, + 0x4c, 0x06, 0x07, 0xfe, 0x1f, 0x3a, 0x4f, 0x32, 0x4b, 0x36, 0x49, 0x2e, + 0x4d, 0x2e, 0x51, 0x2e, 0x51, 0x2e, 0x56, 0x2e, 0x60, 0x2e, 0x5b, 0x32, + 0x60, 0x3a, 0x60, 0x36, 0x60, 0x3a, 0xca, 0x3d, 0x3a, 0x4f, 0x3a, 0xc7, + 0xfc, 0x3a, 0x4f, 0x4f, 0x06, 0x07, 0xfe, 0x1f, 0x3a, 0x4f, 0x32, 0x4b, + 0x36, 0x49, 0x2e, 0x4d, 0x2e, 0x51, 0x2e, 0x51, 0x2e, 0x56, 0x2e, 0x60, + 0x2e, 0x5b, 0x32, 0x60, 0x3a, 0x60, 0x36, 0x60, 0x3a, 0xca, 0x3d, 0x3a, + 0x4f, 0x3a, 0xc7, 0xfc, 0x3a, 0x4f, 0x4f, 0x06, 0x07, 0xff, 0x1b, 0x32, + 0x53, 0x32, 0x53, 0x32, 0xc9, 0x0b, 0x32, 0x60, 0x32, 0xca, 0xc6, 0xbb, + 0x3b, 0x60, 0x3a, 0x60, 0xbc, 0x4c, 0x60, 0x3a, 0xca, 0x3d, 0x3a, 0x4f, + 0x3a, 0xc7, 0xfc, 0x3a, 0x4f, 0x36, 0x4d, 0x3a, 0x4b, 0x32, 0x4f, 0x32, + 0x53, 0x53, 0x06, 0x07, 0xef, 0x1f, 0x42, 0x4e, 0x42, 0x4e, 0xc0, 0x04, + 0xc6, 0x64, 0x3e, 0x56, 0xbf, 0x7c, 0xc7, 0x73, 0x3c, 0x5a, 0x38, 0x58, + 0x36, 0x52, 0x34, 0x56, 0xbc, 0x4c, 0xc5, 0xdb, 0x3a, 0x4a, 0xbc, 0xd3, + 0xc4, 0xcc, 0xbe, 0x6b, 0xc4, 0x43, 0x42, 0x4e, 0xbf, 0x7c, 0xc4, 0xcc, + 0x42, 0x4e, 0x4e, 0x00, 0x07, 0x30, 0x45, 0x30, 0x45, 0xbb, 0x3b, 0xc2, + 0xab, 0x3e, 0x4c, 0xbd, 0x18, 0xc3, 0x9a, 0x3c, 0x50, 0x38, 0x58, 0x3a, + 0x54, 0xbc, 0x4c, 0xc9, 0x2e, 0x36, 0x57, 0xbc, 0x07, 0xc9, 0x0b, 0x36, + 0x57, 0x34, 0x51, 0x32, 0x55, 0xbb, 0x3b, 0xc5, 0xfe, 0x36, 0x4d, 0xbb, + 0x80, 0xc5, 0x75, 0x34, 0x4c, 0x30, 0x4a, 0x32, 0x4b, 0x30, 0x4a, 0x00, + 0x07, 0x30, 0x45, 0x30, 0x45, 0xbb, 0x3b, 0xc2, 0xab, 0x3e, 0x4c, 0xbd, + 0x18, 0xc3, 0x9a, 0x3c, 0x50, 0x38, 0x58, 0x3a, 0x54, 0xbc, 0x4c, 0xc9, + 0x2e, 0x36, 0x57, 0xbc, 0x07, 0xc9, 0x0b, 0x36, 0x57, 0x34, 0x51, 0x32, + 0x55, 0xbb, 0x3b, 0xc5, 0xfe, 0x36, 0x4d, 0xbb, 0x80, 0xc5, 0x75, 0x34, + 0x4c, 0x30, 0x4a, 0x32, 0x4b, 0x30, 0x4a, 0x06, 0x07, 0xef, 0x1f, 0x42, + 0x4e, 0x42, 0x4e, 0xc0, 0x04, 0xc6, 0x64, 0x3e, 0x56, 0xbf, 0x7c, 0xc7, + 0x73, 0x3c, 0x5a, 0x38, 0x58, 0x36, 0x52, 0x34, 0x56, 0xbc, 0x4c, 0xc5, + 0xdb, 0x3a, 0x4a, 0xbc, 0xd3, 0xc4, 0xcc, 0xbe, 0x6b, 0xc4, 0x43, 0x42, + 0x4e, 0xbf, 0x7c, 0xc4, 0xcc, 0x42, 0x4e, 0x4e, 0x06, 0x06, 0xff, 0x07, + 0x3c, 0x55, 0x3c, 0x55, 0x3c, 0xc8, 0x8e, 0x3a, 0x57, 0xbd, 0xcc, 0x57, + 0xbc, 0xea, 0x57, 0x38, 0x55, 0x38, 0xc8, 0x8e, 0x38, 0xc7, 0xac, 0x3a, + 0x53, 0xbc, 0xea, 0x53, 0xbd, 0xcc, 0x53, 0x3c, 0x55, 0x3c, 0xc7, 0xac, + 0x3c, 0x55, 0x55, 0x06, 0x06, 0xff, 0x07, 0x50, 0x29, 0x50, 0x29, 0x4e, + 0x27, 0x45, 0x24, 0xc3, 0xc6, 0xb5, 0x00, 0xbf, 0x7c, 0xb9, 0x3e, 0x34, + 0x47, 0xbd, 0x39, 0xbd, 0xe3, 0xbc, 0x4c, 0xc3, 0x34, 0x3e, 0x4c, 0xbd, + 0x9f, 0xc3, 0xdd, 0x44, 0xbf, 0xe1, 0x50, 0x29, 0x4a, 0xbb, 0x3c, 0x50, + 0x29, 0x29, 0x02, 0x0a, 0x50, 0x29, 0x50, 0x29, 0x4e, 0x27, 0x4a, 0x2a, + 0x4b, 0x28, 0xc1, 0xdf, 0xba, 0xb3, 0x3c, 0x46, 0xc0, 0x04, 0xbe, 0x6c, + 0x3b, 0x48, 0x3e, 0x4c, 0x3c, 0x4b, 0xc0, 0x04, 0xc5, 0x0f, 0x46, 0x50, + 0xc1, 0x13, 0xc5, 0x98, 0x48, 0x51, 0x4c, 0x4e, 0x4b, 0x50, 0x50, 0x46, + 0x58, 0x36, 0x54, 0x3e, 0x59, 0x34, 0x57, 0x2f, 0x59, 0x31, 0xc7, 0xfc, + 0x2d, 0x50, 0x29, 0xc7, 0x0d, 0x2b, 0x50, 0x29, 0x50, 0x29, 0x50, 0x29, + 0x50, 0x29, 0x02, 0x0a, 0x3c, 0x22, 0x3c, 0x22, 0x38, 0x21, 0x33, 0x26, + 0x35, 0x22, 0xb9, 0x3e, 0xb8, 0x0b, 0x29, 0x3a, 0xb7, 0xe9, 0xba, 0xb4, + 0x27, 0x3e, 0x2c, 0x43, 0x28, 0x41, 0xb8, 0xd8, 0xc1, 0x79, 0x34, 0x47, + 0xb9, 0xe8, 0xc2, 0x02, 0x38, 0x49, 0x3d, 0x44, 0x3b, 0x48, 0x41, 0x3c, + 0x49, 0x2c, 0x45, 0x34, 0x4b, 0x28, 0x45, 0x24, 0x49, 0x25, 0x42, 0xb4, + 0x53, 0x3c, 0x22, 0x3f, 0xb4, 0x10, 0x3c, 0x22, 0x3c, 0x22, 0x3c, 0x22, + 0x3c, 0x22, 0x06, 0x06, 0xff, 0x07, 0x50, 0x29, 0x50, 0x29, 0x4e, 0x27, + 0x45, 0x24, 0xc3, 0xc6, 0xb5, 0x00, 0xbf, 0x7c, 0xb9, 0x3e, 0x34, 0x47, + 0xbd, 0x39, 0xbd, 0xe3, 0xbc, 0x4c, 0xc3, 0x34, 0x3e, 0x4c, 0xbd, 0x9f, + 0xc3, 0xdd, 0x44, 0xbf, 0xe1, 0x50, 0x29, 0x4a, 0xbb, 0x3c, 0x50, 0x29, + 0x29, 0x02, 0x0a, 0x50, 0x29, 0x50, 0x29, 0x4e, 0x27, 0x4a, 0x2a, 0x4b, + 0x28, 0xc1, 0xdf, 0xba, 0xb3, 0x3c, 0x46, 0xc0, 0x04, 0xbe, 0x6c, 0x3b, + 0x48, 0x3e, 0x4c, 0x3c, 0x4b, 0xc0, 0x04, 0xc5, 0x0f, 0x46, 0x50, 0xc1, + 0x13, 0xc5, 0x98, 0x48, 0x51, 0x4c, 0x4e, 0x4b, 0x50, 0x50, 0x46, 0x58, + 0x36, 0x54, 0x3e, 0x59, 0x34, 0x57, 0x2f, 0x59, 0x31, 0xc7, 0xfc, 0x2d, + 0x50, 0x29, 0xc7, 0x0d, 0x2b, 0x50, 0x29, 0x50, 0x29, 0x50, 0x29, 0x50, + 0x29, 0x02, 0x0a, 0x3c, 0x22, 0x3c, 0x22, 0x38, 0x21, 0x33, 0x26, 0x35, + 0x22, 0xb9, 0x3e, 0xb8, 0x0b, 0x29, 0x3a, 0xb7, 0xe9, 0xba, 0xb4, 0x27, + 0x3e, 0x2c, 0x43, 0x28, 0x41, 0xb8, 0xd8, 0xc1, 0x79, 0x34, 0x47, 0xb9, + 0xe8, 0xc2, 0x02, 0x38, 0x49, 0x3d, 0x44, 0x3b, 0x48, 0x41, 0x3c, 0x49, + 0x2c, 0x45, 0x34, 0x4b, 0x28, 0x45, 0x24, 0x49, 0x25, 0x42, 0xb4, 0x53, + 0x3c, 0x22, 0x3f, 0xb4, 0x10, 0x3c, 0x22, 0x3c, 0x22, 0x3c, 0x22, 0x3c, + 0x22, 0x00, 0x02, 0xc0, 0x3a, 0xb6, 0xe2, 0xc0, 0x3a, 0xb6, 0xe2, 0xc0, + 0x9c, 0xb6, 0x17, 0xc1, 0x61, 0xb4, 0x82, 0xc0, 0xfe, 0xb5, 0x4d, 0xc1, + 0x61, 0xb4, 0x82, 0x00, 0x02, 0xba, 0x7f, 0xbf, 0x6a, 0xba, 0x7f, 0xbf, + 0x6a, 0xba, 0x1f, 0xc0, 0x30, 0x30, 0x45, 0xb9, 0xbf, 0xc0, 0xf7, 0x30, + 0x45, 0x00, 0x02, 0xba, 0xa6, 0xc2, 0x60, 0xba, 0xa6, 0xc2, 0x60, 0xbb, + 0x07, 0xc1, 0x97, 0xbb, 0xcb, 0xc0, 0x05, 0xbb, 0x69, 0xc0, 0xce, 0xbb, + 0xcb, 0xc0, 0x05, 0x00, 0x02, 0xbe, 0xd7, 0xb6, 0x78, 0xbe, 0xd7, 0xb6, + 0x78, 0xbf, 0x35, 0xb5, 0xb6, 0xbf, 0xf3, 0x23, 0xbf, 0x94, 0xb4, 0xf4, + 0xbf, 0xf3, 0x23, 0x00, 0x02, 0xbe, 0x82, 0xb3, 0xe0, 0xbe, 0x82, 0xb3, + 0xe0, 0x3c, 0xb4, 0x9a, 0xbd, 0x74, 0xb6, 0x0e, 0xbd, 0xce, 0xb5, 0x54, + 0xbd, 0x74, 0xb6, 0x0e, 0x00, 0x02, 0xb9, 0x35, 0xbe, 0xcf, 0xb9, 0x35, + 0xbe, 0xcf, 0xb8, 0xd6, 0xbf, 0x93, 0xb8, 0x19, 0xc1, 0x1a, 0xb8, 0x78, + 0xc0, 0x56, 0xb8, 0x19, 0xc1, 0x1a, 0x00, 0x02, 0xbb, 0x00, 0xba, 0x4b, + 0xbb, 0x00, 0xba, 0x4b, 0xba, 0x31, 0xb9, 0xfd, 0x2e, 0x30, 0xb9, 0x62, + 0xb9, 0xae, 0x2e, 0x30, 0x00, 0x02, 0xb7, 0xfb, 0x33, 0xb7, 0xfb, 0x33, + 0xb8, 0xc8, 0xba, 0xe5, 0xba, 0x64, 0xbb, 0x8d, 0xb9, 0x96, 0xbb, 0x39, + 0xba, 0x64, 0xbb, 0x8d, 0x00, 0x02, 0xb9, 0xc8, 0xbc, 0xd1, 0xb9, 0xc8, + 0xbc, 0xd1, 0xb8, 0xfb, 0xbc, 0x77, 0x2b, 0x36, 0x2d, 0xbc, 0x1d, 0x2b, + 0x36, 0x00, 0x02, 0xb6, 0xc9, 0x39, 0xb6, 0xc9, 0x39, 0xb7, 0x94, 0xbd, + 0x55, 0xb9, 0x2a, 0xbe, 0x13, 0xb8, 0x5f, 0xbd, 0xb4, 0xb9, 0x2a, 0xbe, + 0x13, 0x00, 0x02, 0x4f, 0x48, 0x4f, 0x48, 0xc5, 0x3a, 0xc2, 0xa5, 0xc4, + 0x3a, 0xc2, 0x10, 0xc4, 0xba, 0xc2, 0x5b, 0xc4, 0x3a, 0xc2, 0x10, 0x00, + 0x02, 0xc3, 0x97, 0xc3, 0x4d, 0xc3, 0x97, 0xc3, 0x4d, 0xc4, 0x1a, 0xc3, + 0x94, 0xc5, 0x21, 0x4b, 0xc4, 0x9d, 0xc3, 0xdb, 0xc5, 0x21, 0x4b, 0x00, + 0x02, 0xba, 0x5f, 0x27, 0xba, 0x5f, 0x27, 0xbb, 0x31, 0xb6, 0x08, 0xbc, + 0xd5, 0xb6, 0x85, 0xbc, 0x03, 0xb6, 0x47, 0xbc, 0xd5, 0xb6, 0x85, 0x00, + 0x03, 0xc0, 0x4c, 0xb7, 0x8e, 0xc0, 0x4c, 0xb7, 0x8e, 0xc1, 0x36, 0xb7, + 0xd4, 0xc3, 0x09, 0xb8, 0x61, 0xc2, 0x1f, 0xb8, 0x1a, 0xc3, 0x8c, 0xb8, + 0xca, 0xc4, 0x91, 0xb9, 0x9d, 0xc4, 0x0e, 0xb9, 0x33, 0xc4, 0x91, 0xb9, + 0x9d, 0x00, 0x02, 0xc7, 0x67, 0xbb, 0xe6, 0xc7, 0x67, 0xbb, 0xe6, 0xc7, + 0xd7, 0xbc, 0x41, 0xc8, 0xb7, 0x39, 0xc8, 0x47, 0xbc, 0x9b, 0xc8, 0xb7, + 0x39, 0x00, 0x02, 0x55, 0x3c, 0x55, 0x3c, 0xc7, 0xab, 0xbd, 0xd0, 0xc6, + 0xc5, 0xbd, 0x21, 0xc7, 0x38, 0xbd, 0x79, 0xc6, 0xc5, 0xbd, 0x21, 0x00, + 0x02, 0xc6, 0x22, 0xbe, 0x5e, 0xc6, 0x22, 0xbe, 0x5e, 0xc6, 0x98, 0xbe, + 0xb2, 0xc7, 0x85, 0x3f, 0xc7, 0x0e, 0xbf, 0x06, 0xc7, 0x85, 0x3f, 0x00, + 0x02, 0x52, 0x42, 0x52, 0x42, 0xc6, 0x72, 0xc0, 0x3b, 0xc5, 0x7f, 0xbf, + 0x99, 0xc5, 0xf9, 0xbf, 0xea, 0xc5, 0x7f, 0xbf, 0x99, 0x00, 0x02, 0xc4, + 0xdd, 0xc0, 0xd5, 0xc4, 0xdd, 0xc0, 0xd5, 0xc5, 0x5a, 0xc1, 0x22, 0xc6, + 0x53, 0x45, 0xc5, 0xd6, 0xc1, 0x70, 0xc6, 0x53, 0x45, 0x00, 0x03, 0xbc, + 0x65, 0xbf, 0x98, 0xbc, 0x65, 0xbf, 0x98, 0xbd, 0x36, 0xbf, 0xfa, 0xbe, + 0xda, 0xc0, 0xbf, 0xbe, 0x08, 0xc0, 0x5c, 0xbf, 0x63, 0xc1, 0x08, 0xc0, + 0x74, 0xc1, 0x9b, 0xbf, 0xeb, 0xc1, 0x51, 0xc0, 0x74, 0xc1, 0x9b, 0x00, + 0x03, 0xc1, 0x23, 0xc0, 0x45, 0xc1, 0x23, 0xc0, 0x45, 0xc0, 0x9c, 0xbf, + 0xf7, 0xbf, 0x8d, 0x3f, 0xc0, 0x14, 0xbf, 0xa8, 0xbe, 0xb7, 0xbe, 0xfc, + 0xbd, 0x0c, 0xbe, 0x40, 0xbd, 0xe1, 0xbe, 0x9e, 0xbd, 0x0c, 0xbe, 0x40, + 0x00, 0x02, 0xb9, 0x2d, 0x2d, 0xb9, 0x2d, 0x2d, 0xb9, 0xfd, 0xb8, 0x77, + 0xbb, 0x9d, 0xb9, 0x09, 0xba, 0xcd, 0xb8, 0xc0, 0xbb, 0x9d, 0xb9, 0x09, + 0x00, 0x02, 0xbc, 0x38, 0x2c, 0xbc, 0x38, 0x2c, 0xbb, 0x67, 0xb7, 0x83, + 0x31, 0x2a, 0xba, 0x96, 0xb7, 0x40, 0x31, 0x2a, 0x00, 0x03, 0xc3, 0xe1, + 0xba, 0xf0, 0xc3, 0xe1, 0xba, 0xf0, 0xc3, 0x5e, 0xba, 0x8d, 0xc2, 0x57, + 0x31, 0xc2, 0xda, 0xba, 0x29, 0xc1, 0x71, 0xb9, 0x7b, 0xbf, 0xa6, 0xb8, + 0xe5, 0x42, 0xb9, 0x30, 0xbf, 0xa6, 0xb8, 0xe5, 0x00, 0x03, 0xbf, 0x00, + 0xba, 0x3c, 0xbf, 0x00, 0xba, 0x3c, 0xbf, 0xe1, 0xba, 0x8b, 0xc1, 0xa4, + 0xbb, 0x2b, 0xc0, 0xc3, 0xba, 0xdb, 0xc2, 0x29, 0xbb, 0x89, 0xc3, 0x32, + 0xbc, 0x46, 0xc2, 0xad, 0xbb, 0xe8, 0xc3, 0x32, 0xbc, 0x46, 0x00, 0x03, + 0xbd, 0xb2, 0xbc, 0xe9, 0xbd, 0xb2, 0xbc, 0xe9, 0xbe, 0x8c, 0xbd, 0x42, + 0xc0, 0x3f, 0xbd, 0xf5, 0xbf, 0x65, 0xbd, 0x9b, 0xc0, 0xc6, 0xbe, 0x48, + 0xc1, 0xd3, 0xbe, 0xef, 0xc1, 0x4c, 0xbe, 0x9c, 0xc1, 0xd3, 0xbe, 0xef, + 0x00, 0x03, 0xc2, 0x82, 0xbd, 0x9b, 0xc2, 0x82, 0xbd, 0x9b, 0xc1, 0xfd, + 0xbd, 0x42, 0x43, 0x38, 0xc1, 0x77, 0xbc, 0xe9, 0xc0, 0x14, 0xbc, 0x3b, + 0xbe, 0x58, 0xbb, 0x93, 0xbf, 0x36, 0xbb, 0xe7, 0xbe, 0x58, 0xbb, 0x93, + 0x11, 0x0a, 0x00, 0x01, 0x00, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, + 0x01, 0x01, 0x01, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x02, 0x01, + 0x02, 0x00, 0x0a, 0x03, 0x01, 0x03, 0x00, 0x0a, 0x04, 0x01, 0x04, 0x10, + 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x05, 0x01, 0x05, 0x00, 0x0a, 0x06, + 0x01, 0x06, 0x00, 0x0a, 0x01, 0x02, 0x07, 0x08, 0x10, 0x01, 0x17, 0x84, + 0x00, 0x04, 0x0a, 0x07, 0x01, 0x09, 0x00, 0x0a, 0x08, 0x01, 0x0a, 0x00, + 0x0a, 0x01, 0x01, 0x0b, 0x00, 0x0a, 0x01, 0x03, 0x0c, 0x0d, 0x0e, 0x10, + 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x09, 0x01, 0x0f, 0x00, 0x0a, 0x0a, + 0x01, 0x10, 0x00, 0x0a, 0x0b, 0x01, 0x11, 0x00, 0x0a, 0x01, 0x06, 0x12, + 0x13, 0x14, 0x15, 0x16, 0x17, 0x10, 0x01, 0x17, 0x82, 0x00, 0x04, 0x0a, + 0x01, 0x15, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, + 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x10, + 0x01, 0x17, 0x82, 0x00, 0x04 }; -const media_icon M_AUDIO_OUTPUT_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x1c,0x1c, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x1c,0x1c,0x1c, - 0x1c,0x1c,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c, - 0x1c,0x1c,0x1c,0x1c,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c, - 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c, - 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x17,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x3f,0x3f,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c, - 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x17,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x17,0x3f,0x3f,0x1c,0x1c,0x1c,0x1c, - 0x1c,0x1c,0x1c,0x1c,0x1c,0x17,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x17,0x17,0x17,0x3f,0x3f,0x1d,0x1c, - 0x1c,0x1c,0x1c,0x1c,0x17,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x17,0x17,0x17,0x18,0x17,0x3f,0x3f, - 0x1c,0x1c,0x1c,0x17,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x00,0x00,0x00,0x18,0x17,0x17,0x17, - 0x3f,0x3f,0x17,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x00,0x0b,0x0a,0x0b,0x00,0x00,0x17,0x17, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x00,0x08,0x0b,0x0b,0x0a,0x0b,0x00,0x17, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x00,0x0b,0x08,0x09,0x08,0x0b,0x08,0x11, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x00,0x0b,0x08,0x17,0x0f,0x0b,0x0f,0x08, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x00,0x0b,0x08,0x0f,0x0f,0x0a,0x0f,0x09, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x00,0x0b,0x0a,0x0b,0x0a,0x0f,0x0f,0x09, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x00,0x0b,0x11,0x0f,0x11,0x0f,0x08, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x11,0x09,0x0f,0x0f,0x0e,0x11,0x09, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x17,0x11,0x08,0x09,0x08,0x09,0x17, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x17,0x17,0x17,0x17,0x2d,0xeb,0x17, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x17,0x17,0x2d,0x2b,0x17, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x18,0x17,0x17, - 0x17,0x14,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x17, - 0x17,0x14,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17, - 0x17,0x14,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x14,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x3f,0x1c,0x1c,0x1c,0x1c,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x3f,0x3f,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x17,0x18,0x3f,0x3f,0x1c,0x1c,0x1c,0x17,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x17,0x17,0x18,0x18,0x3f,0x3f,0x17,0x0f,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x11,0x00,0x00,0x11,0x17,0x14,0x0f,0x0f,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x08,0x09,0x00,0x11,0x14,0x0f,0x0f,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x08,0x0f,0x0b,0x0b,0x14,0x0f,0x0f,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x11,0x00,0x0a,0x0b,0x0b,0x14,0x0f,0x0f,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x17,0x11,0x08,0x09,0x11,0x14,0x0f,0x0f,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x17,0x17,0x17,0x17,0x17,0x14,0x0f,0x0f,0x00,0x0f,0x0f,0xff, - 0xff,0xff,0xff,0x00,0x00,0x17,0x17,0xeb,0x17,0x14,0x0f,0x0f,0x00,0x0f,0x0f,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x14,0x0f,0x00,0x0f,0x0f,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x14,0x00,0x0f,0x0f,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff - } +const unsigned char M_AUDIO_OUTPUT_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x0b, 0x04, 0x01, 0x74, 0x05, 0x00, 0x02, 0x00, + 0x16, 0x02, 0x3b, 0xec, 0x7c, 0x3d, 0x46, 0x4b, 0xbd, 0xc2, 0x11, 0x3c, + 0x40, 0x66, 0x4a, 0x53, 0xa4, 0x49, 0x21, 0x70, 0x00, 0xdd, 0xff, 0xc5, + 0x02, 0x00, 0x16, 0x02, 0x3b, 0x9e, 0x03, 0x2f, 0xed, 0x63, 0xb0, 0xf2, + 0x4f, 0x3c, 0xb6, 0xc1, 0x4a, 0x53, 0x3f, 0x3a, 0xbe, 0x84, 0x00, 0xff, + 0xff, 0xc5, 0x02, 0x00, 0x16, 0x02, 0x39, 0x5e, 0x1e, 0x32, 0xdb, 0x49, + 0xb6, 0x92, 0x1a, 0x3d, 0x07, 0xd7, 0x4a, 0x57, 0x90, 0x49, 0x08, 0xd6, + 0x00, 0x64, 0xff, 0x8c, 0x05, 0x01, 0x02, 0x03, 0x16, 0x04, 0xbe, 0xbe, + 0x2b, 0xbe, 0xe9, 0x57, 0x3e, 0xe9, 0x57, 0xbe, 0xbe, 0x2b, 0x48, 0xb7, + 0x78, 0x4a, 0x2f, 0xd3, 0x00, 0x01, 0xc2, 0x70, 0xd0, 0x73, 0xff, 0xff, + 0x02, 0x01, 0x16, 0x03, 0x3b, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x3c, 0x20, 0x00, 0x48, 0x40, 0x00, 0x49, 0xe0, 0x00, 0x00, 0x84, + 0xbe, 0x4b, 0xff, 0x32, 0x02, 0x03, 0x16, 0x02, 0x3c, 0x4e, 0x21, 0x3d, + 0x44, 0xda, 0xbd, 0x44, 0xda, 0x3c, 0x4e, 0x21, 0x49, 0x26, 0x89, 0x4a, + 0x42, 0x8e, 0xa1, 0x43, 0xff, 0xff, 0x02, 0x03, 0x16, 0x03, 0xbc, 0x6b, + 0x27, 0xbd, 0x2f, 0x9c, 0x3d, 0x2f, 0x9c, 0xbc, 0x6b, 0x27, 0x48, 0xb0, + 0xfd, 0x4a, 0x3d, 0x7c, 0x2a, 0x01, 0xb2, 0x28, 0xff, 0xff, 0x03, 0x00, + 0xff, 0x00, 0x07, 0x0a, 0x04, 0x46, 0x60, 0x4e, 0x60, 0x60, 0x4c, 0x54, + 0x47, 0x0a, 0x04, 0x26, 0x2b, 0x26, 0x4e, 0x46, 0x5e, 0x46, 0x34, 0x0a, + 0x04, 0x46, 0x35, 0x46, 0x5e, 0x56, 0x4e, 0x56, 0x2a, 0x0a, 0x04, 0x26, + 0x2b, 0x46, 0x35, 0x56, 0x2a, 0x39, 0x22, 0x0a, 0x06, 0x26, 0x2b, 0x26, + 0x4e, 0x46, 0x5e, 0x56, 0x4e, 0x56, 0x2a, 0x39, 0x22, 0x02, 0x04, 0xb9, + 0xa4, 0xbb, 0x36, 0xbc, 0x05, 0xba, 0x54, 0xb7, 0x43, 0xbc, 0x17, 0xb7, + 0x73, 0x47, 0xb6, 0x49, 0xbf, 0x5e, 0xb8, 0x9e, 0xc5, 0xb6, 0xbd, 0xdd, + 0xc6, 0xb1, 0xbb, 0x7c, 0xc7, 0x92, 0xc0, 0x3f, 0xc5, 0xd0, 0xc0, 0x10, + 0xbf, 0x5c, 0xc1, 0x3b, 0xc2, 0x88, 0xbe, 0xe6, 0xbc, 0x31, 0x02, 0x04, + 0xc0, 0x1c, 0xc7, 0xc0, 0xc0, 0x6d, 0xc7, 0xa7, 0xbf, 0xca, 0xc7, 0xd9, + 0xbf, 0xc5, 0xc8, 0xb1, 0xbf, 0xa5, 0xc8, 0x45, 0xbf, 0xe8, 0xc9, 0x1c, + 0xc0, 0x94, 0xc9, 0x46, 0xc0, 0x43, 0xc9, 0x5f, 0xc0, 0xe6, 0xc9, 0x2d, + 0xc0, 0xeb, 0xc8, 0x55, 0xc1, 0x0b, 0xc8, 0xc1, 0xc0, 0xc8, 0xc7, 0xeb, + 0x0c, 0x0a, 0x00, 0x01, 0x00, 0x20, 0x21, 0x21, 0x0a, 0x01, 0x01, 0x04, + 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x02, 0x01, 0x01, 0x00, 0x0a, + 0x03, 0x01, 0x03, 0x00, 0x0a, 0x04, 0x01, 0x02, 0x00, 0x0a, 0x05, 0x01, + 0x05, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x06, 0x01, 0x05, 0x00, + 0x0a, 0x07, 0x01, 0x05, 0x02, 0x3d, 0xbb, 0xbb, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x3d, 0xbb, 0xbb, 0x47, 0x44, 0x44, 0x48, 0x62, 0x22, 0x0a, + 0x08, 0x01, 0x05, 0x1a, 0x3f, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x3f, 0xa0, 0x00, 0x41, 0xff, 0xfb, 0x42, 0xff, 0xfd, 0x13, 0xff, + 0x01, 0x17, 0x81, 0x00, 0x04, 0x0a, 0x09, 0x01, 0x05, 0x1a, 0x3f, 0x38, + 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3d, 0xfb, 0x44, 0x32, + 0x85, 0x45, 0x59, 0x5c, 0x13, 0xff, 0x01, 0x17, 0x82, 0x00, 0x04, 0x0a, + 0x01, 0x01, 0x06, 0x10, 0x01, 0x17, 0x82, 0x00, 0x04, 0x0a, 0x0a, 0x01, + 0x06, 0x00 }; -const media_icon M_AUDIO_MIXER_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x17,0x17,0x18, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x17,0x17,0x18,0x17, - 0x17,0x18,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x17,0x3c,0x36,0x17,0x18, - 0x17,0x17,0x18,0x17,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x17,0x17,0x18,0x17,0x31,0x2b, - 0x18,0x18,0x3f,0x16,0x18,0x17,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x17,0x17,0x18,0x17,0x17,0x18,0x17, - 0x18,0x00,0x00,0x3f,0x0a,0x0b,0x17,0x18,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x17,0x17,0x18,0x17,0x17,0x18,0x17,0x18, - 0x17,0x11,0x11,0x0b,0x3f,0x11,0x00,0x17,0x17,0x18,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x17,0x3c,0x36,0x17,0x18,0x17,0x17,0x18,0x17, - 0x18,0x17,0x0b,0x3f,0x11,0x00,0x00,0x3f,0x3f,0x17,0x17,0x18,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x3f,0x17,0x17,0x18,0x17,0x31,0x2b,0x18,0x18,0x3f,0x16, - 0x18,0x17,0x17,0x00,0x00,0x11,0x11,0x00,0x00,0x3f,0x17,0x17,0x18,0x0a,0x00,0xff, - 0xff,0xff,0xff,0x00,0x3f,0x17,0x17,0x18,0x17,0x17,0x18,0x17,0x18,0x00,0x00,0x3f, - 0x0a,0x0b,0x17,0x18,0x17,0x17,0x18,0x11,0x11,0x00,0x17,0x17,0x0b,0x0b,0x00,0xff, - 0xff,0xff,0x00,0x3f,0x17,0x17,0x18,0x17,0x17,0x18,0x17,0x18,0x17,0x11,0x11,0x0b, - 0x3f,0x11,0x00,0x17,0x17,0x18,0x17,0x17,0x18,0x17,0x18,0x0a,0x0b,0x0a,0x00,0xff, - 0xff,0x00,0x3f,0x17,0x3c,0x36,0x17,0x18,0x17,0x17,0x18,0x17,0x18,0x17,0x0b,0x3f, - 0x11,0x00,0x00,0x3f,0x3f,0x17,0x17,0x18,0x17,0x17,0x0b,0x0b,0x0a,0x00,0x00,0xff, - 0x00,0x3f,0x17,0x17,0x18,0x17,0x31,0x2b,0x18,0x18,0x3f,0x16,0x18,0x17,0x17,0x00, - 0x00,0x11,0x11,0x00,0x00,0x3f,0x17,0x17,0x18,0x0a,0x0b,0x0b,0x00,0x0a,0x00,0xff, - 0x00,0x3f,0x3f,0x17,0x17,0x18,0x17,0x17,0x18,0x00,0x00,0x3f,0x0a,0x0b,0x17,0x18, - 0x17,0x17,0x18,0x11,0x11,0x00,0x17,0x17,0x0b,0x0b,0x0a,0x00,0x0b,0x0b,0x00,0x0e, - 0x00,0x11,0x11,0x3f,0x3f,0x17,0x17,0x18,0x17,0x11,0x11,0x0b,0x3f,0x11,0x00,0x17, - 0x17,0x18,0x17,0x17,0x18,0x17,0x18,0x0a,0x0b,0x0a,0x00,0x0b,0x0b,0x0a,0x00,0x0f, - 0x00,0x11,0x11,0x11,0x11,0x3f,0x3f,0x17,0x17,0x18,0x0a,0x3f,0x11,0x00,0x00,0x3f, - 0x3f,0x17,0x17,0x18,0x17,0x17,0x0b,0x0b,0x0a,0x00,0x0b,0x0b,0x0a,0x00,0x0f,0x0f, - 0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x3f,0x17,0x17,0x00,0x00,0x11,0x11,0x00, - 0x00,0x3f,0x17,0x17,0x18,0x0a,0x0b,0x0b,0x00,0x0a,0x0b,0x0a,0x00,0x0f,0x0f,0x0f, - 0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x3f,0x17,0x17,0x18,0x17,0x11, - 0x11,0x00,0x17,0x18,0x0a,0x0b,0x0b,0x00,0x0a,0x0b,0x0b,0x00,0x0e,0x0f,0x0f,0xff, - 0x00,0x11,0x11,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x3f,0x17,0x17,0x18, - 0x17,0x17,0x18,0x0a,0x0b,0x0b,0x00,0x0a,0x0b,0x0b,0x00,0x0e,0x0f,0x0f,0xff,0xff, - 0x00,0x11,0x11,0x11,0x11,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x3f,0x3f,0x17, - 0x17,0x18,0x0a,0x0b,0x0b,0x00,0x0a,0x0b,0x0a,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff, - 0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x3f, - 0x17,0x0b,0x0a,0x0b,0x00,0x0a,0x0b,0x0b,0x00,0x0f,0x0e,0x0f,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x11,0x11,0x11,0x11,0x11, - 0x0a,0x0b,0x0a,0x00,0x0b,0x0b,0x0a,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x11,0x11,0x11, - 0x0a,0x0b,0x00,0x0a,0x0b,0x0b,0x00,0x0f,0x0e,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x11, - 0x0a,0x00,0x0b,0x0a,0x0b,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00, - 0x00,0x0a,0x0b,0x0a,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x11,0x11,0x11,0x11,0x11, - 0x0a,0x0b,0x0a,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x11,0x11,0x11, - 0x0a,0x0b,0x00,0x0f,0x0f,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x11, - 0x0a,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x0e,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x17,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x17,0x17,0x18,0x3f,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x17,0x17,0x31,0x18,0x00,0x3f,0x3f,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0x00,0x17,0x17,0x18,0x3f,0x17,0x17,0x00,0x00,0x3f,0x3f,0x00,0x00,0xff, - 0xff,0x00,0x17,0x17,0x31,0x18,0x00,0x3f,0x3f,0x17,0x17,0x00,0x00,0x18,0x17,0x00, - 0x00,0x17,0x18,0x17,0x3f,0x17,0x17,0x00,0x00,0x3f,0x3f,0x17,0x17,0x18,0x0a,0x00, - 0x00,0x3f,0x31,0x17,0x00,0x3f,0x3f,0x17,0x17,0x00,0x00,0x18,0x17,0x0b,0x04,0x00, - 0x00,0x17,0x18,0x3f,0x3f,0x00,0x00,0x3f,0x3f,0x17,0x17,0x18,0x0a,0x05,0x0a,0x00, - 0x00,0x11,0x11,0x18,0x17,0x3f,0x3f,0x00,0x00,0x17,0x17,0x0b,0x04,0x0b,0x00,0x0f, - 0x00,0x04,0x04,0x11,0x11,0x18,0x17,0x3f,0x3f,0x17,0x0b,0x04,0x0a,0x00,0x0f,0xff, - 0x00,0x11,0x11,0x04,0x04,0x11,0x11,0x17,0x18,0x0a,0x05,0x0a,0x00,0x0f,0xff,0xff, - 0xff,0x00,0x00,0x11,0x11,0x04,0x04,0x11,0x0b,0x04,0x0b,0x00,0x0e,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x11,0x11,0x04,0x04,0x0b,0x00,0x0f,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x11,0x0a,0x00,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x0e,0xff,0xff,0xff,0xff,0xff,0xff - } +const unsigned char M_AUDIO_MIXER_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x0b, 0x05, 0x00, 0x02, 0x00, 0x06, 0x02, 0x3d, + 0xc5, 0xe1, 0xbc, 0x73, 0xd5, 0x3c, 0x62, 0x65, 0x3d, 0xab, 0x0d, 0x4a, + 0x35, 0xee, 0x48, 0x54, 0x64, 0x00, 0x70, 0xb6, 0xda, 0xff, 0x34, 0x50, + 0x79, 0x02, 0x00, 0x06, 0x02, 0xbb, 0x7a, 0x5d, 0x3d, 0x9a, 0x2a, 0xbd, + 0x60, 0x87, 0xbb, 0x42, 0xb7, 0x4b, 0x87, 0x6d, 0x4a, 0x31, 0xcc, 0xb3, + 0x56, 0x76, 0xa7, 0xff, 0x25, 0x35, 0x4d, 0x03, 0x2b, 0x2b, 0x48, 0x03, + 0xad, 0xc7, 0xed, 0x02, 0x00, 0x06, 0x02, 0x3d, 0xc2, 0x29, 0xbb, 0xf7, + 0xdb, 0x3b, 0x67, 0x68, 0x3d, 0x39, 0x58, 0x48, 0x00, 0xde, 0x46, 0x28, + 0xcd, 0x00, 0x99, 0xbe, 0xf6, 0xff, 0x46, 0x6b, 0xa3, 0x04, 0x00, 0x67, + 0x03, 0xff, 0x00, 0x00, 0x05, 0xff, 0x02, 0x03, 0x06, 0x03, 0x11, 0x1e, + 0xb8, 0xbb, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x12, 0x14, 0x7a, 0x4a, 0x20, + 0x00, 0x49, 0xe0, 0x00, 0x2c, 0xa8, 0xc2, 0xd0, 0x7f, 0xff, 0xff, 0xff, + 0xb7, 0xa8, 0xc2, 0xd0, 0x02, 0x00, 0x06, 0x02, 0x3e, 0x30, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xe0, 0x00, 0x47, 0xc0, 0x00, 0x48, + 0xc0, 0x00, 0x9b, 0xff, 0xff, 0xff, 0xff, 0x33, 0x83, 0xac, 0x0f, 0x0a, + 0x04, 0x23, 0x40, 0x4a, 0x54, 0x5c, 0x3e, 0x36, 0x2d, 0x06, 0x04, 0xbe, + 0x23, 0x40, 0x21, 0x46, 0x21, 0x43, 0x24, 0x48, 0x48, 0x5b, 0x44, 0x59, + 0x48, 0x58, 0x4a, 0x54, 0x0a, 0x04, 0x22, 0x41, 0x48, 0x55, 0x48, 0x56, + 0x22, 0x42, 0x06, 0x04, 0x6b, 0x48, 0x5b, 0x4a, 0x58, 0x48, 0x57, 0x49, + 0x54, 0x5b, 0x3e, 0x44, 0x0a, 0x04, 0x33, 0x2f, 0x38, 0x28, 0x5c, 0x39, + 0x58, 0x40, 0x0a, 0x04, 0x34, 0x2e, 0x34, 0x30, 0x58, 0x42, 0x58, 0x40, + 0x0a, 0x04, 0x58, 0x40, 0x5c, 0x39, 0x5c, 0x3f, 0x59, 0x43, 0x06, 0x0a, + 0x6b, 0x9a, 0x09, 0x21, 0x46, 0x24, 0x48, 0x21, 0x43, 0x23, 0x40, 0x33, + 0x31, 0x2f, 0x37, 0x27, 0x5c, 0x39, 0x3f, 0x5b, 0x41, 0x44, 0x48, 0x5b, + 0x0a, 0x05, 0x48, 0x5d, 0x4e, 0x5b, 0x60, 0x46, 0x60, 0x3c, 0x5d, 0x39, + 0x0a, 0x04, 0x38, 0x2a, 0x36, 0x2e, 0x41, 0x33, 0x43, 0x2f, 0x0a, 0x04, + 0x3a, 0x2c, 0x39, 0x2e, 0x3b, 0x2f, 0x3b, 0x2d, 0x0a, 0x04, 0x34, 0x33, + 0x32, 0x35, 0x36, 0x37, 0x38, 0x35, 0x0a, 0x04, 0x2e, 0x42, 0x2d, 0x43, + 0x48, 0x51, 0x49, 0x50, 0x02, 0x04, 0x42, 0x45, 0x3e, 0x45, 0x46, 0x45, + 0x4a, 0x3f, 0x4a, 0x42, 0x4a, 0x3c, 0x42, 0x39, 0x46, 0x39, 0x3e, 0x39, + 0x3a, 0x3f, 0x3a, 0x3c, 0x3a, 0x42, 0x04, 0x05, 0xb6, 0x01, 0x3a, 0x3f, + 0x44, 0x42, 0x48, 0x3d, 0x48, 0x47, 0x48, 0x4a, 0x44, 0x3f, 0x18, 0x0a, + 0x06, 0x01, 0x08, 0x00, 0x0a, 0x01, 0x01, 0x00, 0x00, 0x0a, 0x02, 0x01, + 0x01, 0x00, 0x0a, 0x03, 0x01, 0x03, 0x00, 0x0a, 0x04, 0x01, 0x02, 0x00, + 0x0a, 0x04, 0x01, 0x02, 0x20, 0x20, 0x23, 0x0a, 0x05, 0x01, 0x04, 0x00, + 0x0a, 0x03, 0x01, 0x05, 0x00, 0x0a, 0x03, 0x01, 0x06, 0x00, 0x0a, 0x00, + 0x01, 0x07, 0x10, 0x01, 0x17, 0x82, 0x00, 0x04, 0x0a, 0x00, 0x01, 0x09, + 0x00, 0x0a, 0x07, 0x01, 0x0a, 0x00, 0x0a, 0x07, 0x01, 0x0a, 0x02, 0x41, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0xc6, + 0x20, 0x00, 0x42, 0x00, 0x00, 0x0a, 0x00, 0x01, 0x0b, 0x00, 0x0a, 0x00, + 0x01, 0x0b, 0x20, 0x1b, 0x25, 0x0a, 0x00, 0x01, 0x0b, 0x20, 0x16, 0x2a, + 0x0a, 0x08, 0x01, 0x0c, 0x00, 0x0a, 0x08, 0x01, 0x0c, 0x02, 0x3f, 0x24, + 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xee, 0xee, 0x49, 0x19, + 0x24, 0xc5, 0x77, 0x77, 0x0a, 0x06, 0x01, 0x0d, 0x20, 0x23, 0x25, 0x0a, + 0x0a, 0x01, 0x0e, 0x00, 0x0a, 0x00, 0x01, 0x0e, 0x10, 0x01, 0x17, 0x82, + 0x00, 0x04, 0x0a, 0x09, 0x01, 0x0d, 0x00, 0x0a, 0x00, 0x01, 0x0a, 0x02, + 0x41, 0x35, 0xfa, 0x40, 0x62, 0xae, 0xbf, 0x2e, 0x3d, 0x40, 0x23, 0xfc, + 0x42, 0xc9, 0xea, 0xc8, 0x46, 0x4c, 0x0a, 0x00, 0x01, 0x0d, 0x10, 0x01, + 0x17, 0x82, 0x00, 0x04 }; -const media_icon M_AUDIO_PRODUCER_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x63,0x63,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x5c,0x5c,0x5c,0x63,0x63,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x5c,0x5c,0x00,0x00,0x5c,0x63, - 0x63,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x00,0x00,0x17,0x00,0x00,0x5c, - 0x5c,0x63,0x63,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x3f,0x00,0x17,0x00,0x00,0x00,0x5c, - 0x5c,0x5c,0x5c,0x63,0x63,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x3f,0x00,0x17,0x00,0x00,0x00,0x00,0x00, - 0x5c,0x5c,0x5c,0x00,0x00,0x63,0x63,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x3f,0x00,0x17,0x00,0x00,0x00,0x14,0x3f,0x00, - 0x00,0x00,0x00,0x17,0x00,0x00,0x5c,0x63,0x63,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x3f,0x3f,0x00,0x17,0x00,0x00,0x00,0x14,0x3f,0x00,0x3f, - 0x3f,0x00,0x17,0x00,0x00,0x00,0x00,0x00,0x5c,0x63,0x63,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x3f,0x3f,0x00,0x3f,0x00,0x00,0x00,0x14,0x3f,0x00,0x3f,0x3f, - 0x00,0x17,0x00,0x00,0x00,0x00,0x17,0x00,0x00,0x5c,0x5c,0x63,0x63,0x00,0x00,0xff, - 0xff,0xff,0x00,0x3f,0x3f,0x3f,0x00,0x00,0x00,0x00,0x14,0x3f,0x00,0x3f,0x3f,0x00, - 0x17,0x00,0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x5c,0x5c,0x5c,0x5c,0x63,0x00,0xff, - 0xff,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x3f,0x00,0x14,0x3f,0x00,0x3f,0x3f,0x00,0x17, - 0x00,0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x00,0x00,0x5c,0x5c,0x5c,0x00,0x00,0xff, - 0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x3f,0x3f,0x00,0x3f,0x00, - 0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x14,0x3f,0x00,0x00,0x00,0x5c,0x00,0x00,0xff, - 0x00,0x3f,0x3f,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x3f,0x3f,0x3f,0x00,0x00,0x00, - 0x00,0x00,0x17,0x00,0x00,0x00,0x14,0x3f,0x00,0x3f,0x3f,0x3f,0x00,0x63,0x00,0xff, - 0xff,0x00,0x00,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x3f,0x00, - 0x00,0x3f,0x00,0x00,0x00,0x14,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x63,0x00,0xff, - 0xff,0x00,0x17,0x00,0x00,0x3f,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x3f,0x3f,0x3f, - 0x00,0x00,0x00,0x00,0x14,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x00,0x63,0x00,0x0f, - 0xff,0x00,0x1c,0x17,0x17,0x00,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x3f,0x3f,0x3f,0x3f, - 0x00,0x3f,0x00,0x14,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x14,0x00,0x63,0x00,0x0f, - 0xff,0x00,0x00,0x1c,0x1c,0x17,0x17,0x00,0x00,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00, - 0x3f,0x3f,0x3f,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x14,0x14,0x00,0x00,0x0f,0x0f, - 0xff,0xff,0xff,0x00,0x00,0x1c,0x1c,0x17,0x17,0x00,0x00,0x3f,0x3f,0x3f,0x00,0x3f, - 0x3f,0x3f,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x14,0x14,0x14,0x00,0x0f,0x0f,0x0f, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x1c,0x1c,0x17,0x17,0x00,0x00,0x00,0x3f,0x3f, - 0x3f,0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x14,0x14,0x14,0x00,0x0f,0x0f,0x0f,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x1c,0x1c,0x17,0x17,0x00,0x00,0x3f, - 0x3f,0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x14,0x14,0x14,0x00,0x0f,0x0f,0x0f,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x1c,0x1c,0x17,0x17,0x00, - 0x00,0x3f,0x3f,0x3f,0x3f,0x00,0x14,0x14,0x14,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x1c,0x1c,0x17, - 0x17,0x00,0x00,0x3f,0x00,0x14,0x14,0x14,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x1c, - 0x1c,0x17,0x17,0x00,0x14,0x14,0x14,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x1c,0x1c,0x17,0x14,0x14,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x1c,0x14,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x5c,0x5c,0x63,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x3f,0x00,0x00,0x5c,0x5c,0x63,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x63,0x00,0x00,0xff,0xff, - 0xff,0x00,0x3f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x5c,0x5c,0x63,0x00,0xff, - 0x00,0x3f,0x3f,0x00,0x00,0x3f,0x00,0x14,0x00,0x14,0x00,0x00,0x5c,0x5c,0x00,0xff, - 0x00,0x3f,0x00,0x3f,0x3f,0x00,0x14,0x00,0x14,0x00,0x00,0x3f,0x00,0x00,0x00,0xff, - 0x00,0x00,0x00,0x3f,0x00,0x3f,0x00,0x14,0x00,0x00,0x3f,0x00,0x3f,0x0f,0x00,0xff, - 0x00,0x17,0x17,0x00,0x00,0x00,0x3f,0x3f,0x00,0x3f,0x00,0x3f,0x3f,0x0f,0x00,0x0f, - 0xff,0x00,0x00,0x17,0x17,0x00,0x00,0x00,0x3f,0x00,0x3f,0x3f,0x00,0x0f,0x00,0x0f, - 0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x00,0x00,0x3f,0x3f,0x00,0x14,0x00,0x0f,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x00,0x00,0x14,0x00,0x0f,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x14,0x00,0x0f,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x0f,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - } +const unsigned char M_AUDIO_PRODUCER_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x08, 0x05, 0x00, 0x02, 0x01, 0x06, 0x02, 0x38, + 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0xe0, 0x00, 0x49, + 0x40, 0x00, 0x45, 0x00, 0x00, 0x00, 0xf7, 0xc0, 0x7f, 0xff, 0xa7, 0x6b, + 0x24, 0x02, 0x01, 0x06, 0x02, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x36, 0xff, 0xff, 0x49, 0x40, 0x00, 0x49, 0xe0, 0x00, 0x00, + 0xc7, 0x87, 0x3b, 0xff, 0xa7, 0x6b, 0x24, 0x02, 0x01, 0x06, 0x03, 0x3c, + 0x9f, 0xa4, 0x32, 0x8f, 0x99, 0xb3, 0xa6, 0xd1, 0x3d, 0xbd, 0xb1, 0x48, + 0xd1, 0xb2, 0x4a, 0x3b, 0xbe, 0x00, 0xff, 0xff, 0xff, 0x49, 0xfd, 0xed, + 0x7b, 0xff, 0x8a, 0x8c, 0x22, 0x02, 0x00, 0x12, 0x02, 0x3b, 0x40, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x4b, 0x30, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x6a, 0xff, 0x01, 0x46, 0x02, 0x01, 0x06, + 0x03, 0x3c, 0xa1, 0x76, 0x34, 0x58, 0x0d, 0xb3, 0x5f, 0x0b, 0x3b, 0xc8, + 0xa1, 0x48, 0x1b, 0xae, 0x4a, 0xea, 0xe4, 0x00, 0xfe, 0xfa, 0xdd, 0x49, + 0xfd, 0xed, 0x7b, 0xff, 0xad, 0xa9, 0x3d, 0x02, 0x01, 0x06, 0x03, 0x3c, + 0xa1, 0x76, 0x34, 0x58, 0x0d, 0xb3, 0x5f, 0x0b, 0x3b, 0xc8, 0xa1, 0x49, + 0xfb, 0xae, 0x4a, 0x3a, 0xe4, 0x00, 0xfe, 0xfa, 0xdd, 0x49, 0xfd, 0xed, + 0x7b, 0xff, 0xad, 0xa9, 0x3d, 0x02, 0x00, 0x06, 0x02, 0x39, 0x80, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x48, 0x80, 0x00, + 0x4b, 0xc0, 0x00, 0x00, 0xd3, 0xd5, 0x0b, 0xff, 0x49, 0x43, 0x11, 0x0a, + 0x06, 0x04, 0xfe, 0x38, 0x54, 0x34, 0x58, 0x34, 0xc8, 0x6d, 0x34, 0xca, + 0x31, 0x38, 0x5c, 0xbb, 0xad, 0x5c, 0xbd, 0x71, 0x5c, 0x3c, 0x58, 0x3c, + 0xca, 0x31, 0x3c, 0x58, 0x02, 0x06, 0x3c, 0x3e, 0xc0, 0x1f, 0x3e, 0xbc, + 0x2f, 0x3e, 0x32, 0x49, 0xba, 0xc5, 0xc0, 0xea, 0x31, 0x4d, 0x2e, 0x51, + 0x2e, 0x4d, 0x2e, 0xc8, 0x48, 0x3c, 0x5a, 0xbb, 0x12, 0x5a, 0xc1, 0x3c, + 0x5a, 0x4a, 0x51, 0x4a, 0xc8, 0x48, 0x4a, 0x4d, 0x46, 0x49, 0x47, 0x4d, + 0xc1, 0x89, 0xc0, 0xea, 0x06, 0x05, 0xfb, 0x02, 0x3c, 0x22, 0x40, 0x22, + 0x38, 0x22, 0x38, 0x28, 0xbd, 0x4c, 0xbd, 0x41, 0xbc, 0xde, 0xba, 0x38, + 0xbd, 0x4c, 0xbd, 0x41, 0xbe, 0xff, 0xbd, 0x5b, 0xbe, 0xff, 0xbd, 0x5b, + 0xbf, 0x6e, 0xba, 0x4f, 0x40, 0x28, 0x02, 0x03, 0xbd, 0x4c, 0xbd, 0x41, + 0xbd, 0x4c, 0xbd, 0x41, 0xbd, 0x8e, 0xbf, 0x15, 0x3c, 0x42, 0x36, 0x42, + 0x42, 0x42, 0xbe, 0xff, 0xbd, 0x5b, 0xbe, 0xbe, 0xbf, 0x22, 0xbe, 0xff, + 0xbd, 0x5b, 0x06, 0x06, 0xbb, 0x0f, 0x3e, 0x60, 0x38, 0x60, 0x44, 0x60, + 0x52, 0x5a, 0x60, 0x58, 0x60, 0x5e, 0x60, 0x52, 0x52, 0x56, 0x3e, 0x52, + 0x44, 0x52, 0x38, 0x52, 0x30, 0x59, 0x30, 0x53, 0x30, 0x5f, 0x02, 0x04, + 0xb9, 0xec, 0x4a, 0xba, 0x52, 0x48, 0xb9, 0x91, 0xc4, 0x71, 0xbb, 0x1e, + 0x54, 0xb8, 0xba, 0x52, 0xbc, 0x50, 0x55, 0xbf, 0x80, 0x55, 0xbf, 0x1a, + 0x56, 0xbf, 0xe5, 0x54, 0xbb, 0x84, 0x51, 0xbc, 0xb6, 0x53, 0xba, 0x52, + 0x4f, 0x02, 0x08, 0x41, 0x44, 0xc0, 0x5a, 0xc1, 0x22, 0xbf, 0xe7, 0xc1, + 0x95, 0xc1, 0x6a, 0xc4, 0xc3, 0xc0, 0xed, 0x49, 0xc1, 0x8b, 0xc5, 0x25, + 0xc2, 0x2a, 0xc5, 0xb9, 0xc1, 0xd7, 0xc5, 0x79, 0xc2, 0x5d, 0xc5, 0xdd, + 0xc2, 0xae, 0xc6, 0x93, 0xc2, 0x9a, 0xc6, 0x34, 0x48, 0x54, 0x43, 0x58, + 0xc0, 0xc9, 0xc9, 0x4a, 0xc1, 0xa4, 0xc9, 0x69, 0x49, 0x53, 0x48, 0x55, + 0xc3, 0x96, 0xc6, 0xd0, 0xc2, 0xf3, 0x4e, 0xc3, 0x4d, 0xc5, 0xb2, 0xc2, + 0xa8, 0xc5, 0x05, 0xc2, 0x14, 0xc3, 0xfa, 0xc2, 0x4b, 0xc4, 0x9a, 0xc1, + 0xa7, 0xc2, 0xb7, 0x02, 0x02, 0x2f, 0x3e, 0x29, 0x42, 0x28, 0x3f, 0x26, + 0x4e, 0x23, 0x45, 0x25, 0x46, 0x02, 0x02, 0x4a, 0x3e, 0x51, 0x3f, 0x4e, + 0x41, 0x52, 0x4e, 0x52, 0x44, 0x55, 0x45, 0x02, 0x02, 0x4a, 0x36, 0x55, + 0x36, 0x54, 0x39, 0x5a, 0x4e, 0x5b, 0x41, 0x5f, 0x41, 0x0b, 0x0a, 0x04, + 0x01, 0x04, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x10, 0x01, 0x17, 0x84, 0x00, + 0x04, 0x0a, 0x07, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x01, 0x01, 0x10, 0x01, + 0x17, 0x84, 0x00, 0x04, 0x0a, 0x03, 0x01, 0x01, 0x00, 0x0a, 0x00, 0x02, + 0x02, 0x03, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x01, 0x01, 0x02, + 0x00, 0x0a, 0x02, 0x01, 0x03, 0x00, 0x0a, 0x05, 0x01, 0x05, 0x00, 0x0a, + 0x06, 0x01, 0x06, 0x00, 0x0a, 0x00, 0x03, 0x09, 0x08, 0x07, 0x00 }; -const media_icon M_AUDIO_FILTER_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x0e, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x5c,0x5c, - 0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x5c,0xd8,0x3f, - 0x3f,0x5c,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x5c,0xd8,0x17,0x3f, - 0x17,0x00,0x5c,0x5c,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x5c,0xd8,0xd8,0x00,0x0e, - 0x0e,0x00,0xd8,0x3f,0x3f,0x5c,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0xfb,0xfb,0xd8,0xd8,0x00, - 0x00,0xd8,0x17,0x3f,0x17,0x00,0x5c,0x5c,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x0e,0x5c,0x5c,0xfb,0xfb,0xd8, - 0xd8,0xd8,0x00,0x0e,0x0e,0x00,0xd8,0x3f,0x3f,0x5c,0x0e,0x0e,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x5c,0x5c,0x0e,0x0e,0x5c,0x5c,0xfb, - 0xfb,0xd8,0xd8,0x00,0x00,0xd8,0x17,0x3f,0x17,0x00,0x5c,0x5c,0x0e,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x5c,0xd8,0xd8,0x5c,0x5c,0x0e,0x0e,0x5c, - 0x5c,0xfb,0xfb,0xd8,0xd8,0xd8,0x00,0x0e,0x0e,0x00,0xd8,0xfb,0x3f,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x5c,0xd8,0xd8,0xd8,0xd8,0x5c,0x5c,0x0e, - 0x0e,0x5c,0x5c,0xfb,0xfb,0xd8,0xd8,0x00,0x00,0xd8,0xfb,0x3f,0x5c,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x5c,0xd8,0x0e,0x0e,0xd8,0xd8,0xd8,0x5c,0xda, - 0x7b,0x0e,0x0e,0x5c,0x5c,0xfb,0xfb,0xd8,0xd8,0xfb,0x3f,0x5c,0xa9,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x0e,0x5c,0xd8,0x0e,0x00,0x00,0x0e,0x0e,0xd8,0x5c,0x7b, - 0x2a,0x5c,0x5c,0x0e,0x0e,0x5c,0x5c,0xfb,0xfb,0x3f,0x5c,0xa9,0xa9,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0x0e,0x5c,0xd8,0x0e,0x00,0x0e,0x0e,0x00,0x00,0x0e,0x0e,0x5c, - 0x5c,0x5c,0xd8,0x5c,0x5c,0x0e,0x0e,0x5c,0x5c,0x5c,0xa9,0xa9,0xa9,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0x0e,0x5c,0xd8,0x0e,0x00,0x00,0x00,0x0e,0x0e,0x00,0x00,0x0e, - 0x0e,0xd8,0xd8,0xd8,0xd8,0x5c,0x5c,0xa9,0x0e,0xa9,0x17,0x17,0xa9,0x00,0xff,0xff, - 0xff,0xff,0xff,0x0e,0x5c,0xd8,0x0e,0x00,0x0e,0x0e,0x00,0x00,0x00,0x0e,0x0e,0x00, - 0x00,0x0e,0x0e,0xd8,0xd8,0xd8,0xfb,0x0e,0xa9,0x3f,0x00,0x0e,0xa9,0x00,0xff,0xff, - 0xff,0xff,0x0e,0x5c,0xd8,0x0e,0x0e,0x00,0x00,0x00,0x0e,0x0e,0x00,0x00,0x00,0x0e, - 0x0e,0x00,0x00,0x0e,0xd8,0xfb,0x5c,0x0e,0xa9,0x17,0x00,0x0e,0xa9,0x00,0xff,0xff, - 0xff,0x00,0x5c,0xfb,0xfb,0xd8,0xd8,0x0e,0x0e,0x00,0x00,0x00,0x0e,0x0e,0x00,0x00, - 0x00,0x0e,0x00,0x0e,0xd8,0xfb,0x0e,0x09,0xa9,0x0e,0x0e,0xa9,0x00,0x0f,0x0f,0xff, - 0xff,0x00,0x5c,0x5c,0x5c,0xfb,0xfb,0xd8,0xd8,0x0e,0x0e,0x00,0x00,0x00,0x0e,0x0e, - 0x00,0x00,0x0e,0xd8,0xfb,0x5c,0x09,0xa9,0xa9,0xa9,0xa9,0x00,0x0f,0x0f,0xff,0xff, - 0xff,0xff,0x00,0x5c,0x5c,0x5c,0x5c,0xfb,0xfb,0xd8,0xd8,0x0e,0x0e,0x00,0x00,0x00, - 0x00,0x0e,0xd8,0xfb,0x5c,0x5c,0x09,0xa9,0xa9,0xa9,0x00,0x0f,0x0f,0xff,0xff,0xff, - 0xff,0xff,0x00,0x0e,0x0e,0x5c,0x5c,0x5c,0x5c,0xfb,0xfb,0xd8,0xd8,0x0e,0x0e,0x00, - 0x0e,0xd8,0xfb,0x5c,0x5c,0x09,0xa9,0xa9,0xa9,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0xff,0x00,0x5c,0x09,0x09,0x0e,0x0e,0x5c,0x5c,0x5c,0x5c,0xfb,0xfb,0xd8,0xd8,0x0e, - 0x0e,0xd8,0xfb,0x5c,0x09,0xa9,0xa9,0xa9,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x5c,0x5c,0x09,0x09,0x0e,0x0e,0x5c,0x5c,0x5c,0x5c,0xfb,0xfb,0xd8, - 0xd8,0xfb,0x5c,0x5c,0x09,0xa9,0xa9,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x5c,0x5c,0x09,0x09,0x0e,0x0e,0x5c,0x5c,0x5c,0x5c,0xfb, - 0xfb,0x5c,0x5c,0x09,0xa9,0xa9,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x5c,0x5c,0x09,0x09,0x0e,0x0e,0x5c,0x5c,0x5c, - 0xfb,0x5c,0x09,0xa9,0xa9,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x5c,0x5c,0x09,0x09,0x0e,0x0e,0x5c, - 0xfb,0x0e,0x09,0xa9,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x5c,0x5c,0x09,0x09,0x0e, - 0x0e,0x09,0xa9,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x5c,0x5c,0x09, - 0x09,0xa9,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x5c, - 0x00,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x0e,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x0e,0x0e,0x3f,0x00,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x0e,0xd8,0x00,0x0e,0x3f,0x00,0x0e,0x0e,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x0e,0xa9,0xfb,0xfb,0xd8,0x00,0x0e,0x3f,0x00,0x0e,0x0e,0xff, - 0xff,0xff,0xff,0x0e,0x5c,0xd8,0x5c,0x0e,0xfb,0xfb,0xd8,0x00,0xd8,0x3f,0x00,0xff, - 0xff,0xff,0x0e,0x5c,0x0e,0x0e,0xd8,0xda,0x2a,0x0e,0xfb,0xd8,0x3f,0xa9,0x00,0xff, - 0xff,0x0e,0x5c,0x0e,0x00,0x00,0x0e,0x0e,0xda,0xd8,0x5c,0xa9,0x17,0x0e,0x00,0xff, - 0x0e,0x5c,0xd8,0x0e,0x00,0x00,0x00,0x00,0x0e,0xd8,0xfb,0x17,0x00,0x0e,0x00,0xff, - 0x00,0x5c,0xfb,0xd8,0x0e,0x0e,0x00,0x00,0x0e,0x5c,0x0e,0xa9,0x0e,0x00,0x0f,0xff, - 0x00,0x09,0x5c,0x5c,0xfb,0xd8,0x0e,0x0e,0xd8,0x5c,0x09,0xa9,0x00,0x0f,0xff,0xff, - 0x00,0x0e,0x09,0x09,0x5c,0x5c,0xfb,0xd8,0xfb,0x09,0xa9,0x00,0x0f,0xff,0xff,0xff, - 0x00,0x00,0x0e,0x0e,0x09,0x09,0x5c,0xfb,0x09,0xa9,0x00,0x0f,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x0e,0x0e,0x09,0x09,0x09,0x00,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x0e,0x0e,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - } +const unsigned char M_AUDIO_FILTER_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x0a, 0x05, 0x00, 0x04, 0x00, 0x63, 0x02, 0x00, + 0x06, 0x02, 0x3a, 0x9c, 0xfb, 0x3b, 0x07, 0x44, 0xbd, 0x68, 0x2d, 0x3c, + 0xf0, 0x9a, 0x49, 0x8c, 0xd7, 0x4a, 0x42, 0xf0, 0x00, 0x79, 0x82, 0x91, + 0xff, 0x5b, 0x69, 0x7d, 0x02, 0x00, 0x06, 0x02, 0x39, 0xd8, 0xc8, 0x38, + 0x57, 0x6f, 0xbb, 0x1e, 0xa3, 0x3c, 0x90, 0x06, 0x4b, 0x3b, 0x28, 0x4a, + 0x08, 0xcd, 0x00, 0x24, 0x34, 0x4b, 0xff, 0x48, 0x55, 0x67, 0x02, 0x00, + 0x06, 0x02, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x4a, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0xc6, 0xcb, 0xd2, + 0xff, 0x66, 0x6f, 0x7d, 0x03, 0x2a, 0x26, 0x40, 0x05, 0xc7, 0x02, 0x00, + 0x16, 0x02, 0x36, 0x22, 0x7d, 0x36, 0x57, 0xc8, 0xb7, 0x69, 0xc1, 0x37, + 0x1c, 0x1e, 0x48, 0x89, 0xa1, 0x48, 0x27, 0x1f, 0x00, 0xff, 0xff, 0xc9, + 0x02, 0x00, 0x16, 0x02, 0x37, 0x5f, 0x68, 0x37, 0xe8, 0x95, 0xbd, 0x68, + 0x2d, 0x3c, 0xf0, 0x9a, 0x49, 0x8c, 0xd7, 0x46, 0x4b, 0xc3, 0x00, 0xe2, + 0xff, 0x89, 0x05, 0x97, 0x0c, 0x0a, 0x04, 0x5c, 0xc1, 0x1a, 0x46, 0x5a, + 0x4c, 0x5a, 0x60, 0xc1, 0xe6, 0x0a, 0x06, 0x22, 0x40, 0x22, 0x46, 0x46, + 0x58, 0x5a, 0x44, 0x5a, 0x38, 0x38, 0x2c, 0x0a, 0x04, 0x46, 0x50, 0x22, + 0x40, 0x22, 0x46, 0x46, 0x58, 0x0a, 0x04, 0x46, 0x50, 0x5a, 0x38, 0x5a, + 0x44, 0x46, 0x58, 0x0a, 0x04, 0x46, 0x50, 0x5a, 0x38, 0x38, 0x2c, 0x22, + 0x40, 0x0a, 0x06, 0xbd, 0x9b, 0xb7, 0xbf, 0xbd, 0xb0, 0xb8, 0x6d, 0xbe, + 0x7c, 0xb8, 0xba, 0xb8, 0xb5, 0xbe, 0x1a, 0xb8, 0xc9, 0xbe, 0x64, 0xbf, + 0x27, 0xb8, 0x6b, 0x0a, 0x06, 0xb7, 0xe8, 0xbd, 0xb4, 0xbd, 0xaf, 0xb8, + 0x6d, 0xbd, 0x9b, 0xb7, 0xbf, 0xb7, 0x3c, 0xbd, 0x9c, 0xb8, 0xc9, 0xbe, + 0x64, 0xb8, 0xb4, 0xbe, 0x1a, 0x0a, 0x04, 0xb8, 0xb4, 0xbe, 0x1a, 0xbe, + 0x7b, 0xb8, 0xba, 0xbd, 0xaf, 0xb8, 0x6d, 0xb7, 0xe8, 0xbd, 0xb4, 0x06, + 0x07, 0x9a, 0x36, 0x2e, 0x30, 0x2b, 0x33, 0x36, 0x31, 0x39, 0x34, 0x36, + 0x33, 0x31, 0x31, 0xba, 0x60, 0xba, 0x12, 0xb9, 0x2e, 0xb9, 0x79, 0x06, + 0x06, 0xba, 0x0e, 0x2e, 0x30, 0x2b, 0x33, 0x2e, 0x34, 0xb7, 0xfb, 0xba, + 0xab, 0xb9, 0x2d, 0xbb, 0x44, 0x31, 0x36, 0x34, 0x33, 0x31, 0x31, 0xba, + 0x5f, 0xba, 0x12, 0xb9, 0x2d, 0xb9, 0x79, 0x06, 0x05, 0x66, 0x03, 0x2b, + 0x33, 0x36, 0x31, 0x39, 0x36, 0x2e, 0x34, 0xb9, 0x2d, 0xbb, 0x44, 0xb7, + 0xfb, 0xba, 0xab, 0x0a, 0x04, 0x31, 0x36, 0x31, 0x39, 0x34, 0x36, 0x34, + 0x33, 0x1a, 0x0a, 0x01, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x01, 0x01, 0x10, + 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x02, 0x01, 0x02, 0x00, 0x0a, 0x03, + 0x01, 0x03, 0x00, 0x0a, 0x04, 0x01, 0x04, 0x00, 0x0a, 0x06, 0x01, 0x05, + 0x20, 0x20, 0x24, 0x0a, 0x03, 0x01, 0x06, 0x20, 0x20, 0x24, 0x0a, 0x05, + 0x01, 0x07, 0x20, 0x20, 0x24, 0x0a, 0x00, 0x01, 0x08, 0x30, 0x21, 0x24, + 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x07, 0x01, 0x09, 0x20, 0x21, 0x24, + 0x0a, 0x08, 0x01, 0x0a, 0x20, 0x21, 0x24, 0x0a, 0x09, 0x01, 0x0b, 0x20, + 0x21, 0x24, 0x0a, 0x06, 0x01, 0x05, 0x20, 0x29, 0x28, 0x0a, 0x03, 0x01, + 0x06, 0x20, 0x29, 0x28, 0x0a, 0x05, 0x01, 0x07, 0x20, 0x29, 0x28, 0x0a, + 0x00, 0x01, 0x08, 0x30, 0x32, 0x21, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, + 0x07, 0x01, 0x09, 0x20, 0x32, 0x21, 0x0a, 0x08, 0x01, 0x0a, 0x20, 0x32, + 0x21, 0x0a, 0x09, 0x01, 0x0b, 0x20, 0x32, 0x21, 0x0a, 0x06, 0x01, 0x05, + 0x20, 0x33, 0x2c, 0x0a, 0x03, 0x01, 0x06, 0x20, 0x33, 0x2c, 0x0a, 0x05, + 0x01, 0x07, 0x20, 0x33, 0x2c, 0x0a, 0x00, 0x01, 0x08, 0x30, 0x37, 0x2a, + 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x07, 0x01, 0x09, 0x20, 0x37, 0x2a, + 0x0a, 0x08, 0x01, 0x0a, 0x20, 0x37, 0x2a, 0x0a, 0x09, 0x01, 0x0b, 0x20, + 0x37, 0x2a }; -const media_icon M_AUDIO_CONSUMER_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1b,0x1c,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x1b,0x1c,0x1b,0x1c,0x1c,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1b,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1b,0x1c,0x1c, - 0x1b,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b, - 0x1c,0x1c,0x1b,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b, - 0x1c,0x1c,0x1b,0x1c,0x1b,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1b,0x1c, - 0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x3f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x17,0x18,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c, - 0x1b,0x1c,0x1c,0x1b,0x1c,0x3f,0x0e,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x0f,0x17,0x18,0x17,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c, - 0x1b,0x1c,0x1b,0x1c,0x3f,0x0e,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x0f,0x0f,0x0f,0x17,0x17,0x18,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b, - 0x1c,0x1c,0x1b,0x3f,0x0e,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x0f,0x00,0x00,0x0f,0x0f,0x17,0x17,0x18,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c, - 0x1c,0x1b,0x3f,0x0e,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x0f,0x00,0x00,0x00,0x00,0x0f,0x0f,0x17,0x17,0x18,0x3f,0x3f,0x1b,0x1c, - 0x1b,0x3f,0x0e,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x17,0x17,0x18,0x3f,0x1b, - 0x3f,0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x0f,0x00,0x00,0x37,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x17,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff, - 0x00,0x17,0x0f,0x00,0x00,0x37,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0x00,0x00,0x0f,0x0f,0x0f,0xff, - 0x00,0x17,0x0f,0x37,0x36,0x00,0x37,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0x00,0x17,0x0f,0x00,0x00,0x00,0x37,0x00,0x36,0x00,0x37,0x00,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0x00,0x0f,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x0f,0x00,0x00,0x00,0x37,0x36,0x37,0x00,0x37,0x00,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0x00,0x0f,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x0f,0x00,0x00,0x00,0x37,0x00,0x36,0x37,0x37,0x00,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0x00,0x0e,0xff,0xff,0xff,0xff, - 0x00,0x17,0x0f,0x00,0x00,0x00,0x00,0x00,0x37,0x00,0x00,0x36,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0x00,0x0e,0xff,0xff,0xff, - 0x00,0x17,0x3f,0x3f,0x00,0x00,0x00,0x00,0x37,0x00,0x00,0x00,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0x00,0x0f,0xff,0xff,0xff, - 0x00,0x17,0x17,0x18,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0e,0xff,0x00,0x0f,0xff,0xff,0xff, - 0xff,0x00,0x00,0x17,0x17,0x18,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0e,0x00,0x0f,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x18,0x3f,0x3f,0x00,0x00,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x00,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x18,0x3f,0x3f,0x00,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x0f,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x18,0x3f,0x3f,0x17,0x3f, - 0x0e,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x18,0x17,0x3f, - 0x0e,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x3f, - 0x0e,0x0f,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x3f, - 0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x0e,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x1b,0x1c,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x1b,0x1c,0x1b,0x1c,0x1c,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0x00,0x17,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x00,0xff,0xff,0xff,0xff, - 0x00,0x0e,0x18,0x17,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c,0x0f,0x00,0xff,0xff,0xff,0xff, - 0x00,0x0e,0x00,0x00,0x18,0x17,0x3f,0x3f,0x1b,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff, - 0x00,0x0e,0x00,0x00,0x00,0x00,0x18,0x17,0x0f,0x0f,0x0f,0x00,0xff,0xff,0x00,0x00, - 0x00,0x0e,0x36,0x00,0x37,0x00,0x00,0x18,0x0f,0x0f,0x0e,0x00,0xff,0x00,0x0e,0x0e, - 0x00,0x0e,0x00,0x36,0x37,0x00,0x00,0x18,0x0f,0x0f,0x0e,0x00,0xff,0x00,0x0e,0xff, - 0x00,0x0f,0x00,0x00,0x36,0x37,0x37,0x18,0x0e,0x0f,0x0f,0x00,0xff,0x00,0x0e,0xff, - 0x00,0x17,0x00,0x00,0x37,0x00,0x00,0x17,0x0f,0x0f,0x0f,0x00,0xff,0x00,0x0f,0xff, - 0x00,0x00,0x17,0x17,0x00,0x00,0x00,0x18,0x0f,0x0e,0x0f,0x00,0x00,0x00,0x0f,0xff, - 0xff,0xff,0x00,0x00,0x17,0x17,0x00,0x18,0x0f,0x0e,0x00,0x00,0x00,0x0e,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x17,0x17,0x0f,0x00,0x0f,0x0f,0x0e,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x0e,0x0f,0xff,0xff,0xff,0xff,0xff - } +const unsigned char M_AUDIO_CONSUMER_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x12, 0x03, 0x05, 0x00, 0x00, 0x01, 0x05, 0x00, + 0x00, 0x6c, 0x02, 0x00, 0x06, 0x02, 0x3d, 0x1a, 0x59, 0x3a, 0x6d, 0xaa, + 0xbc, 0xea, 0x4a, 0x3f, 0xb9, 0x97, 0x4a, 0x96, 0xac, 0xbf, 0x3b, 0x8e, + 0x00, 0xff, 0xe0, 0xa5, 0xff, 0xff, 0xcb, 0x65, 0x02, 0x00, 0x06, 0x02, + 0x38, 0x8c, 0x08, 0xba, 0xe9, 0x24, 0x3f, 0xaa, 0x23, 0x3d, 0x34, 0xe9, + 0xc4, 0x0f, 0x75, 0x4a, 0x1b, 0x03, 0x00, 0xff, 0xde, 0x9e, 0xff, 0xda, + 0xa4, 0x3b, 0x02, 0x00, 0x06, 0x02, 0x3d, 0x20, 0x56, 0x3b, 0x57, 0x0b, + 0xba, 0x1b, 0x35, 0x3b, 0xf1, 0x6b, 0x47, 0xf7, 0x87, 0x4a, 0x7d, 0x29, + 0x00, 0xda, 0xa4, 0x3b, 0xff, 0xbe, 0x82, 0x48, 0x02, 0x00, 0x06, 0x02, + 0xba, 0x47, 0x38, 0xb7, 0x53, 0x70, 0x3a, 0x1d, 0x03, 0xbc, 0xe5, 0x2c, + 0x4b, 0x0b, 0xb9, 0x4b, 0x00, 0xb7, 0x00, 0xe6, 0xa4, 0x63, 0xff, 0xa3, + 0x68, 0x39, 0x05, 0x86, 0x05, 0x52, 0x05, 0x50, 0x03, 0x71, 0x03, 0x03, + 0x03, 0xff, 0x00, 0x00, 0x02, 0x00, 0x06, 0x02, 0x38, 0x0e, 0x8f, 0xb6, + 0x78, 0x48, 0x39, 0x16, 0xa4, 0x3a, 0x92, 0x70, 0x48, 0xe4, 0xbe, 0x49, + 0x53, 0xe3, 0x00, 0x7e, 0x61, 0x3d, 0xff, 0x4c, 0x32, 0x12, 0x02, 0x00, + 0x06, 0x02, 0x38, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, + 0x80, 0x00, 0x49, 0x00, 0x00, 0x48, 0xc0, 0x00, 0x00, 0x62, 0x64, 0x49, + 0xff, 0x30, 0x32, 0x12, 0x05, 0xb4, 0x05, 0x7d, 0x02, 0x00, 0x16, 0x02, + 0x39, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x80, 0x00, + 0x49, 0x40, 0x00, 0x49, 0x20, 0x00, 0x00, 0x81, 0xff, 0x23, 0x02, 0x00, + 0x16, 0x03, 0x3a, 0x81, 0x47, 0xb8, 0x7f, 0x5c, 0x38, 0x7f, 0x5c, 0x3a, + 0x81, 0x47, 0x4a, 0x26, 0x8f, 0x4a, 0x81, 0xae, 0x00, 0xca, 0x7f, 0x00, + 0xff, 0xa6, 0x02, 0x01, 0x06, 0x02, 0x3c, 0x38, 0xab, 0x38, 0xc6, 0x56, + 0xb7, 0xe0, 0x06, 0x3b, 0x1a, 0x2d, 0x4a, 0x6a, 0x1f, 0x48, 0x9c, 0xad, + 0x00, 0xb3, 0x68, 0x20, 0xff, 0xe0, 0x9b, 0x42, 0x18, 0x06, 0x07, 0xca, + 0x3e, 0x5c, 0x3a, 0x40, 0x5c, 0xc0, 0xf1, 0x48, 0x59, 0x46, 0x5a, 0x4a, + 0x58, 0x4e, 0x57, 0x5e, 0x42, 0x5e, 0x42, 0x5f, 0x41, 0x5e, 0x3b, 0x60, + 0x3c, 0x5e, 0x3b, 0x06, 0x0c, 0x6e, 0xfa, 0xba, 0x26, 0x3f, 0x25, 0x44, + 0x26, 0x42, 0x24, 0x46, 0x22, 0x49, 0x4b, 0x40, 0x5a, 0x58, 0x3f, 0x5a, + 0x3a, 0x5a, 0x3d, 0x5a, 0x3a, 0x5a, 0x33, 0x5a, 0x33, 0x5a, 0x31, 0x56, + 0x2f, 0x4b, 0x2b, 0x44, 0x2a, 0x47, 0x2a, 0x41, 0x2a, 0x3e, 0x2c, 0x06, + 0x06, 0xba, 0x0e, 0x44, 0x4b, 0x26, 0x3f, 0x25, 0x44, 0x26, 0x42, 0x24, + 0x46, 0x22, 0x49, 0x40, 0x57, 0x43, 0x52, 0x42, 0x54, 0x44, 0x50, 0x0a, + 0x04, 0x22, 0x49, 0x40, 0x57, 0x40, 0x5a, 0x22, 0x4b, 0x06, 0x08, 0x6e, + 0xbe, 0x44, 0x4b, 0x43, 0x52, 0x44, 0x50, 0x42, 0x54, 0x40, 0x57, 0x5a, + 0x58, 0x3f, 0x5a, 0x3a, 0x5a, 0x3d, 0x5a, 0x3a, 0x5a, 0x33, 0x5a, 0x33, + 0x5a, 0x35, 0x58, 0x37, 0x06, 0x08, 0xea, 0xba, 0x26, 0x3f, 0x44, 0x4b, + 0x58, 0x37, 0x5a, 0x33, 0x5a, 0x35, 0x5a, 0x31, 0x56, 0x2f, 0x4b, 0x2b, + 0x44, 0x2a, 0x47, 0x2a, 0x41, 0x2a, 0x3e, 0x2c, 0x0a, 0x04, 0x4c, 0x3c, + 0x38, 0x35, 0x2f, 0x3c, 0x43, 0x44, 0x0a, 0x06, 0x2a, 0x43, 0x3f, 0x4c, + 0x3f, 0x4f, 0x3c, 0x54, 0x26, 0x49, 0x2a, 0x45, 0x0a, 0x04, 0xb6, 0xf6, + 0xc3, 0x36, 0xb8, 0x68, 0xc1, 0xc4, 0xb7, 0x02, 0xc1, 0x10, 0xb5, 0x8e, + 0xc2, 0x82, 0x0a, 0x04, 0x2a, 0x49, 0x2e, 0x45, 0x2a, 0x43, 0x26, 0x47, + 0x0a, 0x04, 0x2a, 0x49, 0x26, 0x47, 0x26, 0x48, 0x2a, 0x4a, 0x0a, 0x04, + 0x2e, 0x4b, 0x32, 0x47, 0x2e, 0x45, 0x2a, 0x49, 0x0a, 0x04, 0x2e, 0x4b, + 0x2a, 0x49, 0x2a, 0x4a, 0x2e, 0x4c, 0x02, 0x05, 0xb7, 0x26, 0xc3, 0x4e, + 0xb7, 0x26, 0xc3, 0x4e, 0xb7, 0x5a, 0xc3, 0x68, 0xb8, 0x8e, 0xc4, 0x02, + 0xb8, 0x72, 0xc3, 0xf4, 0xb8, 0xa6, 0xc3, 0xeb, 0xba, 0x01, 0xc2, 0x90, + 0xb9, 0xd5, 0xc2, 0xbb, 0xb9, 0xce, 0xc2, 0x76, 0xb8, 0x9a, 0xc1, 0xdc, + 0xb8, 0xb4, 0xc1, 0xea, 0xb8, 0x81, 0xc1, 0xf3, 0xb7, 0x27, 0xc3, 0x4e, + 0xb7, 0x50, 0xc3, 0x23, 0xb7, 0x27, 0xc3, 0x4e, 0x0a, 0x04, 0x3a, 0x51, + 0x3e, 0x4c, 0x32, 0x47, 0x2e, 0x4b, 0x0a, 0x04, 0x3a, 0x51, 0x2e, 0x4b, + 0x2e, 0x4c, 0x3a, 0x52, 0x0a, 0x04, 0x3a, 0x51, 0x3a, 0x52, 0x3e, 0x4f, + 0x3e, 0x4d, 0x02, 0x04, 0xbd, 0x29, 0x39, 0xbe, 0x26, 0x39, 0x37, 0x39, + 0x35, 0x3c, 0x35, 0xbd, 0x7f, 0x35, 0xbe, 0xcf, 0xbd, 0x29, 0x3f, 0x37, + 0x3f, 0xbe, 0x26, 0x3f, 0x3e, 0x3c, 0x3e, 0xbe, 0xcf, 0x3e, 0xbd, 0x7f, + 0x02, 0x06, 0xbd, 0x29, 0x3e, 0xbe, 0x26, 0x3e, 0x37, 0x3e, 0x35, 0x3b, + 0x35, 0xbe, 0x69, 0x35, 0x3b, 0x35, 0xbe, 0x5b, 0x35, 0xbe, 0x5b, 0x35, + 0xbf, 0x02, 0xbd, 0x29, 0xbf, 0x8d, 0x37, 0xbf, 0x8d, 0xbe, 0x26, 0xbf, + 0x8d, 0x3e, 0xbe, 0x5b, 0x3e, 0xbf, 0x02, 0x3e, 0xbe, 0x5b, 0x3e, 0x3b, + 0x3e, 0x3b, 0x3e, 0xbe, 0x69, 0x02, 0x06, 0xc0, 0x59, 0x41, 0xc1, 0x1e, + 0x41, 0xbf, 0x92, 0x41, 0x3e, 0x3f, 0x3e, 0xbf, 0xdc, 0x3e, 0x3f, 0x3e, + 0xbf, 0xd1, 0x3e, 0xbf, 0xd1, 0x3e, 0xc0, 0x54, 0xc0, 0x59, 0xc0, 0xbf, + 0xbf, 0x92, 0xc0, 0xbf, 0xc1, 0x1e, 0xc0, 0xbf, 0x45, 0xbf, 0xd1, 0x45, + 0xc0, 0x54, 0x45, 0xbf, 0xd1, 0x45, 0x3f, 0x45, 0x3f, 0x45, 0xbf, 0xdc, + 0x0a, 0x04, 0x3f, 0x41, 0x36, 0x3d, 0x34, 0x3e, 0x3e, 0x43, 0x08, 0x02, + 0x44, 0x2d, 0x55, 0x33, 0x08, 0x02, 0x3f, 0xb8, 0xba, 0x54, 0x36, 0x08, + 0x02, 0xbd, 0xdb, 0xb9, 0xac, 0xc6, 0xab, 0xbc, 0xcf, 0x1f, 0x0a, 0x01, + 0x01, 0x00, 0x00, 0x0a, 0x00, 0x01, 0x01, 0x10, 0x01, 0x17, 0x84, 0x00, + 0x04, 0x0a, 0x03, 0x01, 0x02, 0x00, 0x0a, 0x04, 0x01, 0x03, 0x00, 0x0a, + 0x05, 0x01, 0x04, 0x00, 0x0a, 0x02, 0x01, 0x05, 0x00, 0x0a, 0x00, 0x01, + 0x06, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x10, 0x01, 0x06, 0x00, + 0x0a, 0x05, 0x01, 0x07, 0x00, 0x0a, 0x08, 0x01, 0x09, 0x00, 0x0a, 0x07, + 0x01, 0x0a, 0x00, 0x0a, 0x06, 0x01, 0x08, 0x00, 0x0a, 0x09, 0x01, 0x0b, + 0x00, 0x0a, 0x09, 0x01, 0x0c, 0x00, 0x0a, 0x0a, 0x01, 0x0d, 0x00, 0x0a, + 0x08, 0x01, 0x0e, 0x00, 0x0a, 0x07, 0x01, 0x0f, 0x00, 0x0a, 0x06, 0x01, + 0x08, 0x20, 0x28, 0x24, 0x0a, 0x06, 0x01, 0x08, 0x20, 0x2c, 0x26, 0x0a, + 0x06, 0x01, 0x08, 0x20, 0x30, 0x28, 0x0a, 0x00, 0x01, 0x10, 0x00, 0x0a, + 0x0c, 0x01, 0x12, 0x00, 0x0a, 0x0b, 0x01, 0x11, 0x20, 0x20, 0x1f, 0x0a, + 0x0d, 0x01, 0x11, 0x02, 0x3e, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x3e, 0xaa, 0xaa, 0x46, 0xd5, 0x55, 0x46, 0x15, 0x55, 0x0a, 0x0e, + 0x01, 0x11, 0x02, 0x3c, 0xaa, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3c, 0xb1, 0xc7, 0x48, 0x20, 0x00, 0x48, 0x31, 0xe3, 0x0a, 0x0c, 0x01, + 0x13, 0x00, 0x0a, 0x0b, 0x01, 0x11, 0x02, 0x3f, 0x1c, 0x71, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x3e, 0xaa, 0xaa, 0x47, 0x6a, 0xaa, 0x46, 0xd5, + 0x55, 0x0a, 0x0d, 0x01, 0x11, 0x02, 0x3e, 0x38, 0xe3, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x3e, 0xaa, 0xaa, 0x48, 0x6a, 0xaa, 0x46, 0xd5, 0x55, + 0x0a, 0x0e, 0x01, 0x11, 0x02, 0x3c, 0xaa, 0xaa, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x3c, 0xb1, 0xc7, 0x49, 0x20, 0x00, 0x48, 0x91, 0xe3, 0x0a, + 0x0f, 0x01, 0x14, 0x00, 0x0a, 0x11, 0x03, 0x15, 0x16, 0x17, 0x10, 0x01, + 0x17, 0x81, 0x20, 0x04 }; -const media_icon M_VIDEO_INPUT_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x1c,0x1c,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x1c,0x1c,0x01,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x1b,0x1b,0x1c,0x1c,0x1c,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x01,0x01,0x1a,0x1a,0x1b,0x1b,0x1b,0x01,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x1c,0x1c,0x1c,0x1b,0x1c,0x1c,0x0f,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x1c,0x1c,0x1a,0x1a,0x1b,0x1b,0x1b,0x1b,0x01,0xff,0xff,0xff, - 0xff,0x00,0x3f,0x1c,0x1c,0x1c,0x1a,0x1a,0x0f,0x0f,0x00,0x00,0xff,0xff,0xff,0xff, - 0x00,0x00,0x1a,0x1a,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x3f,0x3f,0x0a,0x00,0xff,0xff, - 0xff,0x00,0x3f,0x1c,0x1c,0x1a,0x0f,0x0f,0x01,0x01,0x00,0x00,0xff,0xff,0x00,0x00, - 0x1c,0x1c,0x1a,0x1a,0x1c,0x1c,0x1c,0x1c,0x3f,0x3f,0x0f,0x0f,0x0a,0x00,0xff,0xff, - 0xff,0x00,0x3f,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1a,0x1a,0x02,0x02,0x1c,0x1c, - 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x3f,0x3f,0x0f,0x0f,0x0f,0x0f,0x0a,0x00,0xff,0xff, - 0xff,0x00,0x15,0x15,0x1a,0x1a,0x3f,0x3f,0x1c,0x1c,0x1b,0x1c,0x1c,0x1c,0x1c,0x1c, - 0x1c,0x1c,0x1c,0x1c,0x3f,0x3f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0a,0x00,0xff,0xff, - 0xff,0xff,0x00,0x00,0x15,0x15,0x1a,0x1a,0x1a,0x1a,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c, - 0x1c,0x1c,0x3f,0x3f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0a,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x3f,0x3f,0x3f,0x1c,0x1c,0x1c, - 0x3f,0x3f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0a,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x0b,0x0b,0x0a,0x0a,0x14,0x14,0x3f,0x3f, - 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0a,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x0b,0x0a,0x14,0x14,0x3f,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0a,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0x05,0x05,0x05,0x05,0x00,0x00,0x14,0x14,0x3f,0x0f,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0a,0x01,0xff,0xff,0xff, - 0xff,0xff,0x05,0x05,0x05,0x05,0x05,0x05,0x00,0x00,0x14,0x3f,0x0f,0x0f,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0a,0x00,0xff,0xff,0xff,0xff, - 0xff,0x02,0x02,0x02,0x1c,0x0f,0x00,0x06,0x00,0x00,0x3f,0x07,0x0b,0x0f,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0e,0x0e,0x0a,0x00,0x0f,0x0f,0x0f,0x0f, - 0xff,0x02,0x02,0x1c,0x06,0x0f,0x06,0x00,0x00,0x00,0x07,0x07,0x0b,0x0f,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0e,0x0a,0x0a,0x00,0x00,0x0f,0x0f,0x0f,0x0f, - 0x00,0x00,0x15,0x02,0x06,0x06,0x3f,0x06,0x07,0x0f,0x07,0x07,0x07,0x0b,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0a,0x0a,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f, - 0x00,0x00,0x15,0x06,0x06,0x02,0x3f,0x00,0x07,0x0f,0x07,0x07,0x07,0x0b,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x0f,0x0a,0x0a,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xff,0xff, - 0x00,0x00,0x15,0x06,0x06,0x02,0x3f,0x00,0x07,0x0f,0x07,0x07,0x07,0x07,0x0b,0x0f, - 0x0f,0x0f,0x0a,0x0a,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0x00,0x00,0x15,0x06,0x06,0x06,0x3f,0x00,0x07,0x0f,0x0f,0x0f,0x07,0x07,0x0b,0x0b, - 0x0a,0x0a,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x02,0x02,0x02,0x02,0x06,0x02,0x02,0x07,0x05,0x00,0x7b,0x0f,0x0f,0x00,0x0b, - 0x00,0x00,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x02,0x02,0x02,0x02,0x02,0x06,0x02,0x05,0xff,0x00,0x7b,0x07,0x07,0x00,0x00, - 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x05,0x05,0xff,0xff,0x00,0x00,0x00,0x00,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff, - 0xff,0x00,0x00,0x1b,0x1c,0x00,0xff,0xff,0xff,0x00,0x01,0x3f,0x1b,0x01,0xff,0xff, - 0x00,0x3f,0x1c,0x1a,0x01,0x00,0xff,0x00,0x00,0x1a,0x1c,0x1c,0x3f,0x0f,0x00,0xff, - 0x00,0x15,0x15,0x3f,0x1c,0x1b,0x02,0x1c,0x1c,0x1c,0x3f,0x0f,0x0f,0x0f,0x00,0xff, - 0xff,0x00,0x00,0x15,0x15,0x3f,0x3f,0x3f,0x3f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff, - 0xff,0xff,0xff,0x00,0x00,0x0a,0x15,0x0a,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff, - 0xff,0x05,0x05,0x05,0x00,0x14,0x0b,0x0a,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xff,0xff, - 0x02,0x02,0x1c,0x0e,0x00,0x07,0x07,0x07,0x0f,0x0f,0x0f,0x0f,0x06,0x00,0x0f,0x0f, - 0x00,0x15,0x06,0x3f,0x05,0x07,0x07,0x07,0x0f,0x0f,0x06,0x00,0x00,0x0f,0x0f,0x0f, - 0x00,0x06,0x06,0x3f,0x05,0x07,0x07,0x07,0x0f,0x00,0x00,0x0f,0x0f,0x0f,0xff,0xff, - 0x02,0x02,0x02,0x02,0x05,0x7b,0x07,0x00,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x05,0xff,0x00,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - } +const unsigned char M_VIDEO_INPUT_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x0b, 0x03, 0x01, 0x00, 0x00, 0x02, 0x00, 0x02, + 0x02, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, + 0x00, 0x4b, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x06, 0x02, 0x3c, 0xc0, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x48, 0x00, 0x00, + 0x48, 0x80, 0x00, 0x40, 0x01, 0x01, 0x01, 0xff, 0xc1, 0xac, 0xac, 0x04, + 0x01, 0x68, 0x02, 0x01, 0x06, 0x02, 0x3a, 0x26, 0xec, 0x38, 0xca, 0x29, + 0xb8, 0x28, 0x21, 0x39, 0x53, 0xdb, 0x48, 0x96, 0x8d, 0x4b, 0x2b, 0xc6, + 0x00, 0x43, 0x4a, 0x68, 0xff, 0x0f, 0x12, 0x38, 0x05, 0xff, 0x02, 0x00, + 0x16, 0x02, 0x3b, 0xc7, 0xf2, 0x37, 0x1d, 0x28, 0xb9, 0x2b, 0x13, 0x3d, + 0xd8, 0xd8, 0x4b, 0x27, 0x74, 0x49, 0x04, 0xe3, 0x00, 0x5c, 0xff, 0xb8, + 0x02, 0x00, 0x16, 0x02, 0xba, 0xe6, 0x7d, 0xb9, 0xec, 0x7d, 0x3c, 0x35, + 0x41, 0xbd, 0x43, 0xa4, 0x48, 0x8a, 0x5d, 0x4b, 0xf8, 0x09, 0x00, 0xc9, + 0xff, 0xff, 0x02, 0x00, 0x16, 0x02, 0xbb, 0x2e, 0x08, 0x38, 0x6b, 0xa4, + 0xb9, 0x69, 0x34, 0xbc, 0x3d, 0x91, 0x4a, 0x06, 0x89, 0x4b, 0x29, 0x3b, + 0x00, 0x79, 0xff, 0xe4, 0x04, 0x01, 0x7e, 0x02, 0x01, 0x06, 0x03, 0x3c, + 0xfc, 0x1c, 0x3c, 0x56, 0xe5, 0xbc, 0xb0, 0xcb, 0x3d, 0x6e, 0xce, 0x49, + 0x29, 0x4c, 0x48, 0x04, 0x8b, 0x2a, 0xff, 0xff, 0xff, 0xc4, 0x95, 0x91, + 0x91, 0xff, 0xb9, 0xb9, 0xb9, 0x09, 0x02, 0x04, 0x46, 0x48, 0xc6, 0xfb, + 0x48, 0xbd, 0x4c, 0x48, 0x30, 0x54, 0x30, 0xc5, 0x13, 0x30, 0xca, 0x5a, + 0x46, 0x60, 0xbd, 0x4c, 0x60, 0xc6, 0xfb, 0x60, 0x5c, 0x54, 0x5c, 0xca, + 0x5a, 0x5c, 0xc5, 0x13, 0x04, 0x03, 0x3e, 0x4c, 0x4c, 0x56, 0x46, 0xc6, + 0xba, 0x46, 0x5a, 0x46, 0x60, 0x4a, 0x58, 0x4e, 0x60, 0x4a, 0x02, 0x04, + 0xb7, 0xe1, 0xc4, 0x3b, 0xb8, 0xd9, 0xc3, 0x4d, 0xb6, 0xea, 0xc5, 0x2b, + 0xb8, 0x93, 0xc8, 0x6b, 0xb7, 0x3b, 0xc7, 0x0b, 0xb9, 0xea, 0xc9, 0xce, + 0xbc, 0xbf, 0xc9, 0x36, 0xbb, 0xc7, 0xca, 0x26, 0xbd, 0xb5, 0xc8, 0x48, + 0xbc, 0x0f, 0xc5, 0x07, 0xbd, 0x66, 0xc6, 0x68, 0xba, 0xb7, 0xc3, 0xa6, + 0x06, 0x04, 0xee, 0x33, 0x55, 0xbc, 0x43, 0xc7, 0xd1, 0xbb, 0xdd, 0xc8, + 0x37, 0xbc, 0xa9, 0xc7, 0x6b, 0x38, 0x51, 0xbc, 0x83, 0xc8, 0x28, 0xbc, + 0xe9, 0xc7, 0xc2, 0xbc, 0x1d, 0xc8, 0x8e, 0x06, 0x06, 0x9e, 0x0a, 0x3c, + 0x42, 0x2e, 0x51, 0x37, 0x50, 0x2e, 0x51, 0x54, 0x42, 0x5e, 0x50, 0x50, + 0x4d, 0x42, 0x0a, 0x04, 0x42, 0x44, 0x42, 0x5e, 0x50, 0x50, 0x4d, 0x42, + 0x0a, 0x04, 0x2e, 0x54, 0x42, 0x5e, 0x42, 0x5a, 0x2e, 0x51, 0x06, 0x04, + 0xeb, 0x42, 0x5a, 0x42, 0x5a, 0x49, 0x53, 0x48, 0x47, 0x3c, 0x42, 0x2e, + 0x51, 0x37, 0x50, 0x2e, 0x51, 0x02, 0x04, 0x3e, 0x22, 0xc3, 0x59, 0x22, + 0xba, 0x8d, 0x22, 0x2a, 0x36, 0x2a, 0xb7, 0x5c, 0x2a, 0xc0, 0x29, 0x3e, + 0x4a, 0xba, 0x8d, 0x4a, 0xc3, 0x59, 0x4a, 0x52, 0x36, 0x52, 0xc0, 0x29, + 0x52, 0xb7, 0x5c, 0x0c, 0x0a, 0x03, 0x01, 0x00, 0x00, 0x0a, 0x01, 0x01, + 0x01, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x00, 0x01, 0x04, 0x10, + 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x06, 0x01, 0x05, 0x00, 0x0a, 0x07, + 0x01, 0x06, 0x00, 0x0a, 0x08, 0x01, 0x07, 0x00, 0x0a, 0x00, 0x01, 0x08, + 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x0a, 0x01, 0x08, 0x00, 0x0a, + 0x02, 0x01, 0x02, 0x12, 0x3f, 0xf0, 0x3d, 0x3d, 0x7a, 0x6f, 0xbd, 0x81, + 0x01, 0x3f, 0xe8, 0xda, 0x49, 0x15, 0xdd, 0xc9, 0xc9, 0x6a, 0x01, 0x17, + 0x84, 0x00, 0x04, 0x0a, 0x04, 0x01, 0x02, 0x02, 0x3f, 0xf0, 0x3d, 0x3d, + 0x7a, 0x6f, 0xbd, 0x81, 0x01, 0x3f, 0xe8, 0xda, 0x49, 0x5a, 0xd5, 0xc9, + 0xc9, 0x6a, 0x0a, 0x05, 0x01, 0x02, 0x02, 0xb8, 0x80, 0x4d, 0x3a, 0xca, + 0x6f, 0xba, 0xcf, 0xb4, 0xb8, 0x7b, 0x9d, 0x49, 0xf5, 0x17, 0x48, 0x9e, + 0x8a, 0x0a, 0x05, 0x01, 0x03, 0x02, 0x3f, 0xf0, 0x3d, 0x3d, 0x7a, 0x6f, + 0xbd, 0x81, 0x01, 0x3f, 0xe8, 0xda, 0x49, 0x5a, 0xd5, 0xc9, 0xc9, 0x6a }; -const media_icon M_VIDEO_OUTPUT_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff, - 0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x1b,0x00,0x00,0xff,0x00,0x1b,0x1c,0x00,0x00,0xff, - 0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x1b,0x1c,0x1b,0x1c,0x00,0x0b,0x1b,0x1c,0x1c,0x1b,0x00, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x0b,0x0a,0x1c,0x1b,0x1c, - 0x1c,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c,0x1b,0x0b,0x0a,0x1c, - 0x1c,0x00,0x19,0x00,0x00,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c,0x1b,0x0b, - 0x0a,0x00,0x1a,0x19,0x1a,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x15,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b,0x1c,0x1c, - 0x1b,0x00,0x0b,0x19,0x1a,0x00,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x15,0x16,0x15,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c,0x1c,0x1b, - 0x1c,0x00,0x19,0x0b,0x00,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x15,0x15,0x15,0x16,0x3f,0x3f,0x1b,0x1c,0x1b,0x1c, - 0x1c,0x00,0x19,0x00,0x1a,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x0a,0x0b,0x15,0x15,0x16,0x15,0x3f,0x3f,0x1b,0x1c, - 0x1b,0x00,0x00,0x11,0x11,0x11,0x11,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x0a,0x86,0x0b,0x0b,0x15,0x15,0x15,0x16,0x3f,0x3f, - 0x1b,0x1c,0x1b,0x1c,0x1c,0x3f,0x0e,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x0a,0x86,0x86,0x86,0x0b,0x0b,0x15,0x15,0x16,0x15, - 0x3f,0x3f,0x1b,0x1c,0x3f,0x0e,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x0a,0x86,0x60,0x60,0x86,0x86,0x0e,0x0a,0x16,0x15, - 0x15,0x15,0x3f,0x3f,0x0e,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x0a,0x86,0x60,0x60,0x60,0x60,0x86,0x86,0x0e,0x0b, - 0x15,0x15,0x15,0x16,0x0e,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x0a,0x86,0x60,0x60,0x60,0x60,0x86,0x86,0xad,0xad, - 0x0e,0x1f,0x16,0x15,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x0a,0x86,0x60,0x60,0x60,0x60,0x86,0x3f,0xad,0xad, - 0xad,0x3f,0x15,0x15,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x0a,0x86,0x60,0x60,0x60,0x60,0x86,0x86,0xad,0xad, - 0xad,0x3f,0x15,0x15,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x0a,0x3f,0x60,0x60,0x60,0x60,0x86,0x86,0xad,0xad, - 0xad,0x3f,0x15,0x15,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x0b,0x3f,0x3f,0x3f,0x3f,0x60,0x60,0x86,0x86,0xad,0xad, - 0xad,0x3f,0x15,0x15,0x0f,0x0f,0x0f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x15,0x15,0x15,0x16,0x15,0x3f,0x3f,0x3f,0x3f,0x86,0x86,0xad,0xad, - 0xad,0x3f,0x15,0x15,0x0f,0x0f,0x0f,0x00,0x11,0x11,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x16,0x15,0x15,0x3f,0x3f,0x3f,0x3f,0xad,0xad, - 0xad,0x3f,0x15,0x15,0x0f,0x0f,0x0f,0x00,0x11,0x11,0x11,0x11,0xff,0xff,0xff,0xff, - 0xff,0xff,0x11,0x0c,0x00,0x00,0x16,0x15,0x15,0x15,0x16,0x15,0x3f,0x3f,0x3f,0x3f, - 0xad,0x3f,0x15,0x15,0x0f,0x0f,0x0f,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0xff,0xff, - 0xff,0xff,0xff,0xff,0x11,0x11,0x00,0x00,0x15,0x15,0x15,0x16,0x15,0x15,0x3f,0x3f, - 0x3f,0x3f,0x15,0x15,0x0f,0x0f,0x0f,0x00,0x11,0x11,0x11,0x11,0x11,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x11,0x11,0x00,0x00,0x15,0x15,0x15,0x16,0x15,0x15, - 0x3f,0x3f,0x15,0x15,0x0f,0x0f,0x0f,0x00,0x11,0x11,0x11,0x11,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x11,0x11,0x00,0x00,0x15,0x15,0x15,0x16, - 0x20,0x20,0x15,0x16,0x0e,0x0f,0x0f,0x00,0x11,0x11,0x11,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x11,0x11,0x00,0x00,0x15,0x15, - 0x20,0x20,0x2a,0x15,0x0f,0x0f,0x0f,0x00,0x11,0x11,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x11,0x11,0x00,0x00, - 0x15,0x15,0x2a,0x16,0x0e,0x0f,0x00,0x11,0x11,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x11,0x11, - 0x00,0x00,0x15,0x15,0x0f,0x00,0x11,0x11,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x11,0x11,0x00,0x00,0x00,0x11,0x11,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x11,0x11,0x11,0x11,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x09,0x06,0x05,0x06,0xff,0xff,0x00,0xff,0xff,0x00,0xff,0xff,0xff,0xff, - 0xff,0x05,0x3f,0x3f,0x1e,0x17,0x05,0x06,0x00,0xff,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0x04,0x3f,0x3f,0x1d,0x1e,0x1d,0x19,0x00,0x00,0x0d,0xff,0xff,0xff,0xff,0xff, - 0xff,0x05,0x13,0x14,0x3f,0x3f,0x1e,0x1e,0x1e,0x06,0x06,0x00,0xff,0xff,0xff,0xff, - 0xff,0x05,0x11,0xd5,0x0c,0x13,0x3f,0x3f,0x1e,0x1e,0x1e,0x01,0xff,0xff,0xff,0xff, - 0xff,0x05,0x11,0xd5,0x60,0x0c,0x0a,0x15,0x3f,0x3f,0x16,0x01,0xff,0xff,0xff,0xff, - 0xff,0x05,0x11,0xd5,0x60,0x60,0x86,0xd5,0x15,0x17,0xaf,0x03,0xff,0xff,0xff,0xff, - 0xff,0x05,0x11,0xd5,0x60,0x60,0x86,0xd3,0x60,0x19,0x0f,0x03,0xff,0xff,0xff,0xff, - 0xff,0x05,0x11,0xd3,0x86,0x86,0x86,0x23,0x60,0x19,0x0f,0x03,0xff,0xff,0xff,0xff, - 0xff,0x00,0x15,0x1c,0x1d,0x1f,0xd3,0xd3,0x60,0x19,0x10,0x05,0x0b,0xff,0xff,0xff, - 0xff,0xff,0x02,0x02,0x11,0x19,0x1f,0x1f,0x60,0x16,0x11,0x05,0x0b,0x0b,0x0b,0xff, - 0xff,0xff,0xff,0xff,0x02,0x02,0x11,0x1a,0x20,0x15,0x12,0x05,0x0b,0x0b,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x02,0x02,0x12,0x2a,0x0f,0x00,0x0b,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x02,0x05,0x00,0x0b,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - } +const unsigned char M_VIDEO_OUTPUT_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x0d, 0x03, 0x01, 0x00, 0x00, 0x02, 0x00, 0x06, + 0x02, 0x3c, 0x55, 0xb6, 0x38, 0x30, 0x9f, 0xba, 0x16, 0x57, 0x3e, 0x39, + 0xb0, 0x49, 0xe9, 0xff, 0x43, 0x84, 0x0a, 0x00, 0x8b, 0x87, 0x87, 0xff, + 0x16, 0x15, 0x15, 0x02, 0x00, 0x16, 0x02, 0x3c, 0x57, 0xb5, 0x36, 0x43, + 0x81, 0xb7, 0x85, 0x86, 0x3d, 0xa4, 0xf5, 0x4b, 0x27, 0xc3, 0x49, 0xb7, + 0xbb, 0x00, 0x10, 0xff, 0x4c, 0x02, 0x00, 0x16, 0x02, 0xbc, 0x4e, 0x76, + 0xbc, 0x41, 0x1b, 0x3c, 0x90, 0xda, 0xbc, 0xa0, 0x0d, 0x47, 0x58, 0x7d, + 0x4a, 0xba, 0x85, 0x00, 0x60, 0xff, 0x50, 0x02, 0x00, 0x16, 0x02, 0x38, + 0x31, 0x3c, 0x3b, 0x5c, 0xf0, 0xbf, 0xcd, 0x96, 0x3c, 0x7a, 0xac, 0x4c, + 0x13, 0x94, 0x3f, 0xca, 0xf9, 0x01, 0x74, 0xff, 0x22, 0x05, 0x5c, 0x04, + 0x01, 0x7e, 0x02, 0x00, 0x16, 0x02, 0x38, 0x79, 0x06, 0x3b, 0x82, 0x24, + 0xbe, 0x2c, 0xc8, 0x3b, 0x10, 0xdb, 0x4a, 0x1f, 0x6f, 0x49, 0xb8, 0x94, + 0x00, 0x1e, 0xff, 0x59, 0x02, 0x00, 0x16, 0x03, 0x3c, 0x3d, 0xa6, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x18, 0x61, 0x48, 0xac, 0x00, 0x49, + 0x80, 0x00, 0x00, 0x76, 0x58, 0xad, 0xfa, 0x80, 0x03, 0x33, 0xc8, 0x05, + 0x02, 0x01, 0x06, 0x02, 0x3a, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x39, 0x80, 0x00, 0x4a, 0x30, 0x00, 0x48, 0x40, 0x00, 0x00, 0x76, + 0x76, 0x76, 0xfc, 0x40, 0x3e, 0x3e, 0x02, 0x01, 0x06, 0x02, 0x3e, 0x1c, + 0x15, 0x38, 0x01, 0x0f, 0xb7, 0xc3, 0x2b, 0x3d, 0xf5, 0xe6, 0x49, 0xb8, + 0xbe, 0x48, 0xdd, 0x4a, 0x00, 0x05, 0x93, 0xdc, 0xff, 0x00, 0x33, 0x7f, + 0x05, 0x00, 0x10, 0x0a, 0x06, 0x26, 0x2e, 0x26, 0x4c, 0x48, 0x5e, 0x52, + 0x52, 0x52, 0x34, 0x30, 0x28, 0x0a, 0x04, 0x26, 0x2e, 0x48, 0x3c, 0x52, + 0x34, 0x30, 0x28, 0x0a, 0x04, 0x48, 0x3c, 0x48, 0x5e, 0x52, 0x52, 0x52, + 0x34, 0x0a, 0x04, 0x26, 0x2e, 0x26, 0x4c, 0x48, 0x5e, 0x48, 0x3c, 0x0a, + 0x04, 0x44, 0x3d, 0x44, 0x56, 0x28, 0x49, 0x28, 0x32, 0x0a, 0x04, 0xb6, + 0xf9, 0xc2, 0x8b, 0x28, 0x49, 0x28, 0x32, 0xb7, 0x01, 0xba, 0x84, 0x0a, + 0x04, 0x44, 0x54, 0x44, 0x57, 0x28, 0x49, 0x2a, 0x47, 0x0a, 0x04, 0x44, + 0x3d, 0x44, 0x54, 0x2a, 0x47, 0xb7, 0x01, 0xba, 0x84, 0x0a, 0x04, 0x38, + 0x2b, 0x3d, 0x28, 0x4e, 0x2d, 0x49, 0x31, 0x08, 0x04, 0x38, 0x2b, 0x3d, + 0x28, 0x4e, 0x2d, 0x4e, 0x33, 0x0a, 0x03, 0x49, 0x30, 0x4e, 0x2c, 0x4e, + 0x32, 0x08, 0x02, 0x42, 0x58, 0x43, 0xc9, 0x83, 0x0a, 0x06, 0x48, 0x60, + 0x54, 0x60, 0x60, 0x52, 0xca, 0x1b, 0xc5, 0xb9, 0x5c, 0x4d, 0x52, 0x48, + 0x02, 0x04, 0x45, 0x30, 0xc2, 0xd6, 0x30, 0xc0, 0xa4, 0x30, 0x40, 0x35, + 0x40, 0xba, 0xb5, 0x40, 0xbc, 0x05, 0x45, 0x38, 0xc0, 0xa4, 0x38, 0xc2, + 0xd6, 0x38, 0x4a, 0x35, 0x4a, 0xbc, 0x05, 0x4a, 0xba, 0xb5, 0x08, 0x03, + 0x45, 0x21, 0x45, 0x33, 0x5b, 0x25, 0x0a, 0x04, 0x49, 0x34, 0x49, 0x4b, + 0x32, 0x41, 0xba, 0x30, 0xb7, 0x54, 0x10, 0x0a, 0x06, 0x01, 0x0c, 0x00, + 0x0a, 0x00, 0x01, 0x09, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x04, + 0x01, 0x08, 0x00, 0x0a, 0x05, 0x01, 0x0a, 0x00, 0x0a, 0x00, 0x01, 0x00, + 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x01, 0x01, 0x01, 0x00, 0x0a, + 0x02, 0x01, 0x02, 0x00, 0x0a, 0x03, 0x02, 0x03, 0x04, 0x00, 0x0a, 0x0b, + 0x01, 0x07, 0x08, 0x15, 0xff, 0x0a, 0x00, 0x01, 0x07, 0x08, 0x00, 0x15, + 0x0a, 0x07, 0x01, 0x05, 0x00, 0x0a, 0x08, 0x01, 0x06, 0x00, 0x0a, 0x09, + 0x01, 0x0b, 0x18, 0x15, 0xff, 0x01, 0x17, 0x82, 0x20, 0x04, 0x0a, 0x0a, + 0x01, 0x0d, 0x00, 0x0a, 0x00, 0x01, 0x0e, 0x18, 0x15, 0xff, 0x01, 0x17, + 0x82, 0x22, 0x04, 0x0a, 0x00, 0x01, 0x0e, 0x18, 0x00, 0x15, 0x01, 0x17, + 0x84, 0x22, 0x04 }; -const media_icon M_VIDEO_PRODUCER_ICON = -{ - { - 0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x18,0x10,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x18,0x3f,0x18,0x10,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x10,0x18,0x18,0x10,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x10,0x10,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x10,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x10,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x10,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x18,0x18,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x10,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0xff, - 0x00,0x00,0x18,0x18,0x04,0x04,0x18,0x18,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x10,0x00,0xff,0x00,0x00,0x18,0x18,0x00,0x00, - 0x18,0x18,0x00,0x04,0x04,0x04,0x04,0x04,0x18,0x18,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x18,0x18,0x18,0x10,0x18,0x18, - 0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x18,0x18,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x18,0x18,0x18,0x18,0x08,0x16,0x3f,0x10, - 0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x08,0x08,0x08,0x08,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x10,0x10,0x3f,0x3f,0x18,0x18,0x18,0x1b,0x08,0x16, - 0x3f,0x10,0x18,0x18,0x00,0x00,0x18,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x10,0x10,0x10,0x10,0x3f,0x3f,0x18,0x18,0x18,0x1b, - 0x08,0x16,0x3f,0x10,0x18,0x18,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff, - 0xff,0xff,0xff,0xff,0x00,0x18,0x18,0x18,0x10,0x10,0x10,0x10,0x3f,0x3f,0x18,0x18, - 0x18,0x1b,0x08,0x16,0x3f,0x18,0x18,0x18,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0xff, - 0xff,0xff,0xff,0x00,0x3f,0x3f,0x18,0x18,0x18,0x18,0x10,0x10,0x10,0x10,0x3f,0x3f, - 0x18,0x18,0x18,0x1b,0x18,0x18,0x1b,0x1b,0x0a,0x0a,0x00,0x08,0x08,0x08,0x00,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x3f,0x3f,0x18,0x18,0x18,0x18,0x10,0x10,0x10,0x10, - 0x3f,0x3f,0x18,0x18,0x1b,0x1b,0x0a,0x0a,0x0a,0x0a,0x00,0x08,0x08,0x08,0x00,0xff, - 0xff,0xff,0xff,0x00,0x04,0x00,0x00,0x00,0x3f,0x3f,0x18,0x18,0x18,0x18,0x10,0x10, - 0x10,0x10,0x3f,0x1b,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x08,0x08,0x00,0xff, - 0xff,0xff,0x00,0x10,0x04,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x18,0x18,0x18,0x18, - 0x10,0x10,0x10,0x16,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x08,0x08,0x00,0xff, - 0xff,0xff,0x00,0x10,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x0a,0x0a,0x0a, - 0x10,0x10,0x10,0x16,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x08,0x00,0xff, - 0xff,0x00,0x10,0x10,0x10,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x0a,0x0a,0x0a, - 0x10,0x10,0x10,0x16,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x0a,0x00,0x08,0x00,0xff, - 0xff,0x00,0x10,0x10,0x10,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x0a,0x0a, - 0x10,0x10,0x10,0x16,0x0a,0x0a,0x0a,0x02,0x02,0x16,0x16,0x10,0x0a,0x00,0x00,0xff, - 0xff,0xff,0x00,0x00,0x10,0x10,0x10,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x0a,0x0a, - 0x10,0x10,0x10,0x16,0x0a,0x02,0x02,0x16,0x16,0x10,0x10,0x0a,0x0a,0x00,0x00,0xff, - 0xff,0xff,0xff,0x04,0x00,0x00,0x10,0x10,0x10,0x00,0xf9,0xf9,0x00,0x00,0x10,0x0a, - 0x10,0x10,0x10,0x16,0x02,0x16,0x16,0x10,0x10,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x04, - 0xff,0x2a,0x2a,0xff,0xff,0x04,0x00,0x00,0x10,0xf9,0xf9,0xf9,0xf9,0x00,0x10,0x0a, - 0x10,0x10,0x10,0x16,0x0a,0x10,0x10,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x04, - 0x2a,0x2a,0x2a,0x2a,0xff,0xff,0xff,0x04,0x00,0xa5,0xf9,0xf9,0xf7,0x00,0x00,0x10, - 0x10,0x10,0x10,0x16,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x04,0x04, - 0xeb,0x2a,0x2a,0xf7,0xff,0xff,0xf3,0xf3,0xff,0xa5,0xa5,0xf7,0xf7,0x10,0x10,0x10, - 0x10,0x10,0x10,0x16,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x04,0x04,0xff,0xff, - 0xeb,0xeb,0xf7,0xf7,0x08,0xf3,0xf3,0xf3,0xf3,0xff,0xa5,0xf7,0x00,0x00,0x10,0x10, - 0x10,0x10,0x10,0x16,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x04,0x04,0xff,0xff,0xff,0xff, - 0xff,0xeb,0xf7,0x08,0x08,0x25,0xf3,0xf3,0x00,0xff,0xff,0x04,0x04,0x04,0x00,0x00, - 0x10,0x10,0x10,0x16,0x0a,0x0a,0x00,0x00,0x04,0x04,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x25,0x25,0x00,0x00,0x08,0xff,0xff,0xff,0xff,0xff,0x04, - 0x00,0x00,0x10,0x16,0x00,0x00,0x04,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x25,0x00,0x08,0x08,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x04,0x00,0x00,0x04,0x04,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x3f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x18,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x10,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0x18,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x18,0x00,0x00,0x10,0x04,0x18,0x18,0x00,0x00,0xff, - 0xff,0xff,0xff,0x00,0x3f,0x18,0x10,0x3f,0x18,0x00,0x00,0x00,0x08,0x18,0x08,0x00, - 0xff,0xff,0x00,0x10,0x10,0x3f,0x3f,0x18,0x10,0x3f,0x18,0x00,0x10,0x08,0x08,0x00, - 0xff,0xff,0x00,0x3f,0x18,0x10,0x10,0x3f,0x3f,0x18,0x18,0x1b,0x0a,0x00,0x08,0x00, - 0xff,0xff,0x04,0x00,0x3f,0x3f,0x18,0x10,0x10,0x3f,0x0a,0x0a,0x0a,0x0a,0x08,0x00, - 0xff,0x00,0x04,0x04,0x00,0x00,0x3f,0x0a,0x10,0x10,0x0a,0x0a,0x0a,0x0a,0x00,0x00, - 0xff,0x00,0x10,0x04,0x04,0x00,0x00,0x0a,0x10,0x10,0x0a,0x0a,0x02,0x10,0x0a,0x00, - 0xff,0xff,0x00,0x00,0x10,0xf9,0x00,0x10,0x10,0x10,0x02,0x10,0x10,0x0a,0x0a,0x00, - 0x2a,0x2a,0xff,0xff,0x00,0xf9,0xf9,0x00,0x10,0x10,0x0a,0x0a,0x0a,0x0a,0x00,0x04, - 0xeb,0xf7,0x08,0xf3,0xf3,0xa5,0x00,0x00,0x10,0x10,0x0a,0x0a,0x00,0x04,0xff,0xff, - 0xff,0xff,0xff,0x25,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff - } +const unsigned char M_VIDEO_PRODUCER_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x0b, 0x05, 0x01, 0x04, 0x01, 0x68, 0x05, 0x3d, + 0x02, 0x00, 0x16, 0x02, 0x39, 0xb6, 0x7d, 0x39, 0x59, 0x4d, 0xbb, 0xaf, + 0x08, 0x3c, 0x0a, 0xc4, 0x49, 0xd4, 0xf2, 0x45, 0xbd, 0xcf, 0x00, 0xbd, + 0xff, 0x80, 0x02, 0x00, 0x16, 0x02, 0x3b, 0x81, 0x87, 0x36, 0xdc, 0x54, + 0xb7, 0x3e, 0x60, 0x3b, 0xf9, 0xb0, 0x4a, 0x32, 0xbb, 0x47, 0x50, 0x35, + 0x00, 0xff, 0xff, 0xda, 0x02, 0x00, 0x16, 0x02, 0x3c, 0x06, 0xd9, 0x3c, + 0x01, 0x76, 0xbb, 0xb3, 0xd0, 0x3b, 0xbd, 0xc0, 0x48, 0xf9, 0x31, 0x49, + 0xcf, 0xaa, 0x00, 0xee, 0xff, 0x9a, 0x02, 0x00, 0x16, 0x02, 0xba, 0xfd, + 0xd4, 0xb9, 0x12, 0xf0, 0x3a, 0xf8, 0x70, 0xbc, 0xe4, 0x09, 0x4a, 0xb2, + 0x46, 0x4a, 0xed, 0x7e, 0x00, 0xe2, 0xff, 0x7c, 0x02, 0x01, 0x06, 0x02, + 0x3a, 0x26, 0xec, 0x38, 0xca, 0x29, 0xb8, 0x28, 0x21, 0x39, 0x53, 0xdc, + 0x48, 0x96, 0x8d, 0x4b, 0x2b, 0xc6, 0x00, 0x43, 0x4a, 0x68, 0xff, 0x0f, + 0x12, 0x38, 0x02, 0x00, 0x16, 0x05, 0x38, 0xa9, 0x60, 0x39, 0x4a, 0x6c, + 0xbb, 0x7f, 0xb0, 0x3a, 0xd4, 0x76, 0x49, 0x70, 0xa3, 0x4a, 0x68, 0xc0, + 0x00, 0x2b, 0x1d, 0x4b, 0x43, 0xff, 0x74, 0x4e, 0xff, 0x13, 0x05, 0xff, + 0x05, 0x39, 0x15, 0x0a, 0x0a, 0x22, 0x3a, 0x22, 0x46, 0x42, 0x56, 0x5a, + 0x3d, 0x5a, 0x31, 0xc1, 0xbc, 0xb7, 0x61, 0x44, 0x2c, 0x3b, 0x29, 0x2c, + 0x34, 0x2a, 0xba, 0x91, 0x06, 0x08, 0xea, 0xaa, 0x26, 0x4a, 0x24, 0x4c, + 0x36, 0x55, 0x3a, 0x60, 0x30, 0x60, 0x42, 0x60, 0x44, 0x5b, 0x4a, 0x5e, + 0x60, 0x45, 0x52, 0x41, 0x0a, 0x04, 0x2c, 0x34, 0x3b, 0x29, 0x44, 0x2c, + 0x36, 0x39, 0x0a, 0x06, 0x22, 0x3a, 0x42, 0x46, 0x5a, 0x31, 0x45, 0x2b, + 0x36, 0x37, 0x2a, 0x33, 0x0a, 0x04, 0x22, 0x3a, 0x22, 0x46, 0x42, 0x56, + 0x42, 0x46, 0x0a, 0x04, 0x42, 0x46, 0x42, 0x56, 0x5a, 0x3d, 0x5a, 0x30, + 0x06, 0x05, 0xeb, 0x03, 0xba, 0x63, 0xc1, 0xd0, 0xbb, 0x51, 0xc0, 0xe9, + 0xba, 0x63, 0xc1, 0xd0, 0xb9, 0x32, 0xc2, 0x9c, 0xbe, 0x45, 0xc7, 0x69, + 0xbf, 0x11, 0xc6, 0x9d, 0xbf, 0x11, 0xc6, 0x9d, 0xc0, 0x00, 0xc5, 0xb6, + 0xbe, 0x68, 0xc2, 0x93, 0xbf, 0xb3, 0xc3, 0xe7, 0xbd, 0x1d, 0xc1, 0x40, + 0x02, 0x04, 0xb7, 0xe2, 0xc4, 0x3c, 0xb8, 0xd9, 0xc3, 0x4d, 0xb6, 0xeb, + 0xc5, 0x2c, 0xb8, 0x93, 0xc8, 0x6c, 0xb7, 0x3b, 0xc7, 0x0c, 0xb9, 0xea, + 0xc9, 0xce, 0xbc, 0xbf, 0xc9, 0x37, 0xbb, 0xc8, 0xca, 0x27, 0xbd, 0xb5, + 0xc8, 0x48, 0xbc, 0x0f, 0xc5, 0x07, 0xbd, 0x66, 0xc6, 0x68, 0xba, 0xb7, + 0xc3, 0xa7, 0x06, 0x04, 0xee, 0x33, 0x55, 0xbc, 0x43, 0xc7, 0xd1, 0xbb, + 0xdd, 0xc8, 0x37, 0xbc, 0xa9, 0xc7, 0x6b, 0x38, 0x51, 0xbc, 0x83, 0xc8, + 0x29, 0xbc, 0xe9, 0xc7, 0xc3, 0xbc, 0x1d, 0xc8, 0x8f, 0x08, 0x02, 0xc8, + 0xb7, 0xbb, 0x91, 0xc8, 0xb7, 0xbf, 0x27, 0x08, 0x02, 0xc7, 0xeb, 0xbc, + 0x5d, 0xc7, 0xeb, 0xbf, 0xfe, 0x08, 0x02, 0xc7, 0x1f, 0xbd, 0x29, 0xc7, + 0x1f, 0xc0, 0xd8, 0x08, 0x02, 0xc6, 0x53, 0xbd, 0xf5, 0xc6, 0x53, 0xc1, + 0xb0, 0x08, 0x02, 0xb9, 0x39, 0xba, 0x05, 0xbc, 0xcf, 0xbb, 0x37, 0x08, + 0x02, 0xba, 0x52, 0xb9, 0x46, 0xbd, 0xe8, 0xba, 0x78, 0x08, 0x02, 0xbb, + 0x44, 0xb8, 0x6d, 0xbe, 0xda, 0xb9, 0x9f, 0x08, 0x02, 0xbc, 0x50, 0xb7, + 0xbb, 0xbf, 0xe5, 0xb8, 0xed, 0x08, 0x02, 0x3a, 0x2a, 0x43, 0x2d, 0x08, + 0x02, 0x26, 0x44, 0x26, 0x4a, 0x08, 0x02, 0x46, 0x52, 0x46, 0x58, 0x08, + 0x02, 0x56, 0x3f, 0x56, 0x45, 0x0e, 0x0a, 0x01, 0x01, 0x01, 0x00, 0x0a, + 0x00, 0x03, 0x12, 0x13, 0x14, 0x10, 0x01, 0x17, 0x84, 0x20, 0x04, 0x0a, + 0x00, 0x01, 0x00, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x02, 0x01, + 0x02, 0x00, 0x0a, 0x03, 0x05, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x10, 0x01, + 0x17, 0x81, 0x00, 0x04, 0x0a, 0x04, 0x01, 0x03, 0x00, 0x0a, 0x05, 0x01, + 0x04, 0x00, 0x0a, 0x06, 0x01, 0x05, 0x00, 0x0a, 0x08, 0x01, 0x06, 0x00, + 0x0a, 0x00, 0x01, 0x07, 0x10, 0x01, 0x17, 0x86, 0x00, 0x04, 0x0a, 0x07, + 0x01, 0x07, 0x00, 0x0a, 0x09, 0x01, 0x07, 0x02, 0x00, 0x00, 0x00, 0x3a, + 0xda, 0xf5, 0xba, 0xda, 0xf5, 0x00, 0x00, 0x00, 0x49, 0x28, 0x24, 0x4a, + 0x93, 0x32, 0x0a, 0x09, 0x01, 0x08, 0x00, 0x0a, 0x0a, 0x04, 0x09, 0x0a, + 0x0b, 0x0c, 0x10, 0x01, 0x17, 0x81, 0x00, 0x04 }; -const media_icon M_VIDEO_FILTER_ICON = M_GENERIC_ICON; - -const media_icon M_VIDEO_CONSUMER_ICON = M_GENERIC_ICON; - -const media_icon M_TIME_SOURCE_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x6d,0x47,0x47,0x47,0x47, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x6d,0x6d,0x47,0x47,0x47,0x47,0x47, - 0x3f,0x47,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x6d,0x6d,0x47,0x47,0x47,0x47,0x47,0x3f, - 0x47,0x47,0x47,0x47,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x3f,0x3f,0x3f,0x3f,0x47,0x47,0x3f,0x47, - 0x47,0x47,0x47,0x47,0x6d,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x94,0x94,0x94,0x94,0x94,0x3f,0x3f,0x47,0x47, - 0x47,0x47,0x47,0x6d,0x6d,0x6d,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x94,0x94,0x94,0x00,0x00,0x00,0x94,0x94,0x94,0x3f,0x3f, - 0x47,0x47,0x6d,0x6d,0x6d,0x6d,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x94,0x94,0x00,0x00,0x86,0x86,0x86,0x00,0x00,0x94,0x94,0x94, - 0x3f,0x6d,0x6d,0x6d,0x6d,0x94,0x94,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x94,0x94,0x00,0x86,0x86,0x3f,0x3f,0x86,0x86,0x86,0x00,0x00,0x94, - 0x94,0x3f,0x6d,0x6d,0x94,0x94,0x94,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x94,0x00,0x86,0x3f,0x3f,0x3f,0x3f,0x00,0x86,0x86,0x86,0x86,0x00, - 0x94,0x94,0x3f,0x94,0x94,0x94,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x94,0x00,0x86,0x3f,0x3f,0x3f,0x60,0x60,0x60,0x60,0x86,0x86,0x86, - 0x00,0x94,0x3f,0x94,0x94,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x00,0x86,0x3f,0x3f,0x3f,0x60,0x60,0x00,0x60,0x60,0x60,0x86,0x86, - 0x00,0x94,0x94,0x6d,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x00,0x86,0x3f,0x3f,0x60,0x60,0x60,0x00,0x60,0x60,0x3f,0x60,0x86, - 0x86,0x00,0x94,0x6d,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x00,0x86,0x00,0x3f,0x60,0x60,0x60,0x00,0x60,0x3f,0x3f,0x3f,0x86, - 0x86,0x00,0x94,0x94,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x00,0x86,0x3f,0x3f,0x60,0x60,0x60,0x00,0x60,0x60,0x3f,0x60,0x60, - 0x86,0x86,0x00,0x94,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x00,0x86,0x3f,0x3f,0x60,0x60,0x60,0x00,0x60,0x60,0x60,0x60,0x60, - 0x86,0x86,0x01,0x94,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x00,0x86,0x3f,0x60,0x60,0x60,0x60,0x00,0x00,0x60,0x60,0x60,0x60, - 0x86,0x86,0x01,0x94,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x94,0x00,0x86,0x60,0x60,0x60,0x60,0x60,0x60,0x00,0x00,0x60,0x60, - 0x86,0x86,0x01,0x94,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x94,0x00,0x86,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x01,0x00, - 0x86,0x86,0x00,0x94,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x94,0x94,0x00,0x86,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x86, - 0x86,0x01,0x94,0x94,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x94,0x94,0x00,0x86,0x86,0x60,0x60,0x00,0x60,0x60,0x60,0x86,0x86, - 0x86,0x01,0x94,0x94,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x94,0x94,0x94,0x00,0x00,0x86,0x86,0x60,0x60,0x60,0x86,0x86,0x86, - 0x01,0x94,0x94,0x94,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x94,0x94,0x94,0x94,0x94,0x00,0x00,0x86,0x86,0x86,0x86,0x00,0x00, - 0x94,0x94,0x94,0x94,0x7f,0x7f,0x7f,0x7f,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x00,0x00,0x00,0x00,0x94,0x94, - 0x94,0x94,0x94,0x94,0x7f,0x7f,0x7f,0x7f,0x01,0x0e,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94, - 0x94,0x94,0x94,0x94,0x7f,0x7f,0x7f,0x7f,0x01,0x0e,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94, - 0x94,0x94,0x94,0x94,0x7f,0x7f,0x7f,0x7f,0x01,0x0e,0x0f,0x0f,0x0f,0x0f,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x94,0x94,0x94,0x94,0x94,0x94,0x94, - 0x94,0x94,0x94,0x94,0x7f,0x7f,0x7f,0x7f,0x01,0x0e,0x0f,0x0f,0x0f,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x94,0x94,0x94,0x94,0x94, - 0x94,0x94,0x94,0x94,0x7f,0x7f,0x7f,0x01,0x0e,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x94,0x94,0x94, - 0x94,0x94,0x94,0x94,0x7f,0x7f,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x94, - 0x94,0x94,0x94,0x94,0x7f,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x94,0x94,0x94,0x00,0x0f,0x0f,0x0f,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x0e,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x6d,0x6d,0x47,0x47,0x47,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x6d,0x94,0x94,0x3f,0x3f,0x47,0x6d,0x94,0x00,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x94,0x00,0x00,0x00,0x94,0x3f,0x94,0x94,0x00,0xff,0xff,0xff,0xff, - 0xff,0x00,0x94,0x00,0x3f,0x86,0x86,0x00,0x94,0x6d,0x94,0x7f,0x00,0xff,0xff,0xff, - 0x00,0x94,0x00,0x3f,0x60,0x00,0x86,0x86,0x00,0x94,0x7f,0x7f,0x00,0xff,0xff,0xff, - 0x00,0x94,0x00,0x60,0x60,0x00,0x60,0x86,0x00,0x94,0x7f,0x7f,0x00,0xff,0xff,0xff, - 0x00,0x94,0x00,0x60,0x60,0x00,0x60,0x60,0x86,0x00,0x7f,0x7f,0x00,0xff,0xff,0xff, - 0x00,0x94,0x00,0x60,0x60,0x00,0x00,0x60,0x86,0x00,0x7f,0x7f,0x00,0xff,0xff,0xff, - 0x00,0x94,0x00,0x86,0x60,0x60,0x60,0x00,0x86,0x00,0x7f,0x7f,0x00,0xff,0xff,0xff, - 0x00,0x94,0x94,0x00,0x86,0x86,0x86,0x86,0x00,0x94,0x7f,0x7f,0x00,0xff,0xff,0xff, - 0x00,0x94,0x94,0x94,0x00,0x00,0x00,0x00,0x94,0x94,0x7f,0x7f,0x00,0xff,0xff,0xff, - 0xff,0x00,0x00,0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x7f,0x7f,0x00,0x0f,0x0f,0xff, - 0xff,0xff,0xff,0x00,0x00,0x94,0x94,0x94,0x94,0x94,0x7f,0x00,0x00,0x0f,0x0f,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x94,0x94,0x00,0x00,0x0f,0x0f,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x0e,0x0f,0xff,0xff,0xff - } +const unsigned char M_VIDEO_FILTER_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x09, 0x05, 0x00, 0x02, 0x00, 0x06, 0x02, 0x3a, + 0xf8, 0x48, 0x35, 0x64, 0xe4, 0xb6, 0x43, 0x42, 0x3b, 0xf5, 0xb5, 0x4a, + 0x33, 0x11, 0x48, 0x67, 0x6b, 0x00, 0xfc, 0x3d, 0x5d, 0xfd, 0xf9, 0x21, + 0x45, 0x02, 0x00, 0x06, 0x02, 0x3a, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x3d, 0xc0, 0x00, 0x4a, 0x20, 0x00, 0x47, 0x00, 0x00, 0x00, + 0xff, 0xa5, 0xa5, 0xff, 0xff, 0x6e, 0x6e, 0x02, 0x00, 0x06, 0x02, 0x38, + 0x65, 0xb3, 0x37, 0xc8, 0x70, 0xbc, 0x61, 0x1e, 0x3d, 0x03, 0xff, 0x4a, + 0xee, 0x7d, 0x48, 0xf4, 0x4c, 0x00, 0x91, 0x03, 0x35, 0xff, 0xff, 0x90, + 0xaf, 0x02, 0x00, 0x06, 0x02, 0x3b, 0x6d, 0x80, 0x39, 0xf3, 0x58, 0xbc, + 0x2f, 0xf8, 0x3d, 0xcb, 0xb9, 0x47, 0xb7, 0xef, 0x49, 0x42, 0x21, 0x00, + 0xff, 0xf2, 0x89, 0xff, 0xff, 0xcc, 0x60, 0x02, 0x00, 0x06, 0x02, 0x3b, + 0x30, 0x49, 0x39, 0x6b, 0x0a, 0xba, 0x90, 0x83, 0x3c, 0x64, 0x6e, 0x48, + 0xe0, 0x2a, 0x48, 0x65, 0x32, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x89, 0x02, 0x00, 0x06, 0x02, 0x3a, 0x79, 0x37, 0x37, 0xfc, 0x5a, 0xba, + 0x47, 0x0f, 0x3c, 0xd3, 0xad, 0x49, 0xe1, 0xdd, 0x4a, 0x3e, 0x6c, 0x00, + 0xf9, 0x9b, 0x05, 0xff, 0xfc, 0xb2, 0x3d, 0x04, 0x01, 0x74, 0x02, 0x01, + 0x06, 0x05, 0x3b, 0x7d, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, + 0x82, 0x8f, 0x4a, 0xc4, 0x00, 0x46, 0x30, 0x00, 0x01, 0xff, 0xff, 0xff, + 0x45, 0x4b, 0x7a, 0xff, 0xb6, 0x04, 0x20, 0xae, 0xdf, 0x03, 0x1b, 0x92, + 0xff, 0x04, 0x31, 0xb3, 0x0c, 0x0a, 0x06, 0x22, 0x42, 0x22, 0x54, 0x32, + 0x5c, 0x3e, 0x50, 0x3e, 0x3f, 0x2e, 0x3a, 0x0a, 0x04, 0x22, 0x42, 0x22, + 0x54, 0x32, 0x5c, 0x32, 0x49, 0x0a, 0x04, 0x22, 0x42, 0x32, 0x49, 0x3e, + 0x3f, 0x2e, 0x3a, 0x0a, 0x04, 0x32, 0x49, 0x32, 0x5c, 0x3e, 0x50, 0x3e, + 0x3f, 0x0a, 0x07, 0x32, 0x5e, 0x3a, 0x5e, 0x47, 0x51, 0x3e, 0x4c, 0x4a, + 0x40, 0x46, 0x3e, 0x3c, 0x48, 0x06, 0x08, 0x2a, 0xfe, 0x59, 0x2f, 0x4c, + 0x36, 0x4e, 0x42, 0x52, 0x51, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0xca, 0x5c, + 0x3a, 0x60, 0x34, 0x60, 0xbc, 0x4a, 0x60, 0xba, 0x63, 0xcb, 0x67, 0xb9, + 0x71, 0xcc, 0x16, 0xb9, 0xdb, 0xca, 0xce, 0xb9, 0x06, 0x02, 0x04, 0x50, + 0x22, 0xc8, 0x52, 0x22, 0xc3, 0xec, 0x22, 0x46, 0x2c, 0xc2, 0x23, 0xb5, + 0x93, 0x46, 0xb9, 0xfa, 0x50, 0x36, 0xc3, 0xec, 0x36, 0xc8, 0x52, 0x36, + 0x5a, 0x2c, 0x5a, 0xb9, 0xfa, 0x5a, 0xb5, 0x93, 0x0a, 0x09, 0x46, 0x3e, + 0x4c, 0x40, 0x4c, 0x3a, 0x49, 0x32, 0x3a, 0x34, 0x3a, 0x3a, 0x3b, 0x3a, + 0x35, 0x3f, 0x3a, 0x4a, 0x0a, 0x04, 0x46, 0x38, 0x46, 0x3e, 0x3c, 0x48, + 0x3c, 0x41, 0x0a, 0x04, 0x3a, 0x34, 0x3a, 0x3a, 0x40, 0x3c, 0x40, 0x36, + 0x0a, 0x04, 0x46, 0x38, 0x46, 0x3e, 0x4c, 0x40, 0x4c, 0x3a, 0x0a, 0x07, + 0x49, 0x32, 0x3a, 0x34, 0x40, 0x36, 0x35, 0x3f, 0x3c, 0x41, 0x46, 0x38, + 0x4c, 0x3a, 0x0b, 0x0a, 0x07, 0x02, 0x04, 0x05, 0x00, 0x0a, 0x00, 0x01, + 0x06, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x08, 0x01, 0x06, 0x00, + 0x0a, 0x00, 0x01, 0x07, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x03, + 0x01, 0x08, 0x00, 0x0a, 0x01, 0x02, 0x0a, 0x09, 0x00, 0x0a, 0x02, 0x01, + 0x0b, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, + 0x0a, 0x04, 0x01, 0x01, 0x00, 0x0a, 0x06, 0x01, 0x03, 0x00, 0x0a, 0x05, + 0x01, 0x02, 0x00 }; -const media_icon M_FILE_READER_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x0e,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x00, - 0x00,0xff,0xff,0xff,0x00,0x0e,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x00,0x00,0x00, - 0x00,0x00,0x00,0x17,0x3f,0x04,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x00,0x00,0x3f,0x3f,0x3f, - 0x3f,0x3f,0x3f,0x00,0x00,0x00,0x0e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x00,0x3f,0x3f,0x00,0x00,0x00, - 0x00,0x00,0x00,0x3f,0x3f,0x00,0x1a,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x00,0x3f,0x0e,0x00,0x87,0x87,0x87, - 0x87,0x87,0x87,0x01,0x0f,0x3f,0x00,0x1a,0x1a,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x00,0x3f,0x00,0xae,0xae,0xae,0xae, - 0xae,0xae,0xae,0xae,0x00,0x3f,0x00,0x0e,0x1a,0x1a,0x1a,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x00,0x3f,0x0e,0xae,0x86,0x86,0x86, - 0x86,0x86,0x86,0xae,0x10,0x1f,0x00,0x0f,0x0f,0x1a,0x3f,0x15,0x0e,0x00,0xff,0xff, - 0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x00,0x00,0x3f,0x0e,0x00,0x00,0x00, - 0x00,0x00,0x00,0x0f,0x3f,0x00,0x00,0x0e,0x0f,0x3f,0x15,0x0e,0x0e,0x00,0xff,0xff, - 0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x00,0x87,0x00,0x3f,0x3f,0x3f,0x3f, - 0x3f,0x3f,0x3f,0x3f,0x00,0x87,0x00,0x0f,0x3f,0x15,0x0e,0x0e,0x0e,0x00,0xff,0xff, - 0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x00,0x87,0x87,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x87,0x87,0x00,0x0f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f, - 0x00,0x3f,0x3f,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x00,0x87,0x60,0x60,0x60,0x60, - 0x3f,0x87,0x87,0x87,0x87,0x00,0x0f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f, - 0x00,0x15,0x15,0x3f,0x3f,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x00,0x00,0x60,0x60,0x60, - 0x3f,0x87,0x87,0x00,0x00,0x0f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff, - 0x00,0x15,0x15,0x15,0x15,0x3f,0x3f,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x00,0x00,0x00, - 0x00,0x00,0x00,0x0e,0x0f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff, - 0x00,0x15,0x15,0x39,0x34,0x15,0x15,0x3f,0x3f,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x1a,0x1a,0x3f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff, - 0x00,0x15,0x15,0x35,0x34,0x2b,0x2b,0x15,0x15,0x3f,0x3f,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x1a,0x3f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x3f,0x1a,0x1a,0x1a, - 0x1a,0x3f,0x0e,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x3f,0x1a, - 0x3f,0x0e,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x3f, - 0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x1b, - 0x15,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x1b, - 0x15,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x1b, - 0x15,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x1b, - 0x15,0x00,0x0e,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x0e,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x00,0x00,0x00,0x00,0x00,0x0e,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x1a,0x00,0x0f,0x0f,0x0f,0x00,0x00,0x0e,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x1a,0x00,0x3f,0x00,0x00,0x00,0x00,0x1a,0x00,0x00,0xff,0xff, - 0xff,0xff,0x00,0x1a,0x00,0x3f,0x0e,0x87,0x87,0x87,0x0f,0x00,0x3f,0x00,0x00,0xff, - 0xff,0x00,0x1a,0x1a,0x00,0x3f,0xae,0x86,0x86,0x86,0x10,0x00,0x0f,0x0e,0x00,0xff, - 0x00,0x3f,0x3f,0x1a,0x00,0x87,0x3f,0x3f,0x0f,0x3f,0x87,0x00,0x0e,0x0e,0x00,0x0e, - 0x00,0x15,0x15,0x3f,0x3f,0x00,0x00,0x60,0x3f,0x87,0x00,0x0f,0x0e,0x00,0x0f,0x0f, - 0x00,0x15,0x35,0x2b,0x15,0x1f,0x3f,0x00,0x00,0x00,0x0f,0x0e,0x00,0x0e,0x0e,0xff, - 0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x3f,0x0e,0x0e,0x0e,0x00,0x0e,0x0e,0xff,0xff, - 0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x17,0x0e,0x0e,0x00,0x0e,0x0e,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x17,0x0e,0x00,0x0e,0x0e,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - } +const unsigned char M_VIDEO_CONSUMER_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x0b, 0x03, 0x01, 0x00, 0x00, 0x02, 0x00, 0x16, + 0x02, 0x3c, 0xc7, 0xee, 0x38, 0x9b, 0xc0, 0xba, 0x16, 0x57, 0x3e, 0x39, + 0xb0, 0x49, 0x77, 0xc8, 0x42, 0xad, 0xc7, 0x00, 0xff, 0xff, 0xd3, 0x02, + 0x00, 0x06, 0x02, 0x3c, 0x52, 0x9d, 0x37, 0x53, 0xa2, 0xb8, 0x96, 0x6f, + 0x3d, 0x9d, 0x08, 0x4b, 0x60, 0x44, 0x49, 0x6a, 0xaf, 0x00, 0x47, 0x47, + 0x47, 0xff, 0xa5, 0xa0, 0xa0, 0x02, 0x00, 0x16, 0x02, 0xbc, 0x4e, 0x76, + 0xbc, 0x41, 0x1b, 0x3c, 0x90, 0xda, 0xbc, 0xa0, 0x0d, 0x47, 0x58, 0x7d, + 0x4a, 0xba, 0x85, 0x00, 0x90, 0xff, 0xd4, 0x02, 0x00, 0x16, 0x02, 0x38, + 0x31, 0x3c, 0x3b, 0x5c, 0xf0, 0xbf, 0xcd, 0x96, 0x3c, 0x7a, 0xac, 0x4c, + 0x13, 0x94, 0x3f, 0xca, 0xf9, 0x01, 0xec, 0xff, 0xc3, 0x05, 0x4b, 0x04, + 0x01, 0x7e, 0x02, 0x00, 0x06, 0x03, 0x3e, 0x2f, 0x99, 0x38, 0x7f, 0x17, + 0xba, 0x42, 0xdb, 0x3f, 0xf5, 0xb9, 0x4a, 0x0e, 0x32, 0x48, 0x2c, 0x90, + 0x00, 0x1d, 0x1e, 0x2c, 0x3d, 0x45, 0x46, 0x58, 0xff, 0x01, 0x01, 0x01, + 0x02, 0x00, 0x06, 0x02, 0x38, 0x79, 0x06, 0x3b, 0x82, 0x24, 0xbe, 0x2c, + 0xc8, 0x3b, 0x10, 0xdb, 0x4a, 0x1f, 0x6f, 0x49, 0xb8, 0x94, 0x00, 0x24, + 0x22, 0x22, 0xff, 0x9a, 0x9a, 0x9a, 0x02, 0x00, 0x06, 0x03, 0x3c, 0x69, + 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x18, 0x61, 0x48, 0x80, + 0x00, 0x49, 0x80, 0x00, 0x00, 0xd4, 0xce, 0xce, 0x58, 0xf3, 0xf3, 0xf3, + 0xff, 0xd9, 0xd9, 0xd9, 0x03, 0x8d, 0xff, 0x06, 0x0d, 0x0a, 0x06, 0x22, + 0x28, 0x22, 0x4a, 0x48, 0x5e, 0x52, 0x52, 0x52, 0x30, 0x2c, 0x22, 0x0a, + 0x04, 0x22, 0x28, 0x48, 0x38, 0x52, 0x30, 0x2c, 0x22, 0x0a, 0x04, 0x48, + 0x38, 0x48, 0x5e, 0x52, 0x52, 0x52, 0x30, 0x0a, 0x04, 0x22, 0x28, 0x22, + 0x4a, 0x48, 0x5e, 0x48, 0x38, 0x0a, 0x04, 0x45, 0x3a, 0x45, 0x57, 0x24, + 0x46, 0x24, 0x2c, 0x0a, 0x04, 0xb5, 0x60, 0xc1, 0x59, 0x24, 0x46, 0x24, + 0x2c, 0xb5, 0x69, 0xb8, 0x20, 0x0a, 0x04, 0x45, 0x54, 0x45, 0x57, 0x24, + 0x46, 0x26, 0x44, 0x0a, 0x04, 0x45, 0x3a, 0x45, 0x54, 0x26, 0x44, 0xb5, + 0x69, 0xb8, 0x20, 0x0a, 0x04, 0x38, 0x26, 0x3d, 0x23, 0x4e, 0x28, 0x49, + 0x2c, 0x08, 0x04, 0x38, 0x26, 0x3d, 0x23, 0x4e, 0x28, 0x4e, 0x2e, 0x0a, + 0x03, 0x49, 0x2c, 0x4e, 0x28, 0x4e, 0x2e, 0x08, 0x02, 0x42, 0x58, 0x43, + 0xc9, 0x83, 0x0a, 0x06, 0x48, 0x60, 0x54, 0x60, 0x60, 0x52, 0xca, 0x1b, + 0xc5, 0xb9, 0x5c, 0x4d, 0x52, 0x48, 0x0c, 0x0a, 0x06, 0x01, 0x0c, 0x00, + 0x0a, 0x00, 0x01, 0x09, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x04, + 0x01, 0x08, 0x00, 0x0a, 0x05, 0x01, 0x0a, 0x00, 0x0a, 0x00, 0x01, 0x00, + 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x01, 0x01, 0x01, 0x00, 0x0a, + 0x02, 0x01, 0x02, 0x00, 0x0a, 0x03, 0x02, 0x03, 0x04, 0x00, 0x0a, 0x07, + 0x01, 0x07, 0x00, 0x0a, 0x08, 0x01, 0x05, 0x00, 0x0a, 0x09, 0x01, 0x06, + 0x00, 0x0a, 0x0a, 0x01, 0x0b, 0x18, 0x15, 0xff, 0x01, 0x17, 0x82, 0x20, + 0x04 }; -const media_icon M_FILE_WRITER_ICON = -{ - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x0b,0x3f,0x5a,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x5a,0x0b,0x3f,0x5a,0x5a,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x0b,0x5a,0x0b,0x3f,0x5a,0x5a,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x5c,0x0b,0x5a,0x3f,0x08,0x5a,0x5a,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x5c,0xfd,0x0a,0x3f,0xa3,0xa3,0x08,0x09,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x00, - 0x00,0xff,0xff,0xff,0xff,0x00,0x5c,0xfd,0x11,0x3f,0x08,0xa3,0xa3,0xca,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x00,0x00,0xff,0x00,0x5c,0xfd,0x11,0x3f,0xfa,0x08,0x09,0x08,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x1a,0x1a,0x00,0x5c,0xfd,0x11,0x3f,0xfa,0x08,0x5c,0x5c,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x1a,0x00,0x5c,0xfd,0x11,0x3f,0xfa,0x08,0x5c,0x5c,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x1a,0x0a,0x5c,0xfd,0x11,0x3f,0xfa,0x08,0x5c,0x5c,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a, - 0x0a,0x5c,0xfd,0x11,0x3f,0xfa,0x08,0x5c,0x5c,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a, - 0x5c,0xfd,0x11,0x3f,0xfa,0x08,0x5c,0x5c,0x00,0x1a,0x1a,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a, - 0xfd,0x11,0x3f,0xfa,0x08,0x5c,0x5c,0x00,0x1a,0x1a,0x3f,0x15,0x0e,0x00,0xff,0xff, - 0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a,0x0b, - 0x0a,0x3f,0xfa,0x08,0x5c,0x5c,0x00,0x1a,0x1a,0x3f,0x15,0x0e,0x0e,0x00,0xff,0xff, - 0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a,0x3f, - 0x0a,0xfa,0x08,0x5c,0x5c,0x00,0x1a,0x1a,0x3f,0x15,0x0e,0x0e,0x0e,0x00,0xff,0xff, - 0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a,0x3f, - 0x0a,0x00,0x00,0x00,0x00,0x1a,0x1a,0x3f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f, - 0x00,0x3f,0x3f,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a,0x3f,0x5a, - 0x5b,0x5b,0x5b,0x00,0x1a,0x1a,0x3f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f, - 0x00,0x15,0x15,0x3f,0x3f,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a,0x09,0x5b, - 0x5b,0x00,0x00,0x1a,0x1a,0x3f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff, - 0x00,0x15,0x15,0x15,0x15,0x3f,0x3f,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a,0x09,0x00, - 0x00,0x1a,0x1a,0x1a,0x3f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff, - 0x00,0x15,0x15,0x39,0x34,0x15,0x15,0x3f,0x3f,0x1a,0x1a,0x1a,0x0a,0x00,0x00,0x1a, - 0x1a,0x1a,0x1a,0x3f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff, - 0x00,0x15,0x15,0x35,0x34,0x2b,0x2b,0x15,0x15,0x3f,0x3f,0x1a,0x00,0x00,0x1a,0x1a, - 0x1a,0x1a,0x3f,0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x3f,0x1a,0x1a,0x1a, - 0x1a,0x3f,0x0e,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x3f,0x3f,0x1a, - 0x3f,0x0e,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x3f, - 0x15,0x0e,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x1b, - 0x15,0x0e,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x15,0x1b, - 0x15,0x0e,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x15,0x1b, - 0x15,0x0e,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x1b, - 0x15,0x00,0x0e,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x0e,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - }, - { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x0b,0x5a, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x0b,0x3f,0x5a, - 0xff,0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x00,0x00,0xff,0x00,0xfd,0x3f,0xa3,0xca, - 0xff,0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x00,0xfd,0x3f,0x08,0x5c,0xff, - 0xff,0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a,0xfd,0x3f,0x08,0x5c,0xff,0xff, - 0xff,0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x5c,0xfd,0x3f,0x08,0x5c,0x00,0x00,0xff, - 0xff,0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x0a,0x0a,0x3f,0x08,0x5c,0x0e,0x0e,0x00,0xff, - 0x00,0x3f,0x3f,0x1a,0x1a,0x1a,0x1a,0x0a,0x0a,0x00,0x00,0x0e,0x0e,0x0e,0x00,0x0e, - 0x00,0x15,0x15,0x3f,0x3f,0x1a,0x1a,0x3f,0x5b,0x5b,0x00,0x0e,0x0e,0x00,0x0f,0x0f, - 0x00,0x15,0x35,0x2b,0x15,0x1f,0x3f,0x09,0x00,0x0e,0x0e,0x0e,0x00,0x0e,0x0e,0xff, - 0x00,0x00,0x15,0x15,0x15,0x15,0x00,0x3f,0x0e,0x0e,0x0e,0x00,0x0e,0x0e,0xff,0xff, - 0xff,0xff,0x00,0x00,0x15,0x15,0x15,0x17,0x0e,0x0e,0x00,0x0e,0x0e,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x15,0x17,0x0e,0x00,0x0e,0x0e,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - } +const unsigned char M_TIME_SOURCE_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x08, 0x05, 0x00, 0x04, 0x00, 0x71, 0x02, 0x00, + 0x06, 0x04, 0x3d, 0x88, 0x27, 0x3d, 0x88, 0x27, 0xbe, 0xd4, 0x13, 0x3e, + 0xd4, 0x13, 0x4b, 0x10, 0x00, 0xc6, 0x10, 0x4f, 0x41, 0x04, 0xa3, 0xa5, + 0x85, 0xb3, 0xfe, 0xff, 0xe1, 0x02, 0x66, 0x67, 0xff, 0x03, 0x70, 0x72, + 0x02, 0x00, 0x06, 0x03, 0x3b, 0x9e, 0xe1, 0x3b, 0x9e, 0xe1, 0xbb, 0x9e, + 0xe1, 0x3b, 0x9e, 0xe1, 0x47, 0xc3, 0x85, 0x4a, 0x3e, 0x7a, 0x00, 0x9b, + 0xef, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x04, 0xa8, 0xaa, 0x02, 0x00, + 0x06, 0x03, 0x3c, 0x63, 0x92, 0x3c, 0xaf, 0x4c, 0xbe, 0xfc, 0xfd, 0x3e, + 0xa8, 0xb5, 0x4b, 0x01, 0x9a, 0x46, 0x57, 0x49, 0x00, 0x30, 0xa3, 0xa5, + 0x7c, 0x40, 0xc5, 0xc7, 0xff, 0x28, 0xa3, 0xa5, 0x02, 0x01, 0x06, 0x02, + 0x3c, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0xe0, 0x00, + 0x49, 0x40, 0x00, 0x4a, 0x10, 0x00, 0x00, 0xf8, 0xf8, 0xff, 0xff, 0x98, + 0x98, 0xff, 0x02, 0x00, 0x16, 0x02, 0x36, 0x92, 0x15, 0x35, 0xa8, 0x0e, + 0xbe, 0x51, 0x7b, 0x3f, 0x42, 0x7a, 0x4a, 0x81, 0xc6, 0x44, 0xe5, 0xe4, + 0x00, 0xda, 0xff, 0x00, 0x05, 0xff, 0x0e, 0x06, 0x04, 0xeb, 0x5e, 0x52, + 0x64, 0x55, 0x5e, 0x52, 0x52, 0x4c, 0x48, 0x60, 0x50, 0x60, 0x50, 0x60, + 0x56, 0x60, 0x02, 0x0b, 0xc6, 0xa6, 0xc8, 0x2f, 0xc6, 0xa6, 0xc8, 0x2f, + 0xc6, 0xd2, 0xc7, 0xf9, 0x52, 0x53, 0x52, 0xc7, 0xaf, 0x52, 0x53, 0x52, + 0x40, 0x52, 0x40, 0x52, 0xbb, 0x92, 0x42, 0x26, 0xc4, 0x82, 0xb7, 0x5f, + 0xbe, 0x10, 0xb4, 0x25, 0xba, 0x33, 0xb5, 0x5b, 0x36, 0x24, 0x2e, 0x28, + 0xb6, 0xcf, 0xb7, 0xf2, 0xb6, 0xcf, 0xb7, 0xf2, 0xb5, 0xea, 0xb8, 0xc2, + 0x26, 0xbb, 0xc2, 0x26, 0xba, 0x0f, 0x26, 0xbb, 0xc2, 0x26, 0xc3, 0x54, + 0x26, 0xc3, 0x54, 0x26, 0xc4, 0x6d, 0xb7, 0x63, 0xc6, 0x51, 0xb6, 0x49, + 0xc5, 0xc3, 0xb7, 0x63, 0xc6, 0x51, 0xc1, 0xbf, 0xcb, 0x81, 0xc1, 0xbf, + 0xcb, 0x81, 0xc2, 0x7c, 0xcb, 0xe0, 0xc3, 0x79, 0xcb, 0x5f, 0xc3, 0x21, + 0xcb, 0xcb, 0xc3, 0x79, 0xcb, 0x5f, 0x06, 0x07, 0xff, 0x2b, 0xc6, 0xa6, + 0xc8, 0x2f, 0xc6, 0xa6, 0xc8, 0x2f, 0xc6, 0xd2, 0xc7, 0xf9, 0x52, 0x53, + 0x52, 0xc7, 0xaf, 0x52, 0x53, 0x52, 0x40, 0x52, 0x40, 0x52, 0xbb, 0x92, + 0x42, 0x26, 0xc4, 0x82, 0xb7, 0x5f, 0xbe, 0x10, 0xb4, 0x25, 0xba, 0x33, + 0xb5, 0x5b, 0x36, 0x24, 0x2e, 0x28, 0xb6, 0xcf, 0xb7, 0xf2, 0xc3, 0x79, + 0xcb, 0x5f, 0x02, 0x06, 0x38, 0x2c, 0x38, 0x2c, 0xc0, 0x45, 0xb9, 0xa2, + 0xc3, 0xb4, 0x46, 0xc3, 0x53, 0xbe, 0x25, 0xc3, 0xb2, 0xbd, 0xf6, 0x3a, + 0x2a, 0xc1, 0x51, 0xb8, 0xf7, 0x3a, 0x2a, 0x3a, 0x2a, 0x3a, 0x2a, 0xba, + 0xae, 0xb5, 0xa3, 0xb7, 0x1e, 0xb7, 0xb2, 0xb8, 0x5a, 0xb6, 0x06, 0xb8, + 0x6e, 0xb6, 0xbc, 0x38, 0x2c, 0xba, 0x61, 0xb6, 0xaf, 0x38, 0x2c, 0x02, + 0x08, 0x38, 0x2c, 0x38, 0x2c, 0xb8, 0x9a, 0xb5, 0xcc, 0x26, 0xbb, 0xc2, + 0x26, 0xb7, 0x93, 0x26, 0xbb, 0xc2, 0x26, 0xc3, 0x54, 0x26, 0xc3, 0x54, + 0x26, 0xc4, 0x6d, 0xb7, 0x63, 0xc6, 0x51, 0xb6, 0x49, 0xc5, 0xc3, 0xb7, + 0x63, 0xc6, 0x51, 0xc1, 0xbf, 0xcb, 0x81, 0xc1, 0xbf, 0xcb, 0x81, 0xc2, + 0xd8, 0xcc, 0x0e, 0xc3, 0xbe, 0x5b, 0xc3, 0xbd, 0xcb, 0x9c, 0xc3, 0xbe, + 0x5b, 0xc3, 0xbe, 0x48, 0xc3, 0xbe, 0x48, 0x4a, 0xbe, 0xc2, 0x38, 0x2c, + 0xc0, 0x85, 0xb9, 0xc3, 0x38, 0x2c, 0x02, 0x04, 0x38, 0x30, 0xb9, 0x79, + 0xb7, 0xd4, 0xbf, 0xa4, 0xba, 0xea, 0x46, 0x46, 0x46, 0xbe, 0xd7, 0x46, + 0xc5, 0x71, 0xbc, 0x91, 0x4e, 0xbf, 0xa5, 0xc6, 0xdd, 0xb9, 0x7d, 0xc3, + 0xc9, 0x2a, 0xbc, 0x8e, 0x2a, 0xbf, 0xda, 0x2a, 0xb9, 0x40, 0x02, 0x04, + 0x38, 0x32, 0xbf, 0x33, 0xbb, 0x7e, 0xb9, 0xeb, 0xb8, 0xd9, 0x2c, 0xbc, + 0xf4, 0x2c, 0xba, 0x17, 0x2c, 0xbf, 0xd1, 0xbc, 0x91, 0x4c, 0xb9, 0xec, + 0xc3, 0x35, 0xbf, 0x35, 0xc5, 0xd9, 0xc1, 0x5a, 0x45, 0xc1, 0x59, 0xc4, + 0x9b, 0x44, 0xbe, 0xe2, 0x02, 0x07, 0x30, 0xbe, 0x8c, 0x30, 0xbe, 0x8c, + 0x30, 0xbc, 0x20, 0x3a, 0x37, 0xbb, 0x28, 0xbb, 0x0f, 0xbe, 0x33, 0xbc, + 0x94, 0xbf, 0x9e, 0xbe, 0x0f, 0xbe, 0xf9, 0xbd, 0x41, 0xbe, 0xe2, 0xbc, + 0xbd, 0x38, 0x34, 0xbd, 0xc9, 0xbb, 0x94, 0xba, 0x5d, 0xb9, 0xdd, 0xb8, + 0x95, 0xbd, 0x5a, 0x2e, 0xba, 0xee, 0xb8, 0x95, 0xbe, 0xda, 0xba, 0x51, + 0xc1, 0xd4, 0xb9, 0x45, 0xc0, 0x84, 0xb9, 0xba, 0xc0, 0xc6, 0xb9, 0x61, + 0xbe, 0x8c, 0x30, 0xbf, 0x9e, 0xb9, 0x61, 0xbe, 0x8c, 0x02, 0x05, 0x3d, + 0xbd, 0xbc, 0x3d, 0xbd, 0xbc, 0xbd, 0xfe, 0xbd, 0x74, 0xbd, 0x8a, 0xbe, + 0x3e, 0xbd, 0x89, 0xbd, 0xaf, 0xbd, 0x8a, 0xbe, 0xcd, 0xbe, 0x8f, 0xbf, + 0xc4, 0xbd, 0xff, 0xbf, 0x7d, 0xbf, 0x1f, 0xc0, 0x0c, 0xbf, 0x94, 0xbf, + 0x42, 0xbf, 0x94, 0xbf, 0xd2, 0xbf, 0x92, 0xbe, 0xb3, 0xbe, 0x8f, 0xbd, + 0xbc, 0xbf, 0x1d, 0xbe, 0x03, 0xbe, 0x8f, 0xbd, 0xbc, 0x08, 0x02, 0x40, + 0x34, 0x40, 0x36, 0x08, 0x02, 0x40, 0x4a, 0x40, 0x4c, 0x08, 0x02, 0x4a, + 0x40, 0x4c, 0x40, 0x08, 0x02, 0x34, 0x40, 0x36, 0x40, 0x08, 0x03, 0x3c, + 0x39, 0x3f, 0x40, 0x49, 0x3a, 0x09, 0x0a, 0x01, 0x01, 0x00, 0x00, 0x0a, + 0x00, 0x01, 0x01, 0x10, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x02, 0x01, + 0x02, 0x00, 0x0a, 0x04, 0x01, 0x04, 0x00, 0x0a, 0x03, 0x01, 0x03, 0x00, + 0x0a, 0x00, 0x01, 0x05, 0x00, 0x0a, 0x05, 0x01, 0x06, 0x00, 0x0a, 0x07, + 0x02, 0x07, 0x08, 0x00, 0x0a, 0x06, 0x05, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, + 0x12, 0x3e, 0xfe, 0x74, 0x3d, 0xd3, 0xda, 0x35, 0x59, 0x28, 0x3f, 0x4c, + 0x7f, 0xbe, 0xcf, 0xc1, 0xc6, 0x90, 0xad, 0x01, 0x17, 0x83, 0x22, 0x04 +}; + +const unsigned char M_FILE_READER_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x07, 0x05, 0x00, 0x02, 0x00, 0x06, 0x02, 0x38, + 0x41, 0x81, 0x3c, 0x9b, 0x3b, 0xbe, 0xab, 0x39, 0x3a, 0x4f, 0x58, 0x4b, + 0x25, 0x4d, 0x4a, 0x7a, 0xeb, 0x00, 0xff, 0xe2, 0xac, 0xff, 0xf4, 0x98, + 0x06, 0x02, 0x00, 0x16, 0x02, 0x2c, 0x60, 0x67, 0x3c, 0xaa, 0xab, 0xbe, + 0xbb, 0x08, 0x2e, 0x6e, 0xfb, 0x4b, 0xba, 0x06, 0x4a, 0x22, 0xb0, 0x00, + 0xff, 0xff, 0x8e, 0x02, 0x00, 0x06, 0x02, 0x2c, 0x25, 0xf4, 0x3c, 0x69, + 0x17, 0xbe, 0xbb, 0x08, 0x2e, 0x6e, 0xfb, 0x4b, 0xaf, 0xbf, 0x49, 0x7e, + 0x0b, 0x00, 0xfa, 0xce, 0x79, 0xff, 0xbc, 0x41, 0x05, 0x03, 0xa0, 0x3d, + 0x03, 0x02, 0x00, 0x16, 0x02, 0x3a, 0xe3, 0xb4, 0x3c, 0x79, 0xdc, 0xbe, + 0x5b, 0xc5, 0x3c, 0xc0, 0x97, 0x4b, 0x42, 0xac, 0x47, 0xca, 0x41, 0x00, + 0x9a, 0xff, 0x50, 0x04, 0x01, 0x65, 0x07, 0x0a, 0x06, 0x4a, 0x5d, 0x50, + 0x5d, 0x54, 0x59, 0x58, 0x59, 0x5e, 0x53, 0x50, 0x4f, 0x0a, 0x04, 0x23, + 0x2f, 0x2d, 0x49, 0x4a, 0x5b, 0x46, 0x3e, 0x0a, 0x04, 0x23, 0x2f, 0x46, + 0x3e, 0x4a, 0x5b, 0xc3, 0x23, 0x3c, 0x0a, 0x06, 0x3a, 0x28, 0x2e, 0x49, + 0x4a, 0x5a, 0x5c, 0x2c, 0x50, 0x2a, 0x4c, 0x2c, 0x0a, 0x04, 0x30, 0x2b, + 0x30, 0x49, 0x4a, 0x59, 0x51, 0x36, 0x0a, 0x04, 0x30, 0x2b, 0x51, 0x36, + 0x4a, 0x59, 0x54, 0xbb, 0x1e, 0x0a, 0x0a, 0x23, 0x2f, 0x2d, 0x49, 0x4a, + 0x5b, 0x5c, 0x2c, 0x50, 0x2a, 0x4c, 0x2c, 0x3a, 0x28, 0x38, 0x2d, 0x30, + 0x2b, 0xb9, 0x57, 0xba, 0xa7, 0x08, 0x0a, 0x06, 0x01, 0x00, 0x00, 0x0a, + 0x00, 0x01, 0x06, 0x18, 0x15, 0xff, 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, + 0x00, 0x01, 0x06, 0x18, 0x00, 0x15, 0x01, 0x17, 0x86, 0x00, 0x04, 0x0a, + 0x03, 0x01, 0x03, 0x00, 0x0a, 0x02, 0x01, 0x04, 0x00, 0x0a, 0x05, 0x01, + 0x05, 0x00, 0x0a, 0x01, 0x01, 0x01, 0x00, 0x0a, 0x04, 0x01, 0x02, 0x00 +}; + +const unsigned char M_FILE_WRITER_ICON[] = { + 0x6e, 0x63, 0x69, 0x66, 0x0b, 0x03, 0x01, 0x00, 0x00, 0x01, 0x01, 0x00, + 0x00, 0x6a, 0x02, 0x00, 0x16, 0x02, 0x38, 0x6a, 0xad, 0x38, 0xeb, 0x7a, + 0xbb, 0x77, 0x73, 0x3a, 0xde, 0x88, 0x48, 0x8e, 0xdc, 0x4a, 0x75, 0xed, + 0x00, 0x8a, 0xff, 0x4b, 0x05, 0x30, 0x02, 0x00, 0x16, 0x02, 0x39, 0x48, + 0x97, 0x38, 0x49, 0x4a, 0xba, 0xdb, 0x69, 0x3c, 0x0d, 0x39, 0x4b, 0x5b, + 0xd1, 0x4a, 0x1e, 0xec, 0x00, 0x3a, 0xff, 0x78, 0x02, 0x00, 0x16, 0x02, + 0xb7, 0x16, 0xa4, 0xba, 0x87, 0xfe, 0x3c, 0xb2, 0x07, 0xb9, 0x49, 0xed, + 0x48, 0x47, 0xd8, 0x4a, 0x1e, 0x62, 0x01, 0x75, 0xfe, 0xc4, 0x02, 0x00, + 0x16, 0x02, 0xb7, 0x16, 0xa4, 0xba, 0x87, 0xfe, 0x3c, 0xb2, 0x07, 0xb9, + 0x49, 0xed, 0x48, 0x47, 0xd8, 0x4a, 0x1e, 0x62, 0x01, 0x5c, 0xfe, 0x9b, + 0x02, 0x00, 0x16, 0x02, 0x39, 0x17, 0x22, 0x3b, 0x09, 0xfe, 0xbd, 0x22, + 0x41, 0x3b, 0x2f, 0xce, 0x49, 0xb5, 0xf0, 0x4a, 0x34, 0x11, 0x00, 0xe6, + 0xff, 0x93, 0x02, 0x00, 0x16, 0x03, 0x33, 0x21, 0x0a, 0x38, 0x29, 0xdf, + 0xba, 0xb4, 0xc5, 0x35, 0xe9, 0xec, 0x49, 0xc4, 0xc5, 0x4a, 0x79, 0x7a, + 0x00, 0xe1, 0x6d, 0xff, 0xfd, 0xd0, 0x02, 0x00, 0x16, 0x02, 0x36, 0x67, + 0xbe, 0x39, 0xdd, 0xbc, 0xbe, 0x50, 0x04, 0x3a, 0xe0, 0x9f, 0x4b, 0x65, + 0x01, 0x49, 0x2a, 0x3f, 0x00, 0xff, 0xff, 0xf1, 0x03, 0x38, 0x6d, 0xbe, + 0x0c, 0x0a, 0x05, 0x42, 0x5c, 0x42, 0x40, 0x5c, 0x40, 0x60, 0x42, 0x46, + 0x5c, 0x0a, 0x06, 0x42, 0x5a, 0x5a, 0x42, 0x5a, 0x3e, 0x3a, 0x31, 0x22, + 0x45, 0xb3, 0xcb, 0xc3, 0xbb, 0x0a, 0x04, 0x42, 0x5a, 0x22, 0x4a, 0x22, + 0x45, 0x42, 0x54, 0x0a, 0x04, 0x42, 0x5a, 0x5a, 0x42, 0x5a, 0x3e, 0x42, + 0x54, 0x0a, 0x08, 0x42, 0x54, 0x5a, 0x3e, 0xc7, 0xb9, 0xbd, 0xfc, 0x46, + 0x48, 0x31, 0x3f, 0xbf, 0x37, 0xba, 0x85, 0x3a, 0x31, 0x22, 0x45, 0x0a, + 0x04, 0x3d, 0xc9, 0x1d, 0xbc, 0x25, 0xc7, 0xe8, 0xbc, 0x21, 0xc5, 0xa4, + 0x3d, 0xc6, 0xca, 0x0a, 0x04, 0xbc, 0x25, 0xc7, 0xe8, 0xb6, 0x34, 0x4d, + 0x28, 0xc2, 0xdb, 0xbc, 0x21, 0xc5, 0xa4, 0x0a, 0x04, 0xbe, 0xbb, 0xc3, + 0x23, 0xc1, 0x16, 0xc4, 0x35, 0x3d, 0x52, 0xbc, 0x1e, 0xc5, 0xc2, 0x0a, + 0x04, 0x2f, 0x42, 0xbe, 0xbb, 0xc3, 0x23, 0xbc, 0x1e, 0xc5, 0xc2, 0x28, + 0x48, 0x0a, 0x04, 0x46, 0x48, 0xc7, 0xb9, 0xbd, 0xfc, 0xbf, 0x37, 0xba, + 0x85, 0x31, 0x3f, 0x08, 0x02, 0x35, 0x3e, 0x46, 0xc1, 0xe2, 0x0a, 0x04, + 0xb9, 0x46, 0xc3, 0xd5, 0x34, 0x46, 0x30, 0xc1, 0x7c, 0xb7, 0xae, 0xc3, + 0x09, 0x0c, 0x0a, 0x01, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x01, 0x01, 0x10, + 0x01, 0x17, 0x84, 0x00, 0x04, 0x0a, 0x02, 0x01, 0x02, 0x00, 0x0a, 0x04, + 0x01, 0x03, 0x00, 0x0a, 0x05, 0x01, 0x04, 0x00, 0x0a, 0x03, 0x01, 0x05, + 0x00, 0x0a, 0x06, 0x01, 0x07, 0x00, 0x0a, 0x07, 0x01, 0x06, 0x00, 0x0a, + 0x08, 0x01, 0x08, 0x00, 0x0a, 0x09, 0x01, 0x09, 0x00, 0x0a, 0x0a, 0x01, + 0x0a, 0x18, 0x15, 0xff, 0x01, 0x17, 0x81, 0x00, 0x04, 0x0a, 0x00, 0x01, + 0x0b, 0x00 }; #endif // __MediaIconBits_H__