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