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