├── Interfaces.h ├── Makefile ├── README.md ├── RippleBoard.plist ├── Tweak.xm ├── control ├── layout ├── DEBIAN │ └── control └── Library │ ├── MobileSubstrate │ └── DynamicLibraries │ │ ├── RippleBoard.dylib │ │ └── RippleBoard.plist │ ├── PreferenceBundles │ └── RipplePrefs.bundle │ │ ├── Info.plist │ │ ├── RipplePrefs │ │ ├── RipplePrefs.plist │ │ ├── RipplePrefs.png │ │ ├── RipplePrefs@2x.png │ │ ├── RipplePrefs@3x.png │ │ ├── github.png │ │ ├── github@2x.png │ │ ├── github@3x.png │ │ ├── paypal.png │ │ ├── paypal@2x.png │ │ ├── paypal@3x.png │ │ ├── rippleboard.png │ │ ├── twitter.png │ │ ├── twitter@2x.png │ │ ├── twitter@3x.png │ │ ├── web.png │ │ ├── web@2x.png │ │ └── web@3x.png │ └── PreferenceLoader │ └── Preferences │ └── RipplePrefs.plist ├── mask.h ├── mask.png ├── rippleboard.png └── rippleprefs ├── Makefile ├── Resources ├── Info.plist ├── RipplePrefs.plist ├── RipplePrefs.png ├── RipplePrefs@2x.png ├── RipplePrefs@3x.png ├── github.png ├── github@2x.png ├── github@3x.png ├── paypal.png ├── paypal@2x.png ├── paypal@3x.png ├── rippleboard.png ├── twitter.png ├── twitter@2x.png ├── twitter@3x.png ├── web.png ├── web@2x.png └── web@3x.png ├── RipplePrefs.xm ├── entry.plist └── obj ├── .stamp ├── RipplePrefs.bundle ├── Info.plist ├── RipplePrefs ├── RipplePrefs.plist ├── RipplePrefs.png ├── RipplePrefs@2x.png ├── RipplePrefs@3x.png ├── github.png ├── github@2x.png ├── github@3x.png ├── paypal.png ├── paypal@2x.png ├── paypal@3x.png ├── rippleboard.png ├── twitter.png ├── twitter@2x.png ├── twitter@3x.png ├── web.png ├── web@2x.png └── web@3x.png ├── RipplePrefs.mm.3acc3ec0.o ├── RipplePrefs.mm.40b18fc5.o └── RipplePrefs.mm.c08690ea.o /Interfaces.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * __ __ 4 | *|__). _ _ | _|__) _ _ _ _| 5 | *| \ ||_)|_)|(-|__)(_)(_|| (_| 6 | * | | 7 | * Created by Satori (Razzile) 8 | * Source code is under the MIT License 9 | * File: Interfaces.h 10 | * Description: Contains makeshift class definitions for used classes 11 | */ 12 | 13 | @interface SBIcon 14 | -(void)reloadIconImage; 15 | -(id)generateIconImage:(int)arg1; 16 | -(id)applicationBundleID; 17 | @end 18 | 19 | @interface SBIconImageView : UIView 20 | @property (nonatomic,retain,readonly) SBIcon *icon; 21 | - (id)contentsImage; 22 | @end 23 | 24 | @interface SBIconViewMap 25 | + (id)homescreenMap; 26 | - (id)mappedIconViewForIcon:(id)icon; 27 | @end 28 | 29 | @interface SBFolderIconView 30 | - (id)_folderIconImageView; 31 | @end 32 | 33 | @interface SBFolderIconImageView : UIView 34 | @end 35 | 36 | @interface SBIconContentView : UIView 37 | @end 38 | 39 | @interface SBIconModel 40 | - (id)applicationIconForBundleIdentifier:(id)bundleIdentifier; 41 | @end 42 | 43 | @interface SBIconController 44 | -(void)reloadIconImagePurgingImageCache:(BOOL)cache; 45 | - (SBIconModel *)model; 46 | @end 47 | 48 | @interface SBUIController 49 | - (UIView *)contentView; 50 | @end 51 | 52 | @interface FBBundleInfo 53 | @property(copy) NSString * bundleIdentifier; 54 | @end 55 | 56 | @interface FBProcess 57 | @property(retain,readonly) FBBundleInfo * applicationInfo; 58 | @end 59 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | ARCHS = armv7 arm64 2 | include theos/makefiles/common.mk 3 | 4 | TWEAK_NAME = RippleBoard 5 | RippleBoard_FILES = Tweak.xm 6 | RippleBoard_FRAMEWORKS = UIKit CoreGraphics QuartzCore 7 | ADDITIONAL_OBJCFLAGS = -fobjc-arc 8 | include $(THEOS_MAKE_PATH)/tweak.mk 9 | 10 | after-install:: 11 | install.exec "killall -9 SpringBoard" 12 | SUBPROJECTS += rippleprefs 13 | include $(THEOS_MAKE_PATH)/aggregate.mk 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RippleBoard 2 | RippleBoard is an awesome tweak to increase your devices aesthetic values. It adds nice ripple effects when you interact with your home screen. Change preferences in your settings app. 3 | 4 | ![Ripple](https://github.com/Razzile/RippleBoard/raw/master/rippleboard.png "RippleBoard") 5 | -------------------------------------------------------------------------------- /RippleBoard.plist: -------------------------------------------------------------------------------- 1 | { Filter = { Bundles = ( "com.apple.UIKit" ); }; } 2 | -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- 1 | /* 2 | * __ __ 3 | *|__). _ _ | _|__) _ _ _ _| 4 | *| \ ||_)|_)|(-|__)(_)(_|| (_| 5 | * | | 6 | * Created by Satori (Razzile) 7 | * Source code is under the MIT License 8 | * File: Tweak.xm 9 | * Description: Contains the core code of rippleboard 10 | */ 11 | 12 | #import "Interfaces.h" 13 | #import "mask.h" 14 | #import 15 | 16 | #ifndef kCFCoreFoundationVersionNumber_iOS_9_3 17 | #define kCFCoreFoundationVersionNumber_iOS_9_3 1280.30 18 | #endif 19 | 20 | #define rippleBoardPrefPath @"/User/Library/Preferences/org.satorify.rippleboard.plist" 21 | 22 | NSMutableArray *runningApps; 23 | 24 | /* load settings */ 25 | static NSDictionary *settingsDict() { 26 | return [NSDictionary dictionaryWithContentsOfFile:rippleBoardPrefPath]; 27 | } 28 | 29 | /* Returns a rounded version of the supplied image */ 30 | static UIImage *roundedImage(UIImage *orig) 31 | { 32 | NSDictionary *dict = settingsDict(); 33 | if (orig == nil || ![dict[@"roundicons"] boolValue]) return orig; 34 | UIImageView *imageView = [[UIImageView alloc] initWithImage:orig]; 35 | CALayer *layer = [imageView layer]; 36 | 37 | layer.masksToBounds = YES; 38 | CALayer *mask = [CALayer layer]; 39 | mask.contents = (id)[[UIImage imageWithData:[NSData dataWithBytes:maskData length:sizeof(maskData)]] CGImage]; 40 | mask.frame = imageView.frame; 41 | imageView.layer.mask = mask; 42 | imageView.layer.masksToBounds = YES; 43 | UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, 0.0); 44 | [layer renderInContext:UIGraphicsGetCurrentContext()]; 45 | UIImage *roundedImage = UIGraphicsGetImageFromCurrentImageContext(); 46 | UIGraphicsEndImageContext(); 47 | return (roundedImage != nil) ? roundedImage : orig; 48 | } 49 | 50 | /* calculates the average color in a supplied image */ 51 | static UIColor *dominantColor(UIImage *image) 52 | { 53 | struct pixel { 54 | unsigned char r, g, b, a; 55 | }; 56 | NSUInteger red = 0; 57 | NSUInteger green = 0; 58 | NSUInteger blue = 0; 59 | 60 | 61 | // Allocate a buffer big enough to hold all the pixels 62 | 63 | struct pixel* pixels = (struct pixel*) calloc(1, image.size.width * image.size.height * sizeof(struct pixel)); 64 | if (pixels != nil) 65 | { 66 | 67 | CGContextRef context = CGBitmapContextCreate( 68 | (void*) pixels, 69 | image.size.width, 70 | image.size.height, 71 | 8, 72 | image.size.width * 4, 73 | CGImageGetColorSpace(image.CGImage), 74 | kCGImageAlphaPremultipliedLast 75 | ); 76 | 77 | if (context != NULL) 78 | { 79 | // Draw the image in the bitmap 80 | 81 | CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, image.size.width, image.size.height), image.CGImage); 82 | 83 | NSUInteger numberOfPixels = image.size.width * image.size.height; 84 | for (int i=0; i(iconView, "_iconImageView"); 168 | CGRect pathFrame = CGRectMake(-CGRectGetMidX(iconImageView.bounds), -CGRectGetMidY(iconImageView.bounds), iconImageView.bounds.size.width, iconImageView.bounds.size.height); 169 | UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:pathFrame cornerRadius:iconImageView.bounds.size.height/2]; 170 | 171 | UIGraphicsBeginImageContextWithOptions(iconImageView.bounds.size, iconImageView.opaque, [[UIScreen mainScreen] scale]); 172 | [iconImageView drawViewHierarchyInRect:iconImageView.bounds afterScreenUpdates:NO]; 173 | 174 | UIImage *iconImage = UIGraphicsGetImageFromCurrentImageContext(); 175 | UIGraphicsEndImageContext(); 176 | 177 | UIColor *dominant = dominantColor(iconImage); 178 | CGPoint shapePosition = iconImageView.center; 179 | 180 | CAShapeLayer *circleShape = [CAShapeLayer layer]; 181 | circleShape.path = path.CGPath; 182 | circleShape.position = shapePosition; 183 | circleShape.fillColor = dominant.CGColor; 184 | circleShape.opacity = 0; 185 | circleShape.strokeColor = dominant.CGColor; 186 | circleShape.lineWidth = 3; 187 | 188 | [iconImageView.layer addSublayer:circleShape]; 189 | 190 | CABasicAnimation *scaleAnimation = [CABasicAnimation animationWithKeyPath:@"transform.scale"]; 191 | scaleAnimation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity]; 192 | scaleAnimation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(range, range, 1)]; 193 | 194 | CABasicAnimation *alphaAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"]; 195 | alphaAnimation.fromValue = @1; 196 | alphaAnimation.toValue = @0; 197 | 198 | CAAnimationGroup *animation = [CAAnimationGroup animation]; 199 | animation.animations = @[scaleAnimation, alphaAnimation]; 200 | animation.duration = speed; 201 | animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]; 202 | [circleShape addAnimation:animation forKey:nil]; 203 | 204 | [UIView animateWithDuration:0.1 animations:^{ 205 | iconImageView.alpha = 0.4; 206 | iconImageView.layer.borderColor = dominant.CGColor; 207 | }completion:^(BOOL finished) { 208 | [UIView animateWithDuration:0.3 animations:^{ 209 | iconImageView.alpha = 1; 210 | iconImageView.layer.borderColor = dominant.CGColor; 211 | }completion:^(BOOL finished){ 212 | %orig; 213 | [circleShape removeFromSuperlayer]; 214 | }]; 215 | 216 | }]; 217 | } 218 | 219 | /* initialize running app ripples */ 220 | - (id)init { 221 | [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(beginRipples) userInfo:nil repeats:YES]; 222 | return %orig; 223 | } 224 | 225 | %new 226 | - (void)beginRipples { 227 | NSDictionary *dict = settingsDict(); 228 | if (![dict[@"runningripple"] boolValue]) return; 229 | if (runningApps == nil) { 230 | runningApps = [[NSMutableArray alloc] init]; 231 | } 232 | for (NSString *bundleID in runningApps) { 233 | int64_t delayInSeconds = arc4random_uniform(4); 234 | dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC); 235 | dispatch_after(popTime, dispatch_get_main_queue(), ^(void){ 236 | SBIcon *icon = [self.model applicationIconForBundleIdentifier:bundleID]; 237 | UIView *iconView; 238 | 239 | if (IS_IOS_OR_NEWER(iOS_9_3)) { 240 | iconView = [[[%c(SBIconController) sharedInstance] homescreenIconViewMap] mappedIconViewForIcon:icon]; 241 | } else { 242 | iconView = [[%c(SBIconViewMap) homescreenMap] mappedIconViewForIcon:icon]; 243 | } 244 | 245 | if (iconView == nil) return; 246 | SBIconImageView *iconImageView = MSHookIvar(iconView, "_iconImageView"); 247 | if (iconImageView == nil) return; 248 | CGRect pathFrame = CGRectMake(-CGRectGetMidX(iconImageView.bounds), -CGRectGetMidY(iconImageView.bounds), iconImageView.bounds.size.width, iconImageView.bounds.size.height); 249 | UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:pathFrame cornerRadius:iconImageView.bounds.size.height/2]; 250 | 251 | UIGraphicsBeginImageContextWithOptions(iconImageView.bounds.size, iconImageView.opaque, [[UIScreen mainScreen] scale]); 252 | [iconImageView drawViewHierarchyInRect:iconImageView.bounds afterScreenUpdates:NO]; 253 | 254 | UIImage *iconImage = UIGraphicsGetImageFromCurrentImageContext(); 255 | UIGraphicsEndImageContext(); 256 | 257 | UIColor *dominant = dominantColor(iconImage); 258 | CGPoint shapePosition = iconImageView.center; 259 | 260 | CAShapeLayer *circleShape = [CAShapeLayer layer]; 261 | circleShape.path = path.CGPath; 262 | circleShape.position = shapePosition; 263 | circleShape.fillColor = [UIColor clearColor].CGColor; 264 | circleShape.opacity = 0; 265 | circleShape.strokeColor = dominant.CGColor; 266 | circleShape.lineWidth = 2; 267 | 268 | [iconImageView.layer addSublayer:circleShape]; 269 | 270 | CABasicAnimation *scaleAnimation = [CABasicAnimation animationWithKeyPath:@"transform.scale"]; 271 | scaleAnimation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity]; 272 | scaleAnimation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(1.5, 1.5, 1)]; 273 | 274 | CABasicAnimation *alphaAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"]; 275 | alphaAnimation.fromValue = @1; 276 | alphaAnimation.toValue = @0; 277 | 278 | CAAnimationGroup *animation = [CAAnimationGroup animation]; 279 | animation.animations = @[scaleAnimation, alphaAnimation]; 280 | animation.duration = 1.0f; 281 | animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]; 282 | [circleShape addAnimation:animation forKey:nil]; 283 | int64_t delayInSeconds = 1; 284 | dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC); 285 | dispatch_after(popTime, dispatch_get_main_queue(), ^(void){ 286 | [circleShape removeFromSuperlayer]; 287 | }); 288 | }); 289 | } 290 | } 291 | %end 292 | 293 | %hook SBIconContentView 294 | 295 | - (void)layoutSubviews { 296 | static UITapGestureRecognizer *rippleRecognizer; 297 | if (!rippleRecognizer) rippleRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapFrom:)]; 298 | [self addGestureRecognizer:rippleRecognizer]; 299 | [rippleRecognizer setCancelsTouchesInView:NO]; 300 | rippleRecognizer.delegate = self; 301 | %orig; 302 | } 303 | 304 | %new 305 | - (void)handleTapFrom:(UITapGestureRecognizer *)recognizer { 306 | NSDictionary *dict = settingsDict(); 307 | if (![dict[@"touchripple"] boolValue]) return; 308 | CGPoint point = [recognizer locationInView:self]; 309 | CGRect pathFrame = CGRectMake(-10, -10, 20, 20); 310 | UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:pathFrame cornerRadius:20/2]; 311 | 312 | UIColor *tapColor = [UIColor whiteColor]; 313 | CGPoint shapePosition = CGPointMake(point.x, point.y); 314 | 315 | CAShapeLayer *circleShape = [CAShapeLayer layer]; 316 | circleShape.path = path.CGPath; 317 | circleShape.position = shapePosition; 318 | circleShape.fillColor = tapColor.CGColor; 319 | circleShape.opacity = 0; 320 | circleShape.strokeColor = tapColor.CGColor; 321 | circleShape.lineWidth = 2; 322 | 323 | [self.layer addSublayer:circleShape]; 324 | 325 | CABasicAnimation *scaleAnimation = [CABasicAnimation animationWithKeyPath:@"transform.scale"]; 326 | scaleAnimation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity]; 327 | scaleAnimation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(2.5, 2.5, 1)]; 328 | 329 | CABasicAnimation *alphaAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"]; 330 | alphaAnimation.fromValue = @1; 331 | alphaAnimation.toValue = @0; 332 | 333 | CAAnimationGroup *animation = [CAAnimationGroup animation]; 334 | animation.animations = @[scaleAnimation, alphaAnimation]; 335 | animation.duration = 1.5f; 336 | animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]; 337 | [circleShape addAnimation:animation forKey:nil]; 338 | float delayInSeconds = 1.5f; 339 | dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC); 340 | dispatch_after(popTime, dispatch_get_main_queue(), ^(void){ 341 | [circleShape removeFromSuperlayer]; 342 | }); 343 | } 344 | 345 | %new 346 | - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch { 347 | return YES; 348 | } 349 | 350 | %end 351 | 352 | /* methods to get when an app is started or closed */ 353 | %hook SBWorkspace 354 | 355 | -(void)applicationProcessDidExit:(FBProcess *)applicationProcess withContext:(id)context { 356 | NSLog(@"AABB: removed %@", applicationProcess.applicationInfo.bundleIdentifier); 357 | 358 | if (runningApps == nil) { 359 | runningApps = [[NSMutableArray alloc] init]; 360 | return %orig; 361 | } 362 | if ([runningApps containsObject:applicationProcess.applicationInfo.bundleIdentifier]) { 363 | [runningApps removeObject:applicationProcess.applicationInfo.bundleIdentifier]; 364 | } 365 | %orig; 366 | } 367 | 368 | -(void)applicationProcessDidLaunch:(FBProcess *)applicationProcess { 369 | if (runningApps == nil) { 370 | runningApps = [[NSMutableArray alloc] init]; 371 | } 372 | [runningApps addObject:applicationProcess.applicationInfo.bundleIdentifier]; 373 | NSLog(@"AABB: %@", applicationProcess.applicationInfo.bundleIdentifier); 374 | %orig; 375 | } 376 | 377 | %end 378 | 379 | /* methods to get when an app is started or closed (9.3.x) */ 380 | %hook SBMainWorkspace 381 | 382 | -(void)applicationProcessDidExit:(FBProcess *)applicationProcess withContext:(id)context { 383 | NSLog(@"AABB: removed %@", applicationProcess.applicationInfo.bundleIdentifier); 384 | 385 | if (runningApps == nil) { 386 | runningApps = [[NSMutableArray alloc] init]; 387 | return %orig; 388 | } 389 | if ([runningApps containsObject:applicationProcess.applicationInfo.bundleIdentifier]) { 390 | [runningApps removeObject:applicationProcess.applicationInfo.bundleIdentifier]; 391 | } 392 | %orig; 393 | } 394 | 395 | -(void)applicationProcessDidLaunch:(FBProcess *)applicationProcess { 396 | if (runningApps == nil) { 397 | runningApps = [[NSMutableArray alloc] init]; 398 | } 399 | [runningApps addObject:applicationProcess.applicationInfo.bundleIdentifier]; 400 | NSLog(@"AABB: %@", applicationProcess.applicationInfo.bundleIdentifier); 401 | %orig; 402 | } 403 | 404 | %end 405 | %end // Hooks 406 | 407 | %ctor { 408 | NSDictionary *dict = settingsDict(); 409 | NSLog(@"ZZZZ: %@", dict); 410 | if ([dict[@"enabled"] boolValue]) { 411 | %init(Hooks); 412 | } 413 | } 414 | -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- 1 | Package: com.razzile.rippleboard 2 | Name: RippleBoard 3 | Depends: mobilesubstrate 4 | Version: 0.0.1 5 | Architecture: iphoneos-arm 6 | Description: An awesome MobileSubstrate tweak! 7 | Maintainer: Satori 8 | Author: Satori 9 | Section: Tweaks 10 | -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: com.satori.rippleboard 2 | Name: RippleBoard 3 | Depends: mobilesubstrate, preferenceloader 4 | Architecture: iphoneos-arm 5 | Description: RippleBoard is an awesome tweak to increase your devices aesthetic values. It adds nice ripple effects when you interact with your home screen. Change preferences in your settings app. 6 | Maintainer: Satori 7 | Author: Satori 8 | Section: Tweaks 9 | Version: 0.0.1-119 10 | Installed-Size: 376 11 | -------------------------------------------------------------------------------- /layout/Library/MobileSubstrate/DynamicLibraries/RippleBoard.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/MobileSubstrate/DynamicLibraries/RippleBoard.dylib -------------------------------------------------------------------------------- /layout/Library/MobileSubstrate/DynamicLibraries/RippleBoard.plist: -------------------------------------------------------------------------------- 1 | { Filter = { Bundles = ( "com.apple.UIKit" ); }; } 2 | -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | RipplePrefs 9 | CFBundleIdentifier 10 | com.satori.rippleprefs 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | DTPlatformName 22 | iphoneos 23 | MinimumOSVersion 24 | 3.0 25 | NSPrincipalClass 26 | RipplePrefsListController 27 | 28 | 29 | -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/RipplePrefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/RipplePrefs -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/RipplePrefs.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | items 6 | 7 | 8 | cell 9 | PSGroupCell 10 | label 11 | RippleBoard Enabled 12 | 13 | 14 | cell 15 | PSSwitchCell 16 | default 17 | 18 | defaults 19 | com.satori.rippleboard 20 | key 21 | enabled 22 | cellClass 23 | BlueSwitchTableCell 24 | label 25 | Enabled 26 | 27 | 28 | cell 29 | PSGroupCell 30 | 31 | 32 | cell 33 | PSGroupCell 34 | label 35 | Round App Icons 36 | 37 | 38 | cell 39 | PSSwitchCell 40 | default 41 | 42 | defaults 43 | com.satori.rippleboard 44 | key 45 | roundicons 46 | label 47 | Round Icons 48 | cellClass 49 | BlueSwitchTableCell 50 | 51 | 52 | cell 53 | PSGroupCell 54 | label 55 | Ripple On App Launch 56 | 57 | 58 | cell 59 | PSSwitchCell 60 | default 61 | 62 | defaults 63 | com.satori.rippleboard 64 | key 65 | launchripple 66 | label 67 | Launch Ripple 68 | cellClass 69 | BlueSwitchTableCell 70 | 71 | 72 | cell 73 | PSGroupCell 74 | label 75 | Ripple On Touch 76 | 77 | 78 | cell 79 | PSSwitchCell 80 | default 81 | 82 | defaults 83 | com.satori.rippleboard 84 | key 85 | touchripple 86 | label 87 | Touch Ripple 88 | cellClass 89 | BlueSwitchTableCell 90 | 91 | 92 | cell 93 | PSGroupCell 94 | label 95 | Running Apps Ripple 96 | 97 | 98 | cell 99 | PSSwitchCell 100 | default 101 | 102 | defaults 103 | com.satori.rippleboard 104 | key 105 | runningripple 106 | label 107 | Running Apps 108 | cellClass 109 | BlueSwitchTableCell 110 | 111 | 112 | cell 113 | PSGroupCell 114 | label 115 | Ripple Range 116 | 117 | 118 | alignment 119 | 3 120 | cell 121 | PSSliderCell 122 | default 123 | 1 124 | defaults 125 | com.satori.rippleboard 126 | key 127 | range 128 | max 129 | 5 130 | min 131 | 1 132 | showValue 133 | 134 | cellClass 135 | BlueSliderTableCell 136 | 137 | 138 | cell 139 | PSGroupCell 140 | label 141 | Ripple Duration 142 | 143 | 144 | alignment 145 | 3 146 | cell 147 | PSSliderCell 148 | default 149 | 1 150 | defaults 151 | com.satori.rippleboard 152 | key 153 | runningSpeed 154 | max 155 | 4 156 | min 157 | 0.25 158 | showValue 159 | 160 | cellClass 161 | BlueSliderTableCell 162 | 163 | 164 | cell 165 | PSGroupCell 166 | 167 | 168 | cell 169 | PSButtonCell 170 | action 171 | respring 172 | label 173 | Respring to Save Changes 174 | 175 | 176 | cell 177 | PSGroupCell 178 | label 179 | Extras 180 | 181 | 182 | cell 183 | PSButtonCell 184 | action 185 | twitter 186 | icon 187 | twitter.png 188 | label 189 | Follow me on Twitter 190 | 191 | 192 | cell 193 | PSButtonCell 194 | action 195 | website 196 | icon 197 | web.png 198 | label 199 | Visit my Site 200 | 201 | 202 | cell 203 | PSButtonCell 204 | action 205 | github 206 | icon 207 | github.png 208 | label 209 | View RippleBoard on GitHub 210 | 211 | 212 | cell 213 | PSButtonCell 214 | action 215 | paypal 216 | icon 217 | paypal.png 218 | label 219 | Show some love 220 | 221 | 222 | cell 223 | PSGroupCell 224 | footerText 225 | Copyright (c) 2015 Satori. 226 | 227 | 228 | title 229 | RippleBoard 230 | 231 | 232 | -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/RipplePrefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/RipplePrefs.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/RipplePrefs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/RipplePrefs@2x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/RipplePrefs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/RipplePrefs@3x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/github.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/github@2x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/github@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/github@3x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/paypal.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/paypal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/paypal@2x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/paypal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/paypal@3x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/rippleboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/rippleboard.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/twitter.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/twitter@2x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/twitter@3x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/web.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/web@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/web@2x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceBundles/RipplePrefs.bundle/web@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/layout/Library/PreferenceBundles/RipplePrefs.bundle/web@3x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/RipplePrefs.plist: -------------------------------------------------------------------------------- 1 | { 2 | entry = { 3 | bundle = RipplePrefs; 4 | cell = PSLinkCell; 5 | detail = RipplePrefsListController; 6 | icon = RipplePrefs.png; 7 | isController = 1; 8 | label = "RippleBoard"; 9 | }; 10 | } 11 | -------------------------------------------------------------------------------- /mask.h: -------------------------------------------------------------------------------- 1 | /* 2 | * __ __ 3 | *|__). _ _ | _|__) _ _ _ _| 4 | *| \ ||_)|_)|(-|__)(_)(_|| (_| 5 | * | | 6 | * Created by Satori (Razzile) 7 | * Source code is under the MIT License 8 | * File: mask.h 9 | * Description: Contains a circular mask image as an array 10 | */ 11 | 12 | /* PNG Data as an array */ 13 | unsigned char maskData[] = 14 | { 15 | 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00, 16 | 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x78, 17 | 0x00, 0x00, 0x00, 0x78, 0x08, 0x06, 0x00, 0x00, 0x00, 0x39, 18 | 0x64, 0x36, 0xD2, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 19 | 0x73, 0x00, 0x00, 0x0B, 0x13, 0x00, 0x00, 0x0B, 0x13, 0x01, 20 | 0x00, 0x9A, 0x9C, 0x18, 0x00, 0x00, 0x39, 0xA4, 0x69, 0x54, 21 | 0x58, 0x74, 0x58, 0x4D, 0x4C, 0x3A, 0x63, 0x6F, 0x6D, 0x2E, 22 | 0x61, 0x64, 0x6F, 0x62, 0x65, 0x2E, 0x78, 0x6D, 0x70, 0x00, 23 | 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3F, 0x78, 0x70, 0x61, 0x63, 24 | 0x6B, 0x65, 0x74, 0x20, 0x62, 0x65, 0x67, 0x69, 0x6E, 0x3D, 25 | 0x22, 0xEF, 0xBB, 0xBF, 0x22, 0x20, 0x69, 0x64, 0x3D, 0x22, 26 | 0x57, 0x35, 0x4D, 0x30, 0x4D, 0x70, 0x43, 0x65, 0x68, 0x69, 27 | 0x48, 0x7A, 0x72, 0x65, 0x53, 0x7A, 0x4E, 0x54, 0x63, 0x7A, 28 | 0x6B, 0x63, 0x39, 0x64, 0x22, 0x3F, 0x3E, 0x0A, 0x3C, 0x78, 29 | 0x3A, 0x78, 0x6D, 0x70, 0x6D, 0x65, 0x74, 0x61, 0x20, 0x78, 30 | 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x78, 0x3D, 0x22, 0x61, 0x64, 31 | 0x6F, 0x62, 0x65, 0x3A, 0x6E, 0x73, 0x3A, 0x6D, 0x65, 0x74, 32 | 0x61, 0x2F, 0x22, 0x20, 0x78, 0x3A, 0x78, 0x6D, 0x70, 0x74, 33 | 0x6B, 0x3D, 0x22, 0x41, 0x64, 0x6F, 0x62, 0x65, 0x20, 0x58, 34 | 0x4D, 0x50, 0x20, 0x43, 0x6F, 0x72, 0x65, 0x20, 0x35, 0x2E, 35 | 0x36, 0x2D, 0x63, 0x30, 0x31, 0x34, 0x20, 0x37, 0x39, 0x2E, 36 | 0x31, 0x35, 0x36, 0x37, 0x39, 0x37, 0x2C, 0x20, 0x32, 0x30, 37 | 0x31, 0x34, 0x2F, 0x30, 0x38, 0x2F, 0x32, 0x30, 0x2D, 0x30, 38 | 0x39, 0x3A, 0x35, 0x33, 0x3A, 0x30, 0x32, 0x20, 0x20, 0x20, 39 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x3E, 0x0A, 0x20, 0x20, 40 | 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x52, 0x44, 0x46, 0x20, 41 | 0x78, 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x72, 0x64, 0x66, 0x3D, 42 | 0x22, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x77, 0x77, 43 | 0x77, 0x2E, 0x77, 0x33, 0x2E, 0x6F, 0x72, 0x67, 0x2F, 0x31, 44 | 0x39, 0x39, 0x39, 0x2F, 0x30, 0x32, 0x2F, 0x32, 0x32, 0x2D, 45 | 0x72, 0x64, 0x66, 0x2D, 0x73, 0x79, 0x6E, 0x74, 0x61, 0x78, 46 | 0x2D, 0x6E, 0x73, 0x23, 0x22, 0x3E, 0x0A, 0x20, 0x20, 0x20, 47 | 0x20, 0x20, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x44, 0x65, 48 | 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6F, 0x6E, 0x20, 49 | 0x72, 0x64, 0x66, 0x3A, 0x61, 0x62, 0x6F, 0x75, 0x74, 0x3D, 50 | 0x22, 0x22, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 51 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6D, 0x6C, 0x6E, 0x73, 52 | 0x3A, 0x78, 0x6D, 0x70, 0x3D, 0x22, 0x68, 0x74, 0x74, 0x70, 53 | 0x3A, 0x2F, 0x2F, 0x6E, 0x73, 0x2E, 0x61, 0x64, 0x6F, 0x62, 54 | 0x65, 0x2E, 0x63, 0x6F, 0x6D, 0x2F, 0x78, 0x61, 0x70, 0x2F, 55 | 0x31, 0x2E, 0x30, 0x2F, 0x22, 0x0A, 0x20, 0x20, 0x20, 0x20, 56 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6D, 57 | 0x6C, 0x6E, 0x73, 0x3A, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3D, 58 | 0x22, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x6E, 0x73, 59 | 0x2E, 0x61, 0x64, 0x6F, 0x62, 0x65, 0x2E, 0x63, 0x6F, 0x6D, 60 | 0x2F, 0x78, 0x61, 0x70, 0x2F, 0x31, 0x2E, 0x30, 0x2F, 0x6D, 61 | 0x6D, 0x2F, 0x22, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 62 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6D, 0x6C, 0x6E, 63 | 0x73, 0x3A, 0x73, 0x74, 0x52, 0x65, 0x66, 0x3D, 0x22, 0x68, 64 | 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x6E, 0x73, 0x2E, 0x61, 65 | 0x64, 0x6F, 0x62, 0x65, 0x2E, 0x63, 0x6F, 0x6D, 0x2F, 0x78, 66 | 0x61, 0x70, 0x2F, 0x31, 0x2E, 0x30, 0x2F, 0x73, 0x54, 0x79, 67 | 0x70, 0x65, 0x2F, 0x52, 0x65, 0x73, 0x6F, 0x75, 0x72, 0x63, 68 | 0x65, 0x52, 0x65, 0x66, 0x23, 0x22, 0x0A, 0x20, 0x20, 0x20, 69 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 70 | 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x73, 0x74, 0x45, 0x76, 0x74, 71 | 0x3D, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x6E, 72 | 0x73, 0x2E, 0x61, 0x64, 0x6F, 0x62, 0x65, 0x2E, 0x63, 0x6F, 73 | 0x6D, 0x2F, 0x78, 0x61, 0x70, 0x2F, 0x31, 0x2E, 0x30, 0x2F, 74 | 0x73, 0x54, 0x79, 0x70, 0x65, 0x2F, 0x52, 0x65, 0x73, 0x6F, 75 | 0x75, 0x72, 0x63, 0x65, 0x45, 0x76, 0x65, 0x6E, 0x74, 0x23, 76 | 0x22, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 77 | 0x20, 0x20, 0x20, 0x20, 0x78, 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 78 | 0x64, 0x63, 0x3D, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 79 | 0x2F, 0x70, 0x75, 0x72, 0x6C, 0x2E, 0x6F, 0x72, 0x67, 0x2F, 80 | 0x64, 0x63, 0x2F, 0x65, 0x6C, 0x65, 0x6D, 0x65, 0x6E, 0x74, 81 | 0x73, 0x2F, 0x31, 0x2E, 0x31, 0x2F, 0x22, 0x0A, 0x20, 0x20, 82 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 83 | 0x78, 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x70, 0x68, 0x6F, 0x74, 84 | 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x3D, 0x22, 0x68, 0x74, 0x74, 85 | 0x70, 0x3A, 0x2F, 0x2F, 0x6E, 0x73, 0x2E, 0x61, 0x64, 0x6F, 86 | 0x62, 0x65, 0x2E, 0x63, 0x6F, 0x6D, 0x2F, 0x70, 0x68, 0x6F, 87 | 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x2F, 0x31, 0x2E, 0x30, 88 | 0x2F, 0x22, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 89 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6D, 0x6C, 0x6E, 0x73, 90 | 0x3A, 0x74, 0x69, 0x66, 0x66, 0x3D, 0x22, 0x68, 0x74, 0x74, 91 | 0x70, 0x3A, 0x2F, 0x2F, 0x6E, 0x73, 0x2E, 0x61, 0x64, 0x6F, 92 | 0x62, 0x65, 0x2E, 0x63, 0x6F, 0x6D, 0x2F, 0x74, 0x69, 0x66, 93 | 0x66, 0x2F, 0x31, 0x2E, 0x30, 0x2F, 0x22, 0x0A, 0x20, 0x20, 94 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 95 | 0x78, 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x65, 0x78, 0x69, 0x66, 96 | 0x3D, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x6E, 97 | 0x73, 0x2E, 0x61, 0x64, 0x6F, 0x62, 0x65, 0x2E, 0x63, 0x6F, 98 | 0x6D, 0x2F, 0x65, 0x78, 0x69, 0x66, 0x2F, 0x31, 0x2E, 0x30, 99 | 0x2F, 0x22, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 100 | 0x20, 0x20, 0x20, 0x3C, 0x78, 0x6D, 0x70, 0x3A, 0x43, 0x72, 101 | 0x65, 0x61, 0x74, 0x6F, 0x72, 0x54, 0x6F, 0x6F, 0x6C, 0x3E, 102 | 0x41, 0x64, 0x6F, 0x62, 0x65, 0x20, 0x50, 0x68, 0x6F, 0x74, 103 | 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x20, 0x43, 0x43, 0x20, 0x32, 104 | 0x30, 0x31, 0x34, 0x20, 0x28, 0x4D, 0x61, 0x63, 0x69, 0x6E, 105 | 0x74, 0x6F, 0x73, 0x68, 0x29, 0x3C, 0x2F, 0x78, 0x6D, 0x70, 106 | 0x3A, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6F, 0x72, 0x54, 0x6F, 107 | 0x6F, 0x6C, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 108 | 0x20, 0x20, 0x20, 0x3C, 0x78, 0x6D, 0x70, 0x3A, 0x43, 0x72, 109 | 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x65, 0x3E, 0x32, 110 | 0x30, 0x31, 0x34, 0x2D, 0x31, 0x30, 0x2D, 0x32, 0x38, 0x54, 111 | 0x30, 0x39, 0x3A, 0x35, 0x37, 0x3A, 0x31, 0x32, 0x2B, 0x30, 112 | 0x37, 0x3A, 0x30, 0x30, 0x3C, 0x2F, 0x78, 0x6D, 0x70, 0x3A, 113 | 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x65, 114 | 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 115 | 0x20, 0x3C, 0x78, 0x6D, 0x70, 0x3A, 0x4D, 0x6F, 0x64, 0x69, 116 | 0x66, 0x79, 0x44, 0x61, 0x74, 0x65, 0x3E, 0x32, 0x30, 0x31, 117 | 0x34, 0x2D, 0x31, 0x30, 0x2D, 0x32, 0x39, 0x54, 0x30, 0x35, 118 | 0x3A, 0x34, 0x38, 0x3A, 0x30, 0x39, 0x2B, 0x30, 0x37, 0x3A, 119 | 0x30, 0x30, 0x3C, 0x2F, 0x78, 0x6D, 0x70, 0x3A, 0x4D, 0x6F, 120 | 0x64, 0x69, 0x66, 0x79, 0x44, 0x61, 0x74, 0x65, 0x3E, 0x0A, 121 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 122 | 0x78, 0x6D, 0x70, 0x3A, 0x4D, 0x65, 0x74, 0x61, 0x64, 0x61, 123 | 0x74, 0x61, 0x44, 0x61, 0x74, 0x65, 0x3E, 0x32, 0x30, 0x31, 124 | 0x34, 0x2D, 0x31, 0x30, 0x2D, 0x32, 0x39, 0x54, 0x30, 0x35, 125 | 0x3A, 0x34, 0x38, 0x3A, 0x30, 0x39, 0x2B, 0x30, 0x37, 0x3A, 126 | 0x30, 0x30, 0x3C, 0x2F, 0x78, 0x6D, 0x70, 0x3A, 0x4D, 0x65, 127 | 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x44, 0x61, 0x74, 0x65, 128 | 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 129 | 0x20, 0x3C, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 0x49, 0x6E, 130 | 0x73, 0x74, 0x61, 0x6E, 0x63, 0x65, 0x49, 0x44, 0x3E, 0x78, 131 | 0x6D, 0x70, 0x2E, 0x69, 0x69, 0x64, 0x3A, 0x33, 0x38, 0x38, 132 | 0x33, 0x66, 0x66, 0x32, 0x61, 0x2D, 0x36, 0x36, 0x62, 0x63, 133 | 0x2D, 0x34, 0x62, 0x33, 0x38, 0x2D, 0x39, 0x66, 0x33, 0x33, 134 | 0x2D, 0x33, 0x38, 0x63, 0x33, 0x30, 0x31, 0x36, 0x36, 0x33, 135 | 0x64, 0x38, 0x62, 0x3C, 0x2F, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 136 | 0x3A, 0x49, 0x6E, 0x73, 0x74, 0x61, 0x6E, 0x63, 0x65, 0x49, 137 | 0x44, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 138 | 0x20, 0x20, 0x3C, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 0x44, 139 | 0x6F, 0x63, 0x75, 0x6D, 0x65, 0x6E, 0x74, 0x49, 0x44, 0x3E, 140 | 0x78, 0x6D, 0x70, 0x2E, 0x64, 0x69, 0x64, 0x3A, 0x33, 0x45, 141 | 0x42, 0x39, 0x31, 0x45, 0x42, 0x31, 0x35, 0x32, 0x42, 0x44, 142 | 0x31, 0x31, 0x45, 0x34, 0x42, 0x38, 0x39, 0x37, 0x44, 0x37, 143 | 0x32, 0x43, 0x35, 0x43, 0x34, 0x39, 0x46, 0x38, 0x36, 0x33, 144 | 0x3C, 0x2F, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 0x44, 0x6F, 145 | 0x63, 0x75, 0x6D, 0x65, 0x6E, 0x74, 0x49, 0x44, 0x3E, 0x0A, 146 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 147 | 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 0x44, 0x65, 0x72, 0x69, 148 | 0x76, 0x65, 0x64, 0x46, 0x72, 0x6F, 0x6D, 0x20, 0x72, 0x64, 149 | 0x66, 0x3A, 0x70, 0x61, 0x72, 0x73, 0x65, 0x54, 0x79, 0x70, 150 | 0x65, 0x3D, 0x22, 0x52, 0x65, 0x73, 0x6F, 0x75, 0x72, 0x63, 151 | 0x65, 0x22, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 152 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 0x73, 0x74, 0x52, 153 | 0x65, 0x66, 0x3A, 0x69, 0x6E, 0x73, 0x74, 0x61, 0x6E, 0x63, 154 | 0x65, 0x49, 0x44, 0x3E, 0x78, 0x6D, 0x70, 0x2E, 0x69, 0x69, 155 | 0x64, 0x3A, 0x33, 0x45, 0x42, 0x39, 0x31, 0x45, 0x41, 0x45, 156 | 0x35, 0x32, 0x42, 0x44, 0x31, 0x31, 0x45, 0x34, 0x42, 0x38, 157 | 0x39, 0x37, 0x44, 0x37, 0x32, 0x43, 0x35, 0x43, 0x34, 0x39, 158 | 0x46, 0x38, 0x36, 0x33, 0x3C, 0x2F, 0x73, 0x74, 0x52, 0x65, 159 | 0x66, 0x3A, 0x69, 0x6E, 0x73, 0x74, 0x61, 0x6E, 0x63, 0x65, 160 | 0x49, 0x44, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 161 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 0x73, 0x74, 0x52, 162 | 0x65, 0x66, 0x3A, 0x64, 0x6F, 0x63, 0x75, 0x6D, 0x65, 0x6E, 163 | 0x74, 0x49, 0x44, 0x3E, 0x78, 0x6D, 0x70, 0x2E, 0x64, 0x69, 164 | 0x64, 0x3A, 0x33, 0x45, 0x42, 0x39, 0x31, 0x45, 0x41, 0x46, 165 | 0x35, 0x32, 0x42, 0x44, 0x31, 0x31, 0x45, 0x34, 0x42, 0x38, 166 | 0x39, 0x37, 0x44, 0x37, 0x32, 0x43, 0x35, 0x43, 0x34, 0x39, 167 | 0x46, 0x38, 0x36, 0x33, 0x3C, 0x2F, 0x73, 0x74, 0x52, 0x65, 168 | 0x66, 0x3A, 0x64, 0x6F, 0x63, 0x75, 0x6D, 0x65, 0x6E, 0x74, 169 | 0x49, 0x44, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 170 | 0x20, 0x20, 0x20, 0x3C, 0x2F, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 171 | 0x3A, 0x44, 0x65, 0x72, 0x69, 0x76, 0x65, 0x64, 0x46, 0x72, 172 | 0x6F, 0x6D, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 173 | 0x20, 0x20, 0x20, 0x3C, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 174 | 0x4F, 0x72, 0x69, 0x67, 0x69, 0x6E, 0x61, 0x6C, 0x44, 0x6F, 175 | 0x63, 0x75, 0x6D, 0x65, 0x6E, 0x74, 0x49, 0x44, 0x3E, 0x78, 176 | 0x6D, 0x70, 0x2E, 0x64, 0x69, 0x64, 0x3A, 0x33, 0x45, 0x42, 177 | 0x39, 0x31, 0x45, 0x42, 0x31, 0x35, 0x32, 0x42, 0x44, 0x31, 178 | 0x31, 0x45, 0x34, 0x42, 0x38, 0x39, 0x37, 0x44, 0x37, 0x32, 179 | 0x43, 0x35, 0x43, 0x34, 0x39, 0x46, 0x38, 0x36, 0x33, 0x3C, 180 | 0x2F, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 0x4F, 0x72, 0x69, 181 | 0x67, 0x69, 0x6E, 0x61, 0x6C, 0x44, 0x6F, 0x63, 0x75, 0x6D, 182 | 0x65, 0x6E, 0x74, 0x49, 0x44, 0x3E, 0x0A, 0x20, 0x20, 0x20, 183 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 0x78, 0x6D, 0x70, 184 | 0x4D, 0x4D, 0x3A, 0x48, 0x69, 0x73, 0x74, 0x6F, 0x72, 0x79, 185 | 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 186 | 0x20, 0x20, 0x20, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x53, 187 | 0x65, 0x71, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 188 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 189 | 0x72, 0x64, 0x66, 0x3A, 0x6C, 0x69, 0x20, 0x72, 0x64, 0x66, 190 | 0x3A, 0x70, 0x61, 0x72, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 191 | 0x3D, 0x22, 0x52, 0x65, 0x73, 0x6F, 0x75, 0x72, 0x63, 0x65, 192 | 0x22, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 193 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 194 | 0x20, 0x3C, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x61, 0x63, 195 | 0x74, 0x69, 0x6F, 0x6E, 0x3E, 0x73, 0x61, 0x76, 0x65, 0x64, 196 | 0x3C, 0x2F, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x61, 0x63, 197 | 0x74, 0x69, 0x6F, 0x6E, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 198 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 199 | 0x20, 0x20, 0x20, 0x20, 0x3C, 0x73, 0x74, 0x45, 0x76, 0x74, 200 | 0x3A, 0x69, 0x6E, 0x73, 0x74, 0x61, 0x6E, 0x63, 0x65, 0x49, 201 | 0x44, 0x3E, 0x78, 0x6D, 0x70, 0x2E, 0x69, 0x69, 0x64, 0x3A, 202 | 0x33, 0x38, 0x38, 0x33, 0x66, 0x66, 0x32, 0x61, 0x2D, 0x36, 203 | 0x36, 0x62, 0x63, 0x2D, 0x34, 0x62, 0x33, 0x38, 0x2D, 0x39, 204 | 0x66, 0x33, 0x33, 0x2D, 0x33, 0x38, 0x63, 0x33, 0x30, 0x31, 205 | 0x36, 0x36, 0x33, 0x64, 0x38, 0x62, 0x3C, 0x2F, 0x73, 0x74, 206 | 0x45, 0x76, 0x74, 0x3A, 0x69, 0x6E, 0x73, 0x74, 0x61, 0x6E, 207 | 0x63, 0x65, 0x49, 0x44, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 208 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 209 | 0x20, 0x20, 0x20, 0x20, 0x3C, 0x73, 0x74, 0x45, 0x76, 0x74, 210 | 0x3A, 0x77, 0x68, 0x65, 0x6E, 0x3E, 0x32, 0x30, 0x31, 0x34, 211 | 0x2D, 0x31, 0x30, 0x2D, 0x32, 0x39, 0x54, 0x30, 0x35, 0x3A, 212 | 0x34, 0x38, 0x3A, 0x30, 0x39, 0x2B, 0x30, 0x37, 0x3A, 0x30, 213 | 0x30, 0x3C, 0x2F, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x77, 214 | 0x68, 0x65, 0x6E, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 215 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 216 | 0x20, 0x20, 0x20, 0x3C, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 217 | 0x73, 0x6F, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x41, 0x67, 218 | 0x65, 0x6E, 0x74, 0x3E, 0x41, 0x64, 0x6F, 0x62, 0x65, 0x20, 219 | 0x50, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x20, 220 | 0x43, 0x43, 0x20, 0x32, 0x30, 0x31, 0x34, 0x20, 0x28, 0x4D, 221 | 0x61, 0x63, 0x69, 0x6E, 0x74, 0x6F, 0x73, 0x68, 0x29, 0x3C, 222 | 0x2F, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x73, 0x6F, 0x66, 223 | 0x74, 0x77, 0x61, 0x72, 0x65, 0x41, 0x67, 0x65, 0x6E, 0x74, 224 | 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 225 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 226 | 0x3C, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x63, 0x68, 0x61, 227 | 0x6E, 0x67, 0x65, 0x64, 0x3E, 0x2F, 0x3C, 0x2F, 0x73, 0x74, 228 | 0x45, 0x76, 0x74, 0x3A, 0x63, 0x68, 0x61, 0x6E, 0x67, 0x65, 229 | 0x64, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 230 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 0x2F, 231 | 0x72, 0x64, 0x66, 0x3A, 0x6C, 0x69, 0x3E, 0x0A, 0x20, 0x20, 232 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 233 | 0x3C, 0x2F, 0x72, 0x64, 0x66, 0x3A, 0x53, 0x65, 0x71, 0x3E, 234 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 235 | 0x3C, 0x2F, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 0x48, 0x69, 236 | 0x73, 0x74, 0x6F, 0x72, 0x79, 0x3E, 0x0A, 0x20, 0x20, 0x20, 237 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 0x64, 0x63, 0x3A, 238 | 0x66, 0x6F, 0x72, 0x6D, 0x61, 0x74, 0x3E, 0x69, 0x6D, 0x61, 239 | 0x67, 0x65, 0x2F, 0x70, 0x6E, 0x67, 0x3C, 0x2F, 0x64, 0x63, 240 | 0x3A, 0x66, 0x6F, 0x72, 0x6D, 0x61, 0x74, 0x3E, 0x0A, 0x20, 241 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 0x70, 242 | 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x3A, 0x43, 243 | 0x6F, 0x6C, 0x6F, 0x72, 0x4D, 0x6F, 0x64, 0x65, 0x3E, 0x33, 244 | 0x3C, 0x2F, 0x70, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 245 | 0x70, 0x3A, 0x43, 0x6F, 0x6C, 0x6F, 0x72, 0x4D, 0x6F, 0x64, 246 | 0x65, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 247 | 0x20, 0x20, 0x3C, 0x74, 0x69, 0x66, 0x66, 0x3A, 0x4F, 0x72, 248 | 0x69, 0x65, 0x6E, 0x74, 0x61, 0x74, 0x69, 0x6F, 0x6E, 0x3E, 249 | 0x31, 0x3C, 0x2F, 0x74, 0x69, 0x66, 0x66, 0x3A, 0x4F, 0x72, 250 | 0x69, 0x65, 0x6E, 0x74, 0x61, 0x74, 0x69, 0x6F, 0x6E, 0x3E, 251 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 252 | 0x3C, 0x74, 0x69, 0x66, 0x66, 0x3A, 0x58, 0x52, 0x65, 0x73, 253 | 0x6F, 0x6C, 0x75, 0x74, 0x69, 0x6F, 0x6E, 0x3E, 0x37, 0x32, 254 | 0x30, 0x30, 0x30, 0x30, 0x2F, 0x31, 0x30, 0x30, 0x30, 0x30, 255 | 0x3C, 0x2F, 0x74, 0x69, 0x66, 0x66, 0x3A, 0x58, 0x52, 0x65, 256 | 0x73, 0x6F, 0x6C, 0x75, 0x74, 0x69, 0x6F, 0x6E, 0x3E, 0x0A, 257 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 258 | 0x74, 0x69, 0x66, 0x66, 0x3A, 0x59, 0x52, 0x65, 0x73, 0x6F, 259 | 0x6C, 0x75, 0x74, 0x69, 0x6F, 0x6E, 0x3E, 0x37, 0x32, 0x30, 260 | 0x30, 0x30, 0x30, 0x2F, 0x31, 0x30, 0x30, 0x30, 0x30, 0x3C, 261 | 0x2F, 0x74, 0x69, 0x66, 0x66, 0x3A, 0x59, 0x52, 0x65, 0x73, 262 | 0x6F, 0x6C, 0x75, 0x74, 0x69, 0x6F, 0x6E, 0x3E, 0x0A, 0x20, 263 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 0x74, 264 | 0x69, 0x66, 0x66, 0x3A, 0x52, 0x65, 0x73, 0x6F, 0x6C, 0x75, 265 | 0x74, 0x69, 0x6F, 0x6E, 0x55, 0x6E, 0x69, 0x74, 0x3E, 0x32, 266 | 0x3C, 0x2F, 0x74, 0x69, 0x66, 0x66, 0x3A, 0x52, 0x65, 0x73, 267 | 0x6F, 0x6C, 0x75, 0x74, 0x69, 0x6F, 0x6E, 0x55, 0x6E, 0x69, 268 | 0x74, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 269 | 0x20, 0x20, 0x3C, 0x65, 0x78, 0x69, 0x66, 0x3A, 0x43, 0x6F, 270 | 0x6C, 0x6F, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x3E, 0x36, 271 | 0x35, 0x35, 0x33, 0x35, 0x3C, 0x2F, 0x65, 0x78, 0x69, 0x66, 272 | 0x3A, 0x43, 0x6F, 0x6C, 0x6F, 0x72, 0x53, 0x70, 0x61, 0x63, 273 | 0x65, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 274 | 0x20, 0x20, 0x3C, 0x65, 0x78, 0x69, 0x66, 0x3A, 0x50, 0x69, 275 | 0x78, 0x65, 0x6C, 0x58, 0x44, 0x69, 0x6D, 0x65, 0x6E, 0x73, 276 | 0x69, 0x6F, 0x6E, 0x3E, 0x31, 0x32, 0x30, 0x3C, 0x2F, 0x65, 277 | 0x78, 0x69, 0x66, 0x3A, 0x50, 0x69, 0x78, 0x65, 0x6C, 0x58, 278 | 0x44, 0x69, 0x6D, 0x65, 0x6E, 0x73, 0x69, 0x6F, 0x6E, 0x3E, 279 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 280 | 0x3C, 0x65, 0x78, 0x69, 0x66, 0x3A, 0x50, 0x69, 0x78, 0x65, 281 | 0x6C, 0x59, 0x44, 0x69, 0x6D, 0x65, 0x6E, 0x73, 0x69, 0x6F, 282 | 0x6E, 0x3E, 0x31, 0x32, 0x30, 0x3C, 0x2F, 0x65, 0x78, 0x69, 283 | 0x66, 0x3A, 0x50, 0x69, 0x78, 0x65, 0x6C, 0x59, 0x44, 0x69, 284 | 0x6D, 0x65, 0x6E, 0x73, 0x69, 0x6F, 0x6E, 0x3E, 0x0A, 0x20, 285 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x3C, 0x2F, 0x72, 0x64, 0x66, 286 | 0x3A, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 287 | 0x6F, 0x6E, 0x3E, 0x0A, 0x20, 0x20, 0x20, 0x3C, 0x2F, 0x72, 288 | 0x64, 0x66, 0x3A, 0x52, 0x44, 0x46, 0x3E, 0x0A, 0x3C, 0x2F, 289 | 0x78, 0x3A, 0x78, 0x6D, 0x70, 0x6D, 0x65, 0x74, 0x61, 0x3E, 290 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 291 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 292 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 293 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 294 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 295 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 296 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 297 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 298 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 299 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 300 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 301 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 302 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 303 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 304 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 305 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 306 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 307 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 308 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 309 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 310 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 311 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 312 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 313 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 314 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 315 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 316 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 317 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 318 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 319 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 320 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 321 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 322 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 323 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 324 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 325 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 326 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 327 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 328 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 329 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 330 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 331 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 332 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 333 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 334 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 335 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 336 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 337 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 338 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 339 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 340 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 341 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 342 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 343 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 344 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 345 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 346 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 347 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 348 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 349 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 350 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 351 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 352 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 353 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 354 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 355 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 356 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 357 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 358 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 359 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 360 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 361 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 362 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 363 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 364 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 365 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 366 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 367 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 368 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 369 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 370 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 371 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 372 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 373 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 374 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 375 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 376 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 377 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 378 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 379 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 380 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 381 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 382 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 383 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 384 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 385 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 386 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 387 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 388 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 389 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 390 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 391 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 392 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 393 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 394 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 395 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 396 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 397 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 398 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 399 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 400 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 401 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 402 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 403 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 404 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 405 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 406 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 407 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 408 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 409 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 410 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 411 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 412 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 413 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 414 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 415 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 416 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 417 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 418 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 419 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 420 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 421 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 422 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 423 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 424 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 425 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 426 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 427 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 428 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 429 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 430 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 431 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 432 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 433 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 434 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 435 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 436 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 437 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 438 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 439 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 440 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 441 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 442 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 443 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 444 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 445 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 446 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 447 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 448 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 449 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 450 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 451 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 452 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 453 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 454 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 455 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 456 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 457 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 458 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 459 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 460 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 461 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 462 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 463 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 464 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 465 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 466 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 467 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 468 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 469 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 470 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 471 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 472 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 473 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 474 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 475 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 476 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 477 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 478 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 479 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 480 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 481 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 482 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 483 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 484 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 485 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 486 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 487 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 488 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 489 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 490 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 491 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 492 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 493 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 494 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 495 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 496 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 497 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 498 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 499 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 500 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 501 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 502 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 503 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 504 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 505 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 506 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 507 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 508 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 509 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 510 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 511 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 512 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 513 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 514 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 515 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 516 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 517 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 518 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 519 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 520 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 521 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 522 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 523 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 524 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 525 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 526 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 527 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 528 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 529 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 530 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 531 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 532 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 533 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 534 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 535 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 536 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 537 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 538 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 539 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 540 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 541 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 542 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 543 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 544 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 545 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 546 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 547 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 548 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 549 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 550 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 551 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 552 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 553 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 554 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 555 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 556 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 557 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 558 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 559 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 560 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 561 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 562 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 563 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 564 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 565 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 566 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 567 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 568 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 569 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 570 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 571 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 572 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 573 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 574 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 575 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 576 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 577 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 578 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 579 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 580 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 581 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 582 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 583 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 584 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 585 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 586 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 587 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 588 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 589 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 590 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 591 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 592 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 593 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 594 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 595 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 596 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 597 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 598 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 599 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 600 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 601 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 602 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 603 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 604 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 605 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 606 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 607 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 608 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 609 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 610 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 611 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 612 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 613 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 614 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 615 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 616 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 617 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 618 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 619 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 620 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 621 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 622 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 623 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 624 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 625 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 626 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 627 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 628 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 629 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 630 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 631 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 632 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 633 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 634 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 635 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 636 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 637 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 638 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 639 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 640 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 641 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 642 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 643 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 644 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 645 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 646 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 647 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 648 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 649 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 650 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 651 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 652 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 653 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 654 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 655 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 656 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 657 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 658 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 659 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 660 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 661 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 662 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 663 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 664 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 665 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 666 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 667 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 668 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 669 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 670 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 671 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 672 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 673 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 674 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 675 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 676 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 677 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 678 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 679 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 680 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 681 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 682 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 683 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 684 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 685 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 686 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 687 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 688 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 689 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 690 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 691 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 692 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 693 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 694 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 695 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 696 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 697 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 698 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 699 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 700 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 701 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 702 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 703 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 704 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 705 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 706 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 707 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 708 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 709 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 710 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 711 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 712 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 713 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 714 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 715 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 716 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 717 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 718 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 719 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 720 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 721 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 722 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 723 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 724 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 725 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 726 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 727 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 728 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 729 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 730 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 731 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 732 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 733 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 734 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 735 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 736 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 737 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 738 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 739 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 740 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 741 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 742 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 743 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 744 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 745 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 746 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 747 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 748 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 749 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 750 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 751 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 752 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 753 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 754 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 755 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 756 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 757 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 758 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 759 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 760 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 761 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 762 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 763 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 764 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 765 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 766 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 767 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 768 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 769 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 770 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 771 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 772 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 773 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 774 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 775 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 776 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 777 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 778 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 779 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 780 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 781 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 782 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 783 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 784 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 785 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 786 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 787 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 788 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 789 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 790 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 791 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 792 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 793 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 794 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 795 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 796 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 797 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 798 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 799 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 800 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 801 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 802 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 803 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 804 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 805 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 806 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 807 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 808 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 809 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 810 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 811 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 812 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 813 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 814 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 815 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 816 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 817 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 818 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 819 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 820 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 821 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 822 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 823 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 824 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 825 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 826 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 827 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 828 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 829 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 830 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 831 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 832 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 833 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 834 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 835 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 836 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 837 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 838 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 839 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 840 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 841 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 842 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 843 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 844 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 845 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 846 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 847 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 848 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 849 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 850 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 851 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 852 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 853 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 854 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 855 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 856 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 857 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 858 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 859 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 860 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 861 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 862 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 863 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 864 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 865 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 866 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 867 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 868 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 869 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 870 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 871 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 872 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 873 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 874 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 875 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 876 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 877 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 878 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 879 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 880 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 881 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 882 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 883 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 884 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 885 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 886 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 887 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 888 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 889 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 890 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 891 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 892 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 893 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 894 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 895 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 896 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 897 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 898 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 899 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 900 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 901 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 902 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 903 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 904 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 905 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 906 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 907 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 908 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 909 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 910 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 911 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 912 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 913 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 914 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 915 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 916 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 917 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 918 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 919 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 920 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 921 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 922 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 923 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 924 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 925 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 926 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 927 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 928 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 929 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 930 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 931 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 932 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 933 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 934 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 935 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 936 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 937 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 938 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 939 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 940 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 941 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 942 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 943 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 944 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 945 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 946 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 947 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 948 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 949 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 950 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 951 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 952 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 953 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 954 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 955 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 956 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 957 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 958 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 959 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 960 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 961 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 962 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 963 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 964 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 965 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 966 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 967 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 968 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 969 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 970 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 971 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 972 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 973 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 974 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 975 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 976 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 977 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 978 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 979 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 980 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 981 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 982 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 983 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 984 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 985 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 986 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 987 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 988 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 989 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 990 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 991 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 992 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 993 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 994 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 995 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 996 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 997 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 998 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 999 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1000 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1001 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1002 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1003 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1004 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1005 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1006 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1007 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1008 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1009 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1010 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1011 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1012 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1013 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1014 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1015 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1016 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1017 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1018 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1019 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1020 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1021 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1022 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1023 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1024 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1025 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1026 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1027 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1028 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1029 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1030 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1031 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1032 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1033 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1034 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1035 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1036 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1037 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 1038 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1039 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1040 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1041 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1042 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1043 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1044 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1045 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1046 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1047 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 1048 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1049 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1050 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1051 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1052 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1053 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1054 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1055 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1056 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1057 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 1058 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1059 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1060 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1061 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1062 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1063 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1064 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1065 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1066 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1067 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 1068 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1069 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1070 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1071 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1072 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1073 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1074 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1075 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1076 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1077 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 1078 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1079 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1080 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1081 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1082 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1083 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1084 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1085 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1086 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1087 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 1088 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1089 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1090 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1091 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1092 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1093 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1094 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1095 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1096 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1097 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1098 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1099 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1100 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1101 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1102 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1103 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1104 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1105 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1106 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1107 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1108 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1109 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1110 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1111 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1112 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1113 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1114 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1115 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1116 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1117 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1118 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1119 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1120 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1121 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1122 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1123 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1124 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1125 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1126 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1127 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1128 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1129 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1130 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1131 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1132 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1133 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1134 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1135 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1136 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1137 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1138 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 1139 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1140 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1141 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1142 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1143 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1144 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1145 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1146 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1147 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1148 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 1149 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1150 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1151 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1152 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1153 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1154 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1155 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1156 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1157 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1158 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 1159 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1160 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1161 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1162 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1163 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1164 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1165 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1166 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1167 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1168 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 1169 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1170 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1171 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1172 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1173 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1174 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1175 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1176 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1177 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1178 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 1179 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1180 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1181 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1182 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1183 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1184 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1185 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1186 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1187 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1188 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 1189 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1190 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1191 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1192 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1193 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1194 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1195 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1196 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1197 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1198 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1199 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1200 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1201 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1202 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1203 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1204 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1205 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1206 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1207 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1208 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1209 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1210 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1211 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1212 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1213 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1214 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1215 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1216 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1217 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1218 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1219 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1220 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1221 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1222 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1223 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1224 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1225 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1226 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1227 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1228 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1229 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1230 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1231 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1232 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1233 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1234 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1235 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1236 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1237 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1238 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1239 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 1240 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1241 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1242 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1243 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1244 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1245 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1246 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1247 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1248 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1249 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 1250 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1251 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1252 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1253 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1254 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1255 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1256 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1257 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1258 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1259 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 1260 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1261 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1262 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1263 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1264 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1265 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1266 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1267 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1268 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1269 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 1270 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1271 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1272 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1273 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1274 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1275 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1276 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1277 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1278 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1279 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 1280 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1281 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1282 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1283 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1284 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1285 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1286 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1287 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1288 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1289 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 1290 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1291 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1292 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1293 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1294 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1295 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1296 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1297 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1298 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1299 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1300 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1301 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1302 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1303 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1304 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1305 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1306 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1307 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1308 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1309 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1310 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1311 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1312 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1313 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1314 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1315 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1316 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1317 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1318 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1319 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1320 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1321 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1322 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1323 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1324 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1325 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1326 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1327 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1328 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1329 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1330 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1331 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1332 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1333 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1334 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1335 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1336 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1337 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1338 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1339 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1340 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 1341 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1342 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1343 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1344 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1345 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1346 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1347 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1348 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1349 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1350 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 1351 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1352 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1353 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1354 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1355 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1356 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1357 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1358 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1359 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1360 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 1361 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1362 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1363 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1364 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1365 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1366 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1367 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1368 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1369 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1370 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 1371 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1372 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1373 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1374 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1375 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1376 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1377 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1378 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1379 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1380 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 1381 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1382 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1383 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1384 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1385 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1386 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1387 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1388 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1389 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1390 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 1391 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1392 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1393 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1394 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1395 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1396 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1397 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1398 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1399 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1400 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1401 | 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1402 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1403 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1404 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1405 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1406 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1407 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1408 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1409 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1410 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1411 | 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1412 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1413 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1414 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1415 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1416 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1417 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1418 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1419 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1420 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1421 | 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1422 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1423 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1424 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1425 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1426 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1427 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1428 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1429 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1430 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1431 | 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1432 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1433 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1434 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1435 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1436 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1437 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1438 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1439 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1440 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1441 | 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20, 1442 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1443 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1444 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1445 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1446 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1447 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1448 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1449 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1450 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1451 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 0x20, 1452 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1453 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1454 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1455 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1456 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1457 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1458 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1459 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1460 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1461 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 0x20, 1462 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1463 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1464 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1465 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1466 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1467 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1468 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1469 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1470 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1471 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 0x20, 1472 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1473 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1474 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1475 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1476 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1477 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1478 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1479 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1480 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1481 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x20, 1482 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1483 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1484 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1485 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1486 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1487 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1488 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1489 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1490 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1491 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 1492 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1493 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 1494 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0A, 0x3C, 1495 | 0x3F, 0x78, 0x70, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x20, 0x65, 1496 | 0x6E, 0x64, 0x3D, 0x22, 0x77, 0x22, 0x3F, 0x3E, 0xF2, 0xF8, 1497 | 0x85, 0x7C, 0x00, 0x00, 0x00, 0x20, 0x63, 0x48, 0x52, 0x4D, 1498 | 0x00, 0x00, 0x7A, 0x25, 0x00, 0x00, 0x80, 0x83, 0x00, 0x00, 1499 | 0xF9, 0xFF, 0x00, 0x00, 0x80, 0xE9, 0x00, 0x00, 0x75, 0x30, 1500 | 0x00, 0x00, 0xEA, 0x60, 0x00, 0x00, 0x3A, 0x98, 0x00, 0x00, 1501 | 0x17, 0x6F, 0x92, 0x5F, 0xC5, 0x46, 0x00, 0x00, 0x07, 0x1D, 1502 | 0x49, 0x44, 0x41, 0x54, 0x78, 0xDA, 0xEC, 0xDD, 0x5B, 0x8C, 1503 | 0x55, 0x57, 0x1D, 0xC7, 0xF1, 0xCF, 0xC0, 0x94, 0x16, 0xAA, 1504 | 0x94, 0x32, 0x14, 0x1E, 0xD0, 0x82, 0x76, 0x9A, 0x08, 0x4A, 1505 | 0x79, 0x69, 0x69, 0x22, 0x46, 0xA9, 0x48, 0x2D, 0x2D, 0x35, 1506 | 0xC5, 0xA2, 0xAD, 0x35, 0x8D, 0x1A, 0x9B, 0x6A, 0x7C, 0xD2, 1507 | 0xA4, 0x7D, 0x34, 0xBD, 0x68, 0x62, 0x62, 0x6A, 0xA2, 0x2F, 1508 | 0x5A, 0x1B, 0x8C, 0x31, 0x46, 0x0D, 0x95, 0xDE, 0x82, 0x2D, 1509 | 0x4A, 0xA1, 0xC1, 0x28, 0x26, 0x05, 0x1F, 0xAC, 0x9A, 0x96, 1510 | 0x46, 0xAA, 0x15, 0x32, 0x46, 0xAE, 0x15, 0xB0, 0xD0, 0x00, 1511 | 0xC3, 0xF8, 0xB0, 0xD7, 0xA4, 0x3C, 0x78, 0x66, 0xCE, 0x3E, 1512 | 0x67, 0x9F, 0x73, 0xF6, 0x3A, 0xF3, 0xFF, 0x26, 0x93, 0x79, 1513 | 0x39, 0x97, 0x3D, 0xBF, 0xEF, 0xAC, 0xBD, 0xD6, 0x5E, 0xD7, 1514 | 0x81, 0xB1, 0xB1, 0x31, 0x41, 0xFF, 0x32, 0x2D, 0x22, 0x08, 1515 | 0xC1, 0x41, 0x08, 0x0E, 0x42, 0x70, 0xD0, 0x13, 0x06, 0xFB, 1516 | 0xE0, 0xFA, 0x2F, 0xC5, 0x2C, 0xCC, 0xC7, 0x12, 0x2C, 0xC6, 1517 | 0x22, 0x2C, 0xC4, 0x10, 0x2E, 0xC7, 0x3B, 0xD3, 0x6B, 0x67, 1518 | 0xA5, 0xF7, 0x9D, 0xC2, 0x39, 0x9C, 0xC4, 0x1B, 0x38, 0x8A, 1519 | 0x11, 0xFC, 0x13, 0xAF, 0xE3, 0x15, 0x1C, 0x4A, 0xAF, 0x7B, 1520 | 0x33, 0xBD, 0x36, 0x4B, 0x06, 0x32, 0x6C, 0x45, 0xCF, 0x49, 1521 | 0x32, 0x97, 0xE2, 0x7A, 0xAC, 0xC0, 0x35, 0x98, 0x57, 0xF1, 1522 | 0xF7, 0x1C, 0xC1, 0x9F, 0xB1, 0x1B, 0x2F, 0xE2, 0x65, 0x1C, 1523 | 0x4E, 0xFF, 0x10, 0x21, 0xB8, 0x62, 0x86, 0x70, 0x55, 0x92, 1524 | 0xB9, 0x16, 0xAB, 0x71, 0x71, 0x97, 0xAF, 0xE1, 0x2C, 0x76, 1525 | 0xE0, 0xD9, 0x24, 0xFD, 0xB5, 0x54, 0xF2, 0x43, 0x70, 0x1B, 1526 | 0x2C, 0xC7, 0x07, 0xB1, 0x1E, 0x6B, 0x6A, 0x76, 0x6D, 0xDB, 1527 | 0xF1, 0x24, 0xFE, 0x80, 0x97, 0x42, 0x70, 0x39, 0xD6, 0xE0, 1528 | 0x13, 0xF8, 0x14, 0x16, 0xD4, 0xBC, 0x90, 0x1C, 0xC4, 0x13, 1529 | 0x78, 0x1A, 0xCF, 0x87, 0xE0, 0x89, 0x59, 0x8F, 0xBB, 0xD2, 1530 | 0xEF, 0xE9, 0x99, 0xB5, 0x0D, 0x46, 0xF1, 0x14, 0x7E, 0x9E, 1531 | 0x7E, 0x87, 0xE0, 0x0B, 0x58, 0x8B, 0x7B, 0x70, 0x5B, 0x1F, 1532 | 0x3C, 0xBA, 0x9D, 0x4F, 0xA5, 0x79, 0x23, 0xB6, 0x4E, 0x75, 1533 | 0xC1, 0x57, 0xE2, 0x01, 0xDC, 0x8E, 0xCB, 0xFA, 0xEC, 0x11, 1534 | 0xF4, 0x78, 0xBA, 0x75, 0x7F, 0x23, 0x3D, 0x7A, 0x4D, 0x39, 1535 | 0xC1, 0xF7, 0xE1, 0x5E, 0x5C, 0xDD, 0xE7, 0x7D, 0x0D, 0xFB, 1536 | 0xF0, 0x43, 0x3C, 0x32, 0x55, 0x04, 0x2F, 0x4B, 0x7F, 0xEC, 1537 | 0xEA, 0x0C, 0xEB, 0xD9, 0x76, 0xEA, 0xE7, 0x1D, 0xB8, 0x3F, 1538 | 0x3D, 0x5B, 0x77, 0x8D, 0x6E, 0xD6, 0x77, 0x83, 0xA9, 0x9E, 1539 | 0xDD, 0x8A, 0x1B, 0xA7, 0x90, 0x5C, 0xE9, 0x6F, 0xBD, 0x11, 1540 | 0xCF, 0xA5, 0x0C, 0x06, 0xFB, 0xAD, 0x04, 0xCF, 0x4D, 0x75, 1541 | 0xD1, 0xBD, 0xF2, 0xEF, 0x1E, 0x6D, 0x97, 0x73, 0x78, 0x0C, 1542 | 0x5F, 0xC7, 0xB1, 0x7E, 0x10, 0x3C, 0x8C, 0x47, 0xD3, 0x2D, 1543 | 0x39, 0x78, 0x9B, 0x1D, 0xF8, 0x72, 0xAA, 0xA3, 0xB3, 0x15, 1544 | 0x7C, 0x2D, 0x7E, 0x8A, 0xF7, 0x85, 0xCF, 0xFF, 0xCB, 0x5E, 1545 | 0xDC, 0x8D, 0x3F, 0xE6, 0x28, 0x78, 0x0D, 0x7E, 0x86, 0x2B, 1546 | 0xC2, 0xE3, 0x84, 0x1C, 0xC6, 0x67, 0x75, 0xA8, 0x17, 0xAC, 1547 | 0x53, 0x8D, 0xAC, 0x75, 0xD8, 0x1C, 0x72, 0x9B, 0xE2, 0x8A, 1548 | 0xF4, 0xBC, 0x7C, 0x6B, 0x2E, 0x25, 0x78, 0x1D, 0x36, 0x79, 1549 | 0x7B, 0xEC, 0x35, 0x68, 0x8E, 0x53, 0xB8, 0x13, 0x5B, 0xEA, 1550 | 0x2C, 0xF8, 0x63, 0xF8, 0xA5, 0x62, 0xCC, 0x36, 0x28, 0xCF, 1551 | 0x71, 0x6C, 0x50, 0x8C, 0x54, 0xD5, 0x4E, 0xF0, 0xF2, 0x74, 1552 | 0x61, 0xF3, 0xC2, 0x53, 0xDB, 0x75, 0xF2, 0x1A, 0x15, 0x0D, 1553 | 0x41, 0x56, 0x55, 0x07, 0x0F, 0xA7, 0x3A, 0x37, 0xE4, 0x56, 1554 | 0x53, 0x27, 0x6F, 0x4E, 0x99, 0xD6, 0x42, 0xF0, 0xDC, 0xF4, 1555 | 0xE0, 0x3E, 0x1C, 0x6E, 0x2A, 0xED, 0x3B, 0x78, 0x4C, 0x31, 1556 | 0x93, 0xA5, 0xA7, 0x82, 0x07, 0xF1, 0x4D, 0xDC, 0x10, 0x4E, 1557 | 0x2A, 0xE7, 0x06, 0x45, 0xEF, 0xDF, 0x60, 0x2F, 0x05, 0x7F, 1558 | 0x4E, 0xD1, 0xB7, 0x1A, 0x74, 0x86, 0x7B, 0x52, 0xC6, 0x3D, 1559 | 0x69, 0x64, 0xBD, 0x1F, 0xBF, 0x51, 0x4C, 0x4F, 0x0D, 0x3A, 1560 | 0xC7, 0x08, 0x6E, 0xC2, 0x5F, 0xBB, 0x59, 0x82, 0x2F, 0xC2, 1561 | 0xF7, 0x42, 0x6E, 0x57, 0x58, 0x88, 0xEF, 0xA6, 0xCC, 0xBB, 1562 | 0x26, 0xF8, 0x2B, 0x58, 0x15, 0xD9, 0x77, 0x8D, 0x55, 0x29, 1563 | 0xF3, 0xAE, 0xDC, 0xA2, 0xDF, 0x8D, 0x3D, 0xEA, 0x3F, 0xDB, 1564 | 0xB1, 0xDF, 0x38, 0x88, 0xEB, 0x70, 0xA0, 0xD3, 0x25, 0xF8, 1565 | 0xA1, 0x90, 0xDB, 0x13, 0x16, 0xE0, 0xE1, 0x4E, 0x97, 0xE0, 1566 | 0x0F, 0x61, 0x1B, 0x66, 0x46, 0xDE, 0x3D, 0xE1, 0xB4, 0x62, 1567 | 0x66, 0xC8, 0xEF, 0x3B, 0x51, 0x82, 0x07, 0x14, 0x13, 0xE5, 1568 | 0x42, 0x6E, 0xEF, 0x98, 0x99, 0x1C, 0x0C, 0x74, 0x42, 0xF0, 1569 | 0xDA, 0xF4, 0x13, 0xF4, 0x96, 0xB5, 0xB8, 0xB9, 0x6A, 0xC1, 1570 | 0xD3, 0xF1, 0x05, 0xCC, 0x88, 0x7C, 0x7B, 0xCE, 0x8C, 0xE4, 1571 | 0xA2, 0xA9, 0x49, 0x8B, 0xCD, 0xD6, 0xC1, 0x1F, 0x55, 0x74, 1572 | 0x6A, 0x0C, 0x46, 0xBE, 0xB5, 0xE0, 0x1C, 0x3E, 0x8E, 0x17, 1573 | 0xAA, 0x28, 0xC1, 0xD3, 0x14, 0x8B, 0xC0, 0x42, 0x6E, 0x7D, 1574 | 0x18, 0x4C, 0x4E, 0xA6, 0x55, 0x21, 0x78, 0x89, 0x0E, 0x4D, 1575 | 0x27, 0x09, 0xDA, 0xE2, 0xD6, 0xE4, 0xA6, 0x6D, 0xC1, 0x1F, 1576 | 0x16, 0x5D, 0x92, 0x75, 0x64, 0x61, 0x72, 0xD3, 0x96, 0xE0, 1577 | 0xCB, 0x70, 0x47, 0x64, 0x59, 0x5B, 0xEE, 0x30, 0xC9, 0xA2, 1578 | 0xBD, 0xC9, 0x04, 0x5F, 0x8D, 0x95, 0x91, 0x63, 0x6D, 0x59, 1579 | 0x69, 0x92, 0xC5, 0x7B, 0xD3, 0x9A, 0xF8, 0x80, 0x68, 0x5C, 1580 | 0xD5, 0xBB, 0xB1, 0xB5, 0xB2, 0x55, 0xC1, 0xB3, 0x45, 0xC7, 1581 | 0x46, 0x0E, 0xDC, 0x94, 0x5C, 0x95, 0x16, 0x3C, 0x1F, 0x1F, 1582 | 0x89, 0xFC, 0x6A, 0xCF, 0xAA, 0xE4, 0xAA, 0xB4, 0xE0, 0x0F, 1583 | 0xE0, 0x92, 0xC8, 0xAF, 0xF6, 0x5C, 0x92, 0x5C, 0x95, 0x12, 1584 | 0x3C, 0xA8, 0xD8, 0x64, 0x2C, 0xC8, 0x83, 0xEB, 0x1B, 0xB5, 1585 | 0x95, 0x1A, 0x09, 0x9E, 0xA5, 0x18, 0x5C, 0x0E, 0xF2, 0xE0, 1586 | 0x3A, 0x0D, 0x96, 0x0A, 0x4D, 0x24, 0x78, 0x59, 0xE4, 0x96, 1587 | 0x0D, 0xCB, 0xCA, 0x0A, 0x5E, 0x30, 0x51, 0xC5, 0x1D, 0xD4, 1588 | 0x8E, 0xF9, 0x1A, 0xCC, 0xB2, 0x69, 0x24, 0x78, 0x49, 0x64, 1589 | 0x96, 0x1D, 0x4B, 0xCB, 0x08, 0x5E, 0x1C, 0x79, 0x65, 0xC7, 1590 | 0x55, 0x65, 0x04, 0x2F, 0x8A, 0xBC, 0xB2, 0x63, 0x51, 0x19, 1591 | 0xC1, 0xEF, 0x8A, 0xBC, 0xB2, 0xA3, 0x54, 0x1D, 0x3C, 0x27, 1592 | 0xF2, 0xCA, 0x8E, 0xB9, 0x65, 0x04, 0x0F, 0x45, 0x5E, 0xD9, 1593 | 0x31, 0x54, 0x46, 0xF0, 0xEC, 0xC8, 0x2B, 0x3B, 0x66, 0x97, 1594 | 0x11, 0x3C, 0x3D, 0xF2, 0xCA, 0x8E, 0xE9, 0x65, 0x04, 0xC7, 1595 | 0x0E, 0x39, 0xF9, 0x31, 0xB3, 0x8C, 0xE0, 0xA0, 0x4F, 0x68, 1596 | 0x24, 0xF8, 0x54, 0x44, 0x93, 0x1D, 0xA7, 0xCB, 0x08, 0x3E, 1597 | 0x1F, 0x79, 0x65, 0xC7, 0x68, 0x19, 0xC1, 0x27, 0x22, 0xAF, 1598 | 0xEC, 0x38, 0x51, 0x46, 0xF0, 0xD1, 0xC8, 0x2B, 0x3B, 0x8E, 1599 | 0x96, 0x11, 0x7C, 0x2C, 0xF2, 0xCA, 0x8E, 0x63, 0x65, 0x04, 1600 | 0x8F, 0x44, 0x5E, 0xD9, 0xF1, 0xAF, 0x32, 0x82, 0xF7, 0x47, 1601 | 0x5E, 0xD9, 0xB1, 0xBF, 0x8C, 0xE0, 0x7F, 0x44, 0x5E, 0xD9, 1602 | 0xF1, 0xF7, 0x32, 0x82, 0xF7, 0x46, 0x5E, 0xD9, 0xB1, 0xB7, 1603 | 0x8C, 0xE0, 0x7F, 0x2B, 0xB6, 0xB5, 0x0D, 0xF2, 0xE0, 0x50, 1604 | 0x72, 0xD6, 0xB4, 0xE0, 0x53, 0xBA, 0x7C, 0x80, 0x53, 0xD0, 1605 | 0x16, 0x7F, 0xD1, 0xA0, 0xF7, 0x71, 0x22, 0xC1, 0x7B, 0x22, 1606 | 0xB7, 0x6C, 0xD8, 0x53, 0x56, 0xF0, 0x39, 0xC5, 0xB1, 0xE6, 1607 | 0x41, 0x1E, 0xBC, 0x98, 0x9C, 0x35, 0x2D, 0x98, 0x62, 0x77, 1608 | 0xD3, 0xB7, 0x22, 0xBB, 0xDA, 0xF3, 0x96, 0x09, 0x76, 0xA2, 1609 | 0x9D, 0x36, 0x49, 0xC5, 0xFD, 0xDB, 0xC8, 0xAF, 0xF6, 0xEC, 1610 | 0x4C, 0xAE, 0x4A, 0x0B, 0x3E, 0xA1, 0x06, 0x07, 0x1C, 0x07, 1611 | 0x93, 0xF2, 0x6B, 0x13, 0x0C, 0x0E, 0x4D, 0x36, 0xE0, 0xBF, 1612 | 0xAB, 0xD1, 0xBD, 0x3D, 0xA8, 0x05, 0xE7, 0x92, 0x23, 0xAD, 1613 | 0x0A, 0xFE, 0xDB, 0x64, 0x1F, 0x10, 0xF4, 0x94, 0x5D, 0xC9, 1614 | 0x51, 0xCB, 0x82, 0x8F, 0xE3, 0xF1, 0xC8, 0xB1, 0xB6, 0x3C, 1615 | 0x9E, 0x1C, 0xB5, 0x2C, 0x58, 0x6A, 0x68, 0xC5, 0xE8, 0x52, 1616 | 0xFD, 0x18, 0x69, 0xA6, 0x11, 0xDC, 0x8C, 0xE0, 0x57, 0x54, 1617 | 0x7C, 0x9E, 0x5E, 0x50, 0x09, 0x5B, 0x92, 0x9B, 0xB6, 0x05, 1618 | 0x9F, 0x57, 0x9C, 0xC4, 0x15, 0x8D, 0xAD, 0x7A, 0x35, 0xAE, 1619 | 0x36, 0x6B, 0x62, 0xEE, 0x5C, 0xB3, 0xD3, 0x66, 0x77, 0xE2, 1620 | 0x99, 0xC8, 0xB5, 0x36, 0x3C, 0x93, 0x9C, 0xA8, 0x4A, 0xF0, 1621 | 0x28, 0x7E, 0x8C, 0x33, 0x91, 0x6D, 0xCF, 0x39, 0x93, 0x5C, 1622 | 0x8C, 0x56, 0x29, 0x18, 0x9E, 0x13, 0x1D, 0x1F, 0x75, 0x60, 1623 | 0x6B, 0x72, 0xA1, 0x6A, 0xC1, 0x63, 0x78, 0x44, 0x83, 0x09, 1624 | 0xD6, 0x41, 0x57, 0x38, 0x8D, 0xEF, 0x24, 0x17, 0x95, 0x0B, 1625 | 0xA6, 0x38, 0xED, 0x63, 0x53, 0xE4, 0xDC, 0x33, 0x36, 0xE1, 1626 | 0x77, 0x65, 0xDE, 0x10, 0x07, 0x63, 0xE5, 0xC3, 0x21, 0x5C, 1627 | 0xAB, 0x0B, 0x07, 0x63, 0x1D, 0xC0, 0xB7, 0x9A, 0xAD, 0xE4, 1628 | 0x83, 0x4A, 0x18, 0x4D, 0x99, 0x1F, 0x28, 0xFB, 0xC6, 0x56, 1629 | 0x4F, 0x1F, 0xBD, 0x28, 0x55, 0xF6, 0xAB, 0x23, 0xFB, 0xAE, 1630 | 0xB0, 0x43, 0xB1, 0xF3, 0xEF, 0xD9, 0xB2, 0x6F, 0x6C, 0x75, 1631 | 0xF9, 0xE8, 0x59, 0x7C, 0x55, 0x74, 0x61, 0x76, 0x83, 0x11, 1632 | 0x7C, 0xAD, 0x15, 0xB9, 0xED, 0x08, 0xA6, 0x98, 0x45, 0xF0, 1633 | 0x60, 0xAB, 0x5F, 0x1C, 0x34, 0x5D, 0x90, 0x1E, 0x54, 0x4C, 1634 | 0xAA, 0xD3, 0x6D, 0xC1, 0xF0, 0x13, 0x6C, 0x0C, 0x0F, 0x1D, 1635 | 0xE3, 0x47, 0x29, 0xE3, 0x96, 0x69, 0xE7, 0x04, 0xF0, 0x71, 1636 | 0x86, 0x14, 0xFD, 0xA2, 0xAB, 0xC2, 0x47, 0xA5, 0xEC, 0xC4, 1637 | 0x06, 0x6D, 0xAE, 0xF4, 0xAC, 0x42, 0x30, 0x0C, 0xA7, 0x46, 1638 | 0xD7, 0x70, 0x78, 0xA9, 0x84, 0x7D, 0xA9, 0x51, 0xB5, 0xAF, 1639 | 0xDD, 0x0F, 0xAA, 0x4A, 0x30, 0x2C, 0xC7, 0x76, 0xCC, 0x0B, 1640 | 0x3F, 0x6D, 0x71, 0x58, 0x71, 0x84, 0xEC, 0x9F, 0xAA, 0xF8, 1641 | 0xB0, 0x2A, 0x37, 0x61, 0x79, 0x09, 0x9F, 0xC1, 0x7F, 0xC2, 1642 | 0x51, 0xCB, 0x1C, 0xC7, 0x5D, 0x55, 0xC9, 0xAD, 0x5A, 0xB0, 1643 | 0x54, 0x82, 0xEF, 0x16, 0x9B, 0xB8, 0xB4, 0xC2, 0xA9, 0x94, 1644 | 0xDD, 0xF6, 0x2A, 0x3F, 0xB4, 0x13, 0xDB, 0x28, 0xFD, 0x0A, 1645 | 0x77, 0xE2, 0x64, 0x38, 0x6B, 0x9A, 0x93, 0x29, 0xB3, 0xCA, 1646 | 0x67, 0xCE, 0x74, 0x6A, 0x9F, 0xAC, 0x2D, 0xA9, 0x05, 0x18, 1647 | 0x2B, 0x14, 0x9B, 0xAB, 0x73, 0x37, 0xE8, 0xD0, 0xB4, 0xA8, 1648 | 0x4E, 0x6E, 0x84, 0xB6, 0x0D, 0xB7, 0xE0, 0xD5, 0x70, 0xD8, 1649 | 0x90, 0x57, 0x53, 0x46, 0xDB, 0x3A, 0xF5, 0x05, 0x9D, 0xDE, 1650 | 0xE9, 0x6E, 0x0F, 0xD6, 0x69, 0xE2, 0x20, 0xE3, 0x29, 0xC8, 1651 | 0x0B, 0x29, 0x9B, 0x8E, 0xAE, 0xE2, 0xEC, 0xC6, 0x56, 0x86, 1652 | 0xFB, 0xF0, 0x69, 0x7C, 0x5F, 0x4C, 0xDC, 0x93, 0x32, 0xF8, 1653 | 0x41, 0xCA, 0x64, 0x5F, 0xA7, 0xBF, 0xAC, 0xCA, 0xE7, 0xE0, 1654 | 0xC9, 0x18, 0xC4, 0xE7, 0x15, 0x7D, 0xAB, 0x53, 0xF5, 0x3C, 1655 | 0xE2, 0x11, 0x3C, 0xA4, 0x98, 0x53, 0xD5, 0x95, 0x7F, 0xF6, 1656 | 0x6E, 0x0A, 0x1E, 0x67, 0x39, 0xBE, 0xAD, 0x18, 0x6A, 0x9C, 1657 | 0x2A, 0xDB, 0x16, 0x8F, 0xA6, 0x5B, 0xF2, 0xFD, 0xA9, 0xBF, 1658 | 0xA0, 0x6B, 0xF4, 0x42, 0xF0, 0x38, 0xF7, 0xE1, 0x4B, 0xFA, 1659 | 0xBF, 0x7B, 0xF3, 0x35, 0x3C, 0xAA, 0x98, 0xCF, 0xD6, 0x75, 1660 | 0x7A, 0x29, 0x18, 0xDE, 0x83, 0x07, 0x70, 0x9B, 0x49, 0x4E, 1661 | 0xB2, 0xCE, 0x90, 0xE3, 0x78, 0x1A, 0x0F, 0x6B, 0xB0, 0xC5, 1662 | 0xD1, 0x54, 0x10, 0x3C, 0xCE, 0xCD, 0xF8, 0x22, 0xD6, 0x63, 1663 | 0x20, 0x73, 0xB1, 0x63, 0x49, 0xEC, 0x46, 0x25, 0xA6, 0xB7, 1664 | 0xF6, 0xBB, 0xE0, 0x71, 0x3E, 0xA9, 0xE8, 0xCF, 0x5E, 0x9F, 1665 | 0x61, 0xFD, 0x3C, 0x8A, 0xA7, 0xF0, 0x0B, 0x3C, 0x59, 0x97, 1666 | 0x8B, 0xAA, 0x9B, 0xE0, 0x71, 0xD6, 0xA4, 0xDB, 0xF6, 0xED, 1667 | 0xEA, 0x3F, 0x7B, 0xF3, 0x20, 0x9E, 0x48, 0xA5, 0xF6, 0xF9, 1668 | 0xBA, 0x5D, 0x5C, 0x5D, 0x05, 0x5F, 0xD8, 0xE2, 0x5E, 0x99, 1669 | 0x4A, 0x76, 0xDD, 0x26, 0xF8, 0xED, 0x48, 0x25, 0x75, 0x57, 1670 | 0xB7, 0x5B, 0xC6, 0xFD, 0x24, 0x78, 0x9C, 0x79, 0x78, 0x2F, 1671 | 0x56, 0x28, 0x06, 0xC2, 0x57, 0xE3, 0xE2, 0x2E, 0x5F, 0xC3, 1672 | 0xD9, 0x24, 0xF5, 0x59, 0xEC, 0x4E, 0x0D, 0xA7, 0x23, 0x75, 1673 | 0x0F, 0x2E, 0x17, 0xC1, 0x17, 0x32, 0x47, 0x71, 0x9C, 0xEA, 1674 | 0x52, 0xC5, 0xC9, 0xD7, 0x2B, 0x70, 0x8D, 0xEA, 0x27, 0x1A, 1675 | 0x1C, 0x51, 0xEC, 0xF6, 0xB7, 0x5B, 0xB1, 0x0F, 0xD5, 0xCB, 1676 | 0x8A, 0x81, 0x81, 0x37, 0x72, 0x0A, 0x2B, 0x47, 0xC1, 0x17, 1677 | 0x32, 0x88, 0x4B, 0x15, 0xC7, 0x00, 0x2D, 0x50, 0x1C, 0x8B, 1678 | 0xBB, 0x18, 0x57, 0x2A, 0x7A, 0xCB, 0xE6, 0xE1, 0x72, 0xBC, 1679 | 0x03, 0x33, 0x14, 0xE7, 0xDD, 0x0F, 0x28, 0xD6, 0xF8, 0x9C, 1680 | 0xC1, 0x7F, 0x93, 0xB0, 0x23, 0x8A, 0x5E, 0xA6, 0xFD, 0x78, 1681 | 0x5D, 0xB1, 0xB0, 0xFA, 0xA0, 0x62, 0x8C, 0xF6, 0x4D, 0x19, 1682 | 0x77, 0xB1, 0xE6, 0x2E, 0x38, 0x98, 0x84, 0x38, 0x37, 0x29, 1683 | 0x04, 0x07, 0x21, 0x38, 0x08, 0xC1, 0x41, 0x6F, 0xF8, 0xDF, 1684 | 0x00, 0xCA, 0xE4, 0xAC, 0x23, 0x3D, 0x71, 0x31, 0x9F, 0x00, 1685 | 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, 0xAE, 0x42, 0x60, 1686 | 0x82 1687 | }; 1688 | -------------------------------------------------------------------------------- /mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/mask.png -------------------------------------------------------------------------------- /rippleboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleboard.png -------------------------------------------------------------------------------- /rippleprefs/Makefile: -------------------------------------------------------------------------------- 1 | SDKVERSION = 9.2 2 | ARCHS = armv7 arm64 3 | include $(THEOS)/makefiles/common.mk 4 | 5 | BUNDLE_NAME = RipplePrefs 6 | RipplePrefs_FILES = RipplePrefs.xm 7 | RipplePrefs_INSTALL_PATH = /Library/PreferenceBundles 8 | RipplePrefs_FRAMEWORKS = UIKit QuartzCore CoreGraphics 9 | RipplePrefs_PRIVATE_FRAMEWORKS = Preferences SpringBoardServices FrontBoardServices 10 | ADDITIONAL_OBJCFLAGS = -fobjc-arc 11 | include $(THEOS_MAKE_PATH)/bundle.mk 12 | 13 | internal-stage:: 14 | $(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END) 15 | $(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/RipplePrefs.plist$(ECHO_END) 16 | -------------------------------------------------------------------------------- /rippleprefs/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | RipplePrefs 9 | CFBundleIdentifier 10 | com.satori.rippleprefs 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | DTPlatformName 22 | iphoneos 23 | MinimumOSVersion 24 | 3.0 25 | NSPrincipalClass 26 | RipplePrefsListController 27 | 28 | 29 | -------------------------------------------------------------------------------- /rippleprefs/Resources/RipplePrefs.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | items 6 | 7 | 8 | cell 9 | PSGroupCell 10 | label 11 | RippleBoard Enabled 12 | 13 | 14 | cell 15 | PSSwitchCell 16 | default 17 | 18 | defaults 19 | org.satorify.rippleboard.plist 20 | key 21 | enabled 22 | cellClass 23 | BlueSwitchTableCell 24 | label 25 | Enabled 26 | 27 | 28 | cell 29 | PSGroupCell 30 | 31 | 32 | cell 33 | PSGroupCell 34 | label 35 | Round App Icons 36 | 37 | 38 | cell 39 | PSSwitchCell 40 | default 41 | 42 | defaults 43 | org.satorify.rippleboard.plist 44 | key 45 | roundicons 46 | label 47 | Round Icons 48 | cellClass 49 | BlueSwitchTableCell 50 | 51 | 52 | cell 53 | PSGroupCell 54 | label 55 | Ripple On App Launch 56 | 57 | 58 | cell 59 | PSSwitchCell 60 | default 61 | 62 | defaults 63 | org.satorify.rippleboard.plist 64 | key 65 | launchripple 66 | label 67 | Launch Ripple 68 | cellClass 69 | BlueSwitchTableCell 70 | 71 | 72 | cell 73 | PSGroupCell 74 | label 75 | Ripple On Touch 76 | 77 | 78 | cell 79 | PSSwitchCell 80 | default 81 | 82 | defaults 83 | org.satorify.rippleboard.plist 84 | key 85 | touchripple 86 | label 87 | Touch Ripple 88 | cellClass 89 | BlueSwitchTableCell 90 | 91 | 92 | cell 93 | PSGroupCell 94 | label 95 | Running Apps Ripple 96 | 97 | 98 | cell 99 | PSSwitchCell 100 | default 101 | 102 | defaults 103 | org.satorify.rippleboard.plist 104 | key 105 | runningripple 106 | label 107 | Running Apps 108 | cellClass 109 | BlueSwitchTableCell 110 | 111 | 112 | cell 113 | PSGroupCell 114 | label 115 | Ripple Range 116 | 117 | 118 | alignment 119 | 3 120 | cell 121 | PSSliderCell 122 | default 123 | 1 124 | defaults 125 | org.satorify.rippleboard.plist 126 | key 127 | range 128 | max 129 | 5 130 | min 131 | 1 132 | showValue 133 | 134 | cellClass 135 | BlueSliderTableCell 136 | 137 | 138 | cell 139 | PSGroupCell 140 | label 141 | Ripple Duration 142 | 143 | 144 | alignment 145 | 3 146 | cell 147 | PSSliderCell 148 | default 149 | 1 150 | defaults 151 | org.satorify.rippleboard.plist 152 | key 153 | runningSpeed 154 | max 155 | 4 156 | min 157 | 0.25 158 | showValue 159 | 160 | cellClass 161 | BlueSliderTableCell 162 | 163 | 164 | cell 165 | PSGroupCell 166 | 167 | 168 | cell 169 | PSButtonCell 170 | action 171 | respring 172 | label 173 | Respring to Save Changes 174 | 175 | 176 | cell 177 | PSGroupCell 178 | label 179 | Extras 180 | 181 | 182 | cell 183 | PSButtonCell 184 | action 185 | twitter 186 | icon 187 | twitter.png 188 | label 189 | Follow me on Twitter 190 | 191 | 192 | cell 193 | PSButtonCell 194 | action 195 | website 196 | icon 197 | web.png 198 | label 199 | Visit my Site 200 | 201 | 202 | cell 203 | PSButtonCell 204 | action 205 | github 206 | icon 207 | github.png 208 | label 209 | View RippleBoard on GitHub 210 | 211 | 212 | cell 213 | PSButtonCell 214 | action 215 | paypal 216 | icon 217 | paypal.png 218 | label 219 | Show some love 220 | 221 | 222 | cell 223 | PSGroupCell 224 | footerText 225 | Copyright (c) 2015 Satori. 226 | 227 | 228 | title 229 | RippleBoard 230 | 231 | 232 | -------------------------------------------------------------------------------- /rippleprefs/Resources/RipplePrefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/RipplePrefs.png -------------------------------------------------------------------------------- /rippleprefs/Resources/RipplePrefs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/RipplePrefs@2x.png -------------------------------------------------------------------------------- /rippleprefs/Resources/RipplePrefs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/RipplePrefs@3x.png -------------------------------------------------------------------------------- /rippleprefs/Resources/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/github.png -------------------------------------------------------------------------------- /rippleprefs/Resources/github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/github@2x.png -------------------------------------------------------------------------------- /rippleprefs/Resources/github@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/github@3x.png -------------------------------------------------------------------------------- /rippleprefs/Resources/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/paypal.png -------------------------------------------------------------------------------- /rippleprefs/Resources/paypal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/paypal@2x.png -------------------------------------------------------------------------------- /rippleprefs/Resources/paypal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/paypal@3x.png -------------------------------------------------------------------------------- /rippleprefs/Resources/rippleboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/rippleboard.png -------------------------------------------------------------------------------- /rippleprefs/Resources/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/twitter.png -------------------------------------------------------------------------------- /rippleprefs/Resources/twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/twitter@2x.png -------------------------------------------------------------------------------- /rippleprefs/Resources/twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/twitter@3x.png -------------------------------------------------------------------------------- /rippleprefs/Resources/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/web.png -------------------------------------------------------------------------------- /rippleprefs/Resources/web@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/web@2x.png -------------------------------------------------------------------------------- /rippleprefs/Resources/web@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/Resources/web@3x.png -------------------------------------------------------------------------------- /rippleprefs/RipplePrefs.xm: -------------------------------------------------------------------------------- 1 | /* 2 | * __ __ 3 | *|__). _ _ | _|__) _ _ _ _| 4 | *| \ ||_)|_)|(-|__)(_)(_|| (_| 5 | * | | 6 | * Created by Satori (Razzile) 7 | * Source code is under the MIT License 8 | * File: RipplePrefs.mm 9 | * Description: Preference Bundle Backend 10 | */ 11 | 12 | #import 13 | #import 14 | #import 15 | 16 | @interface FBSSystemService : NSObject { 17 | } 18 | 19 | + (id)sharedService; 20 | 21 | - (void)reboot; 22 | - (void)sendActions:(id)arg1 withResult:(id)arg2; 23 | - (id)clientCallbackQueue; 24 | - (void)terminateApplicationGroup:(long long)arg1 forReason:(long long)arg2 andReport:(bool)arg3 withDescription:(id)arg4; 25 | - (void)terminateApplication:(id)arg1 forReason:(long long)arg2 andReport:(bool)arg3 withDescription:(id)arg4; 26 | - (void)openDataActivationURL:(id)arg1 withResult:(id)arg2; 27 | - (void)fireCompletion:(id)arg1 error:(id)arg2; 28 | - (id)_badArgumentError; 29 | - (void)shutdown; 30 | - (void)setBadgeValue:(id)arg1 forBundleID:(id)arg2; 31 | - (bool)canOpenApplication:(id)arg1 reason:(long long*)arg2; 32 | - (int)pidForApplication:(id)arg1; 33 | - (void)openApplication:(id)arg1 options:(id)arg2 withResult:(id)arg3; 34 | - (id)init; 35 | - (void)dealloc; 36 | - (void)openApplication:(id)arg1 options:(id)arg2 clientPort:(unsigned int)arg3 withResult:(id)arg4; 37 | - (unsigned int)createClientPort; 38 | - (void)cleanupClientPort:(unsigned int)arg1; 39 | - (void)openURL:(id)arg1 application:(id)arg2 options:(id)arg3 clientPort:(unsigned int)arg4 withResult:(id)arg5; 40 | - (id)systemApplicationBundleIdentifier; 41 | 42 | @end 43 | 44 | @interface SBSRestartRenderServerAction : NSObject 45 | 46 | @property (nonatomic,readonly) NSURL * targetURL; 47 | +(id)restartActionWithTargetRelaunchURL:(id)arg1 ; 48 | -(NSURL *)targetURL; 49 | @end 50 | 51 | @interface PSSliderTableCell : PSControlTableCell { 52 | UIView *_disabledView; 53 | } 54 | 55 | - (BOOL)canReload; 56 | - (id)controlValue; 57 | - (id)initWithStyle:(int)arg1 reuseIdentifier:(id)arg2 specifier:(id)arg3; 58 | - (void)layoutSubviews; 59 | - (id)newControl; 60 | - (void)prepareForReuse; 61 | - (void)refreshCellContentsWithSpecifier:(id)arg1; 62 | - (void)setCellEnabled:(BOOL)arg1; 63 | - (void)setValue:(id)arg1; 64 | - (id)titleLabel; 65 | 66 | @end 67 | 68 | #define rippleBoardPrefPath @"/User/Library/Preferences/org.satorify.rippleboard.plist" 69 | 70 | UIImageView *rippleView; // woo nasty coding 71 | 72 | @interface BlueSwitchTableCell : PSSwitchTableCell 73 | @end 74 | 75 | @interface BlueSliderTableCell : PSSliderTableCell 76 | @end 77 | 78 | @interface RippleCell : PSTableCell 79 | @end 80 | 81 | @implementation BlueSwitchTableCell 82 | 83 | -(id)initWithStyle:(int)style reuseIdentifier:(NSString *)identifier specifier:(PSSpecifier *)spec { 84 | 85 | self = [super initWithStyle:style reuseIdentifier:identifier specifier:spec]; 86 | if (self) { 87 | [((UISwitch *)[self control]) setOnTintColor:[UIColor colorWithRed:51.0f/255.0f green:51.0f/255.0f blue:153.0f/255.0f alpha:1.0f]]; 88 | } 89 | 90 | return self; 91 | } 92 | 93 | @end 94 | 95 | @implementation RippleCell 96 | 97 | - (CGFloat)preferredHeightForWidth:(CGFloat)width { 98 | return 100; 99 | } 100 | 101 | @end 102 | 103 | @implementation BlueSliderTableCell 104 | -(id)initWithStyle:(int)style reuseIdentifier:(NSString *)identifier specifier:(PSSpecifier *)spec { 105 | self = [super initWithStyle:style reuseIdentifier:identifier specifier:spec]; 106 | if (self) { 107 | [((UISlider *)[self control]) setMinimumTrackTintColor:[UIColor colorWithRed:51.0f/255.0f green:51.0f/255.0f blue:153.0f/255.0f alpha:1.0f]]; 108 | } 109 | return self; 110 | } 111 | @end 112 | 113 | @interface RipplePrefsListController: PSListController { 114 | } 115 | @end 116 | 117 | @implementation RipplePrefsListController 118 | - (id)specifiers { 119 | if(_specifiers == nil) { 120 | _specifiers = [self loadSpecifiersFromPlistName:@"RipplePrefs" target:self]; 121 | } 122 | return _specifiers; 123 | } 124 | 125 | -(id)readPreferenceValue:(PSSpecifier*)specifier { 126 | NSDictionary *exampleTweakSettings = [NSDictionary dictionaryWithContentsOfFile:rippleBoardPrefPath]; 127 | if (!exampleTweakSettings[specifier.properties[@"key"]]) { 128 | return specifier.properties[@"default"]; 129 | } 130 | return exampleTweakSettings[specifier.properties[@"key"]]; 131 | } 132 | 133 | -(void)setPreferenceValue:(id)value specifier:(PSSpecifier*)specifier { 134 | NSMutableDictionary *defaults = [NSMutableDictionary dictionary]; 135 | [defaults addEntriesFromDictionary:[NSDictionary dictionaryWithContentsOfFile:rippleBoardPrefPath]]; 136 | [defaults setObject:value forKey:specifier.properties[@"key"]]; 137 | [defaults writeToFile:rippleBoardPrefPath atomically:YES]; 138 | CFStringRef toPost = (__bridge CFStringRef)specifier.properties[@"PostNotification"]; 139 | if(toPost) CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), toPost, NULL, NULL, YES); 140 | } 141 | 142 | #pragma mark Custom 143 | 144 | - (void)respring { 145 | SBSRestartRenderServerAction *restartAction = [SBSRestartRenderServerAction restartActionWithTargetRelaunchURL:nil]; 146 | [[FBSSystemService sharedService] sendActions:[NSSet setWithObject:restartAction] withResult:nil]; 147 | // notify_post("org.satorify.rippleboard.respring"); 148 | // CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), CFSTR("org.satorify.rippleboard.respring"), NULL, NULL, CFNotificationSuspensionBehaviorDeliverImmediately); 149 | } 150 | 151 | - (void)twitter { 152 | if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tweetbot:"]]) { 153 | [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[@"tweetbot:///user_profile/" stringByAppendingString:@"Razzilient"]]]; 154 | 155 | } else if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"twitterrific:"]]) { 156 | [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[@"twitterrific://user?screen_name=" stringByAppendingString:@"Razzilient"]]]; 157 | 158 | } else if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"twitter:"]]) { 159 | [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[@"twitter://user?screen_name=" stringByAppendingString:@"Razzilient"]]]; 160 | } else { 161 | [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[@"https://mobile.twitter.com/" stringByAppendingString:@"Razzilient"]]]; 162 | } 163 | } 164 | 165 | - (void)website { 166 | [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://razzland.com"]]; 167 | } 168 | 169 | - (void)github { 170 | [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://github.com/Razzile/RippleBoard"]]; 171 | } 172 | 173 | - (void)paypal { 174 | [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=comfycallum%40gmail%2ecom&lc=US&item_name=RippleBoard&item_number=RIPPLEBOARDDONATION&no_note=0¤cy_code=GBP&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHostedGuest"]]; 175 | } 176 | 177 | - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section { 178 | if(section == [tableView numberOfSections]-3) { 179 | static UIView *footerView; 180 | if (footerView != nil) return footerView; 181 | 182 | footerView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, tableView.frame.size.width, 200.0f)]; 183 | footerView.autoresizingMask = UIViewAutoresizingFlexibleWidth; 184 | rippleView = [[UIImageView alloc] initWithFrame:CGRectMake(40, 40, 120, 120)]; 185 | [rippleView setImage:[UIImage imageWithContentsOfFile:@"/Library/PreferenceBundles/RipplePrefs.bundle/rippleboard.png"]]; 186 | rippleView.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin; 187 | rippleView.center = CGPointMake(CGRectGetMidX(footerView.frame), CGRectGetMidY(footerView.frame)); 188 | [footerView addSubview:rippleView]; 189 | return footerView; 190 | } 191 | return [super tableView:tableView viewForFooterInSection:section]; 192 | } 193 | 194 | -(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section { 195 | if(section == [tableView numberOfSections]-3) { 196 | return 200; 197 | } 198 | return [super tableView:tableView heightForFooterInSection:section]; 199 | } 200 | 201 | - (void)viewDidLoad { 202 | [super viewDidLoad]; 203 | static dispatch_once_t onceToken = 0; 204 | dispatch_once(&onceToken, ^{ 205 | [NSTimer scheduledTimerWithTimeInterval:3.0 target:self selector:@selector(beginRipples) userInfo:nil repeats:YES]; 206 | }); 207 | } 208 | 209 | - (void)beginRipples { 210 | NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:rippleBoardPrefPath]; 211 | float range = [[dict objectForKey:@"range"] floatValue]; 212 | float speed = [[dict objectForKey:@"runningSpeed"] floatValue]; 213 | 214 | CGRect pathFrame = CGRectMake(-60, -60, rippleView.frame.size.width, rippleView.frame.size.height); 215 | UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:pathFrame cornerRadius:rippleView.frame.size.height/2]; 216 | CGPoint shapePosition = CGPointMake(60, 60); 217 | 218 | CAShapeLayer *circleShape = [CAShapeLayer layer]; 219 | circleShape.path = path.CGPath; 220 | circleShape.position = shapePosition; 221 | circleShape.strokeColor = [UIColor blueColor].CGColor; 222 | circleShape.opacity = 0; 223 | circleShape.fillColor = [UIColor colorWithRed:51.0f/255.0f green:51.0f/255.0f blue:153.0f/255.0f alpha:1.0f].CGColor; 224 | circleShape.lineWidth = 3; 225 | 226 | [rippleView.layer addSublayer:circleShape]; 227 | 228 | CABasicAnimation *scaleAnimation = [CABasicAnimation animationWithKeyPath:@"transform.scale"]; 229 | scaleAnimation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity]; 230 | scaleAnimation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(range, range, 1)]; 231 | 232 | CABasicAnimation *alphaAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"]; 233 | alphaAnimation.fromValue = @1; 234 | alphaAnimation.toValue = @0; 235 | 236 | CAAnimationGroup *animation = [CAAnimationGroup animation]; 237 | [animation setValue:circleShape forKey:@"animationLayer"]; 238 | animation.delegate = self; 239 | animation.animations = @[scaleAnimation, alphaAnimation]; 240 | animation.duration = speed; 241 | animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]; 242 | [circleShape addAnimation:animation forKey:@"groupAnimation"]; 243 | 244 | } 245 | 246 | - (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag { 247 | CALayer *layer = [anim valueForKey:@"animationLayer"]; 248 | if (layer) { 249 | NSLog(@"removed %@ (%@) from superview", layer, [layer name]); 250 | [layer removeFromSuperlayer]; 251 | } 252 | } 253 | 254 | @end 255 | 256 | // vim:ft=objc 257 | -------------------------------------------------------------------------------- /rippleprefs/entry.plist: -------------------------------------------------------------------------------- 1 | { 2 | entry = { 3 | bundle = RipplePrefs; 4 | cell = PSLinkCell; 5 | detail = RipplePrefsListController; 6 | icon = RipplePrefs.png; 7 | isController = 1; 8 | label = "RippleBoard"; 9 | }; 10 | } 11 | -------------------------------------------------------------------------------- /rippleprefs/obj/.stamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/.stamp -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | RipplePrefs 9 | CFBundleIdentifier 10 | com.satori.rippleprefs 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | DTPlatformName 22 | iphoneos 23 | MinimumOSVersion 24 | 3.0 25 | NSPrincipalClass 26 | RipplePrefsListController 27 | 28 | 29 | -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/RipplePrefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/RipplePrefs -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/RipplePrefs.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | items 6 | 7 | 8 | cell 9 | PSGroupCell 10 | label 11 | RippleBoard Enabled 12 | 13 | 14 | cell 15 | PSSwitchCell 16 | default 17 | 18 | defaults 19 | com.satori.rippleboard 20 | key 21 | enabled 22 | cellClass 23 | BlueSwitchTableCell 24 | label 25 | Enabled 26 | 27 | 28 | cell 29 | PSGroupCell 30 | 31 | 32 | cell 33 | PSGroupCell 34 | label 35 | Round App Icons 36 | 37 | 38 | cell 39 | PSSwitchCell 40 | default 41 | 42 | defaults 43 | com.satori.rippleboard 44 | key 45 | roundicons 46 | label 47 | Round Icons 48 | cellClass 49 | BlueSwitchTableCell 50 | 51 | 52 | cell 53 | PSGroupCell 54 | label 55 | Ripple On App Launch 56 | 57 | 58 | cell 59 | PSSwitchCell 60 | default 61 | 62 | defaults 63 | com.satori.rippleboard 64 | key 65 | launchripple 66 | label 67 | Launch Ripple 68 | cellClass 69 | BlueSwitchTableCell 70 | 71 | 72 | cell 73 | PSGroupCell 74 | label 75 | Ripple On Touch 76 | 77 | 78 | cell 79 | PSSwitchCell 80 | default 81 | 82 | defaults 83 | com.satori.rippleboard 84 | key 85 | touchripple 86 | label 87 | Touch Ripple 88 | cellClass 89 | BlueSwitchTableCell 90 | 91 | 92 | cell 93 | PSGroupCell 94 | label 95 | Running Apps Ripple 96 | 97 | 98 | cell 99 | PSSwitchCell 100 | default 101 | 102 | defaults 103 | com.satori.rippleboard 104 | key 105 | runningripple 106 | label 107 | Running Apps 108 | cellClass 109 | BlueSwitchTableCell 110 | 111 | 112 | cell 113 | PSGroupCell 114 | label 115 | Ripple Range 116 | 117 | 118 | alignment 119 | 3 120 | cell 121 | PSSliderCell 122 | default 123 | 1 124 | defaults 125 | com.satori.rippleboard 126 | key 127 | range 128 | max 129 | 5 130 | min 131 | 1 132 | showValue 133 | 134 | cellClass 135 | BlueSliderTableCell 136 | 137 | 138 | cell 139 | PSGroupCell 140 | label 141 | Ripple Duration 142 | 143 | 144 | alignment 145 | 3 146 | cell 147 | PSSliderCell 148 | default 149 | 1 150 | defaults 151 | com.satori.rippleboard 152 | key 153 | runningSpeed 154 | max 155 | 4 156 | min 157 | 0.25 158 | showValue 159 | 160 | cellClass 161 | BlueSliderTableCell 162 | 163 | 164 | cell 165 | PSGroupCell 166 | 167 | 168 | cell 169 | PSButtonCell 170 | action 171 | respring 172 | label 173 | Respring to Save Changes 174 | 175 | 176 | cell 177 | PSGroupCell 178 | label 179 | Extras 180 | 181 | 182 | cell 183 | PSButtonCell 184 | action 185 | twitter 186 | icon 187 | twitter.png 188 | label 189 | Follow me on Twitter 190 | 191 | 192 | cell 193 | PSButtonCell 194 | action 195 | website 196 | icon 197 | web.png 198 | label 199 | Visit my Site 200 | 201 | 202 | cell 203 | PSButtonCell 204 | action 205 | github 206 | icon 207 | github.png 208 | label 209 | View RippleBoard on GitHub 210 | 211 | 212 | cell 213 | PSButtonCell 214 | action 215 | paypal 216 | icon 217 | paypal.png 218 | label 219 | Show some love 220 | 221 | 222 | cell 223 | PSGroupCell 224 | footerText 225 | Copyright (c) 2015 Satori. 226 | 227 | 228 | title 229 | RippleBoard 230 | 231 | 232 | -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/RipplePrefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/RipplePrefs.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/RipplePrefs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/RipplePrefs@2x.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/RipplePrefs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/RipplePrefs@3x.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/github.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/github@2x.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/github@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/github@3x.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/paypal.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/paypal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/paypal@2x.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/paypal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/paypal@3x.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/rippleboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/rippleboard.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/twitter.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/twitter@2x.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/twitter@3x.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/web.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/web@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/web@2x.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.bundle/web@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.bundle/web@3x.png -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.mm.3acc3ec0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.mm.3acc3ec0.o -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.mm.40b18fc5.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.mm.40b18fc5.o -------------------------------------------------------------------------------- /rippleprefs/obj/RipplePrefs.mm.c08690ea.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzile/RippleBoard/d2433aabfe15e6e08e568a0a2a73a13816c3a7b2/rippleprefs/obj/RipplePrefs.mm.c08690ea.o --------------------------------------------------------------------------------