1*19c3b8c2SApple OSS Distributions /* 2*19c3b8c2SApple OSS Distributions * Copyright (c) 2000-2007 Apple Inc. All rights reserved. 3*19c3b8c2SApple OSS Distributions * 4*19c3b8c2SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5*19c3b8c2SApple OSS Distributions * 6*19c3b8c2SApple OSS Distributions * This file contains Original Code and/or Modifications of Original Code 7*19c3b8c2SApple OSS Distributions * as defined in and that are subject to the Apple Public Source License 8*19c3b8c2SApple OSS Distributions * Version 2.0 (the 'License'). You may not use this file except in 9*19c3b8c2SApple OSS Distributions * compliance with the License. The rights granted to you under the License 10*19c3b8c2SApple OSS Distributions * may not be used to create, or enable the creation or redistribution of, 11*19c3b8c2SApple OSS Distributions * unlawful or unlicensed copies of an Apple operating system, or to 12*19c3b8c2SApple OSS Distributions * circumvent, violate, or enable the circumvention or violation of, any 13*19c3b8c2SApple OSS Distributions * terms of an Apple operating system software license agreement. 14*19c3b8c2SApple OSS Distributions * 15*19c3b8c2SApple OSS Distributions * Please obtain a copy of the License at 16*19c3b8c2SApple OSS Distributions * http://www.opensource.apple.com/apsl/ and read it before using this file. 17*19c3b8c2SApple OSS Distributions * 18*19c3b8c2SApple OSS Distributions * The Original Code and all software distributed under the License are 19*19c3b8c2SApple OSS Distributions * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20*19c3b8c2SApple OSS Distributions * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21*19c3b8c2SApple OSS Distributions * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22*19c3b8c2SApple OSS Distributions * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23*19c3b8c2SApple OSS Distributions * Please see the License for the specific language governing rights and 24*19c3b8c2SApple OSS Distributions * limitations under the License. 25*19c3b8c2SApple OSS Distributions * 26*19c3b8c2SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27*19c3b8c2SApple OSS Distributions */ 28*19c3b8c2SApple OSS Distributions 29*19c3b8c2SApple OSS Distributions #define kProgressBarHeight (18) 30*19c3b8c2SApple OSS Distributions #define kProgressBarCapWidth (9) 31*19c3b8c2SApple OSS Distributions #define kProgressBarWidth (234) 32*19c3b8c2SApple OSS Distributions 33*19c3b8c2SApple OSS Distributions static const unsigned char progressmeter_leftcap1x[2][9 * 18] = { 34*19c3b8c2SApple OSS Distributions { 35*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 36*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 37*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 38*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 39*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 40*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 41*19c3b8c2SApple OSS Distributions 0xfe, 0xdc, 0xc6, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 42*19c3b8c2SApple OSS Distributions 0xdd, 0xcc, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 43*19c3b8c2SApple OSS Distributions 0xc6, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 44*19c3b8c2SApple OSS Distributions 0xc6, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 45*19c3b8c2SApple OSS Distributions 0xdd, 0xcc, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 46*19c3b8c2SApple OSS Distributions 0xfe, 0xdc, 0xc6, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 47*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 48*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 49*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 50*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 51*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 52*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 53*19c3b8c2SApple OSS Distributions }, 54*19c3b8c2SApple OSS Distributions { 55*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 56*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 57*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 58*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 59*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 60*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 61*19c3b8c2SApple OSS Distributions 0xfa, 0x8b, 0x41, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 62*19c3b8c2SApple OSS Distributions 0x8c, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 63*19c3b8c2SApple OSS Distributions 0x41, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 64*19c3b8c2SApple OSS Distributions 0x41, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 65*19c3b8c2SApple OSS Distributions 0x8c, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 66*19c3b8c2SApple OSS Distributions 0xfa, 0x8b, 0x41, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 67*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 68*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 69*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 70*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 71*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 72*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 73*19c3b8c2SApple OSS Distributions } 74*19c3b8c2SApple OSS Distributions }; 75*19c3b8c2SApple OSS Distributions 76*19c3b8c2SApple OSS Distributions static const unsigned char progressmeter_leftcap2x[2][4 * 9 * 18] = { 77*19c3b8c2SApple OSS Distributions { 78*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 79*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 80*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 81*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 82*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 83*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 84*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 85*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 86*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 87*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 88*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 89*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 90*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xfe, 0xe5, 0xcf, 0xc5, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 91*19c3b8c2SApple OSS Distributions 0xff, 0xf9, 0xcd, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 92*19c3b8c2SApple OSS Distributions 0xfe, 0xcd, 0xc2, 0xc8, 0xd2, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 93*19c3b8c2SApple OSS Distributions 0xe5, 0xc2, 0xc8, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 94*19c3b8c2SApple OSS Distributions 0xcf, 0xc2, 0xd1, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 95*19c3b8c2SApple OSS Distributions 0xc3, 0xc2, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 96*19c3b8c2SApple OSS Distributions 0xc3, 0xc2, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 97*19c3b8c2SApple OSS Distributions 0xcf, 0xc2, 0xd2, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 98*19c3b8c2SApple OSS Distributions 0xe5, 0xc2, 0xc7, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 99*19c3b8c2SApple OSS Distributions 0xfd, 0xcd, 0xc2, 0xc8, 0xd2, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 100*19c3b8c2SApple OSS Distributions 0xff, 0xf9, 0xcd, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 101*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xfe, 0xe4, 0xce, 0xc5, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 102*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 103*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 104*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 105*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 106*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 107*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 108*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 109*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 110*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 111*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 112*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 113*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 114*19c3b8c2SApple OSS Distributions }, 115*19c3b8c2SApple OSS Distributions { 116*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 117*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 118*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 119*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 120*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 121*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 122*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 123*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 124*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 125*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 126*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 127*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 128*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xfa, 0xa7, 0x60, 0x3d, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 129*19c3b8c2SApple OSS Distributions 0xff, 0xe9, 0x59, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 130*19c3b8c2SApple OSS Distributions 0xfa, 0x59, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 131*19c3b8c2SApple OSS Distributions 0xa8, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 132*19c3b8c2SApple OSS Distributions 0x60, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 133*19c3b8c2SApple OSS Distributions 0x38, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 134*19c3b8c2SApple OSS Distributions 0x38, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 135*19c3b8c2SApple OSS Distributions 0x60, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 136*19c3b8c2SApple OSS Distributions 0xa7, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 137*19c3b8c2SApple OSS Distributions 0xf9, 0x59, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 138*19c3b8c2SApple OSS Distributions 0xff, 0xe9, 0x59, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 139*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xfa, 0xa6, 0x5d, 0x3c, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 140*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 141*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 142*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 143*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 144*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 145*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 146*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 147*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 148*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 149*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 150*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 151*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 152*19c3b8c2SApple OSS Distributions } 153*19c3b8c2SApple OSS Distributions }; 154*19c3b8c2SApple OSS Distributions 155*19c3b8c2SApple OSS Distributions static const unsigned char progressmeter_middle1x[2][1 * 18] = { 156*19c3b8c2SApple OSS Distributions { 157*19c3b8c2SApple OSS Distributions 0xff, 158*19c3b8c2SApple OSS Distributions 0xff, 159*19c3b8c2SApple OSS Distributions 0xff, 160*19c3b8c2SApple OSS Distributions 0xff, 161*19c3b8c2SApple OSS Distributions 0xff, 162*19c3b8c2SApple OSS Distributions 0xff, 163*19c3b8c2SApple OSS Distributions 0xc2, 164*19c3b8c2SApple OSS Distributions 0xd9, 165*19c3b8c2SApple OSS Distributions 0xd9, 166*19c3b8c2SApple OSS Distributions 0xd9, 167*19c3b8c2SApple OSS Distributions 0xd9, 168*19c3b8c2SApple OSS Distributions 0xc2, 169*19c3b8c2SApple OSS Distributions 0xff, 170*19c3b8c2SApple OSS Distributions 0xff, 171*19c3b8c2SApple OSS Distributions 0xff, 172*19c3b8c2SApple OSS Distributions 0xff, 173*19c3b8c2SApple OSS Distributions 0xff, 174*19c3b8c2SApple OSS Distributions 0xff, 175*19c3b8c2SApple OSS Distributions }, 176*19c3b8c2SApple OSS Distributions { 177*19c3b8c2SApple OSS Distributions 0xff, 178*19c3b8c2SApple OSS Distributions 0xff, 179*19c3b8c2SApple OSS Distributions 0xff, 180*19c3b8c2SApple OSS Distributions 0xff, 181*19c3b8c2SApple OSS Distributions 0xff, 182*19c3b8c2SApple OSS Distributions 0xff, 183*19c3b8c2SApple OSS Distributions 0x33, 184*19c3b8c2SApple OSS Distributions 0x33, 185*19c3b8c2SApple OSS Distributions 0x33, 186*19c3b8c2SApple OSS Distributions 0x33, 187*19c3b8c2SApple OSS Distributions 0x33, 188*19c3b8c2SApple OSS Distributions 0x33, 189*19c3b8c2SApple OSS Distributions 0xff, 190*19c3b8c2SApple OSS Distributions 0xff, 191*19c3b8c2SApple OSS Distributions 0xff, 192*19c3b8c2SApple OSS Distributions 0xff, 193*19c3b8c2SApple OSS Distributions 0xff, 194*19c3b8c2SApple OSS Distributions 0xff, 195*19c3b8c2SApple OSS Distributions } 196*19c3b8c2SApple OSS Distributions }; 197*19c3b8c2SApple OSS Distributions 198*19c3b8c2SApple OSS Distributions static const unsigned char progressmeter_middle2x[2][2 * 1 * 18] = { 199*19c3b8c2SApple OSS Distributions { 200*19c3b8c2SApple OSS Distributions 0xff, 201*19c3b8c2SApple OSS Distributions 0xff, 202*19c3b8c2SApple OSS Distributions 0xff, 203*19c3b8c2SApple OSS Distributions 0xff, 204*19c3b8c2SApple OSS Distributions 0xff, 205*19c3b8c2SApple OSS Distributions 0xff, 206*19c3b8c2SApple OSS Distributions 0xff, 207*19c3b8c2SApple OSS Distributions 0xff, 208*19c3b8c2SApple OSS Distributions 0xff, 209*19c3b8c2SApple OSS Distributions 0xff, 210*19c3b8c2SApple OSS Distributions 0xff, 211*19c3b8c2SApple OSS Distributions 0xff, 212*19c3b8c2SApple OSS Distributions 0xc2, 213*19c3b8c2SApple OSS Distributions 0xc2, 214*19c3b8c2SApple OSS Distributions 0xd9, 215*19c3b8c2SApple OSS Distributions 0xd9, 216*19c3b8c2SApple OSS Distributions 0xd9, 217*19c3b8c2SApple OSS Distributions 0xd9, 218*19c3b8c2SApple OSS Distributions 0xd9, 219*19c3b8c2SApple OSS Distributions 0xd9, 220*19c3b8c2SApple OSS Distributions 0xd9, 221*19c3b8c2SApple OSS Distributions 0xd9, 222*19c3b8c2SApple OSS Distributions 0xc2, 223*19c3b8c2SApple OSS Distributions 0xc2, 224*19c3b8c2SApple OSS Distributions 0xff, 225*19c3b8c2SApple OSS Distributions 0xff, 226*19c3b8c2SApple OSS Distributions 0xff, 227*19c3b8c2SApple OSS Distributions 0xff, 228*19c3b8c2SApple OSS Distributions 0xff, 229*19c3b8c2SApple OSS Distributions 0xff, 230*19c3b8c2SApple OSS Distributions 0xff, 231*19c3b8c2SApple OSS Distributions 0xff, 232*19c3b8c2SApple OSS Distributions 0xff, 233*19c3b8c2SApple OSS Distributions 0xff, 234*19c3b8c2SApple OSS Distributions 0xff, 235*19c3b8c2SApple OSS Distributions 0xff, 236*19c3b8c2SApple OSS Distributions }, 237*19c3b8c2SApple OSS Distributions { 238*19c3b8c2SApple OSS Distributions 0xff, 239*19c3b8c2SApple OSS Distributions 0xff, 240*19c3b8c2SApple OSS Distributions 0xff, 241*19c3b8c2SApple OSS Distributions 0xff, 242*19c3b8c2SApple OSS Distributions 0xff, 243*19c3b8c2SApple OSS Distributions 0xff, 244*19c3b8c2SApple OSS Distributions 0xff, 245*19c3b8c2SApple OSS Distributions 0xff, 246*19c3b8c2SApple OSS Distributions 0xff, 247*19c3b8c2SApple OSS Distributions 0xff, 248*19c3b8c2SApple OSS Distributions 0xff, 249*19c3b8c2SApple OSS Distributions 0xff, 250*19c3b8c2SApple OSS Distributions 0x33, 251*19c3b8c2SApple OSS Distributions 0x33, 252*19c3b8c2SApple OSS Distributions 0x33, 253*19c3b8c2SApple OSS Distributions 0x33, 254*19c3b8c2SApple OSS Distributions 0x33, 255*19c3b8c2SApple OSS Distributions 0x33, 256*19c3b8c2SApple OSS Distributions 0x33, 257*19c3b8c2SApple OSS Distributions 0x33, 258*19c3b8c2SApple OSS Distributions 0x33, 259*19c3b8c2SApple OSS Distributions 0x33, 260*19c3b8c2SApple OSS Distributions 0x33, 261*19c3b8c2SApple OSS Distributions 0x33, 262*19c3b8c2SApple OSS Distributions 0xff, 263*19c3b8c2SApple OSS Distributions 0xff, 264*19c3b8c2SApple OSS Distributions 0xff, 265*19c3b8c2SApple OSS Distributions 0xff, 266*19c3b8c2SApple OSS Distributions 0xff, 267*19c3b8c2SApple OSS Distributions 0xff, 268*19c3b8c2SApple OSS Distributions 0xff, 269*19c3b8c2SApple OSS Distributions 0xff, 270*19c3b8c2SApple OSS Distributions 0xff, 271*19c3b8c2SApple OSS Distributions 0xff, 272*19c3b8c2SApple OSS Distributions 0xff, 273*19c3b8c2SApple OSS Distributions 0xff, 274*19c3b8c2SApple OSS Distributions } 275*19c3b8c2SApple OSS Distributions }; 276*19c3b8c2SApple OSS Distributions 277*19c3b8c2SApple OSS Distributions static const unsigned char progressmeter_rightcap1x[2][9 * 18] = { 278*19c3b8c2SApple OSS Distributions { 279*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 280*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 281*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 282*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 283*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 284*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 285*19c3b8c2SApple OSS Distributions 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc6, 0xdc, 0xfe, 286*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xcc, 0xde, 287*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc6, 288*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc6, 289*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xcc, 0xde, 290*19c3b8c2SApple OSS Distributions 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc6, 0xdc, 0xfe, 291*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 292*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 293*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 294*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 295*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 296*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 297*19c3b8c2SApple OSS Distributions }, 298*19c3b8c2SApple OSS Distributions { 299*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 300*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 301*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 302*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 303*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 304*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 305*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x41, 0x8b, 0xfa, 306*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x92, 307*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x41, 308*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x41, 309*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x91, 310*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x41, 0x8b, 0xfa, 311*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 312*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 313*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 314*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 315*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 316*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 317*19c3b8c2SApple OSS Distributions } 318*19c3b8c2SApple OSS Distributions }; 319*19c3b8c2SApple OSS Distributions 320*19c3b8c2SApple OSS Distributions static const unsigned char progressmeter_rightcap2x[2][4 * 9 * 18] = { 321*19c3b8c2SApple OSS Distributions { 322*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 323*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 324*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 325*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 326*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 327*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 328*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 329*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 330*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 331*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 332*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 333*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 334*19c3b8c2SApple OSS Distributions 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc5, 0xcf, 0xe5, 0xfe, 0xff, 0xff, 335*19c3b8c2SApple OSS Distributions 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xcd, 0xf9, 0xff, 336*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xd2, 0xc8, 0xc2, 0xcd, 0xfd, 337*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc7, 0xc2, 0xe5, 338*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd1, 0xc2, 0xcf, 339*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc2, 0xc4, 340*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc2, 0xc5, 341*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd2, 0xc2, 0xcf, 342*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc7, 0xc2, 0xe5, 343*19c3b8c2SApple OSS Distributions 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xd2, 0xc7, 0xc2, 0xcd, 0xfd, 344*19c3b8c2SApple OSS Distributions 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xcd, 0xf9, 0xff, 345*19c3b8c2SApple OSS Distributions 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc5, 0xce, 0xe4, 0xfe, 0xff, 0xff, 346*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 347*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 348*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 349*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 350*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 351*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 352*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 353*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 354*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 355*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 356*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 357*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 358*19c3b8c2SApple OSS Distributions }, 359*19c3b8c2SApple OSS Distributions { 360*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 361*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 362*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 363*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 364*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 365*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 366*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 367*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 368*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 369*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 370*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 371*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 372*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x3d, 0x60, 0xa7, 0xfa, 0xff, 0xff, 373*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x59, 0xe9, 0xff, 374*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x59, 0xf9, 375*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0xa8, 376*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x60, 377*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x39, 378*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x3d, 379*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x60, 380*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0xa7, 381*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x58, 0xf9, 382*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x59, 0xe9, 0xff, 383*19c3b8c2SApple OSS Distributions 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x3c, 0x5d, 0xa6, 0xfa, 0xff, 0xff, 384*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 385*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 386*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 387*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 388*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 389*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 390*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 391*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 392*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 393*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 394*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 395*19c3b8c2SApple OSS Distributions 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 396*19c3b8c2SApple OSS Distributions } 397*19c3b8c2SApple OSS Distributions }; 398*19c3b8c2SApple OSS Distributions 399*19c3b8c2SApple OSS Distributions 400*19c3b8c2SApple OSS Distributions static const unsigned char * 401*19c3b8c2SApple OSS Distributions progressmeter_leftcap[2][2] = { 402*19c3b8c2SApple OSS Distributions { &progressmeter_leftcap1x[0][0], &progressmeter_leftcap1x[1][0] }, 403*19c3b8c2SApple OSS Distributions { &progressmeter_leftcap2x[0][0], &progressmeter_leftcap2x[1][0] } 404*19c3b8c2SApple OSS Distributions }; 405*19c3b8c2SApple OSS Distributions 406*19c3b8c2SApple OSS Distributions static const unsigned char * 407*19c3b8c2SApple OSS Distributions progressmeter_middle[2][2] = { 408*19c3b8c2SApple OSS Distributions { &progressmeter_middle1x[0][0], &progressmeter_middle1x[1][0] }, 409*19c3b8c2SApple OSS Distributions { &progressmeter_middle2x[0][0], &progressmeter_middle2x[1][0] } 410*19c3b8c2SApple OSS Distributions }; 411*19c3b8c2SApple OSS Distributions 412*19c3b8c2SApple OSS Distributions static const unsigned char * 413*19c3b8c2SApple OSS Distributions progressmeter_rightcap[2][2] = { 414*19c3b8c2SApple OSS Distributions { &progressmeter_rightcap1x[0][0], &progressmeter_rightcap1x[1][0] }, 415*19c3b8c2SApple OSS Distributions { &progressmeter_rightcap2x[0][0], &progressmeter_rightcap2x[1][0] } 416*19c3b8c2SApple OSS Distributions }; 417