repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
GitDino/ObserverPattern
ObserverPatternDemo/ObserverPatternDemo/Model/DOCustomer.h
<gh_stars>0 // // DOCustomer.h // ObserverPatternDemo // // Created by 魏欣宇 on 2018/4/11. // Copyright © 2018年 Dino. All rights reserved. // #import <Foundation/Foundation.h> #import "SubscriptionServiceCenterProtocol.h" @interface DOCustomer : NSObject<SubscriptionServiceCenterProtocol> @end
Xithrius/learning-c
functions/main.c
<gh_stars>0 #include <stdio.h> #include <stdlib.h> typedef struct { int x; int y; } point; point *construct_point(int x, int y) { point *p = (point *)malloc(sizeof(point)); p->x = x; p->y = y; return p; } void move_point(point *p, int x, int y) { p->x += x; p->y += y; } void locate_point(point *p) { printf("point: (%d, %d)\n", p->x, p->y); } int main() { point *p = construct_point(10, 15); locate_point(p); move_point(p, 1, -1); locate_point(p); free(p); return 0; }
Xithrius/learning-c
linked-list/main.c
<reponame>Xithrius/learning-c #include <stdio.h> #include <stdlib.h> typedef struct node { int val; struct node *next; } node_t; void push_node(node_t *head, int val) { node_t *current = head; while (current->next != NULL) { current = current->next; } current->next = (node_t *)malloc(sizeof(node_t)); current->next->val = val; current->next->next = NULL; } void print_list(node_t *head) { node_t *current = head; while (current->next != NULL) { printf("%d->", current->val); current = current->next; } printf("\n"); } int main() { node_t *head = NULL; head = (node_t *)malloc(sizeof(node_t)); head->val = 0; head->next = NULL; for (int i = 1; i <= 5; i++) { push_node(head, i); } print_list(head); free(head); return 0; }
Xithrius/learning-c
strings/main.c
#include <stdio.h> #include <string.h> int main() { char *str = "testing"; printf("%s\n", str); printf("The first character: %c\n", str[0]); printf("All the characters in order:\n"); for (int i = 0; i < strlen(str); i++) { printf("%d: %c\n", i, str[i]); } return 0; }
Xithrius/learning-c
structs/main.c
#include <stdio.h> int main() { typedef struct { char *brand; int model; } vehicle; vehicle car; car.brand = "Ford"; car.model = 2007; printf("This '%s' is from %d.\n", car.brand, car.model); return 0; }
lululau/RaiseMan4RM
ib.xcodeproj/Stubs.h
<gh_stars>0 // Generated by IB v0.7.2 gem. Do not edit it manually // Run `rake ib:open` to refresh #import <AppKit/AppKit.h> #import <Foundation/Foundation.h> #import <CoreGraphics/CoreGraphics.h> #import <CoreServices/CoreServices.h> @interface AppDelegate: NSObject <NSApplicationDelegate> -(IBAction) applicationDidFinishLaunching:(id) notification; @end @interface Document: NSDocument @property IBOutlet NSTableView * table; @property IBOutlet NSButton * delete_btn; -(IBAction) insert_person:(id) sender; -(IBAction) remove_person:(id) sender; -(IBAction) removeObjectFromEmployeesAtIndex:(id) idx; -(IBAction) numberOfRowsInTableView:(id) table; -(IBAction) tableViewSelectionDidChange:(id) nt; -(IBAction) autosavesInPlace; -(IBAction) windowControllerDidLoadNib:(id) aController; -(IBAction) windowNibName; @end @interface Person: NSObject -(IBAction) initialize; -(IBAction) setNilValueForKey:(id) key; -(IBAction) initWithCoder:(id) coder; -(IBAction) encodeWithCoder:(id) coder; @end
orthopteroid/DosDragon
platform.h
/* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #ifndef _platform_h_ #define _platform_h_ #ifndef __COLORS #define __COLORS enum COLORS { BLACK, /* dark colors */ BLUE, GREEN, CYAN, RED, MAGENTA, BROWN, LIGHTGRAY, DARKGRAY, /* light colors */ LIGHTBLUE, LIGHTGREEN, LIGHTCYAN, LIGHTRED, LIGHTMAGENTA, YELLOW, WHITE }; #endif /* __COLORS */ typedef struct timer { double c, l; } timer; void p_init(); void p_resolution(int* pX, int* pY); void p_shutdown(); void p_clear(); void p_color(int c); void p_draw(int x,int y); void p_move(int x,int y); void p_pixel(int x,int y); int p_vblank(); void p_char(int* pChar); void p_mouse(int* pX, int* pY, int* pB); void p_timer(timer* pT); #endif /* _platform_h_ */
orthopteroid/DosDragon
tool.c
<reponame>orthopteroid/DosDragon /* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ /* This file implements the DOS mode keyboard/mouse geometry editing tool. */ #include "trans.h" #include "render.h" #include "platform.h" #include "decomp.h" #include "animate.h" #include "text.h" #include <stdio.h> #define X(i) (i*2) #define Y(i) (i*2+1) /************************************/ timer g_aTimer = {0,0}; /**** polygon stuff */ #define MAXPOLY 50 /* 25 polgon points */ int g_sPolygon[ MAXPOLY ]; int g_iPolygon = 0; /**** axis stuff */ #define MAXAXIS 10 int g_sAxis[ MAXAXIS ]; int g_iAxis = 10; /**** iobuffer stuff */ /* 2 lines of XXXX NNN NNN NNN ... + padding */ #define IOBUFSIZE 2 * (5 + 4 * MAXPOLY + 10) char g_szIOBuffer[ IOBUFSIZE ]; char* g_szDataFile = 0; /**** mouse input */ int g_xMouse = 0; int g_yMouse = 0; int g_bClick = 0; int g_bDown = 0; /**** text input/output */ char g_cCommand = ' '; char* g_szText[80]; /**** pointer */ int g_sPointer[] = {3,3,-3,3,-3,-3,3,-3}; SAW_DECLARE(g_aPointerRotation); BOUNCE_DECLARE(g_aRot); BOUNCE_DECLARE(g_aWing); /************************************/ void init() { p_init(); p_clear(); r_init( p_clear, p_color, p_draw, p_move, p_pixel ); SAW_INIT( g_aPointerRotation, 33, 0, 100 ) BOUNCE_INIT( g_aRot, 3, 0, 10 ) BOUNCE_INIT( g_aWing, 3, 0, 5 ) } void tick_render() { static int mData[ MAXPOLY ]; r_root(); r_setColor( BROWN ); t_root(); /* render world */ t_push(); t_translate( g_xMouse, g_yMouse ); t_rotate( g_aPointerRotation.v ); { int mPointer[ numof(g_sPointer) ]; t_apply( mPointer, g_sPointer, numof(g_sPointer) ); r_closedpoly( mPointer, numof(mPointer) ); } t_pop(); t_push(); t_translate( 10, 470 ); t_scale( 2, -3 ); /* text goes bottom-up */ text_render(); t_pop(); if( g_cCommand != 'p' ) /* disable in prototype mode */ { int iAxis = 0; t_push(); t_scale( 1, -1 ); /* text goes bottom-up */ do{ int iSegs = 0; int sMarker[ MAXPOLY ]; d_55grid( sMarker, MAXPOLY, &iSegs, t_szNumberData[ iAxis ] ); t_push(); t_translate( g_sAxis[X(iAxis)], -g_sAxis[Y(iAxis)] ); /* offsets go top-down */ t_apply( mData, sMarker, iSegs ); r_openpoly( mData, iSegs ); t_pop(); }while( ++iAxis < MAXAXIS ); t_pop(); t_push(); t_apply( mData, g_sPolygon, g_iPolygon ); r_openpoly( mData, g_iPolygon ); t_pop(); } else if( stricmp( g_szDataFile, "spine" ) == 0 ) { static int iSegs = 5; static int ax[ MAXAXIS ]; static int ax0[ MAXAXIS ]; int i; t_push(); memcpy( ax, g_sAxis, sizeof(ax) ); for( i=0;i<iSegs;i++) { t_translate( ax[X(2)], ax[Y(2)] ); /* move to paste-point */ t_translate( -ax[X(0)], -ax[Y(0)] ); /* move translation point to origin */ t_translate( ax[X(1)], ax[Y(1)] ); /* undo rotation point move */ t_rotate( 95 + g_aRot.v ); /* rotate about origin */ t_scale( 0.8, 0.8 ); /* scale segments down */ t_translate( -ax[X(1)], -ax[Y(1)] ); /* move rotation point to origin */ t_apply( mData, g_sPolygon, g_iPolygon ); /* transform polygon */ r_openpoly( mData, g_iPolygon ); /* render */ t_apply( ax0, ax, MAXAXIS ); /* transform axes */ memcpy( ax, ax0, sizeof(ax) ); } t_pop(); } else if( stricmp( g_szDataFile, "wing" ) == 0 ) { static int iSegs = 4; static int ax[ MAXAXIS ]; static int ax0[ MAXAXIS ]; int i,j; for(j=0;j<2;j++) { /* 0 = left, 1 = right */ int iPasteAxis = j?2:0; int iCopyAxis = j?0:2; float fAngle = j?98.0+g_aWing.v:2-g_aWing.v; t_push(); memcpy( ax, g_sAxis, sizeof(ax) ); for( i=0;i<iSegs;i++) { /* reuse the code below for the left and right wings */ t_translate( ax[X(iPasteAxis)], ax[Y(iPasteAxis)] ); /* move to paste-point */ t_translate( -ax[X(iCopyAxis)], -ax[Y(iCopyAxis)] ); /* move translation point to origin */ t_translate( ax[X(1)], ax[Y(1)] ); /* undo rotation point move */ t_rotate( fAngle ); /* rotate about origin */ t_scale( 0.75, ((i%2)?0.5:1.5) ); /* scale segments down */ t_translate( -ax[X(1)], -ax[Y(1)] ); /* move rotation point to origin */ t_apply( mData, g_sPolygon, g_iPolygon ); /* transform polygon */ r_openpoly( mData, g_iPolygon ); /* render */ t_apply( ax0, ax, g_iAxis ); /* transform axes */ memcpy( ax, ax0, sizeof(ax) ); } t_pop(); } } } void tick_input() { p_timer( &g_aTimer ); { static int b0=0; static int b1=0; b0 = b1; p_mouse( &g_xMouse, &g_yMouse, &b1 ); g_bClick = ( b0==0 && b1!=0 ? 1 : 0 ); g_bDown = b1; } { static int c0=0; static int c1=0; c0 = c1; p_char( &c1 ); if( c0==0 && c1!=0 ) { char* szText = ""; g_cCommand = c1; switch( g_cCommand ) { case 'a': szText="ADD"; break; case 'd': szText="DELETE"; break; case 'm': szText="MOVE"; break; case 'l': szText=( g_szDataFile ? "" : "NOFILE" ); break; case 's': szText=( g_szDataFile ? "" : "NOFILE" ); break; default: ; } g_szText[0] = 0; sprintf( g_szText, "%s", szText ); text_set( g_szText ); } } } void tick_logic() { int p = -1; if( g_bDown ) { double d = sqrt(640.0*640.0+480.0*480.0)+1; int i = 0; for( i=0; i<g_iPolygon; i+=2 ) { double dx = abs(g_xMouse - g_sPolygon[i]); double dy = abs(g_yMouse - g_sPolygon[i+1]); double nd = sqrt( dx * dx + dy * dy ); if( nd < d ) { p = i; d = nd; } } } if( g_cCommand=='a' && g_bClick && g_iPolygon < MAXPOLY ) { g_sPolygon[ g_iPolygon++ ] = g_xMouse; g_sPolygon[ g_iPolygon++ ] = g_yMouse; } else if( g_cCommand=='d' && g_bClick && p > -1 ) { memcpy( &g_sPolygon[ p ], &g_sPolygon[ p+2 ], g_iPolygon-2 - p ); g_iPolygon -= 2; } else if( g_cCommand=='m' && g_bDown && p > -1 ) { g_sPolygon[ p+0 ] = g_xMouse; g_sPolygon[ p+1 ] = g_yMouse; } else if( g_cCommand >= '1' && g_cCommand <= '5' ) { int iAxis = g_cCommand - '1'; g_sAxis[X(iAxis)] = g_sAxis[X(iAxis)] ? 0 : g_xMouse; g_sAxis[Y(iAxis)] = g_sAxis[Y(iAxis)] ? 0 : g_yMouse; g_cCommand = ' '; } else if( g_cCommand=='s' && g_szDataFile ) { int rc = unlink( g_szDataFile ); FILE* pFile = fopen( g_szDataFile, "w" ); d_rawEncode( g_sPolygon, g_iPolygon, g_sAxis, g_iAxis, g_szIOBuffer ); fprintf( pFile, g_szIOBuffer ); fclose( pFile ); g_cCommand = ' '; } else if( g_cCommand=='l' && g_szDataFile ) { FILE* pFile = fopen( g_szDataFile, "r" ); fread( g_szIOBuffer, 1, IOBUFSIZE, pFile ); d_rawScan( &g_iPolygon, &g_iAxis, g_szIOBuffer ); fseek( pFile, 0, SEEK_SET ); fread( g_szIOBuffer, 1, IOBUFSIZE, pFile ); d_rawDecode( &g_sPolygon, &g_sAxis, g_szIOBuffer ); fclose( pFile ); g_cCommand = ' '; } } void tick_animate() { t_root(); SAW_TICK( g_aTimer, g_aPointerRotation ); BOUNCE_TICK( g_aTimer, g_aRot ); BOUNCE_TICK( g_aTimer, g_aWing ); } /**************************************/ int main( int argc, char* argv[] ) { if( argc == 2 ) g_szDataFile = argv[1]; init(); while( g_cCommand!='q' ) { tick_input(); tick_logic(); tick_animate(); if( p_vblank() ) { tick_render(); } } p_shutdown(); return(0); }
orthopteroid/DosDragon
mouse.h
/* +++Date last modified: 05-Jul-1997 */ /* module: mouse.h * programmer: <NAME> * started: 26oct86 * updated: 26oct86 * * Some handy mouse interface functions. */ #ifndef MOUSE__H #define MOUSE__H #define MSMOUSE 0x33 extern int mouse_present; int ms_reset(int *); void ms_show_cursor(void); void ms_hide_cursor(void); int ms_get_mouse_pos(int *, int *); void ms_set_mouse_pos(int, int); int ms_button_press_status(int, int *, int *, int *); int ms_button_release_status(int, int *, int *, int *); void ms_restrict_horiz(int, int); void ms_restrict_horiz(int, int); void ms_define_window(int, int, int, int); void ms_set_graphics_cursor(int, int, unsigned, unsigned); void ms_set_text_cursor(int, int, int); void ms_read_motion_counters(int *, int *); void ms_set_event_subroutine(int, unsigned, unsigned); void ms_light_pen_on(void); void ms_light_pen_off(void); void ms_set_sensitivity(int, int); void ms_protect_area(int, int, int, int); int ms_set_large_graphics_cursor(int, int, int, int, unsigned, unsigned); void ms_set_doublespeed_threshold(int); #endif /* MOUSE__H */
orthopteroid/DosDragon
mouse.c
<gh_stars>0 /* +++Date last modified: 05-Jul-1997 */ /* ** A series of routines to provide access to MicroSoft (and compatible) ** mice. Consult your mouse documentation for detailed information regarding ** each mouse driver function. ** ** by <NAME> w/ modifications by <NAME> & <NAME> */ #include <dos.h> #include "mouse.h" int mouse_present = 0; /* globally visible */ #define DOS_INT 0x21 #define MOUSE(workregs) int86(MSMOUSE,&workregs,&workregs) #define MOUSEX(workregs,sregs) int86x(DOS_INT,&workregs,&workregs,&sregs) /* ** Uses driver function 0 to initialize the mouse software to its default ** settings. If no mouse is present it returns 0. If a mouse is present, it ** returns -1, and places the value of the mouse type (2 = MicroSoft, ** 3 = Mouse Systems, other values are possible) in *mousetype. Also ** initializes the global variable mouse_present (0 = no mouse, !0 = mouse ** is available). */ int ms_reset(int *mousetype) { union REGS workregs; struct SREGS sregs; /* check the vector */ segread (&sregs); workregs.h.ah = 0x35; /* DOS get vector */ workregs.h.al = 0x33; /* mouse vector */ intdosx(&workregs, &workregs, &sregs); /* ES:BX now contains the pointer to the interrupt handler */ if (sregs.es == 0 && workregs.x.bx == 0) return mouse_present = 0; workregs.x.ax = 0; MOUSE(workregs); *mousetype = workregs.x.bx; mouse_present = workregs.x.ax; return(mouse_present); } /* ** Makes the mouse cursor visible. */ void ms_show_cursor(void) { union REGS workregs; workregs.x.ax = 1; MOUSE(workregs); } /* ** Hides the mouse cursor. Should be called before changing any portion of ** the screen under the mouse cursor. */ void ms_hide_cursor(void) { union REGS workregs; workregs.x.ax = 2; MOUSE(workregs); } /* ** Obtains information about the mouse position and button status. ** Places the current horizontal and vertical positions in *horizpos and ** *vertpos, respectively. Returns the mouse button status, which is ** mapped at the bit level as follows: ** Bit 0 - left button \ ** Bit 1 - right button >-- 0 = button up, 1 = button down ** Bit 2 - middle button / */ int ms_get_mouse_pos(int *horizpos, int *vertpos) /* Returns button status */ { union REGS workregs; workregs.x.ax = 3; MOUSE(workregs); *horizpos = workregs.x.cx; *vertpos = workregs.x.dx; return(workregs.x.bx); } /* ** Moves the mouse cursor to a new position. */ void ms_set_mouse_pos(int horizpos, int vertpos) { union REGS workregs; workregs.x.ax = 4; workregs.x.cx = horizpos; workregs.x.dx = vertpos; MOUSE(workregs); } /* ** Obtains information about the last time the specified button ** (0 = left, 1 = right, 2 = middle) was pressed. Returns the current ** button status (same format as return from ms_get_mouse_pos() above). */ int ms_button_press_status(int button, int *press_count, int *column, int *row) { union REGS workregs; workregs.x.ax = 5; workregs.x.bx = button; MOUSE(workregs); *press_count = workregs.x.bx; *column = workregs.x.cx; *row = workregs.x.dx; return(workregs.x.ax); } /* ** Similar to above but obtains information about the last release of the ** specified button. */ int ms_button_release_status(int button, int *release_count, int *column, int *row) { union REGS workregs; workregs.x.ax = 6; workregs.x.bx = button; MOUSE(workregs); *release_count = workregs.x.bx; *column = workregs.x.cx; *row = workregs.x.dx; return(workregs.x.ax); } /* ** Forces the mouse cursor to remain within the range specified. */ void ms_restrict_horiz(int min, int max) { union REGS workregs; workregs.x.ax = 7; workregs.x.cx = min; workregs.x.dx = max; MOUSE(workregs); } /* ** Forces the mouse cursor to remain within the range specified. */ void ms_restrict_vert(int min, int max) { union REGS workregs; workregs.x.ax = 8; workregs.x.cx = min; workregs.x.dx = max; MOUSE(workregs); } void ms_define_window(int left, int top, int right, int bottom) { ms_restrict_horiz(left,right); ms_restrict_vert(top,bottom); } /* ** Allows the user to set the graphics cursor to a new shape. Check your ** mouse reference manual for full information about the use of this function. */ void ms_set_graphics_cursor(int horiz_hotspot, int vert_hotspot, unsigned seg_shape_tables, unsigned offset_shape_tables) { union REGS workregs; struct SREGS segregs; workregs.x.ax = 9; workregs.x.bx = horiz_hotspot; workregs.x.cx = vert_hotspot; workregs.x.dx = offset_shape_tables; segregs.es = seg_shape_tables; MOUSEX(workregs, segregs); } /* ** Selects either the software or hardware cursor and sets the start and stop ** scan lines (for the hardware cursor) or the screen and cursor masks (for ** the software cursor). Consult your mouse reference for more information. */ void ms_set_text_cursor(int type, int screen_mask, int cursor_mask) { union REGS workregs; workregs.x.ax = 10; workregs.x.bx = type; workregs.x.cx = screen_mask; workregs.x.dx = cursor_mask; MOUSE(workregs); } /* ** Obtains the horizontal and vertical raw motion counts since the last ** request. */ void ms_read_motion_counters(int *horiz, int *vert) { union REGS workregs; workregs.x.ax = 11; MOUSE(workregs); *horiz = workregs.x.cx; *vert = workregs.x.dx; } /* ** Sets up a subroutine to be called when a given event occurs. ** NOTE: Use with extreme care. The function whose address is provided MUST ** terminate with a far return (i.e. must be compiled using large model). ** Also, no DOS or BIOS services may be used, as the user-defined function ** is (in effect) an extension to an interrupt service routine. */ void ms_set_event_subroutine(int mask, unsigned seg_routine, unsigned offset_routine) { union REGS workregs; struct SREGS segregs; workregs.x.ax = 12; workregs.x.cx = mask; workregs.x.dx = offset_routine; segregs.es = seg_routine; MOUSEX(workregs, segregs); } /* ** Turns light pen emulation mode on. */ void ms_light_pen_on(void) { union REGS workregs; workregs.x.ax = 13; MOUSE(workregs); } /* ** turns light pen emulation mode off. */ void ms_light_pen_off(void) { union REGS workregs; workregs.x.ax = 14; MOUSE(workregs); } /* ** Sets the sensitivity of the mouse. Defaults are 8 and 16 for horizontal ** and vertical sensitivity (respectively). */ void ms_set_sensitivity(int horiz, int vert) { union REGS workregs; workregs.x.ax = 15; workregs.x.cx = horiz; workregs.x.dx = vert; MOUSE(workregs); } /* ** Sets up a region of the screen inside of which the mouse cursor will ** automatically be 'hidden'. */ void ms_protect_area(int left, int top, int right, int bottom) { union REGS workregs; workregs.x.ax = 16; workregs.x.cx = left; workregs.x.dx = top; workregs.x.si = right; workregs.x.di = bottom; MOUSE(workregs); } /* * Similar to ms_set_graphics_cursor() but allows a larger cursor. Consult ** your mouse documentation for information on how to use this function. */ int ms_set_large_graphics_cursor(int width, int height, int horiz_hotspot, int vert_hotspot, unsigned seg_shape_tables, unsigned offset_shape_tables) { union REGS workregs; struct SREGS segregs; workregs.x.ax = 18; workregs.x.bx = (width << 8) + horiz_hotspot; workregs.x.cx = (height << 8) + vert_hotspot; workregs.x.dx = offset_shape_tables; segregs.es = seg_shape_tables; MOUSEX(workregs, segregs); if(workregs.x.ax == (unsigned)-1) return(workregs.x.ax); /* Return -1 if function 18 supported */ else return(0); /* else return 0 */ } /* ** Sets the threshold value for doubling cursor motion. Default value is 64. */ void ms_set_doublespeed_threshold(int speed) { union REGS workregs; workregs.x.ax = 19; workregs.x.dx = speed; MOUSE(workregs); }
orthopteroid/DosDragon
decomp.h
<reponame>orthopteroid/DosDragon /* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #ifndef _decomp_h_ #define _decomp_h_ void d_55grid( int ov[], int mv, int* pnv, char iv[] ); void d_127( int ov[], int mv, int* pnv, char iv[] ); void d_rawEncode( int* v, int nv, int* a, int na, char* szBuffer ); void d_rawScan( int* pnv, int* pna, char* szBuffer ); void d_rawDecode( int* v, int* a, char* szBuffer ); #endif /* _decomp_h_ */
orthopteroid/DosDragon
text.h
<filename>text.h /* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #ifndef _text_h_ #define _text_h_ void text_render(); void text_animate(); void text_set( char* szText ); void text_setspeed( int isps ); int text_busy(); extern char* t_szLetterData[]; extern char* t_szNumberData[]; #endif /* _text_h_ */
orthopteroid/DosDragon
pointer.h
/* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #ifndef _pointer_h_ #define _pointer_h_ void pointer_init(); void pointer_input(); void pointer_render(); extern int pointer_x; extern int pointer_y; extern int pointer_b; #endif /* _pointer_h_ */
orthopteroid/DosDragon
pointer.c
/* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #include "trans.h" #include "render.h" #include "animate.h" #include "mesh.h" #include "platform.h" /************************************/ int sPointer[] = {10,10,-10,10,-10,-10,10,-10}; int mPointer[ numof(sPointer) ]; int pointer_x = 0; int pointer_y = 0; int pointer_b = 0; void pointer_init() { } void pointer_render() { t_push(); r_setColor( BROWN ); t_translate( pointer_x, pointer_y ); if( pointer_b ) t_rotate( 45 ); t_apply( mPointer, sPointer, numof(sPointer) ); r_closedpoly( mPointer, numof(mPointer) ); t_pop(); }
orthopteroid/DosDragon
animate.h
/* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #ifndef _animate_h_ #define _animate_h_ #include <math.h> #include "platform.h" /* in-range signaller */ #define RANGE_SIG0(l, v, u) ( (l < v && v < u) ? 1 : 0 ) #define RANGE_SIG(a, v, b) ( a < b ? RANGE_SIG0(a,v,b) : RANGE_SIG0(b,v,a) ) /* in-range clamper */ #define RANGE_CLAMP0(l, v, u) ( v > u ? u : ( v < l ? l : v ) ) #define RANGE_CLAMP(a, v, b) ( a < b ? RANGE_CLAMP0(a,v,b) : RANGE_CLAMP0(b,v,a) ) /*****************/ struct saw_state { int psign; double vps,sv,ev; double v; }; #define SAW_DECLARE(s) struct saw_state s #define SAW_INIT(s,_vps,_sv,_ev) \ { \ s.psign = ( _sv < _ev ? 1 : 0 ); \ s.vps = _vps; \ s.sv = _sv; \ s.ev = _ev; \ s.v = 0; \ } #define SAW_TICK( t, s ) \ { \ if( t.c > t.l ) \ { \ s.v = ( RANGE_SIG( s.sv, s.v, s.ev ) ? s.v : s.sv ); \ s.v += s.vps * ( s.psign ? 1 : -1 ) * fabs(t.c - t.l); \ s.v = RANGE_CLAMP( s.sv, s.v, s.ev ); \ } \ } /*****************/ struct bounce_state { int psign; double vps,sv,ev; double v; }; #define BOUNCE_DECLARE(s) struct bounce_state s #define BOUNCE_INIT(s,_vps,_sv,_ev) \ { \ s.psign = ( _sv < _ev ? 1 : 0 ); \ s.vps = _vps; \ s.sv = _sv; \ s.ev = _ev; \ s.v = 0; \ } #define BOUNCE_TICK( t, s ) \ { \ if( t.c > t.l ) \ { \ s.psign = ( RANGE_SIG( s.sv, s.v, s.ev ) ? s.psign : !s.psign ); \ s.v += s.vps * ( s.psign ? 1 : -1 ) * fabs(t.c - t.l); \ s.v = RANGE_CLAMP( s.sv, s.v, s.ev ); \ } \ } #endif /* _animate_h_ */
orthopteroid/DosDragon
decomp.c
/* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #include <ctype.h> #include <assert.h> /* gads - strtok isn't working right! */ char* mytok(char* a, char* b) { static char* d = 0; char* c = a ? a : d + 1; if( c != 0 ) { while(*c != 0 && strchr(b, *c) != 0) c++; /* find start of token */ if( *c == 0 ) c = 0; /* this call returns 0 */ else { d = c; while(*d != 0 && strchr(b, *d) == 0) d++; /* find end of token */ if( *d != 0 ) *d = 0; /* mark end of this token */ else d--; /* next call will return 0 */ } } return c; } /*********************************** * 5x5 grid compression 4 4 uvwxy 4 pqrst klmno fghij 0 abcde 0 4 */ void d_55grid( int ov[], int mv, int* pnv, char iv[] ) { int j; int i = *pnv; j = 0; while( i < mv && iv[ j ] ) { int iData = iv[ j++ ] - 'a'; ov[ i++ ] = iData % 5; ov[ i++ ] = iData / 5; } *pnv = i; } /************************************/ void d_127( int ov[], int mv, int* pnv, char iv[] ) { int j; int i = *pnv; j = 0; while( i < mv && iv[ j ] ) { ov[ i++ ] = iv[ j++ ]; } *pnv = i; } /************/ void d_rawEncode( int* v, int nv, int* a, int na, char* szBuffer ) { static char szTemp[80]; int i; *szBuffer = 0; strcat( szBuffer, "#undef AXIS\n#undef POLY\n" ); strcat( szBuffer, "#define AXIS " ); sprintf( szTemp, "%d", a[ 0 ] ); strcat( szBuffer, szTemp ); for( i=1; i < na; i++ ) { sprintf( szTemp, ",%d", a[ i ] ); strcat( szBuffer, szTemp ); } strcat( szBuffer, "\n" ); strcat( szBuffer, "#define POLY " ); sprintf( szTemp, "%d", v[ 0 ] ); strcat( szBuffer, szTemp ); for( i=1; i < nv; i++ ) { sprintf( szTemp, ",%d", v[ i ] ); strcat( szBuffer, szTemp ); } strcat( szBuffer, "\n" ); } void d_rawScan( int* pnv, int* pna, char* szBuffer ) { char* sz; char m = 0; *pnv=0; *pna=0; sz = mytok( szBuffer, " " ); while( sz ) { if( *sz == '#' ) { if( *(sz+1) == 'u' ) sz = mytok( 0, " " ); /* skip ident */ else if( *(sz+1) == 'd' ) m = 0; /* reset mode */ else assert( 0 ); } else if( *sz == 'P' ) m = 'P'; else if( *sz == 'A' ) m = 'A'; else if( m == 'P' ) (*pnv)++; else if( m == 'A' ) (*pna)++; else assert( 0 ); sz = mytok( 0, ", \n" ); } } void d_rawDecode( int* v, int* a, char* szBuffer ) { char* sz; char m = 0; int nv = 0; int na = 0; sz = mytok( szBuffer, " " ); while( sz ) { if( *sz == '#' ) { if( *(sz+1) == 'u' ) sz = mytok( 0, " " ); /* skip ident */ else if( *(sz+1) == 'd' ) m = 0; /* reset mode */ else assert( 0 ); } else if( *sz == 'P' ) m = 'P'; else if( *sz == 'A' ) m = 'A'; else if( m == 'P' ) v[ nv++ ] = atoi( sz ); else if( m == 'A' ) a[ na++ ] = atoi( sz ); else assert( 0 ); sz = mytok( 0, ", \n" ); } }
orthopteroid/DosDragon
dragon.c
/* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ /* This file implements the animated dragon. Geometry is 'baked in' using #include directives. */ #include "trans.h" #include "render.h" #include "platform.h" #include "decomp.h" #include "animate.h" #include "text.h" #include <stdio.h> #include <assert.h> #define X(i) (2*i) #define Y(i) (2*i+1) /************************************/ timer g_aTimer = {0,0}; #define MAXAXIS 10 #define MAXPOLY 50 int g_iPolyBuf[ MAXPOLY ]; char g_cCommand = ' '; int g_cCommandLatch = 0; int x = 320, y = 150; double s = 1.0; #include "spine." int g_sSpinePoly[] = {POLY}; int g_sSpineAxis[] = {AXIS}; #include "wing." int g_sWingPoly[] = {POLY}; int g_sWingAxis[] = {AXIS}; #include "head." int g_sHeadPoly[] = {POLY}; int g_sHeadAxis[] = {AXIS}; #include "jaw." int g_sJawPoly[] = {POLY}; int g_sJawAxis[] = {AXIS}; /**** animation */ BOUNCE_DECLARE(g_aSpine); BOUNCE_DECLARE(g_aWing); BOUNCE_DECLARE(g_aHead); BOUNCE_DECLARE(g_aJaw); double g_aHeadAngle; /************************************/ void init() { p_init(); p_clear(); r_init( p_clear, p_color, p_draw, p_move, p_pixel ); /* init animations */ BOUNCE_INIT( g_aSpine, 3, 0, 6 ) BOUNCE_INIT( g_aWing, 3, 0, 5 ) BOUNCE_INIT( g_aHead, 3, 0, 40 ) BOUNCE_INIT( g_aJaw, 7, 0, 10 ) } void tick_render() { r_root(); r_setColor( BROWN ); t_root(); /* render world */ t_translate( x, y ); t_scale( s, s ); t_push(); { int iSegs = 5; static int ax[ numof(g_sSpineAxis) ]; static int ax0[ numof(g_sSpineAxis) ]; int i; memcpy( ax, g_sSpineAxis, sizeof(ax) ); t_translate( -10,70 ); t_push(); for( i=0;i<iSegs;i++) { t_translate( ax[X(2)], ax[Y(2)] ); /* move to paste-point */ t_translate( -ax[X(0)], -ax[Y(0)] ); /* move translation point to origin */ t_rotate( 97 + g_aSpine.v ); /* rotate about origin */ t_scale( 0.8, 0.8 ); /* scale segments down */ t_push(); t_translate( -g_sSpineAxis[X(1)], -g_sSpineAxis[Y(1)] ); /* normalize */ t_apply( g_iPolyBuf, g_sSpinePoly, numof(g_sSpinePoly) ); /* transform polygon */ t_pop(); r_openpoly( g_iPolyBuf, numof(g_sSpinePoly) ); /* render */ t_push(); t_scale( 1.5, 1.5 ); /* scale axis not so much */ t_translate( -g_sSpineAxis[X(1)], -g_sSpineAxis[Y(1)] ); /* normalize */ t_apply( ax0, ax, numof(g_sSpineAxis) ); /* transform axes */ memcpy( ax, ax0, sizeof(ax) ); t_pop(); } t_pop(); } t_pop(); t_push(); { int iSegs = 4; static int ax[ numof(g_sWingAxis) ]; static int ax0[ numof(g_sWingAxis) ]; int i,j; for(j=0;j<2;j++) { /* 0 = left, 1 = right */ int iPasteAxis = j?2:0; int iCopyAxis = j?0:2; float fAngle = j?98.0+g_aWing.v:2-g_aWing.v; memcpy( ax, g_sWingAxis, sizeof(ax) ); t_translate( j?+20:-20 , 0 ); t_push(); /* reuse the code below for the left and right wings */ for( i=0;i<iSegs;i++) { t_translate( ax[X(iPasteAxis)], ax[Y(iPasteAxis)] ); /* move to paste-point */ t_translate( -ax[X(iCopyAxis)], -ax[Y(iCopyAxis)] ); /* move translation point to origin */ t_rotate( fAngle ); /* rotate about origin */ t_scale( 0.75, ((i%2)?0.35:1.35) ); /* scale segments down */ t_push(); t_translate( -g_sWingAxis[X(1)], -g_sWingAxis[Y(1)] ); /* normalize */ t_apply( g_iPolyBuf, g_sWingPoly, numof(g_sWingPoly) );/* transform polygon */ t_pop(); r_openpoly( g_iPolyBuf, numof(g_sWingPoly) ); /* render */ t_push(); t_scale( 1.5,1.5 ); /* scale axis not so much */ t_translate( -g_sWingAxis[X(1)], -g_sWingAxis[Y(1)] ); /* normalize */ t_apply( ax0, ax, numof(g_sWingAxis) ); /* transform axes */ memcpy( ax, ax0, sizeof(ax) ); t_pop(); } t_pop(); } } t_pop(); t_push(); { t_translate( 0, -30 ); t_rotate( g_aHeadAngle ); /* rotate about origin */ if( g_aHeadAngle < 60 ) { t_scale( -1, 1 ); /* flip for other side */ } t_push(); t_translate( -g_sHeadAxis[X(1)], -g_sHeadAxis[Y(1)] ); /* normalize */ t_apply( g_iPolyBuf, g_sHeadPoly, numof(g_sHeadPoly) ); /* transform polygon */ r_openpoly( g_iPolyBuf, numof(g_sHeadPoly) ); /* render */ t_pop(); t_push(); t_translate( -g_sJawAxis[X(1)], -g_sJawAxis[Y(1)] ); /* normalize */ t_translate( g_sJawAxis[X(0)], g_sJawAxis[Y(0)] ); /* unnormalize */ t_rotate( g_aJaw.v ); /* rotate about origin */ t_translate( -g_sJawAxis[X(0)], -g_sJawAxis[Y(0)] ); /* normalize */ t_apply( g_iPolyBuf, g_sJawPoly, numof(g_sJawPoly) ); /* transform polygon */ r_openpoly( g_iPolyBuf, numof(g_sJawPoly) ); /* render */ t_pop(); } t_pop(); } void tick_input() { p_timer( &g_aTimer ); { static int c0=0; c0 = g_cCommandLatch; p_char( &g_cCommandLatch ); if( c0==0 && g_cCommandLatch!=0 ) { g_cCommand = g_cCommandLatch; } } } void tick_logic() { switch( g_cCommandLatch ) { case 'w': y-=5; break; case 's': y+=5; break; case 'a': x-=5; break; case 'd': x+=5; break; case '+': s+=0.1; break; case '-': s-=0.1; break; default: ; } if( g_cCommand == 'r' ) { x = 320; y = 150; s = 1.0; } } void tick_animate() { t_root(); /* tick the animations */ BOUNCE_TICK( g_aTimer, g_aSpine ); BOUNCE_TICK( g_aTimer, g_aWing ); BOUNCE_TICK( g_aTimer, g_aHead ); BOUNCE_TICK( g_aTimer, g_aJaw ); /* actual head angle */ g_aHeadAngle = ( g_aHead.v > 20 ? 60 + g_aHead.v : g_aHead.v ); } /**************************************/ int main( int argc, char* argv[] ) { int f=1; init(); while( g_cCommand!='q' ) { tick_input(); tick_logic(); tick_animate(); if( p_vblank() ) { tick_render(); } } p_shutdown(); return(0); }
orthopteroid/DosDragon
trans.c
<filename>trans.c /* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #include <stdio.h> #include "trans.h" /****************************/ #define NODIAG #define SWAP(a,b) t_fTemp=a;a=b;b=t_fTemp; #define VINIT(rv,a,b,c) rv[0]=a;rv[1]=b;rv[2]=c; #define VPHELPER "%4.2f %4.2f %4.2f %s\n" #ifdef NODIAG #define VPRINT(v,p) ; #else #define VPRINT(v,p) printf( VPHELPER, v[0],v[1],v[2], (p?p:"") ); #endif #define MPRINT(m,p) VPRINT(m[0],p)\ VPRINT(m[1],0)\ VPRINT(m[2],0) #define VDIAG(v,p) VPRINT(v,p) #define MDIAG(m,p) MPRINT(m,p) #define VSET(v,x,y,p) VINIT(v,x,y,1)\ VDIAG(v,p) #define VCOPY(v,a) for(t_iTemp=0;t_iTemp<4;t_iTemp++)((float*)v)[t_iTemp]=((float*)a)[t_iTemp]; #define MCOPY(m,a) for(t_iTemp=0;t_iTemp<10;t_iTemp++)((float*)m)[t_iTemp]=((float*)a)[t_iTemp]; #define MCLEAR(m) for(t_iTemp=0;t_iTemp<10;t_iTemp++)((float*)m)[t_iTemp]=0; #define MIDENTITY(m,p) \ VINIT(m[0],1,0,0)\ VINIT(m[1],0,1,0)\ VINIT(m[2],0,0,1)\ MDIAG(m,p) #define MTRANSLATE(m,x,y,p) \ VINIT(m[0],1,0,x)\ VINIT(m[1],0,1,y)\ VINIT(m[2],0,0,1)\ MDIAG(m,p) #define MSCALE(m,x,y,p) \ VINIT(m[0],x,0,0)\ VINIT(m[1],0,y,0)\ VINIT(m[2],0,0,1)\ MDIAG(m,p) #define MROTATE(m,r,p) \ VINIT(m[0],cos(r),-sin(r),0)\ VINIT(m[1],sin(r),cos(r),0)\ VINIT(m[2],0,0,1)\ MDIAG(m,p) #define MTHELPER(m,r,c) SWAP(m[r][c],m[c][r]) #define MTRANSPOSE(m,p) \ MTHELPER(m,0,1)\ MTHELPER(m,0,2)\ MTHELPER(m,1,2)\ MDIAG(m,p) #define VVDOT(s,cv,rv) \ (s)=(int)(cv[0]*rv[0]+cv[1]*rv[1]+cv[2]*rv[2]); /* <=== cast is optimization */ #define VMDOT(v,cv,m,p) \ VVDOT(v[0],cv,m[0])\ VVDOT(v[1],cv,m[1])\ /*VVDOT(v[2],cv,m[2]) <=== removal is optimization */\ VDIAG(v,p) #define MMMHELPER(m,a,b,r,c) m[r][c]=a[r][0]*b[0][c]+a[r][1]*b[1][c]+a[r][2]*b[2][c]; #define MMMULTIPLY(m,a,b,p) \ MMMHELPER(m,a,b,0,0)\ MMMHELPER(m,a,b,0,1)\ MMMHELPER(m,a,b,0,2)\ MMMHELPER(m,a,b,1,0)\ MMMHELPER(m,a,b,1,1)\ MMMHELPER(m,a,b,1,2)\ MMMHELPER(m,a,b,2,0)\ MMMHELPER(m,a,b,2,1)\ MMMHELPER(m,a,b,2,2)\ MDIAG(m,p) /*******************************************/ int t_bDiag = 0; int t_iTemp; float t_fTemp; int t_iStack; matrix t_stack[9]; matrix t_t; matrix t_m; vector t_i; /* factored-out to reduce code-size */ void t_multiply() { MMMULTIPLY( t_t, t_stack[ t_iStack ], t_m, "xM" ); MCOPY( t_stack[ t_iStack ], t_t ); } /****************************/ void t_root() { t_iStack = 0; MIDENTITY( t_stack[ t_iStack ], "I" ); } void t_push() { t_iStack++; MCOPY( t_stack[ t_iStack ], t_stack[ t_iStack - 1 ] ); } void t_pop() { t_iStack--; } void t_translate( float x, float y ) { MTRANSLATE( t_m, x, y, "T" ); t_multiply(); } void t_scale( float sx, float sy ) { MSCALE( t_m, sx, sy, "S" ); t_multiply(); } void t_rotate( float r ) { MROTATE( t_m, g2r(r), "R" ); t_multiply(); } void t_apply( int ov[], int iv[], int nv ) { int p=0; for( p=0; p<nv; p+=2 ) { VSET( t_i, iv[p], iv[p+1], "i" ); VMDOT( ((ov+p)), t_i, t_stack[ t_iStack ], ".i" ); /* <=== & is optimization */ } } void t_copy( matrix* pMatrix ) { MCOPY( *pMatrix, t_stack[ t_iStack ] ); } void t_concat( matrix* pMatrix ) { MCOPY( t_m, *pMatrix ); t_multiply(); }
orthopteroid/DosDragon
text.c
/* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #include "trans.h" #include "render.h" #include "decomp.h" #include "platform.h" #include <string.h> /************************************/ char* t_szLetterData[] = { "akwokoe", "auxtnknjda", "txvpfbdj", "uadjtxu", "yuknkae", /* A B C D E */ "yuknka", "yuaeom", "uakoye", "uywcae", "uywcbf", /* F G H I J */ "uakyke", "uae", "aumye", "auey", "uaeyu", /* K L M N O */ "auyok", "ioyuacime", "auyoke", "yukoea", "uywc", /* P Q R S T */ "uaey", "ukcoy", "uamey", "uemay", "ukmcmoy", "uyae" /* U V W X Y Z */ }; char* t_szNumberData[] = { "qwcbd", "uyokae", "uyoloea", "okwc", "yukoea", /* 1 2 3 4 5 */ "yuaeok", "uye", "oyuaeok", "eyuko", "yuaey", /* 6 7 8 9 0 */ }; #define MAXCHARS 80 #define MAXSTROKES 10 #define MAXSEGMENTS (MAXCHARS * MAXSTROKES * 2) int t_sSegment[ MAXSEGMENTS ]; int t_iCurSeg = 0; int t_iLastSeg = 0; int t_iSegRate = 1; int t_iCharIndex[ MAXCHARS ]; int t_iChars; void text_render() { int mData[ MAXSEGMENTS ]; int i; t_push(); t_apply( mData, t_sSegment, t_iCurSeg ); for( i = 0; i < t_iChars; i++ ) { int* pStrokeStart = &mData[ t_iCharIndex[ i ] ]; int iStrokeSize = t_iCharIndex[ i+1 ] - t_iCharIndex[ i ]; r_openpoly( pStrokeStart, iStrokeSize ); } t_pop(); } void text_animate() { if( t_iCurSeg < t_iLastSeg ) { t_iCurSeg += t_iSegRate; } } int text_busy() { return (t_iCurSeg != t_iLastSeg); } /************************************/ void text_setsegments( char* szText ) { int i; strupr( szText ); t_iChars = strlen( szText ); for( i = 0; i < t_iChars; i++ ) { char* pData = 0; int iSegStart = t_iLastSeg; char c0 = szText[ i ]; if( c0 >= 'A' && c0 <= 'Z' ) pData = t_szLetterData[ c0 - 'A' ]; else if( c0 >= '0' && c0 <= '9' ) pData = t_szNumberData[ c0 - '1' ]; else pData = "ln"; /* dash */ t_iCharIndex[ i ] = t_iLastSeg; d_55grid( t_sSegment, MAXSEGMENTS, &t_iLastSeg, pData ); while( iSegStart < t_iLastSeg ) { t_sSegment[ iSegStart ] += i * 7; iSegStart += 2; } } t_iCharIndex[ t_iChars ] = t_iLastSeg; } /************************************/ void text_set( char* szText ) { t_iLastSeg = 0; text_setsegments( szText ); t_iCurSeg = t_iLastSeg; } /************************************/ void text_setspeed( int isps ) { t_iCurSeg = 0; t_iSegRate = isps; }
orthopteroid/DosDragon
animate.c
/* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #include <stdio.h> #include "animate.h"
orthopteroid/DosDragon
platform.c
<gh_stars>0 /* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #include <stdio.h> #include <graphics.h> #include <time.h> #include "mouse.h" #include "platform.h" void p_init() { int iDriver = VGA; int iMode = VGAHI; int iCode; initgraph( &iDriver, &iMode, "" ); iCode = graphresult(); if( iCode != grOk ) { closegraph(); printf(" Graphics System Error: %s\n", grapherrormsg( iCode ) ); exit( 1 ); } setviewport( 0, 0, getmaxx(), getmaxy(), 1 ); setcolor( WHITE ); { int m = 0; ms_reset( &m ); ms_set_mouse_pos( 320, 240 ); } } void p_shutdown() { closegraph(); } void p_resolution(int* pX, int* pY) { *pX = getmaxx(); *pY = getmaxy(); } void p_clear() { cleardevice(); } void p_color(int c) { setcolor( c ); } void p_draw(int x,int y) { lineto(x,y); } void p_move(int x,int y) { moveto(x,y); } void p_pixel(int x,int y) { int x0 = getx(); int y0 = gety(); putpixel( x, y, getcolor() ); moveto( x0, y0 ); } /* Thanks Allegro! */ int p_vblank() { static int vbState = 0; /* bit8:bNowBlanking, bit7:bWasDrawing */ /* #define VBLANKBIT (inportb(0x3DA) & 8) #define VBLANKTEST1 (vbState=((!vbState & 0x80) >> 1)) #define VBLANKTEST2 (vbState|=VBLANKBIT) #define DETECTVBLANK (VBLANKTEST1 ? VBLANKTEST2 : VBLANKTEST2) */ vbState = ((!vbState & 0x80) >> 1) | (inportb(0x3DA) & 8); return vbState; } void p_char(int* pChar) { *pChar = ( kbhit() ? getch() : 0 ); } void p_mouse(int* pX, int* pY, int* pB) { *pB = ms_get_mouse_pos( pX, pY ); } void p_timer(timer* pT) { pT->l = pT->c; pT->c = ((double)clock()) / CLK_TCK; }
orthopteroid/DosDragon
render.h
<reponame>orthopteroid/DosDragon /* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #ifndef _render_h_ #define _render_h_ #define numof( vect ) (sizeof(vect)/sizeof(vect[0])) typedef void (*IIFunc)(int,int); typedef void (*IFunc)(int); typedef void (*VFunc)(void); void r_init( VFunc clearFunc, IFunc colorFunc, IIFunc drawFunc, IIFunc moveFunc, IIFunc pixelFunc ); void r_root(); void r_push(); void r_pop(); void r_setColor( int iColor ); void r_startEdge(); void r_polypixel( int v[], int nv ); void r_polyline( int v[], int nv ); void r_edge( int v[], int nv ); void r_openpoly( int v[], int nv ); void r_closedpoly( int v[], int nv ); #endif /* _render_h_ */
orthopteroid/DosDragon
render.c
/* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #include <stdio.h> #include "render.h" #define INIT (r_clearFunc) /****************************/ int r_bStartEdge; VFunc r_clearFunc = 0; IFunc r_colorFunc = 0; IIFunc r_drawFunc = 0; IIFunc r_moveFunc = 0; IIFunc r_pixelFunc = 0; int r_iStack; int r_stack[9]; /****************************/ void r_init( VFunc clearFunc, IFunc colorFunc, IIFunc drawFunc, IIFunc moveFunc, IIFunc pixelFunc ) { r_clearFunc = clearFunc; r_colorFunc = colorFunc; r_drawFunc = drawFunc; r_moveFunc = moveFunc; r_pixelFunc = pixelFunc; } void r_root() { r_iStack = 0; r_clearFunc(); } void r_push() { r_iStack++; } void r_pop() { r_iStack--; } void r_setColor( int iColor ) { r_stack[ r_iStack ] = iColor; } void r_startEdge() { r_bStartEdge = 1; } void r_polypixel( int v[], int nv ) { int i=0; if( !INIT ) return; r_colorFunc( r_stack[ r_iStack ] ); for( i=0; i<nv; i+=2 ) { r_pixelFunc( v[i], v[i+1] ); } } void r_openpoly( int v[], int nv ) { int i=0; if( !INIT ) return; r_colorFunc( r_stack[ r_iStack ] ); r_moveFunc( v[0], v[1] ); for( i=0; i<nv; i+=2 ) { r_drawFunc( v[i], v[i+1] ); } } void r_closedpoly( int v[], int nv ) { int i=0; if( !INIT ) return; r_colorFunc( r_stack[ r_iStack ] ); r_moveFunc( v[0], v[1] ); for( i=0; i<nv; i+=2 ) { r_drawFunc( v[i], v[i+1] ); } if( nv>5 ) { r_drawFunc( v[0], v[1] ); } } void r_polyline( int v[], int nv ) { int i=0; if( !INIT ) return; r_colorFunc( r_stack[ r_iStack ] ); for( i=0; i<nv; i+=4 ) { r_moveFunc( v[i], v[i+1] ); r_drawFunc( v[i+2], v[i+3] ); } } void r_edge( int v[], int nv ) { int i=0; if( !INIT ) return; r_colorFunc( r_stack[ r_iStack ] ); for( i=0; i<nv; i+=2 ) { if( r_bStartEdge && i<3 ) { r_bStartEdge = 0; r_moveFunc( v[i], v[i+1] ); } else r_drawFunc( v[i], v[i+1] ); } }
orthopteroid/DosDragon
trans.h
<reponame>orthopteroid/DosDragon<filename>trans.h /* Crusty old DOS VGA dragon from 2001 by <EMAIL> built with TC++. public domain license. */ #ifndef _trans_h_ #define _trans_h_ #include <math.h> #define d2r(d) (3.14159*(d)/180.0) #define g2r(g) (3.14159*(g)/50.0) typedef float vector[3]; typedef float matrix[3][3]; void t_root(); void t_push(); void t_pop(); void t_translate( float x, float y ); void t_scale( float sx, float sy ); void t_rotate( float r ); void t_apply( int ov[], int iv[], int nv ); void t_copy( matrix* pMatrix ); void t_concat( matrix* pMatrix ); #endif /* _trans_h_ */
Kentzo/IKConnectionDelegate
IKConnectionDelegate.h
// // IKConnectionDelegate.h // IKConnectionDelegate // // Created by <NAME> on 11.08.10. // Copyright 2010. All rights reserved. #import <Foundation/Foundation.h> #import <dispatch/dispatch.h> typedef enum { IKNoneGroupAction = 0, IKCancelGroupAction = 0x1, IKUndefinedAction = 0xFFFFFFFF } IKConnectionDelegateGroupAction; /*! @param loadedDataLength Length of data which is already loaded. @param maximumLength The expected length of data. @discussion For download progress can return NSURLResponseUnknownLength if the length cannot be determined. For upload progress maximumLength may change during the upload if the request needs to be retransmitted due to a lost connection or an authentication challenge from the server. */ typedef void (^IKConnectionProgressBlock)(NSUInteger loadedDataLength, long long maximumLength); /*! @param data Downloaded data. @param response The URL response for the connection's request. @param error An error object containing details of why the connection failed to load the request successfully. nil if no error is occured. @discussion Look up connectionDidFinishLoading: and connection:didFailWithError: in the Apple documentation. */ typedef void (^IKConnectionCompletionBlock)(NSData *data, NSURLResponse *response, NSError *error); /*! @param connection The connection sending the message. @param challenge The challenge that connection must authenticate in order to download its request. @discussion Look up connection:didReceiveAuthenticationChallenge: in the Apple documentation. */ typedef void (^IKAuthenticationChallengerBlock)(NSURLConnection *connection, NSURLAuthenticationChallenge *challenge); /*! @discussion You can use aGroup to specify dispatch group for blocks. That could be useful if you need to be notified when all connections are done. */ @interface IKConnectionDelegate : NSObject { IKConnectionProgressBlock downloadProgress; IKConnectionProgressBlock uploadProgress; IKConnectionCompletionBlock completion; IKAuthenticationChallengerBlock challenger; NSMutableData *data; NSURLResponse *response; BOOL isFinished; NSURLConnection *_connection; dispatch_group_t _group; dispatch_queue_t _groupQueue; } /*! @abstract Executes a given block after connection downloads data incrementally. */ @property (copy, readonly) IKConnectionProgressBlock downloadProgress; /*! @abstract Executes a given block after connection uploads data incrementally. */ @property (copy, readonly) IKConnectionProgressBlock uploadProgress; /*! @abstract Executes a given block after connection has finished loading or failed to load its request successfully. */ @property (copy, readonly) IKConnectionCompletionBlock completion; /*! @abstract Executes a given block when a connection must authenticate a challenge in order to download its request. */ @property (copy, readonly) IKAuthenticationChallengerBlock challenger; /*! @abstract Downloaded data. */ @property (retain, readonly) NSMutableData *data; /*! @abstract Response for the connection. */ @property (retain, readonly) NSURLResponse *response; /*! @abstract Returns a Boolean value indicating whether the operation is done downloading/uploading. Observable. */ @property (assign, readonly) BOOL isFinished; /*! @abstract Creates and returns an autoreleased IKConnectionDelegate object. @param aDownloadProgress Executes a given block after connection downloads data incrementally. @param anUploadProgress Executes a given block after connection uploads data incrementally. @param aCompletion Executes a given block after connection has finished loading or failed to load its request successfully. @param aChallenger Executes a given block when a connection must authenticate a challenge in order to download its request. @param aGroup A GCD group to execute blocks. May be NULL. @param aGroupQueue A GCD queue to execute blocks if aGroup isn't NULL. May be NULL. @discussion Copies given blocks. Retains given group and group's queue. Delegate explicity enters to the group (using dispatch_group_enter) when it's initialized and explicity leaves the group (using dispatch_group_leave) when it's deallocated. If aGroupQueue is NULL main queue is used. */ + (IKConnectionDelegate *)connectionDelegateWithDownloadProgress:(IKConnectionProgressBlock)aDownloadProgress uploadProgress:(IKConnectionProgressBlock)anUploadProgress completion:(IKConnectionCompletionBlock)aCompletion challenger:(IKAuthenticationChallengerBlock)aChallenger group:(dispatch_group_t)aGroup groupQueue:(dispatch_queue_t)aGroupQueue; /*! @abstract Creates and returns an autoreleased IKConnectionDelegate object. @param aDownloadProgress Executes a given block after connection downloads data incrementally. @param anUploadProgress Executes a given block after connection uploads data incrementally. @param aCompletion Executes a given block after connection has finished loading or failed to load its request successfully. @param aChallenger Executes a given block when a connection must authenticate a challenge in order to download its request. @discussion Copies given blocks. */ + (IKConnectionDelegate *)connectionDelegateWithDownloadProgress:(IKConnectionProgressBlock)aDownloadProgress uploadProgress:(IKConnectionProgressBlock)anUploadProgress completion:(IKConnectionCompletionBlock)aCompletion challenger:(IKAuthenticationChallengerBlock)aChallenger; /*! @abstract Designated Initializer. @param aDownloadProgress Executes a given block after connection downloads data incrementally. @param anUploadProgress Executes a given block after connection uploads data incrementally. @param aCompletion Executes a given block after connection has finished loading or failed to load its request successfully. @param aChallenger Executes a given block when a connection must authenticate a challenge in order to download its request. @param aGroup A GCD group to execute blocks. May be NULL. @param aGroupQueue A GCD queue to execute blocks if aGroup isn't NULL. May be NULL. @discussion Copies given blocks. Retains given group and group's queue. Delegate explicity enters to the group (using dispatch_group_enter) when it's initialized and explicity leaves the group (using dispatch_group_leave) when it's deallocated. If aGroupQueue is NULL main queue is used. */ - (IKConnectionDelegate *)initWithDownloadProgress:(IKConnectionProgressBlock)aDownloadProgress uploadProgress:(IKConnectionProgressBlock)anUploadProgress completion:(IKConnectionCompletionBlock)aCompletion challenger:(IKAuthenticationChallengerBlock)aChallenger group:(dispatch_group_t)aGroup groupQueue:(dispatch_queue_t)aGroupQueue; /*! @param aDownloadProgress Executes a given block after connection downloads data incrementally. @param anUploadProgress Executes a given block after connection uploads data incrementally. @param aCompletion Executes a given block after connection has finished loading or failed to load its request successfully. @param aChallenger Executes a given block when a connection must authenticate a challenge in order to download its request. @discussion Copies given blocks. */ - (IKConnectionDelegate *)initWithDownloadProgress:(IKConnectionProgressBlock)aDownloadProgress uploadProgress:(IKConnectionProgressBlock)anUploadProgress completion:(IKConnectionCompletionBlock)aCompletion challenger:(IKAuthenticationChallengerBlock)aChallenger; /*! @abstract Makes all IKConnectionDelegate instances that belong to a given group do a given action. @discussions Do an action only when one of the NSURLConnection delegate methods is called. You can set only one action for a group. Action is essentially a context of a group. */ + (void)setAction:(IKConnectionDelegateGroupAction)aGroupAction forGroup:(dispatch_group_t)aGroup; /*! @abstract Returns current action for a given group */ + (IKConnectionDelegateGroupAction)actionForGroup:(dispatch_group_t)aGroup; @end
mzdun/dashcam-gps
extras/mgps-70mai/fuzzer/data/xxd.h
constexpr unsigned char box_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xe5, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x68, 0x01, 0x00, 0x4e, 0xfa, 0x84, 0x4f, 0x00, 0x45, 0xcf, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x89, 0x54, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xa3, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0x47, 0x01, 0x00, 0x4e, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x07, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x00, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x4e, 0xea, 0x84, 0x4f, 0x00, 0x45, 0xf2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xb9, 0xa5, 0x00, 0x00, 0x4e, 0xe7, 0x84, 0x4f, 0x00, 0x45, 0xe9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xaa, 0x90, 0x00, 0x00, 0x4e, 0xe3, 0x84, 0x4f, 0x00, 0x45, 0xe1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x88, 0x7f, 0x00, 0x00, 0x4e, 0xe1, 0x84, 0x4f, 0x00, 0x45, 0xda, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x54, 0x70, 0x00, 0x00, 0x4e, 0xde, 0x84, 0x4f, 0x00, 0x45, 0xd4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x4b, 0x65, 0x00, 0x00, 0x4e, 0xdc, 0x84, 0x4f, 0x00, 0x45, 0xce, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0xf8, 0x5a, 0x00, 0x00, 0x4e, 0xda, 0x84, 0x4f, 0x00, 0x45, 0xc9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x6e, 0x50, 0x00, 0x00, 0x4e, 0xd8, 0x84, 0x4f, 0x00, 0x45, 0xc5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0xe6, 0x44, 0x00, 0x00, 0x4e, 0xd7, 0x84, 0x4f, 0x00, 0x45, 0xc1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x1a, 0x3b, 0x00, 0x00, 0x4e, 0xd6, 0x84, 0x4f, 0x00, 0x45, 0xbe, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x26, 0x31, 0x00, 0x00, 0x4e, 0xd5, 0x84, 0x4f, 0x00, 0x45, 0xbb, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0xc1, 0x29, 0x00, 0x00, 0x4e, 0xd4, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xf8, 0x22, 0x00, 0x00, 0x4e, 0xd3, 0x84, 0x4f, 0x00, 0x45, 0xb7, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2b, 0x1c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xed, 0x14, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x14, 0x0c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb3, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x14, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x68, 0x38, 0x00, 0x00, 0x4e, 0xd0, 0x84, 0x4f, 0x00, 0x45, 0xb0, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x4e, 0xce, 0x84, 0x4f, 0x00, 0x45, 0xab, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xd7, 0x5f, 0x00, 0x00, 0x4e, 0xcc, 0x84, 0x4f, 0x00, 0x45, 0xa6, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x89, 0x71, 0x00, 0x00, 0x4e, 0xca, 0x84, 0x4f, 0x00, 0x45, 0xa1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, 0x7c, 0x00, 0x00, 0x4e, 0xc6, 0x84, 0x4f, 0x00, 0x45, 0x9c, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x30, 0x86, 0x00, 0x00, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x38, 0xa3, 0x00, 0x00, 0x4e, 0xb6, 0x84, 0x4f, 0x00, 0x45, 0x9d, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x30, 0xb6, 0x00, 0x00, 0x4e, 0xb0, 0x84, 0x4f, 0x00, 0x45, 0xa2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t box_mp4_len = 5595; constexpr unsigned char id_000000_src_000000_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xe5, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x68, 0x01, 0x00, 0x4e, 0xfa, 0x84, 0x4f, 0x00, 0x45, 0xcf, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x89, 0x54, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xa3, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0x47, 0x01, 0x00, 0x4e, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x07, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x00, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x4e, 0xea, 0x84, 0x4f, 0x00, 0x45, 0xf2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xb9, 0xa5, 0x00, 0x00, 0x4e, 0xe7, 0x84, 0x4f, 0x00, 0x45, 0xe9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xaa, 0x90, 0x00, 0x00, 0x4e, 0xe3, 0x84, 0x4f, 0x00, 0x45, 0xe1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x88, 0x7f, 0x00, 0x00, 0x4e, 0xe1, 0x84, 0x4f, 0x00, 0x45, 0xda, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x54, 0x70, 0x00, 0x00, 0x4e, 0xde, 0x84, 0x4f, 0x00, 0x45, 0xd4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x4b, 0x65, 0x00, 0x00, 0x4e, 0xdc, 0x84, 0x4f, 0x00, 0x45, 0xce, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0xf8, 0x5a, 0x00, 0x00, 0x4e, 0xda, 0x84, 0x4f, 0x00, 0x45, 0xc9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x6e, 0x50, 0x00, 0x00, 0x4e, 0xd8, 0x84, 0x4f, 0x00, 0x45, 0xc5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0xe6, 0x44, 0x00, 0x00, 0x4e, 0xd7, 0x84, 0x4f, 0x00, 0x45, 0xc1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x1a, 0x3b, 0x00, 0x00, 0x4e, 0xd6, 0x84, 0x4f, 0x00, 0x45, 0xbe, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x26, 0x31, 0x00, 0x00, 0x4e, 0xd5, 0x84, 0x4f, 0x00, 0x45, 0xbb, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0xc1, 0x29, 0x00, 0x00, 0x4e, 0xd4, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xf8, 0x22, 0x00, 0x00, 0x4e, 0xd3, 0x84, 0x4f, 0x00, 0x45, 0xb7, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2b, 0x1c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xed, 0x14, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x14, 0x0c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb3, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x14, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x68, 0x38, 0x00, 0x00, 0x4e, 0xd0, 0x84, 0x4f, 0x00, 0x45, 0xb0, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x4e, 0xce, 0x84, 0x4f, 0x00, 0x45, 0xab, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xd7, 0x5f, 0x00, 0x00, 0x4e, 0xcc, 0x84, 0x4f, 0x00, 0x45, 0xa6, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x89, 0x71, 0x00, 0x00, 0x4e, 0xca, 0x84, 0x4f, 0x00, 0x45, 0xa1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, 0x7c, 0x00, 0x00, 0x4e, 0xc6, 0x84, 0x4f, 0x00, 0x45, 0x9c, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x30, 0x86, 0x00, 0x00, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x38, 0xa3, 0x00, 0x00, 0x4e, 0xb6, 0x84, 0x4f, 0x00, 0x45, 0x9d, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x30, 0xb6, 0x00, 0x00, 0x4e, 0xb0, 0x84, 0x4f, 0x00, 0x45, 0xa2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000000_src_000000_op_arith8_pos_448_val__34_mp4_len = 3476; constexpr unsigned char id_000001_src_000000_op_havoc_rep_64_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0x10, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x20, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0xf3, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0xe8, 0x00, 0x00, 0x00, 0xd0, 0x8c, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x80, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x30, 0xb6, 0x00, 0x00, 0x4e, 0xb0, 0x84, 0x4f, 0x00, 0x45, 0xa2, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x7f, 0xff, 0xff, 0xff, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x7a, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xb2, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x47, 0x50, 0x84, 0x4f, 0x53, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x12, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x9c, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x10, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xee, 0x1d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x47, 0x50, 0x53, 0x20, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x3a, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xe5, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x68, 0x01, 0x03, 0x3e, 0x6d, 0x6f, 0x4f, 0x00, 0x45, 0xcf, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x89, 0x54, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xa3, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0x47, 0x01, 0x00, 0x4e, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x70, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x07, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1e, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0xff, 0x00, 0x00, 0xfd, 0xff, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x00, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x4e, 0xea, 0x84, 0x4f, 0x00, 0x45, 0xf2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xb9, 0xa5, 0x00, 0x00, 0x4e, 0xe7, 0x84, 0x4f, 0x00, 0x45, 0xe9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xaa, 0x90, 0x00, 0x00, 0x4e, 0xe3, 0x84, 0x4f, 0x00, 0x45, 0xe1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x54, 0x70, 0x00, 0x00, 0x4e, 0xde, 0x84, 0x4f, 0x00, 0x45, 0xd4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x4b, 0x65, 0x00, 0x00, 0x4e, 0xdc, 0x84, 0x4f, 0x00, 0x45, 0xce, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x1f, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x6e, 0x50, 0x00, 0x00, 0x4e, 0xd8, 0x84, 0x4f, 0x00, 0x45, 0xc5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0xe6, 0x44, 0x00, 0x00, 0x4e, 0xd7, 0x84, 0x4f, 0x00, 0x45, 0xc1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x1a, 0x3b, 0x00, 0x00, 0x4e, 0xd6, 0x84, 0x4f, 0x00, 0x45, 0xbe, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x26, 0x31, 0x00, 0x00, 0x4e, 0xd5, 0x84, 0x4f, 0x00, 0x45, 0xbb, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0xc1, 0x29, 0x00, 0x00, 0x4e, 0xd4, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xf8, 0x22, 0x00, 0x00, 0x4e, 0xd3, 0x84, 0x4f, 0x00, 0x45, 0xb7, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2b, 0x1c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xed, 0x14, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd1, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x14, 0x0c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb3, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x63, 0x30, 0x00, 0x00, 0x00, 0x14, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x4e, 0xce, 0x84, 0x4f, 0x00, 0x00, 0x00, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x34, 0x00, 0x3a, 0x00, 0xd7, 0x5f, 0x00, 0x00, 0x4e, 0xcc, 0x84, 0x4f, 0x00, 0x45, 0x6d, 0x6f, 0x6f, 0x76, 0xa6, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x89, 0x70, 0xff, 0xdd, 0x4e, 0xca, 0x84, 0x4f, 0x00, 0x45, 0xa1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, 0x7c, 0xdd, 0xff, 0x4e, 0xc6, 0x84, 0x4f, 0x00, 0x45, 0x9c, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xef, 0x00, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x30, 0x86, 0x00, 0x00, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x38, 0xa3, 0x00, 0x00, 0x4e, 0xb6, 0x84, 0x4f, 0x00, 0x45, 0x9d, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x30, 0xb6, 0x00, 0x00, 0x4e, 0xb0, 0x84, 0x4f, 0x00, 0x45, 0xa2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000001_src_000000_op_havoc_rep_64_mp4_len = 3285; constexpr unsigned char id_000002_src_000000_op_havoc_rep_128_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x20, 0xe0, 0xb5, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x10, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xf6, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x6d, 0x6f, 0x6f, 0x76, 0xfe, 0x47, 0xe1, 0x1d, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0xb6, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4b, 0xe7, 0x52, 0xed, 0x44, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x00, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x15, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9e, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x07, 0x00, 0x00, 0x02, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x00, 0x01, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x7e, 0x66, 0x74, 0x79, 0x70, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x12, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x66, 0x74, 0x79, 0x70, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x57, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x59, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xa8, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x5f, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0xfd, 0x02, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x67, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x23, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x80, 0xff, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x09, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x10, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe2, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x79, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x20, 0x4e, 0x17, 0x64, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x01, 0xff, 0xff, 0xff, 0xe9, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0xff, 0xff, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x66, 0x74, 0x79, 0x70, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x00, 0x00, 0x54, 0x68, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0x47, 0x01, 0x00, 0x4e, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x02, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x7e, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x10, 0x45, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xe9, 0xff, 0xff, 0xff, 0x1a, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x00, 0x80, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x00, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x4e, 0xea, 0x87, 0x4f, 0x00, 0x45, 0xf2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xb9, 0xa5, 0x00, 0x00, 0x4e, 0x10, 0x84, 0x4f, 0x00, 0x45, 0xe9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x88, 0x7f, 0x00, 0x00, 0x4e, 0xe1, 0x84, 0x4f, 0x00, 0x45, 0xda, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x54, 0x70, 0x00, 0x00, 0x4e, 0xde, 0xd1, 0x4f, 0x00, 0x45, 0xd4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x74, 0x79, 0x70, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x4b, 0x82, 0x00, 0x00, 0x4e, 0xdc, 0x84, 0x4f, 0x00, 0x45, 0xce, 0x3a, 0x1f, 0x00, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xdd, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0xf8, 0x5a, 0x00, 0x00, 0x4e, 0xda, 0x84, 0x4f, 0x00, 0x45, 0xc9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x6e, 0x50, 0x00, 0x00, 0x4e, 0xd8, 0x84, 0x4f, 0x00, 0x45, 0x00, 0x00, 0xc5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0xe6, 0x44, 0x00, 0x00, 0x4e, 0xd7, 0x84, 0x4f, 0x00, 0x45, 0xc1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x1a, 0x3b, 0x00, 0x00, 0x4e, 0xd6, 0x84, 0x4f, 0x00, 0x45, 0xbe, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x20, 0xc1, 0x29, 0x00, 0x00, 0x4e, 0xd4, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3a, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xf8, 0x22, 0x00, 0x00, 0x4e, 0xd3, 0x84, 0x4f, 0x00, 0x45, 0xb7, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2b, 0x1c, 0x00, 0x80, 0xff, 0xd2, 0x40, 0x00, 0x00, 0x00, 0xb5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x14, 0x0c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x20, 0x36, 0x36, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x33, 0xe8, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x80, 0x00, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xf4, 0xff, 0xff, 0xff, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x68, 0x10, 0x00, 0x00, 0x4e, 0xd0, 0x4f, 0x00, 0x45, 0xb0, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x4e, 0x84, 0x4f, 0x00, 0x45, 0xab, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xd7, 0x5f, 0x00, 0x00, 0x4e, 0xcc, 0x84, 0x4f, 0x00, 0x45, 0xa6, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x35, 0x00, 0xdb, 0x00, 0x89, 0x71, 0x00, 0x00, 0x4e, 0xca, 0x84, 0x4f, 0x00, 0x45, 0xa1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, 0x7c, 0x00, 0x00, 0x4e, 0xc6, 0x84, 0x4f, 0x00, 0x45, 0x9c, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x30, 0x86, 0x00, 0x00, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xeb, 0xff, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x47, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x39, 0x16, 0x00, 0x00, 0x38, 0xa3, 0x00, 0x00, 0x4e, 0xb6, 0x7a, 0x4f, 0x00, 0x45, 0x9d, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x30, 0xff, 0xff, 0xff, 0xff, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x00, 0x45, 0xa2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00 }; constexpr size_t id_000002_src_000000_op_havoc_rep_128_mp4_len = 3240; constexpr unsigned char id_000003_src_000000_op_havoc_rep_64_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x1c, 0x00, 0x00, 0x02, 0x0d, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x19, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6d, 0x76, 0x68, 0x64, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0xeb, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x47, 0x50, 0x53, 0x20, 0x69, 0x64, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x01, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xb3, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x00, 0x04, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x80, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x47, 0x50, 0x53, 0x20, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x1a, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x19, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xe5, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x68, 0x01, 0x00, 0x4e, 0xfa, 0x84, 0x4f, 0x00, 0x45, 0xcf, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x89, 0x54, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xa3, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0x47, 0x01, 0x00, 0x4e, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xea, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x07, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x12, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, 0xff, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x00, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xb9, 0xa5, 0x00, 0x00, 0x4e, 0xe7, 0x84, 0x4f, 0x00, 0x45, 0xe9, 0x6d, 0x6f, 0x6f, 0x76, 0x3a, 0x1f, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xaa, 0x90, 0x00, 0x00, 0x4e, 0xe3, 0x84, 0x4f, 0x00, 0x45, 0xe1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x17, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x88, 0x7f, 0x00, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x4e, 0xe1, 0x84, 0x4f, 0x00, 0x45, 0xda, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x54, 0x54, 0x00, 0x00, 0x4e, 0xde, 0x84, 0x4f, 0x00, 0x45, 0xd4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x4f, 0x00, 0x45, 0xce, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0xf8, 0x5a, 0x00, 0x00, 0x4e, 0xda, 0x84, 0x4f, 0x00, 0x45, 0xc9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x6e, 0x50, 0x00, 0x00, 0x4e, 0xd8, 0x84, 0x4f, 0x07, 0x45, 0xc5, 0x6d, 0x76, 0x68, 0x64, 0x3a, 0x1f, 0x00, 0x00, 0xf9, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0xe6, 0x44, 0x00, 0x00, 0x4e, 0xd7, 0x84, 0x4f, 0x00, 0x45, 0xc1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x1a, 0x3b, 0x00, 0x00, 0x4e, 0xd6, 0x84, 0x4f, 0x00, 0x45, 0xbe, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x26, 0x31, 0x00, 0x00, 0x4e, 0xd5, 0x84, 0x4f, 0x00, 0x45, 0xbb, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xf8, 0x22, 0x00, 0x00, 0x4e, 0xd3, 0x84, 0x4f, 0x00, 0x45, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0xb7, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2b, 0x1c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0x00, 0x00, 0x00, 0x01, 0xff, 0xf1, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x14, 0x0c, 0x00, 0x00, 0x4e, 0xd2, 0x74, 0x4f, 0x00, 0x45, 0xb3, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xfb, 0xff, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x9b, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x14, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x47, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x68, 0x38, 0x00, 0x00, 0x4e, 0xd0, 0x84, 0x4f, 0x00, 0x45, 0xb0, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x80, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x4e, 0xce, 0x84, 0x4f, 0x00, 0x45, 0xab, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xd7, 0x5f, 0x00, 0x00, 0x4e, 0xcc, 0x84, 0x4f, 0x00, 0x45, 0xa6, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0x35, 0x00, 0x00, 0x00, 0x89, 0x71, 0x00, 0x00, 0x4e, 0xca, 0x84, 0x4f, 0x00, 0x45, 0xa1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, 0x7c, 0x00, 0x00, 0x4e, 0xc6, 0x84, 0x4f, 0x00, 0x45, 0x9c, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x30, 0x86, 0x00, 0x00, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x4f, 0x00, 0x45, 0xa5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x38, 0xa3, 0x00, 0x00, 0x4e, 0xb6, 0x84, 0x4f, 0x00, 0x45, 0x9d, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x30, 0xb6, 0xfe, 0xff, 0x4d, 0xb0, 0x84, 0x4f, 0x00, 0x45, 0xa2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000003_src_000000_op_havoc_rep_64_mp4_len = 3519; constexpr unsigned char id_000004_src_000015_op_havoc_rep_32_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0xf6, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x0b, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x79, 0x70, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xe8, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xde, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xe5, 0x3b, 0x1f, 0x00, 0x00, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x68, 0x01, 0x00, 0x4e, 0xfa, 0x84, 0x4f, 0x00, 0x45, 0xcf, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x89, 0x54, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xa3, 0x3b, 0x1f, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x07, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x55, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x00, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xa8, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x4e, 0xea, 0x84, 0x4f, 0x00, 0x45, 0xf2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xb9, 0xa5, 0x00, 0x00, 0x4e, 0xe7, 0x84, 0x4f, 0x00, 0x45, 0xe9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xaa, 0x6d, 0x76, 0x68, 0x64, 0x90, 0x00, 0x00, 0x4e, 0xe3, 0x84, 0x4f, 0x00, 0x45, 0xe1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x88, 0x7f, 0x00, 0x00, 0x4e, 0xe1, 0x84, 0x4f, 0x00, 0x45, 0xda, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x54, 0x87, 0x00, 0x00, 0x4e, 0xde, 0x84, 0x4f, 0x00, 0x45, 0xd4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x00, 0x4b, 0x65, 0x00, 0x00, 0x4e, 0xdc, 0x84, 0x4f, 0x00, 0x45, 0xce, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0xf8, 0x5a, 0x00, 0x00, 0x4e, 0xda, 0x84, 0x4f, 0x00, 0x45, 0xc9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x6e, 0x50, 0x00, 0x00, 0x4e, 0xd8, 0x84, 0x4f, 0x00, 0x45, 0xc5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0xe6, 0x44, 0x00, 0x00, 0x4e, 0xd7, 0x84, 0x4f, 0x00, 0x45, 0xc1, 0xf4, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x1a, 0x3b, 0x00, 0x00, 0x4e, 0xd6, 0x84, 0x4f, 0x00, 0x45, 0xbe, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x26, 0x31, 0x00, 0x00, 0x4e, 0xd5, 0x84, 0x4f, 0x00, 0x45, 0xbb, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0xc1, 0x29, 0x00, 0x00, 0x4e, 0xd4, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2b, 0x1c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xed, 0x14, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2d, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb3, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x14, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x68, 0x6d, 0x6f, 0x6f, 0x76, 0x38, 0x00, 0x00, 0x4e, 0xd0, 0x84, 0x4f, 0x00, 0x45, 0xb0, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x4e, 0xce, 0x84, 0x4f, 0x00, 0x45, 0xab, 0x3a, 0x1f, 0xee, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xd7, 0x5f, 0x00, 0x00, 0x4e, 0xcc, 0x84, 0x4f, 0x00, 0x45, 0xa6, 0x3a, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x89, 0x71, 0x00, 0x00, 0x4e, 0xca, 0x84, 0x4f, 0x00, 0x45, 0xa1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, 0x7c, 0x00, 0x00, 0x4e, 0xc6, 0x84, 0x4f, 0x00, 0x45, 0x9c, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x30, 0x86, 0x00, 0x00, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }; constexpr size_t id_000004_src_000015_op_havoc_rep_32_mp4_len = 3241; constexpr unsigned char id_000005_src_000019_op_int32_pos_695_val__256_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0xec, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xe5, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x68, 0x01, 0x00, 0x4e, 0xfa, 0x84, 0x4f, 0x00, 0x45, 0xcf, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x89, 0x54, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xa3, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0x47, 0x01, 0x00, 0x4e, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x07, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x00, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x4e, 0xea, 0x84, 0x4f, 0x00, 0x45, 0xf2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xb9, 0xa5, 0x00, 0x00, 0x4e, 0xe7, 0x84, 0x4f, 0x00, 0x45, 0xe9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xaa, 0x90, 0x00, 0x00, 0x4e, 0xe3, 0x84, 0x4f, 0x00, 0x45, 0xe1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x88, 0x7f, 0x00, 0x00, 0x4e, 0xe1, 0x84, 0x4f, 0x00, 0x45, 0xda, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x54, 0x70, 0x00, 0x00, 0x4e, 0xde, 0x84, 0x4f, 0x00, 0x45, 0xd4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x4b, 0x65, 0x00, 0x00, 0x4e, 0xdc, 0x84, 0x4f, 0x00, 0x45, 0xce, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0xf8, 0x5a, 0x00, 0x00, 0x4e, 0xda, 0x84, 0x4f, 0x00, 0x45, 0xc9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x6e, 0x50, 0x00, 0x00, 0x4e, 0xd8, 0x84, 0x4f, 0x00, 0x45, 0xc5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0xe6, 0x44, 0x00, 0x00, 0x4e, 0xd7, 0x84, 0x4f, 0x00, 0x45, 0xc1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x1a, 0x3b, 0x00, 0x00, 0x4e, 0xd6, 0x84, 0x4f, 0x00, 0x45, 0xbe, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x26, 0x31, 0x00, 0x00, 0x4e, 0xd5, 0x84, 0x4f, 0x00, 0x45, 0xbb, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0xc1, 0x29, 0x00, 0x00, 0x4e, 0xd4, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xf8, 0x22, 0x00, 0x00, 0x4e, 0xd3, 0x84, 0x4f, 0x00, 0x45, 0xb7, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2b, 0x1c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xed, 0x14, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x14, 0x0c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb3, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x14, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x68, 0x38, 0x00, 0x00, 0x4e, 0xd0, 0x84, 0x4f, 0x00, 0x45, 0xb0, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x4e, 0xce, 0x84, 0x4f, 0x00, 0x45, 0xab, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xd7, 0x5f, 0x00, 0x00, 0x4e, 0xcc, 0x84, 0x4f, 0x00, 0x45, 0xa6, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x89, 0x71, 0x00, 0x00, 0x4e, 0xca, 0x84, 0x4f, 0x00, 0x45, 0xa1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, 0x7c, 0x00, 0x00, 0x4e, 0xc6, 0x84, 0x4f, 0x00, 0x45, 0x9c, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x30, 0x86, 0x00, 0x00, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x38, 0xa3, 0x00, 0x00, 0x4e, 0xb6, 0x84, 0x4f, 0x00, 0x45, 0x9d, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x30, 0xb6, 0x00, 0x00, 0x4e, 0xb0, 0x84, 0x4f, 0x00, 0x45, 0xa2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000005_src_000019_op_int32_pos_695_val__256_mp4_len = 3476; constexpr unsigned char id_000006_src_000022_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x01, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xe5, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x68, 0x01, 0x00, 0x4e, 0xfa, 0x84, 0x4f, 0x00, 0x45, 0xcf, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x89, 0x54, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xa3, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0x47, 0x01, 0x00, 0x4e, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x07, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x00, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x4e, 0xea, 0x84, 0x4f, 0x00, 0x45, 0xf2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xb9, 0xa5, 0x00, 0x00, 0x4e, 0xe7, 0x84, 0x4f, 0x00, 0x45, 0xe9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xaa, 0x90, 0x00, 0x00, 0x4e, 0xe3, 0x84, 0x4f, 0x00, 0x45, 0xe1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x88, 0x7f, 0x00, 0x00, 0x4e, 0xe1, 0x84, 0x4f, 0x00, 0x45, 0xda, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x54, 0x70, 0x00, 0x00, 0x4e, 0xde, 0x84, 0x4f, 0x00, 0x45, 0xd4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x4b, 0x65, 0x00, 0x00, 0x4e, 0xdc, 0x84, 0x4f, 0x00, 0x45, 0xce, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0xf8, 0x5a, 0x00, 0x00, 0x4e, 0xda, 0x84, 0x4f, 0x00, 0x45, 0xc9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x6e, 0x50, 0x00, 0x00, 0x4e, 0xd8, 0x84, 0x4f, 0x00, 0x45, 0xc5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0xe6, 0x44, 0x00, 0x00, 0x4e, 0xd7, 0x84, 0x4f, 0x00, 0x45, 0xc1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x1a, 0x3b, 0x00, 0x00, 0x4e, 0xd6, 0x84, 0x4f, 0x00, 0x45, 0xbe, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x26, 0x31, 0x00, 0x00, 0x4e, 0xd5, 0x84, 0x4f, 0x00, 0x45, 0xbb, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0xc1, 0x29, 0x00, 0x00, 0x4e, 0xd4, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xf8, 0x22, 0x00, 0x00, 0x4e, 0xd3, 0x84, 0x4f, 0x00, 0x45, 0xb7, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2b, 0x1c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xed, 0x14, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x14, 0x0c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb3, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x14, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x68, 0x38, 0x00, 0x00, 0x4e, 0xd0, 0x84, 0x4f, 0x00, 0x45, 0xb0, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x4e, 0xce, 0x84, 0x4f, 0x00, 0x45, 0xab, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xd7, 0x5f, 0x00, 0x00, 0x4e, 0xcc, 0x84, 0x4f, 0x00, 0x45, 0xa6, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x89, 0x71, 0x00, 0x00, 0x4e, 0xca, 0x84, 0x4f, 0x00, 0x45, 0xa1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, 0x7c, 0x00, 0x00, 0x4e, 0xc6, 0x84, 0x4f, 0x00, 0x45, 0x9c, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x30, 0x86, 0x00, 0x00, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x38, 0xa3, 0x00, 0x00, 0x4e, 0xb6, 0x84, 0x4f, 0x00, 0x45, 0x9d, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x30, 0xb6, 0x00, 0x00, 0x4e, 0xb0, 0x84, 0x4f, 0x00, 0x45, 0xa2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000006_src_000022_op_arith8_pos_448_val__34_mp4_len = 3476; constexpr unsigned char id_000007_src_000064_op_havoc_rep_64_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x7f, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x47, 0x50, 0x53, 0x20, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x51, 0x0d, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xe9, 0x13, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x06, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x01, 0x20, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x18, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x10, 0x00, 0x04, 0x00, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x3e, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x66, 0x74, 0x79, 0x70, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x57, 0x90, 0x00, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x04, 0x05, 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0x6d, 0x6f, 0x6f, 0x76, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x7f, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x47, 0x50, 0x53, 0x20, 0x7f, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x4e, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x55, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x7f, 0xff, 0xff, 0xff, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x66, 0x74, 0x79, 0x70, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0xea, 0xff, 0x47, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x55, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x00, 0x00, 0x00, 0x01, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x14, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x64, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x6b, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x20, 0x1b, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x1f, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }; constexpr size_t id_000007_src_000064_op_havoc_rep_64_mp4_len = 1220; constexpr unsigned char id_000008_src_000065_op_havoc_rep_32_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x00, 0x01, 0x6d, 0x47, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x20, 0x64, 0x47, 0x50, 0x53, 0x20, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x00, 0x00, 0x0c, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xa7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x7f, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x00, 0x00, 0x0c, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x20, 0x69, 0x34, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x47, 0x50, 0x53, 0x20, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0x01, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x3e, 0x00, 0x00, 0x00, 0x0f, 0x1e, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x42, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x8f, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0xf5, 0x50, 0x00, 0x00, 0x00, 0x0b, 0xbe, 0x9e, 0x07, 0xf6, 0xa6, 0x41, 0x8d, 0xaf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x47, 0x50, 0x53, 0x20, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x19, 0x28, 0xd2, 0xd1, 0x10, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x25, 0x0b, 0x01, 0x9e, 0xd1, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x2f, 0xff, 0xed, 0x01, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x14, 0x6d, 0x10, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61 }; constexpr size_t id_000008_src_000065_op_havoc_rep_32_mp4_len = 436; constexpr unsigned char id_000009_src_000083_op_havoc_rep_64_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x01, 0x00, 0xdf, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xab, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x6b, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0x64, 0x00, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x91, 0x02, 0x0d, 0xf2, 0x1b, 0xe7, 0xec, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x57, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x20, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x6d, 0x6f, 0x6f, 0x76, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x80, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xdf, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x04, 0x00, 0x5c, 0x92, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0xf2, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0xf8, 0xff, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x75, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xff, 0xff, 0xff, 0xe9, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x6b, 0x64, 0x65, 0x6f, 0x20, 0x00, 0x20, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x74, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x92, 0x61, 0x76, 0x63, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xbb, 0x31, 0x3b, 0x01, 0x52, 0x66, 0x74, 0x79, 0x70, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0xdf, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0x45, 0x1b, 0x00, 0x00, 0x02, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xd0, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x79, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x40, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7f, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4f, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f }; constexpr size_t id_000009_src_000083_op_havoc_rep_64_mp4_len = 1492; constexpr unsigned char id_000010_src_000105_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x64, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3d, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x00, 0x02, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x66, 0x74, 0x79, 0x70, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x63, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xfb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x8a, 0xff, 0xff, 0xff, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xe5, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x68, 0x01, 0x00, 0x4e, 0xfa, 0x84, 0x4f, 0x00, 0x45, 0xcf, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x89, 0x54, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xa3, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0x47, 0x01, 0x00, 0x4e, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x66, 0x74, 0x79, 0x70, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x07, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xf1, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x06, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xf8, 0x22, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x4e, 0xea, 0x84, 0x4f, 0x00, 0x45, 0xf2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000010_src_000105_op_arith8_pos_448_val__34_mp4_len = 2324; constexpr unsigned char id_000011_src_000106_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000011_src_000106_op_arith8_pos_448_val__34_mp4_len = 1880; constexpr unsigned char id_000012_src_000119_op_arith8_pos_416_val__34_mp4[] = { 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x20, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x66, 0x74, 0x79, 0x70, 0x01, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x90, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x2f, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x7f, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x96, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x40, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0xa3, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000012_src_000119_op_arith8_pos_416_val__34_mp4_len = 1344; constexpr unsigned char id_000013_src_000124_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x02, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0xfd, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x47, 0x50, 0x53, 0x20, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57 }; constexpr size_t id_000013_src_000124_op_arith8_pos_448_val__34_mp4_len = 1520; constexpr unsigned char id_000014_src_000146_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07 }; constexpr size_t id_000014_src_000146_op_arith8_pos_448_val__34_mp4_len = 1508; constexpr unsigned char id_000015_src_000067_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xe5, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x68, 0x01, 0x00, 0x4e, 0xfa, 0x84, 0x4f, 0x00, 0x45, 0xcf, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x89, 0x54, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xa3, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0x47, 0x01, 0x00, 0x4e, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x07, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x00, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x4e, 0xea, 0x84, 0x4f, 0x00, 0x45, 0xf2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xb9, 0xa5, 0x00, 0x00, 0x4e, 0xe7, 0x84, 0x4f, 0x00, 0x45, 0xe9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xaa, 0x90, 0x00, 0x00, 0x4e, 0xe3, 0x84, 0x4f, 0x00, 0x45, 0xe1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x88, 0x7f, 0x00, 0x00, 0x4e, 0xe1, 0x84, 0x4f, 0x00, 0x45, 0xda, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x54, 0x70, 0x00, 0x00, 0x4e, 0xde, 0x84, 0x4f, 0x00, 0x45, 0xd4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x4b, 0x65, 0x00, 0x00, 0x4e, 0xdc, 0x84, 0x4f, 0x00, 0x45, 0xce, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0xf8, 0x5a, 0x00, 0x00, 0x4e, 0xda, 0x84, 0x4f, 0x00, 0x45, 0xc9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x6e, 0x50, 0x00, 0x00, 0x4e, 0xd8, 0x84, 0x4f, 0x00, 0x45, 0xc5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0xe6, 0x44, 0x00, 0x00, 0x4e, 0xd7, 0x84, 0x4f, 0x00, 0x45, 0xc1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x1a, 0x3b, 0x00, 0x00, 0x4e, 0xd6, 0x84, 0x4f, 0x00, 0x45, 0xbe, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x26, 0x31, 0x00, 0x00, 0x4e, 0xd5, 0x84, 0x4f, 0x00, 0x45, 0xbb, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0xc1, 0x29, 0x00, 0x00, 0x4e, 0xd4, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xf8, 0x22, 0x00, 0x00, 0x4e, 0xd3, 0x84, 0x4f, 0x00, 0x45, 0xb7, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2b, 0x1c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xed, 0x14, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x14, 0x0c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb3, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x14, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x68, 0x38, 0x00, 0x00, 0x4e, 0xd0, 0x84, 0x4f, 0x00, 0x45, 0xb0, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x4e, 0xce, 0x84, 0x4f, 0x00, 0x45, 0xab, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xd7, 0x5f, 0x00, 0x00, 0x4e, 0xcc, 0x84, 0x4f, 0x00, 0x45, 0xa6, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x89, 0x71, 0x00, 0x00, 0x4e, 0xca, 0x84, 0x4f, 0x00, 0x45, 0xa1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, 0x7c, 0x00, 0x00, 0x4e, 0xc6, 0x84, 0x4f, 0x00, 0x45, 0x9c, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x30, 0x86, 0x00, 0x00, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }; constexpr size_t id_000015_src_000067_op_arith8_pos_448_val__34_mp4_len = 3300; constexpr unsigned char id_000016_src_000086_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1d, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x87, 0xc5, 0x01, 0x00, 0x4e, 0x13, 0x85, 0x4f, 0x00, 0x45, 0xd0, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x9e, 0xc9, 0x01, 0x00, 0x4e, 0x10, 0x85, 0x4f, 0x00, 0x45, 0xb4, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xad, 0xc8, 0x01, 0x00, 0x4e, 0x0d, 0x85, 0x4f, 0x00, 0x45, 0x98, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xbe, 0x01, 0x00, 0x4e, 0x09, 0x85, 0x4f, 0x00, 0x45, 0x7d, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0x00, 0x4e, 0x06, 0x85, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x04, 0x85, 0x4f, 0x00, 0x45, 0x48, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xef, 0x9e, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x2e, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c, 0x91, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x15, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x5a, 0x82, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xb1, 0x73, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xe5, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x68, 0x01, 0x00, 0x4e, 0xfa, 0x84, 0x4f, 0x00, 0x45, 0xcf, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x86, 0x5e, 0x01, 0x00, 0x4e, 0xfb, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x89, 0x54, 0x01, 0x00, 0x4e, 0xfd, 0x84, 0x4f, 0x00, 0x45, 0xa3, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0xbd, 0x47, 0x01, 0x00, 0x4e, 0xfe, 0x84, 0x4f, 0x00, 0x45, 0x8f, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x41, 0x38, 0x01, 0x00, 0x4e, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x7b, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2a, 0x29, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x68, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x07, 0x1b, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x4e, 0x01, 0x85, 0x4f, 0x00, 0x45, 0x45, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xa5, 0x04, 0x01, 0x00, 0x4e, 0xff, 0x84, 0x4f, 0x00, 0x45, 0x35, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x01, 0x00, 0x4e, 0xfc, 0x84, 0x4f, 0x00, 0x45, 0x26, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x11, 0xff, 0x00, 0x00, 0x4e, 0xf8, 0x84, 0x4f, 0x00, 0x45, 0x17, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xbd, 0xf8, 0x00, 0x00, 0x4e, 0xf3, 0x84, 0x4f, 0x00, 0x45, 0x0a, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x08, 0xe9, 0x00, 0x00, 0x4e, 0xee, 0x84, 0x4f, 0x00, 0x45, 0xfd, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0xc3, 0x00, 0x00, 0x4e, 0xea, 0x84, 0x4f, 0x00, 0x45, 0xf2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xb9, 0xa5, 0x00, 0x00, 0x4e, 0xe7, 0x84, 0x4f, 0x00, 0x45, 0xe9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xaa, 0x90, 0x00, 0x00, 0x4e, 0xe3, 0x84, 0x4f, 0x00, 0x45, 0xe1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x88, 0x7f, 0x00, 0x00, 0x4e, 0xe1, 0x84, 0x4f, 0x00, 0x45, 0xda, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x54, 0x70, 0x00, 0x00, 0x4e, 0xde, 0x84, 0x4f, 0x00, 0x45, 0xd4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x4b, 0x65, 0x00, 0x00, 0x4e, 0xdc, 0x84, 0x4f, 0x00, 0x45, 0xce, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0xf8, 0x5a, 0x00, 0x00, 0x4e, 0xda, 0x84, 0x4f, 0x00, 0x45, 0xc9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x6e, 0x50, 0x00, 0x00, 0x4e, 0xd8, 0x84, 0x4f, 0x00, 0x45, 0xc5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0xe6, 0x44, 0x00, 0x00, 0x4e, 0xd7, 0x84, 0x4f, 0x00, 0x45, 0xc1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x1a, 0x3b, 0x00, 0x00, 0x4e, 0xd6, 0x84, 0x4f, 0x00, 0x45, 0xbe, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x26, 0x31, 0x00, 0x00, 0x4e, 0xd5, 0x84, 0x4f, 0x00, 0x45, 0xbb, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0xc1, 0x29, 0x00, 0x00, 0x4e, 0xd4, 0x84, 0x4f, 0x00, 0x45, 0xb9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0xf8, 0x22, 0x00, 0x00, 0x4e, 0xd3, 0x84, 0x4f, 0x00, 0x45, 0xb7, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2b, 0x1c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb5, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0xed, 0x14, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb4, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x14, 0x0c, 0x00, 0x00, 0x4e, 0xd2, 0x84, 0x4f, 0x00, 0x45, 0xb3, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x86, 0x07, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x14, 0x05, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0xd1, 0x84, 0x4f, 0x00, 0x45, 0xb2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x68, 0x38, 0x00, 0x00, 0x4e, 0xd0, 0x84, 0x4f, 0x00, 0x45, 0xb0, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x4e, 0xce, 0x84, 0x4f, 0x00, 0x45, 0xab, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xd7, 0x5f, 0x00, 0x00, 0x4e, 0xcc, 0x84, 0x4f, 0x00, 0x45, 0xa6, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x89, 0x71, 0x00, 0x00, 0x4e, 0xca, 0x84, 0x4f, 0x00, 0x45, 0xa1, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x33, 0x7c, 0x00, 0x00, 0x4e, 0xc6, 0x84, 0x4f, 0x00, 0x45, 0x9c, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x30, 0x86, 0x00, 0x00, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x38, 0xa3, 0x00, 0x00, 0x4e, 0xb6, 0x84, 0x4f, 0x00, 0x45, 0x9d, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x30, 0xb6, 0x00, 0x00, 0x4e, 0xb0, 0x84, 0x4f, 0x00, 0x45, 0xa2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000016_src_000086_op_arith8_pos_448_val__34_mp4_len = 3476; constexpr unsigned char id_000017_src_000162_op_havoc_rep_16_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x0e, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x80, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xe1, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf4, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x3b, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x18, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x58, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x7d, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x80, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x64, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xee, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x6f, 0x76, 0x07 }; constexpr size_t id_000017_src_000162_op_havoc_rep_16_mp4_len = 2366; constexpr unsigned char id_000018_src_000162_op_havoc_rep_2_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x6f, 0x76, 0x07 }; constexpr size_t id_000018_src_000162_op_havoc_rep_2_mp4_len = 2160; constexpr unsigned char id_000019_src_000188_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x9d, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7f, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f }; constexpr size_t id_000019_src_000188_op_arith8_pos_448_val__34_mp4_len = 1404; constexpr unsigned char id_000020_src_000188_op_havoc_rep_8_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x9d, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0x00, 0x00, 0x06, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x65, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x6a, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7f, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xe4, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x64, 0x00, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f }; constexpr size_t id_000020_src_000188_op_havoc_rep_8_mp4_len = 1725; constexpr unsigned char id_000021_src_000188_op_havoc_rep_16_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x9d, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x66, 0x74, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7f, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0xf1, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0xff, 0xe7, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x01, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x66, 0x74, 0x79, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7f, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0xf1, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x19, 0x00, 0x00, 0x02, 0xff, 0xff, 0xfc, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f }; constexpr size_t id_000021_src_000188_op_havoc_rep_16_mp4_len = 1122; constexpr unsigned char id_000022_src_000189_op_havoc_rep_4_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x01, 0x9d, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x0e, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7f, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f }; constexpr size_t id_000022_src_000189_op_havoc_rep_4_mp4_len = 1262; constexpr unsigned char id_000023_src_000072_op_havoc_rep_64_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0x40, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0x6d, 0x76, 0x68, 0x64, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x15, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0x6d, 0x64, 0x61, 0x74, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x02, 0xca, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x47, 0x50, 0x53, 0x20, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfd, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xd6, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x00, 0x00, 0x00, 0xff, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x00, 0x01, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x00, 0x02, 0xc4, 0xc4, 0xc4, 0xc9, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x2e, 0xb4, 0x01, 0xb7, 0xfe, 0xda, 0xa6, 0x4f, 0x00, 0x45, 0x62, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x1b, 0x58, 0xa9, 0x01, 0x00, 0x4e, 0x01, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x2c }; constexpr size_t id_000023_src_000072_op_havoc_rep_64_mp4_len = 927; constexpr unsigned char id_000024_src_000161_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x6d, 0x6f, 0x6f, 0x76, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07 }; constexpr size_t id_000024_src_000161_op_arith8_pos_448_val__34_mp4_len = 1508; constexpr unsigned char id_000025_src_000161_op_havoc_rep_16_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x6d, 0x6f, 0x6f, 0x76, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x64, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x03, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x01, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x06, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xae, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x58, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x00, 0x10, 0x00, 0x00, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x6d, 0x76, 0x68, 0x64, 0xef, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07 }; constexpr size_t id_000025_src_000161_op_havoc_rep_16_mp4_len = 1484; constexpr unsigned char id_000026_src_000164_op_havoc_rep_32_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x2f, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xa0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x46, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x01, 0x00, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x04, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x13, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xe7, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x6d, 0x6f, 0x6f, 0x76, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0xff, 0xf8, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x40, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x10, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0xf4, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0xff, 0xff, 0xff, 0x80, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x2a, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x40, 0x00, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x00, 0x00, 0x06, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xb1, 0x00, 0x01, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x38, 0xa3, 0x00, 0x00, 0x4e, 0xb6, 0x84, 0x4f, 0x00, 0x45, 0x9d, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x30, 0xb6, 0x00, 0x00, 0x4e, 0xb0, 0x84, 0x4f, 0x00, 0x45, 0xa2, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x4e, 0xc1, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x85, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x06, 0x93, 0x00, 0x00, 0x4e, 0xbc, 0x84, 0x4f, 0x00, 0x45, 0x99, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xb7, 0xcc, 0x00, 0x00, 0x4e, 0xaa, 0x84, 0x4f, 0x00, 0x45, 0xa9, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000026_src_000164_op_havoc_rep_32_mp4_len = 2127; constexpr unsigned char id_000027_src_000181_op_arith8_pos_1618_val__15_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x64, 0x61, 0x74, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xc6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x49, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x49, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xf7, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x3d, 0x00, 0x00, 0x02, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; constexpr size_t id_000027_src_000181_op_arith8_pos_1618_val__15_mp4_len = 2112; constexpr unsigned char id_000028_src_000188_op_havoc_rep_4_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x66, 0x72, 0x65, 0x65, 0x00, 0x00, 0x01, 0x9d, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb5, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x6d, 0x76, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f }; constexpr size_t id_000028_src_000188_op_havoc_rep_4_mp4_len = 739; constexpr unsigned char id_000029_src_000190_op_havoc_rep_16_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x01, 0x9d, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x01, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x62, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0x66, 0x74, 0x79, 0x70, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x6c, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x64, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7f, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0xed, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7f, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x06, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f }; constexpr size_t id_000029_src_000190_op_havoc_rep_16_mp4_len = 1342; constexpr unsigned char id_000030_src_000191_op_arith8_pos_448_val__34_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x6d, 0x6f, 0x6f, 0x76, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xcc, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0xa8, 0xf7, 0xa2, 0x69, 0x4b, 0xe0, 0xae, 0xdc, 0x57, 0x9c, 0xd7, 0xb3, 0xd9, 0xd6, 0xe7, 0xf1, 0x16, 0x86, 0x3e, 0x3b, 0x93, 0xf2, 0x5b, 0x74, 0x9b, 0x1e, 0x17, 0xaa, 0x69, 0x61, 0x8a, 0x74, 0xd6, 0x6a, 0x2d, 0xd9, 0xb2, 0x84, 0xc3, 0xcc, 0xec, 0xe5, 0xab, 0x03, 0x81, 0x2e, 0xeb, 0x67, 0xcc, 0xe7, 0xff, 0xf7, 0x93, 0xd9, 0x43, 0x25, 0xfe, 0x47, 0xe1, 0x1c, 0x52, 0x65, 0xad, 0xfd, 0xf4, 0x77, 0x5e, 0x0c, 0xab, 0xcc, 0x96, 0xf6, 0xed, 0xe3, 0xb0, 0x69, 0x5d, 0x5b, 0x93, 0xe1, 0xbe, 0x21, 0xed, 0xdc, 0x8a, 0x48, 0xa6, 0x3f, 0x69, 0x3e, 0x1e, 0xce, 0x44, 0x9a, 0x50, 0xc1, 0x79, 0x18, 0x02, 0x25, 0xe1, 0x90, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x36, 0x41, 0x9a, 0x02, 0x0d, 0xf2, 0x1b, 0xe8, 0x06, 0x6a, 0x00, 0x80, 0xa0, 0xd6, 0xdf, 0xac, 0x21, 0xfe, 0xf5, 0x4c, 0x0a, 0x52, 0xed, 0x37, 0x96, 0x09, 0x23, 0x95, 0xff, 0x95, 0x5f, 0xd5, 0xd3, 0xa2, 0x4f, 0x84, 0xc2, 0x4e, 0xd4, 0xa5, 0x83, 0x2f, 0xa9, 0x49, 0xbe, 0x90, 0x3a, 0x2c, 0xe3, 0xc7, 0x9b, 0x2d, 0xf6, 0xbe, 0x9f, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x05, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x9e, 0x04, 0x09, 0xd1, 0x06, 0x36, 0xff, 0xd8, 0xde, 0x3f, 0xf4, 0xd0, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0e, 0x41, 0x9a, 0x04, 0x1d, 0x5f, 0x26, 0x08, 0x35, 0xb7, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x41, 0x9e, 0x06, 0x15, 0xa6, 0x20, 0xce, 0xdf, 0x00, 0x0c, 0xb8, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x11, 0xd9, 0x06, 0x36, 0xff, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x08, 0x19, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x30, 0x00, 0x00, 0x00, 0x0f, 0x41, 0x9a, 0x08, 0x28, 0xd2, 0xd1, 0x30, 0x10, 0x6b, 0x6f, 0xfe, 0xda, 0xa6, 0x59, 0x11, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x21, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x02, 0x09, 0x50, 0x00, 0x00, 0x00, 0x0b, 0x01, 0x9e, 0x0a, 0x25, 0xa6, 0x41, 0x8d, 0xbf, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x03, 0x3e, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x8e, 0x6d, 0x76, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x64, 0x00, 0x00, 0x00, 0x07, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x3b, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0x03, 0x21, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x58, 0x01, 0x00, 0x05, 0x68, 0xeb, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xa2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xa9, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x01, 0x00, 0x4e, 0x17, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07 }; constexpr size_t id_000030_src_000191_op_arith8_pos_448_val__34_mp4_len = 1508; constexpr unsigned char id_000031_src_000191_op_havoc_rep_32_mp4[] = { 0x00, 0x00, 0x00, 0x18, 0x6d, 0x6f, 0x6f, 0x76, 0x6d, 0x70, 0x34, 0x32, 0x01, 0x2a, 0x00, 0x7e, 0x6d, 0x70, 0x34, 0x32, 0x69, 0x73, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x08, 0x47, 0x50, 0x53, 0x20, 0x00, 0x00, 0x01, 0x95, 0x6d, 0x6f, 0x6f, 0x76, 0x00, 0x00, 0x00, 0x78, 0x65, 0x88, 0x80, 0x40, 0x00, 0x6b, 0x6f, 0xfe, 0xf7, 0xd4, 0xb7, 0xd3, 0xb2, 0xf0, 0x20, 0x22, 0xb6, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xf9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x02, 0xca, 0x74, 0x72, 0x61, 0x6b, 0x00, 0x00, 0x00, 0x5c, 0x74, 0x6b, 0x68, 0x3d, 0x00, 0x00, 0x00, 0x1b, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5f, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x14, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x2f, 0xf5, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, 0x66, 0x6d, 0x64, 0x69, 0x61, 0x00, 0x00, 0x00, 0x20, 0x6d, 0x64, 0x68, 0x64, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0xd0, 0x8b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0c, 0x15, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x68, 0x64, 0x6c, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x64, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20, 0x48, 0x61, 0x6e, 0x6a, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x6d, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x00, 0x76, 0x6d, 0x68, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x64, 0x69, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x1c, 0x64, 0x72, 0x65, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x75, 0x72, 0x6c, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0xca, 0x73, 0x74, 0x62, 0x6c, 0x00, 0x00, 0x00, 0xa2, 0x73, 0x74, 0x73, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x92, 0x61, 0x76, 0x63, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x90, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0a, 0x41, 0x56, 0x43, 0x20, 0x43, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xff, 0x15, 0x00, 0x00, 0x00, 0x3c, 0x61, 0x76, 0x63, 0x43, 0x01, 0x64, 0x40, 0x14, 0xff, 0xe1, 0x00, 0x24, 0x67, 0x64, 0x00, 0x14, 0xac, 0x2c, 0xa4, 0x31, 0x00, 0x01, 0x52, 0x0c, 0x0c, 0x0c, 0x80, 0x00, 0x00, 0x03, 0x00, 0x80, 0x00, 0x00, 0x0c, 0x70, 0x40, 0x07, 0xd0, 0xfb, 0x20, 0xf8, 0xc7, 0x07, 0x68, 0x48, 0x96, 0x18, 0x01, 0x00, 0x05, 0x68, 0xbe, 0x73, 0x52, 0x50, 0x00, 0x00, 0x00, 0x18, 0x73, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x63, 0x74, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x48, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x34, 0x73, 0x74, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1f, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0xf2, 0xff, 0x00, 0x44, 0x73, 0x74, 0x73, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x19, 0x10, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x1c, 0x73, 0x74, 0x63, 0x6f, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00, 0x14, 0x73, 0x74, 0x73, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x47, 0x50, 0x53, 0x20, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x9b, 0x01, 0x00, 0x4e, 0x2b, 0x85, 0x4f, 0x00, 0x45, 0x89, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x42, 0x9c, 0x01, 0x00, 0x4e, 0x27, 0x85, 0x4f, 0x00, 0x45, 0x70, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xef, 0xe2, 0x01, 0x00, 0x4e, 0x24, 0x85, 0x4f, 0x00, 0x45, 0x56, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xbe, 0xc7, 0x01, 0x00, 0x4e, 0x21, 0x85, 0x4f, 0x00, 0x45, 0x3c, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0xb1, 0x01, 0x00, 0x4e, 0x1d, 0x85, 0x4f, 0x00, 0x45, 0x22, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0xb8, 0x01, 0x00, 0x4e, 0x1a, 0x85, 0x4f, 0x00, 0x45, 0x07, 0x3d, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x01, 0x00, 0x4e, 0x16, 0x85, 0x4f, 0x00, 0x45, 0xec, 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07 }; constexpr size_t id_000031_src_000191_op_havoc_rep_32_mp4_len = 1442; constexpr unsigned char This_is_not_an_ISOM_file[] = { 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x0a, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x0a, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x0a, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x0a, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x0a, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x0a, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x0a, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x0a, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x0a, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x0a, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x0a, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x0a, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x0a, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x0a, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x0a, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x0a, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x0a, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x0a, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x0a, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x49, 0x53, 0x4f, 0x4d, 0x20, 0x0a }; constexpr size_t This_is_not_an_ISOM_file_len = 1600; constexpr unsigned char practicaly_empty[] = { 0x30 }; constexpr size_t practicaly_empty_len = 1; constexpr unsigned char nearly_empty[] = { 0x30, 0x30, 0x30, 0x30 }; constexpr size_t nearly_empty_len = 4;
philltran/WioTerminal-LoRaWAN-Gateway-Tester
gps.h
<reponame>philltran/WioTerminal-LoRaWAN-Gateway-Tester #include <Arduino.h> #ifndef __GPS_H__ #define __GPS_H__ extern String N_date, N_time,N_lat,N_lng,N_satellites,N_meters; extern String P_date, P_time,P_lat,P_lng,P_satellites,P_meters; void GpsSerialInit(); void GetGpsInfoPolling(); void UpdateGpsInfo(); int UpdateGpsData(char* destination); uint64_t gpsEncodePosition48b(); void GpsListening(); void GpsstopListening(); #endif
ianthomas23/contourpy
src/line_type.h
<reponame>ianthomas23/contourpy<filename>src/line_type.h #ifndef CONTOURPY_LINE_TYPE_H #define CONTOURPY_LINE_TYPE_H #include <iosfwd> // C++11 scoped enum, must be fully qualified to use. enum class LineType { Separate = 101, SeparateCodes = 102, ChunkCombinedCodes = 103, ChunkCombinedOffsets = 104, }; std::ostream &operator<<(std::ostream &os, const LineType& line_type); #endif // CONTOURPY_LINE_TYPE_H
ianthomas23/contourpy
src/fill_type.h
#ifndef CONTOURPY_FILL_TYPE_H #define CONTOURPY_FILL_TYPE_H #include <iosfwd> // C++11 scoped enum, must be fully qualified to use. enum class FillType { OuterCodes = 201, OuterOffsets = 202, ChunkCombinedCodes = 203, ChunkCombinedOffsets = 204, ChunkCombinedCodesOffsets = 205, ChunkCombinedOffsets2 = 206, }; std::ostream &operator<<(std::ostream &os, const FillType& fill_type); #endif // CONTOURPY_FILL_TYPE_H
ianthomas23/contourpy
src/base_impl.h
<filename>src/base_impl.h #ifndef CONTOURPY_BASE_IMPL_H #define CONTOURPY_BASE_IMPL_H #include "base.h" #include "converter.h" #include <iostream> // Point indices from current quad index. #define POINT_NE (quad) #define POINT_NW (quad-1) #define POINT_SE (quad-_nx) #define POINT_SW (quad-_nx-1) // CacheItem masks, only accessed directly to set. To read, use accessors detailed below. // 1 and 2 refer to level indices (lower and upper). #define MASK_Z_LEVEL_1 (0x1 << 0) // z > lower_level. #define MASK_Z_LEVEL_2 (0x1 << 1) // z > upper_level. #define MASK_Z_LEVEL (MASK_Z_LEVEL_1 | MASK_Z_LEVEL_2) #define MASK_MIDDLE_Z_LEVEL_1 (0x1 << 2) // middle z > lower_level #define MASK_MIDDLE_Z_LEVEL_2 (0x1 << 3) // middle z > upper_level #define MASK_MIDDLE (MASK_MIDDLE_Z_LEVEL_1 | MASK_MIDDLE_Z_LEVEL_2) #define MASK_BOUNDARY_E (0x1 << 4) // E edge of quad is a boundary. #define MASK_BOUNDARY_N (0x1 << 5) // N edge of quad is a boundary. // EXISTS_QUAD bit is always used, but the 4 EXISTS_CORNER are only used if _corner_mask is true. // Only one of EXISTS_QUAD or EXISTS_??_CORNER is ever set per quad. #define MASK_EXISTS_QUAD (0x1 << 6) // All of quad exists (is not masked). #define MASK_EXISTS_NE_CORNER (0x1 << 7) // NE corner exists, SW corner is masked. #define MASK_EXISTS_NW_CORNER (0x1 << 8) #define MASK_EXISTS_SE_CORNER (0x1 << 9) #define MASK_EXISTS_SW_CORNER (0x1 << 10) #define MASK_EXISTS_ANY_CORNER (MASK_EXISTS_NE_CORNER | MASK_EXISTS_NW_CORNER | MASK_EXISTS_SE_CORNER | MASK_EXISTS_SW_CORNER) #define MASK_EXISTS_ANY (MASK_EXISTS_QUAD | MASK_EXISTS_ANY_CORNER) #define MASK_START_E (0x1 << 11) // E to N, filled and lines. #define MASK_START_N (0x1 << 12) // N to E, filled and lines. #define MASK_START_BOUNDARY_E (0x1 << 13) // Lines only. #define MASK_START_BOUNDARY_N (0x1 << 14) // Lines only. #define MASK_START_BOUNDARY_S (0x1 << 15) // Filled and lines. #define MASK_START_BOUNDARY_W (0x1 << 16) // Filled and lines. #define MASK_START_CORNER (0x1 << 18) // Filled and lines. #define MASK_START_HOLE_N (0x1 << 17) // N boundary of EXISTS, E to W, filled only. #define MASK_ANY_START (MASK_START_N | MASK_START_E | MASK_START_BOUNDARY_N | MASK_START_BOUNDARY_E | MASK_START_BOUNDARY_S | MASK_START_BOUNDARY_W | MASK_START_HOLE_N | MASK_START_CORNER) #define MASK_LOOK_N (0x1 << 19) #define MASK_LOOK_S (0x1 << 20) #define MASK_NO_STARTS_IN_ROW (0x1 << 21) #define MASK_NO_MORE_STARTS (0x1 << 22) // Accessors for various CacheItem masks. #define Z_LEVEL(quad) (_cache[quad] & MASK_Z_LEVEL) #define Z_NE Z_LEVEL(POINT_NE) #define Z_NW Z_LEVEL(POINT_NW) #define Z_SE Z_LEVEL(POINT_SE) #define Z_SW Z_LEVEL(POINT_SW) #define MIDDLE_Z_LEVEL(quad) ((_cache[quad] & MASK_MIDDLE) >> 2) #define BOUNDARY_E(quad) (_cache[quad] & MASK_BOUNDARY_E) #define BOUNDARY_N(quad) (_cache[quad] & MASK_BOUNDARY_N) #define BOUNDARY_S(quad) (_cache[quad-_nx] & MASK_BOUNDARY_N) #define BOUNDARY_W(quad) (_cache[quad-1] & MASK_BOUNDARY_E) #define EXISTS_QUAD(quad) (_cache[quad] & MASK_EXISTS_QUAD) #define EXISTS_NE_CORNER(quad) (_cache[quad] & MASK_EXISTS_NE_CORNER) #define EXISTS_NW_CORNER(quad) (_cache[quad] & MASK_EXISTS_NW_CORNER) #define EXISTS_SE_CORNER(quad) (_cache[quad] & MASK_EXISTS_SE_CORNER) #define EXISTS_SW_CORNER(quad) (_cache[quad] & MASK_EXISTS_SW_CORNER) #define EXISTS_ANY(quad) (_cache[quad] & MASK_EXISTS_ANY) #define EXISTS_ANY_CORNER(quad) (_cache[quad] & MASK_EXISTS_ANY_CORNER) #define EXISTS_E_EDGE(quad) (_cache[quad] & (MASK_EXISTS_QUAD | MASK_EXISTS_NE_CORNER | MASK_EXISTS_SE_CORNER)) #define EXISTS_N_EDGE(quad) (_cache[quad] & (MASK_EXISTS_QUAD | MASK_EXISTS_NW_CORNER | MASK_EXISTS_NE_CORNER)) #define EXISTS_S_EDGE(quad) (_cache[quad] & (MASK_EXISTS_QUAD | MASK_EXISTS_SW_CORNER | MASK_EXISTS_SE_CORNER)) #define EXISTS_W_EDGE(quad) (_cache[quad] & (MASK_EXISTS_QUAD | MASK_EXISTS_NW_CORNER | MASK_EXISTS_SW_CORNER)) // Note that EXISTS_NE_CORNER(quad) is equivalent to BOUNDARY_SW(quad), etc. #define START_E(quad) (_cache[quad] & MASK_START_E) #define START_N(quad) (_cache[quad] & MASK_START_N) #define START_BOUNDARY_E(quad) (_cache[quad] & MASK_START_BOUNDARY_E) #define START_BOUNDARY_N(quad) (_cache[quad] & MASK_START_BOUNDARY_N) #define START_BOUNDARY_S(quad) (_cache[quad] & MASK_START_BOUNDARY_S) #define START_BOUNDARY_W(quad) (_cache[quad] & MASK_START_BOUNDARY_W) #define START_CORNER(quad) (_cache[quad] & MASK_START_CORNER) #define START_HOLE_N(quad) (_cache[quad] & MASK_START_HOLE_N) #define ANY_START(quad) ((_cache[quad] & MASK_ANY_START) != 0) #define LOOK_N(quad) (_cache[quad] & MASK_LOOK_N) #define LOOK_S(quad) (_cache[quad] & MASK_LOOK_S) #define NO_STARTS_IN_ROW(quad) (_cache[quad] & MASK_NO_STARTS_IN_ROW) #define NO_MORE_STARTS(quad) (_cache[quad] & MASK_NO_MORE_STARTS) // Contour line/fill goes to the left or right of quad middle (quad_as_tri only). #define LEFT_OF_MIDDLE(quad, is_upper) (MIDDLE_Z_LEVEL(quad) == (is_upper ? 2 : 0)) template <typename Derived> BaseContourGenerator<Derived>::BaseContourGenerator( const CoordinateArray& x, const CoordinateArray& y, const CoordinateArray& z, const MaskArray& mask, bool corner_mask, LineType line_type, FillType fill_type, bool quad_as_tri, ZInterp z_interp, index_t x_chunk_size, index_t y_chunk_size) : _x(x), _y(y), _z(z), _xptr(_x.data()), _yptr(_y.data()), _zptr(_z.data()), _nx(_z.ndim() > 1 ? _z.shape(1) : 0), _ny(_z.ndim() > 0 ? _z.shape(0) : 0), _n(_nx*_ny), _x_chunk_size(x_chunk_size > 0 ? std::min(x_chunk_size, _nx-1) : _nx-1), _y_chunk_size(y_chunk_size > 0 ? std::min(y_chunk_size, _ny-1) : _ny-1), _nx_chunks(static_cast<index_t>(std::ceil((_nx-1.0) / _x_chunk_size))), _ny_chunks(static_cast<index_t>(std::ceil((_ny-1.0) / _y_chunk_size))), _n_chunks(_nx_chunks*_ny_chunks), _corner_mask(corner_mask), _line_type(line_type), _fill_type(fill_type), _quad_as_tri(quad_as_tri), _z_interp(z_interp), _cache(new CacheItem[_n]), _filled(false), _lower_level(0.0), _upper_level(0.0), _identify_holes(false), _output_chunked(false), _direct_points(false), _direct_line_offsets(false), _direct_outer_offsets(false), _outer_offsets_into_points(false), _return_list_count(0) { if (_x.ndim() != 2 || _y.ndim() != 2 || _z.ndim() != 2) throw std::invalid_argument("x, y and z must all be 2D arrays"); if (_x.shape(1) != _nx || _x.shape(0) != _ny || _y.shape(1) != _nx || _y.shape(0) != _ny) throw std::invalid_argument("x, y and z arrays must have the same shape"); if (_nx < 2 || _ny < 2) throw std::invalid_argument("x, y and z must all be at least 2x2 arrays"); if (mask.ndim() != 0) { // ndim == 0 if mask is not set, which is valid. if (mask.ndim() != 2) throw std::invalid_argument("mask array must be a 2D array"); if (mask.shape(1) != _nx || mask.shape(0) != _ny) throw std::invalid_argument( "If mask is set it must be a 2D array with the same shape as z"); } if (!supports_line_type(line_type)) throw std::invalid_argument("Unsupported LineType"); if (!supports_fill_type(fill_type)) throw std::invalid_argument("Unsupported FillType"); if (x_chunk_size < 0 || y_chunk_size < 0) throw std::invalid_argument("chunk_sizes cannot be negative"); init_cache_grid(mask); } template <typename Derived> BaseContourGenerator<Derived>::~BaseContourGenerator() { delete [] _cache; } template <typename Derived> double BaseContourGenerator<Derived>::calc_middle_z(index_t quad) const { assert(quad >= 0 && quad < _n); switch (_z_interp) { case ZInterp::Log: return exp(0.25*(log(get_point_z(POINT_SW)) + log(get_point_z(POINT_SE)) + log(get_point_z(POINT_NW)) + log(get_point_z(POINT_NE)))); default: // ZInterp::Linear return 0.25*(get_point_z(POINT_SW) + get_point_z(POINT_SE) + get_point_z(POINT_NW) + get_point_z(POINT_NE)); } } template <typename Derived> typename BaseContourGenerator<Derived>::ZLevel BaseContourGenerator<Derived>::calc_and_set_middle_z_level(index_t quad) { ZLevel zlevel = z_to_zlevel(calc_middle_z(quad)); _cache[quad] |= (zlevel << 2); return zlevel; } template <typename Derived> void BaseContourGenerator<Derived>::closed_line( const Location& start_location, OuterOrHole outer_or_hole, ChunkLocal& local) { assert(is_quad_in_chunk(start_location.quad, local)); Location location = start_location; bool finished = false; count_t point_count = 0; if (outer_or_hole == Hole && local.pass == 0 && _identify_holes) set_look_flags(start_location.quad); while (!finished) { if (location.on_boundary) finished = follow_boundary(location, start_location, local, point_count); else finished = follow_interior(location, start_location, local, point_count); location.on_boundary = !location.on_boundary; } if (local.pass > 0) { assert(local.line_offsets.current = local.line_offsets.start + local.line_count); *local.line_offsets.current++ = local.total_point_count; if (outer_or_hole == Outer && _identify_holes) { assert(local.outer_offsets.current == local.outer_offsets.start + local.line_count - local.hole_count); if (_outer_offsets_into_points) *local.outer_offsets.current++ = local.total_point_count; else *local.outer_offsets.current++ = local.line_count; } } local.total_point_count += point_count; local.line_count++; if (outer_or_hole == Hole) local.hole_count++; } template <typename Derived> void BaseContourGenerator<Derived>::closed_line_wrapper( const Location& start_location, OuterOrHole outer_or_hole, ChunkLocal& local) { assert(is_quad_in_chunk(start_location.quad, local)); if (local.pass == 0 || !_identify_holes) { closed_line(start_location, outer_or_hole, local); } else { assert(outer_or_hole == Outer); local.look_up_quads.clear(); closed_line(start_location, outer_or_hole, local); for (py::size_t i = 0; i < local.look_up_quads.size(); ++i) { // Note that the collection can increase in size during this loop. index_t quad = local.look_up_quads[i]; // Walk N to corresponding look S flag is reached. quad = find_look_S(quad); // Only 3 possible types of hole start: START_E, START_HOLE_N or START_CORNER for SW // corner. if (START_E(quad)) { closed_line(Location(quad, -1, -_nx, Z_NE > 0, false), Hole, local); } else if (START_HOLE_N(quad)) { closed_line(Location(quad, -1, -_nx, false, true), Hole, local); } else { assert(START_CORNER(quad) && EXISTS_SW_CORNER(quad)); closed_line(Location(quad, _nx-1, -_nx-1, false, true), Hole, local); } } } } template <typename Derived> FillType BaseContourGenerator<Derived>::default_fill_type() { FillType fill_type = FillType::OuterCodes; assert(supports_fill_type(fill_type)); return fill_type; } template <typename Derived> LineType BaseContourGenerator<Derived>::default_line_type() { LineType line_type = LineType::SeparateCodes; assert(supports_line_type(line_type)); return line_type; } template <typename Derived> void BaseContourGenerator<Derived>::export_filled( ChunkLocal& local, std::vector<py::list>& return_lists) { assert(local.total_point_count > 0); switch (_fill_type) { case FillType::OuterCodes: case FillType::OuterOffsets: { assert(!_direct_points && !_direct_line_offsets); auto outer_count = local.line_count - local.hole_count; typename Derived::Lock lock(static_cast<Derived&>(*this)); for (decltype(outer_count) i = 0; i < outer_count; ++i) { auto outer_start = local.outer_offsets.start[i]; auto outer_end = local.outer_offsets.start[i+1]; auto point_start = local.line_offsets.start[outer_start]; auto point_end = local.line_offsets.start[outer_end]; auto point_count = point_end - point_start; assert(point_count > 2); return_lists[0].append(Converter::convert_points( point_count, local.points.start + 2*point_start)); if (_fill_type == FillType::OuterCodes) return_lists[1].append(Converter::convert_codes( point_count, outer_end - outer_start + 1, local.line_offsets.start + outer_start, point_start)); else return_lists[1].append(Converter::convert_offsets( outer_end - outer_start + 1, local.line_offsets.start + outer_start, point_start)); } break; } case FillType::ChunkCombinedCodes: case FillType::ChunkCombinedCodesOffsets: { assert(_direct_points && !_direct_line_offsets); typename Derived::Lock lock(static_cast<Derived&>(*this)); // return_lists[0][local_chunk] already contains combined points. // If ChunkCombinedCodesOffsets. return_lists[2][local.chunk] already contains outer // offsets. return_lists[1][local.chunk] = Converter::convert_codes( local.total_point_count, local.line_count + 1, local.line_offsets.start); break; } case FillType::ChunkCombinedOffsets: case FillType::ChunkCombinedOffsets2: assert(_direct_points && _direct_line_offsets); if (_fill_type == FillType::ChunkCombinedOffsets2) { assert(_direct_outer_offsets); } // return_lists[0][local_chunk] already contains combined points. // return_lists[1][local.chunk] already contains line offsets. // If ChunkCombinedOffsets2, return_lists[2][local.chunk] already contains // outer offsets. break; } } template <typename Derived> void BaseContourGenerator<Derived>::export_lines( ChunkLocal& local, std::vector<py::list>& return_lists) { assert(local.total_point_count > 0); switch (_line_type) { case LineType::Separate: case LineType::SeparateCodes: { assert(!_direct_points && !_direct_line_offsets); typename Derived::Lock lock(static_cast<Derived&>(*this)); for (decltype(local.line_count) i = 0; i < local.line_count; ++i) { auto point_start = local.line_offsets.start[i]; auto point_end = local.line_offsets.start[i+1]; auto point_count = point_end - point_start; assert(point_count > 1); return_lists[0].append(Converter::convert_points( point_count, local.points.start + 2*point_start)); if (_line_type == LineType::SeparateCodes) return_lists[1].append( Converter::convert_codes_check_closed_single( point_count, local.points.start + 2*point_start)); } break; } case LineType::ChunkCombinedCodes: { assert(_direct_points && !_direct_line_offsets); typename Derived::Lock lock(static_cast<Derived&>(*this)); // return_lists[0][local.chunk] already contains points. return_lists[1][local.chunk] = Converter::convert_codes_check_closed( local.total_point_count, local.line_count + 1, local.line_offsets.start, local.points.start); break; } case LineType::ChunkCombinedOffsets: assert(_direct_points && _direct_line_offsets); // return_lists[0][local.chunk] already contains points. // return_lists[1][local.chunk] already contains line offsets. break; } } template <typename Derived> py::sequence BaseContourGenerator<Derived>::filled(double lower_level, double upper_level) { if (lower_level > upper_level) throw std::invalid_argument("upper and lower levels are the wrong way round"); _filled = true; _lower_level = lower_level; _upper_level = upper_level; _identify_holes = !(_fill_type == FillType::ChunkCombinedCodes || _fill_type == FillType::ChunkCombinedOffsets); _output_chunked = !(_fill_type == FillType::OuterCodes || _fill_type == FillType::OuterOffsets); _direct_points = _output_chunked; _direct_line_offsets = (_fill_type == FillType::ChunkCombinedOffsets || _fill_type == FillType::ChunkCombinedOffsets2); _direct_outer_offsets = (_fill_type == FillType::ChunkCombinedCodesOffsets || _fill_type == FillType::ChunkCombinedOffsets2); _outer_offsets_into_points = (_fill_type == FillType::ChunkCombinedCodesOffsets); _return_list_count = (_fill_type == FillType::ChunkCombinedCodesOffsets || _fill_type == FillType::ChunkCombinedOffsets2) ? 3 : 2; return static_cast<Derived*>(this)->march_wrapper(); } template <typename Derived> index_t BaseContourGenerator<Derived>::find_look_S(index_t look_N_quad) const { assert(_identify_holes); // Might need to be careful when looking in the same quad as the LOOK_UP. index_t quad = look_N_quad; // look_S quad must have 1 of only 3 possible types of hole start (START_E, START_HOLE_N, // START_CORNER for SW corner) but it may have other starts as well. // Start quad may be both a look_N and look_S quad. Only want to stop search here if look_S // hole start is N of look_N. if (!LOOK_S(quad)) { do { quad += _nx; assert(quad >= 0 && quad < _n); assert(EXISTS_ANY(quad)); } while (!LOOK_S(quad)); } return quad; } template <typename Derived> bool BaseContourGenerator<Derived>::follow_boundary( Location& location, const Location& start_location, ChunkLocal& local, count_t& point_count) { // forward values for boundaries: // -1 = N boundary, E to W. // 1 = S boundary, W to E. // -_nx = W boundary, N to S. // _nx = E boundary, S to N. // -_nx+1 = NE corner, NW to SE. // _nx+1 = NW corner, SW to NE. // -_nx-1 = SE corner, NE to SW. // _nx-1 = SW corner, SE to NW. assert(is_quad_in_chunk(start_location.quad, local)); assert(is_quad_in_chunk(location.quad, local)); // Local variables for faster access. auto quad = location.quad; auto forward = location.forward; auto left = location.left; auto start_quad = start_location.quad; auto start_forward = start_location.forward; auto start_left = start_location.left; auto pass = local.pass; double*& points = local.points.current; auto start_point = get_boundary_start_point(location); auto end_point = start_point + forward; assert(is_point_in_chunk(start_point, local)); assert(is_point_in_chunk(end_point, local)); auto start_z = Z_LEVEL(start_point); auto end_z = Z_LEVEL(end_point); // Add new point, somewhere along start line. May be at start point of edge if this is a // boundary start. point_count++; if (pass > 0) { if (start_z == 1) get_point_xy(start_point, points); else // start_z != 1 interp(start_point, end_point, location.is_upper, points); } bool finished = false; while (true) { assert(is_quad_in_chunk(quad, local)); if (quad == start_quad && forward == start_forward && left == start_left) { if (start_location.on_boundary && point_count > 1) { // Polygon closed. finished = true; break; } } else if (pass == 0) { // Clear unwanted start locations. if (left == _nx) { if (START_BOUNDARY_S(quad)) { assert(forward == 1); _cache[quad] &= ~MASK_START_BOUNDARY_S; } } else if (forward == -_nx) { if (START_BOUNDARY_W(quad)) { assert(left == 1); _cache[quad] &= ~MASK_START_BOUNDARY_W; } } else if (left == -_nx) { if (START_HOLE_N(quad)) { assert(forward == -1); _cache[quad] &= ~MASK_START_HOLE_N; } } else { switch (EXISTS_ANY_CORNER(quad)) { case MASK_EXISTS_NE_CORNER: if (left == _nx+1) { assert(forward == -_nx+1); _cache[quad] &= ~MASK_START_CORNER; } break; case MASK_EXISTS_NW_CORNER: if (forward == _nx+1) { assert(left == _nx-1); _cache[quad] &= ~MASK_START_CORNER; } break; case MASK_EXISTS_SE_CORNER: if (forward == -_nx-1) { assert(left == -_nx+1); _cache[quad] &= ~MASK_START_CORNER; } break; case MASK_EXISTS_SW_CORNER: if (left == -_nx-1) { assert(forward == _nx-1); _cache[quad] &= ~MASK_START_CORNER; } break; default: // Not a corner. break; } } } // Check if need to leave boundary into interior. if (end_z != 1) { location.is_upper = (end_z == 2); // Leave via this level. auto temp = forward; forward = left; left = -temp; break; } // Add end point. point_count++; if (pass > 0) { get_point_xy(end_point, points); if (LOOK_N(quad) && _identify_holes && (left == _nx || left == _nx+1 || forward == _nx+1)) { assert(BOUNDARY_N(quad-_nx) || EXISTS_NE_CORNER(quad) || EXISTS_NW_CORNER(quad)); local.look_up_quads.push_back(quad); } } move_to_next_boundary_edge(quad, forward, left); start_point = end_point; start_z = end_z; end_point = start_point + forward; end_z = Z_LEVEL(end_point); } location.quad = quad; location.forward = forward; location.left = left; return finished; } template <typename Derived> bool BaseContourGenerator<Derived>::follow_interior( Location& location, const Location& start_location, ChunkLocal& local, count_t& point_count) { // Adds the start point in each quad visited, but not the end point unless closing the polygon. // Only need to consider a single level of course. assert(is_quad_in_chunk(start_location.quad, local)); assert(is_quad_in_chunk(location.quad, local)); // Local variables for faster access. auto quad = location.quad; auto forward = location.forward; auto left = location.left; auto is_upper = location.is_upper; auto start_quad = start_location.quad; auto start_forward = start_location.forward; auto start_left = start_location.left; auto pass = local.pass; double*& points = local.points.current; // left direction, and indices of points on entry edge. bool start_corner_diagonal = false; auto left_point = get_interior_start_left_point(location, start_corner_diagonal); auto right_point = left_point - left; bool want_look_N = _identify_holes && pass > 0; bool finished = false; // Whether finished line, i.e. returned to start. while (true) { assert(is_quad_in_chunk(quad, local)); assert(is_point_in_chunk(left_point, local)); assert(is_point_in_chunk(right_point, local)); if (pass > 0) interp(left_point, right_point, is_upper, points); point_count++; if (quad == start_quad && forward == start_forward && left == start_left && is_upper == start_location.is_upper && !start_location.on_boundary && point_count > 1) { finished = true; // Polygon closed, exit immediately. break; } // Indices of the opposite points. auto opposite_left_point = left_point + forward; auto opposite_right_point = right_point + forward; bool corner_opposite_is_right = false; // Only used for corners. if (start_corner_diagonal) { // To avoid dealing with diagonal forward and left below, switch to direction 45 degrees // to left, e.g. NW corner faces west using forward == -1. corner_opposite_is_right = true; switch (EXISTS_ANY_CORNER(quad)) { case MASK_EXISTS_NW_CORNER: forward = -1; left = -_nx; opposite_left_point = opposite_right_point = quad-1; break; case MASK_EXISTS_NE_CORNER: forward = _nx; left = -1; opposite_left_point = opposite_right_point = quad; break; case MASK_EXISTS_SW_CORNER: forward = -_nx; left = 1; opposite_left_point = opposite_right_point = quad-_nx-1; break; default: assert(EXISTS_SE_CORNER(quad)); forward = 1; left = _nx; opposite_left_point = opposite_right_point = quad-_nx; break; } } // z-levels of the opposite points. ZLevel z_opposite_left = Z_LEVEL(opposite_left_point); ZLevel z_opposite_right = Z_LEVEL(opposite_right_point); Direction direction = Direction::Right; ZLevel z_test = is_upper ? 2 : 0; if (EXISTS_QUAD(quad)) { if (z_opposite_left == z_test) { if (z_opposite_right == z_test || MIDDLE_Z_LEVEL(quad) == z_test) direction = Direction::Left; } else if (z_opposite_right == z_test) direction = Direction::Straight; } else if (start_corner_diagonal) { direction = (z_opposite_left == z_test) ? Direction::Straight : Direction::Right; } else { switch (EXISTS_ANY_CORNER(quad)) { case MASK_EXISTS_NW_CORNER: corner_opposite_is_right = (forward == -_nx); break; case MASK_EXISTS_NE_CORNER: corner_opposite_is_right = (forward == -1); break; case MASK_EXISTS_SW_CORNER: corner_opposite_is_right = (forward == 1); break; default: assert(EXISTS_SE_CORNER(quad)); corner_opposite_is_right = (forward == _nx); break; } if (corner_opposite_is_right) direction = (z_opposite_right == z_test) ? Direction::Straight : Direction::Right; else direction = (z_opposite_left == z_test) ? Direction::Left : Direction::Straight; } // Clear unwanted start locations. if (pass == 0 && !(quad == start_quad && forward == start_forward && left == start_left)) { if (START_E(quad) && forward == -1 && left == -_nx && direction == Direction::Right && (is_upper ? Z_NE > 0 : Z_NE < 2)) { _cache[quad] &= ~MASK_START_E; // E high if is_upper else low. if (!_filled && quad < start_location.quad) // Already counted points from here onwards. break; } else if (START_N(quad) && forward == -_nx && left == 1 && direction == Direction::Left && (is_upper ? Z_NW > 0 : Z_NW < 2)) { _cache[quad] &= ~MASK_START_N; // E high if is_upper else low. if (!_filled && quad < start_location.quad) // Already counted points from here onwards. break; } } // Extra quad_as_tri points. if (_quad_as_tri && EXISTS_QUAD(quad)) { if (pass == 0) { switch (direction) { case Direction::Left: point_count += (LEFT_OF_MIDDLE(quad, is_upper) ? 1 : 3); break; case Direction::Right: point_count += (LEFT_OF_MIDDLE(quad, is_upper) ? 3 : 1); break; case Direction::Straight: point_count += 2; break; } } else { // pass == 1 auto mid_x = get_middle_x(quad); auto mid_y = get_middle_y(quad); auto mid_z = calc_middle_z(quad); switch (direction) { case Direction::Left: if (LEFT_OF_MIDDLE(quad, is_upper)) { interp(left_point, mid_x, mid_y, mid_z, is_upper, points); point_count++; } else { interp(right_point, mid_x, mid_y, mid_z, is_upper, points); interp(opposite_right_point, mid_x, mid_y, mid_z, is_upper, points); interp(opposite_left_point, mid_x, mid_y, mid_z, is_upper, points); point_count += 3; } break; case Direction::Right: if (LEFT_OF_MIDDLE(quad, is_upper)) { interp(left_point, mid_x, mid_y, mid_z, is_upper, points); interp(opposite_left_point, mid_x, mid_y, mid_z, is_upper, points); interp(opposite_right_point, mid_x, mid_y, mid_z, is_upper, points); point_count += 3; } else { interp(right_point, mid_x, mid_y, mid_z, is_upper, points); point_count++; } break; case Direction::Straight: if (LEFT_OF_MIDDLE(quad, is_upper)) { interp(left_point, mid_x, mid_y, mid_z, is_upper, points); interp(opposite_left_point, mid_x, mid_y, mid_z, is_upper, points); } else { interp(right_point, mid_x, mid_y, mid_z, is_upper, points); interp(opposite_right_point, mid_x, mid_y, mid_z, is_upper, points); } point_count += 2; break; } } } bool reached_boundary = false; // Determine entry edge and left and right points of next quad. // Do not update quad index yet. switch (direction) { case Direction::Left: { auto temp = forward; forward = left; left = -temp; // left_point unchanged. right_point = opposite_left_point; break; } case Direction::Right: { auto temp = forward; forward = -left; left = temp; left_point = opposite_right_point; // right_point unchanged. break; } case Direction::Straight: { if (EXISTS_QUAD(quad)) { // Straight on in quad. // forward and left stay the same. left_point = opposite_left_point; right_point = opposite_right_point; } else if (start_corner_diagonal) { // Straight on diagonal start corner. // left point unchanged. right_point = opposite_right_point; } else { // Straight on in a corner reaches boundary. assert(EXISTS_ANY_CORNER(quad)); reached_boundary = true; if (corner_opposite_is_right) { // left_point unchanged. right_point = opposite_right_point; } else { left_point = opposite_left_point; // right_point unchanged. } // Set forward and left for correct exit along boundary. switch (EXISTS_ANY_CORNER(quad)) { case MASK_EXISTS_NW_CORNER: forward = _nx+1; left = _nx-1; break; case MASK_EXISTS_NE_CORNER: forward = -_nx+1; left = _nx+1; break; case MASK_EXISTS_SW_CORNER: forward = _nx-1; left = -_nx-1; break; default: assert(EXISTS_SE_CORNER(quad)); forward = -_nx-1; left = -_nx+1; break; } } break; } } if (want_look_N && LOOK_N(quad) && forward == 1) { // Only consider look_N if pass across E edge of this quad. // Care needed if both look_N and look_S set in quad because this line corresponds to // only one of them, so want to ignore the look_N if it is the other line otherwise it // will be double counted. if (!LOOK_S(quad) || (is_upper ? Z_NE < 2 : Z_NE > 0)) local.look_up_quads.push_back(quad); } // Check if reached NSEW boundary; already checked and noted if reached corner boundary. if (!reached_boundary) { if (forward > 0) reached_boundary = (forward == 1 ? BOUNDARY_E(quad) : BOUNDARY_N(quad)); else // forward < 0 reached_boundary = (forward == -1 ? BOUNDARY_W(quad) : BOUNDARY_S(quad)); if (reached_boundary) { auto temp = forward; forward = left; left = -temp; } } // If reached a boundary, return. if (reached_boundary) { if (!_filled) { point_count++; if (pass > 0) interp(left_point, right_point, false, points); } break; } quad += forward; start_corner_diagonal = false; } location.quad = quad; location.forward = forward; location.left = left; location.is_upper = is_upper; return finished; } template <typename Derived> index_t BaseContourGenerator<Derived>::get_boundary_start_point(const Location& location) const { auto quad = location.quad; auto forward = location.forward; auto left = location.left; index_t start_point = -1; if (forward > 0) { if (forward == _nx) { assert(left == -1); start_point = quad-_nx; } else if (left == _nx) { assert(forward == 1); start_point = quad-_nx-1; } else if (EXISTS_SW_CORNER(quad)) { assert(forward == _nx-1 && left == -_nx-1); start_point = quad-_nx; } else { assert(EXISTS_NW_CORNER(quad) && forward == _nx+1 && left == _nx-1); start_point = quad-_nx-1; } } else if (forward < 0) { if (forward == -_nx) { assert(left == 1); start_point = quad-1; } else if (left == -_nx) { assert(forward == -1); start_point = quad; } else if (EXISTS_NE_CORNER(quad)) { assert(forward == -_nx+1 && left == _nx+1); start_point = quad-1; } else { assert(EXISTS_SE_CORNER(quad) && forward == -_nx-1 && left == -_nx+1); start_point = quad; } } return start_point; } template <typename Derived> py::tuple BaseContourGenerator<Derived>::get_chunk_count() const { return py::make_tuple(_ny_chunks, _nx_chunks); } template <typename Derived> void BaseContourGenerator<Derived>::get_chunk_limits(index_t chunk, ChunkLocal& local) const { assert(chunk >= 0 && chunk < _n_chunks && "chunk index out of bounds"); local.chunk = chunk; auto ichunk = chunk % _nx_chunks; auto jchunk = chunk / _nx_chunks; local.istart = ichunk*_x_chunk_size + 1; local.iend = (ichunk < _nx_chunks-1 ? (ichunk+1)*_x_chunk_size : _nx-1); local.jstart = jchunk*_y_chunk_size + 1; local.jend = (jchunk < _ny_chunks-1 ? (jchunk+1)*_y_chunk_size : _ny-1); } template <typename Derived> py::tuple BaseContourGenerator<Derived>::get_chunk_size() const { return py::make_tuple(_y_chunk_size, _x_chunk_size); } template <typename Derived> bool BaseContourGenerator<Derived>::get_corner_mask() const { return _corner_mask; } template <typename Derived> FillType BaseContourGenerator<Derived>::get_fill_type() const { return _fill_type; } template <typename Derived> index_t BaseContourGenerator<Derived>::get_interior_start_left_point( const Location& location, bool& start_corner_diagonal) const { auto quad = location.quad; auto forward = location.forward; auto left = location.left; index_t left_point = -1; if (forward > 0) { if (forward == _nx) { assert(left == -1); left_point = quad-_nx-1; } else if (left == _nx) { assert(forward == 1); left_point = quad-1; } else if (EXISTS_NW_CORNER(quad)) { assert(forward == _nx-1 && left == -_nx-1); left_point = quad-_nx-1; start_corner_diagonal = true; } else { assert(EXISTS_NE_CORNER(quad) && forward == _nx+1 && left == _nx-1); left_point = quad-1; start_corner_diagonal = true; } } else { // forward < 0 if (forward == -_nx) { assert(left == 1); left_point = quad; } else if (left == -_nx) { assert(forward == -1); left_point = quad-_nx; } else if (EXISTS_SW_CORNER(quad)) { assert(forward == -_nx-1 && left == -_nx+1); left_point = quad-_nx; start_corner_diagonal = true; } else { assert(EXISTS_SE_CORNER(quad) && forward == -_nx+1 && left == _nx+1); left_point = quad; start_corner_diagonal = true; } } return left_point; } template <typename Derived> double BaseContourGenerator<Derived>::get_interp_fraction(double z0, double z1, double level) const { switch (_z_interp) { case ZInterp::Log: // Equivalent to // (log(z1) - log(level)) / (log(z1) - log(z0)) // Same result obtained regardless of logarithm base. return log(z1/level) / log(z1/z0); default: // ZInterp::Linear return (z1 - level) / (z1 - z0); } } template <typename Derived> LineType BaseContourGenerator<Derived>::get_line_type() const { return _line_type; } template <typename Derived> double BaseContourGenerator<Derived>::get_middle_x(index_t quad) const { return 0.25*(get_point_x(POINT_SW) + get_point_x(POINT_SE) + get_point_x(POINT_NW) + get_point_x(POINT_NE)); } template <typename Derived> double BaseContourGenerator<Derived>::get_middle_y(index_t quad) const { return 0.25*(get_point_y(POINT_SW) + get_point_y(POINT_SE) + get_point_y(POINT_NW) + get_point_y(POINT_NE)); } template <typename Derived> index_t BaseContourGenerator<Derived>::get_n_chunks() const { return _n_chunks; } template <typename Derived> void BaseContourGenerator<Derived>::get_point_xy(index_t point, double*& points) const { assert(point >= 0 && point < _n && "point index out of bounds"); *points++ = _xptr[point]; *points++ = _yptr[point]; } template <typename Derived> double BaseContourGenerator<Derived>::get_point_x(index_t point) const { assert(point >= 0 && point < _n && "point index out of bounds"); return _xptr[point]; } template <typename Derived> double BaseContourGenerator<Derived>::get_point_y(index_t point) const { assert(point >= 0 && point < _n && "point index out of bounds"); return _yptr[point]; } template <typename Derived> double BaseContourGenerator<Derived>::get_point_z(index_t point) const { assert(point >= 0 && point < _n && "point index out of bounds"); return _zptr[point]; } template <typename Derived> bool BaseContourGenerator<Derived>::get_quad_as_tri() const { return _quad_as_tri; } template <typename Derived> void BaseContourGenerator<Derived>::init_cache_grid(const MaskArray& mask) { index_t i, j, quad; if (mask.ndim() == 0) { // No mask, easy to calculate quad existence and boundaries together. for (j = 0, quad = 0; j < _ny; ++j) { for (i = 0; i < _nx; ++i, ++quad) { _cache[quad] = 0; if (i > 0 && j > 0) _cache[quad] |= MASK_EXISTS_QUAD; if ((i % _x_chunk_size == 0 || i == _nx-1) && j > 0) _cache[quad] |= MASK_BOUNDARY_E; if ((j % _y_chunk_size == 0 || j == _ny-1) && i > 0) _cache[quad] |= MASK_BOUNDARY_N; } } } else { // Could maybe speed this up and just have a single pass. // Care would be needed with lookback of course. const bool* mask_ptr = mask.data(); // Have mask so use two stages. // Stage 1, determine if quads/corners exist. quad = 0; for (j = 0; j < _ny; ++j) { for (i = 0; i < _nx; ++i, ++quad) { _cache[quad] = 0; if (i > 0 && j > 0) { unsigned int config = (mask_ptr[POINT_NW] << 3) | (mask_ptr[POINT_NE] << 2) | (mask_ptr[POINT_SW] << 1) | (mask_ptr[POINT_SE] << 0); if (_corner_mask) { switch (config) { case 0: _cache[quad] = MASK_EXISTS_QUAD; break; case 1: _cache[quad] = MASK_EXISTS_NW_CORNER; break; case 2: _cache[quad] = MASK_EXISTS_NE_CORNER; break; case 4: _cache[quad] = MASK_EXISTS_SW_CORNER; break; case 8: _cache[quad] = MASK_EXISTS_SE_CORNER; break; default: // Do nothing, quad is masked out. break; } } else if (config == 0) _cache[quad] = MASK_EXISTS_QUAD; } } } // Stage 2, calculate N and E boundaries. quad = 0; for (j = 0; j < _ny; ++j) { bool j_chunk_boundary = j % _y_chunk_size == 0; for (i = 0; i < _nx; ++i, ++quad) { bool i_chunk_boundary = i % _x_chunk_size == 0; if (_corner_mask) { bool exists_E_edge = EXISTS_E_EDGE(quad); bool E_exists_W_edge = (i < _nx-1 && EXISTS_W_EDGE(quad+1)); bool exists_N_edge = EXISTS_N_EDGE(quad); bool N_exists_S_edge = (j < _ny-1 && EXISTS_S_EDGE(quad+_nx)); if (exists_E_edge != E_exists_W_edge || (i_chunk_boundary && exists_E_edge && E_exists_W_edge)) _cache[quad] |= MASK_BOUNDARY_E; if (exists_N_edge != N_exists_S_edge || (j_chunk_boundary && exists_N_edge && N_exists_S_edge)) _cache[quad] |= MASK_BOUNDARY_N; } else { bool E_exists_quad = (i < _nx-1 && EXISTS_QUAD(quad+1)); bool N_exists_quad = (j < _ny-1 && EXISTS_QUAD(quad+_nx)); bool exists = EXISTS_QUAD(quad); if (exists != E_exists_quad || (i_chunk_boundary && exists && E_exists_quad)) _cache[quad] |= MASK_BOUNDARY_E; if (exists != N_exists_quad || (j_chunk_boundary && exists && N_exists_quad)) _cache[quad] |= MASK_BOUNDARY_N; } } } } } template <typename Derived> void BaseContourGenerator<Derived>::init_cache_levels_and_starts(const ChunkLocal* local) { bool ordered_chunks = (local == nullptr); // This function initialises the cache z-levels and starts for either a single chunk or the // whole domain. If a single chunk, only the quads contained in the chunk are calculated and // this includes the z-levels of the points that on the NE corners of those quads. In addition, // chunks that are on the W (starting at i=1) also calculate the most westerly points (i=0), // and similarly chunks that are on the S (starting at j=1) also calculate the most southerly // points (j=0). Non W/S chunks do not do this as their neighboring chunks to the W/S are // responsible for it. If ordered_chunks is true then those W/S points will already have had // their cache items set so that their z-levels can be read from the cache as usual. But if // ordered_chunks is false then we cannot rely upon those neighboring W/S points having their // cache items already set and so must temporarily calculate those z-levels rather than reading // the cache. constexpr CacheItem keep_mask = (MASK_EXISTS_ANY | MASK_BOUNDARY_N | MASK_BOUNDARY_E); index_t istart, iend, jstart, jend; // Loop indices. index_t chunk_istart; // Actual start i-index of chunk. if (local != nullptr) { chunk_istart = local->istart; istart = chunk_istart > 1 ? chunk_istart : 0; iend = local->iend; jstart = local->jstart > 1 ? local->jstart : 0; jend = local->jend; } else { chunk_istart = 1; istart = 0; iend = _nx-1; jstart = 0; jend = _ny-1; } index_t j_final_start = jstart - 1; bool calc_W_z_level = (!ordered_chunks && istart == chunk_istart); for (index_t j = jstart; j <= jend; ++j) { index_t quad = istart + j*_nx; const double* z_ptr = _zptr + quad; bool start_in_row = false; bool calc_S_z_level = (!ordered_chunks && j == jstart); // z-level of NW point not needed if i == 0. ZLevel z_nw = (istart == 0) ? 0 : (calc_W_z_level ? z_to_zlevel(*(z_ptr-1)) : Z_NW); // z-level of SW point not needed if i == 0 or j == 0. ZLevel z_sw = (istart == 0 || j == 0) ? 0 : ((calc_W_z_level || calc_S_z_level) ? z_to_zlevel(*(z_ptr-_nx-1)) : Z_SW); for (index_t i = istart; i <= iend; ++i, ++quad, ++z_ptr) { // z-level of SE point not needed if j == 0. ZLevel z_se = (j == 0) ? 0 : (calc_S_z_level ? z_to_zlevel(*(z_ptr-_nx)) : Z_SE); _cache[quad] &= keep_mask; // Calculate and cache z-level of NE point. ZLevel z_ne = z_to_zlevel(*z_ptr); _cache[quad] |= z_ne; switch (EXISTS_ANY(quad)) { case MASK_EXISTS_QUAD: if (_filled) { switch ((z_nw << 6) | (z_ne << 4) | (z_sw << 2) | z_se) { // config case 1: // 0001 case 2: // 0002 case 17: // 0101 case 18: // 0102 case 34: // 0202 case 68: // 1010 case 102: // 1212 case 136: // 2020 case 152: // 2120 case 153: // 2121 case 168: // 2220 case 169: // 2221 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) { _cache[quad] |= MASK_START_BOUNDARY_S; start_in_row = true; } break; case 4: // 0010 case 5: // 0011 case 6: // 0012 case 8: // 0020 case 9: // 0021 case 21: // 0111 case 22: // 0112 case 25: // 0121 case 38: // 0212 case 72: // 1020 case 98: // 1202 case 132: // 2010 case 145: // 2101 case 148: // 2110 case 149: // 2111 case 161: // 2201 case 162: // 2202 case 164: // 2210 case 165: // 2211 case 166: // 2212 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; start_in_row |= ANY_START(quad); break; case 10: // 0022 case 26: // 0122 case 42: // 0222 case 64: // 1000 case 106: // 1222 case 128: // 2000 case 144: // 2100 case 160: // 2200 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_W(quad)) { _cache[quad] |= MASK_START_BOUNDARY_W; start_in_row = true; } break; case 16: // 0100 case 154: // 2122 if (_quad_as_tri) calc_and_set_middle_z_level(quad); _cache[quad] |= MASK_START_N; start_in_row = true; break; case 20: // 0110 case 24: // 0120 calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (MIDDLE_Z_LEVEL(quad) == 0) _cache[quad] |= MASK_START_N; start_in_row |= ANY_START(quad); break; case 32: // 0200 case 138: // 2022 if (_quad_as_tri) calc_and_set_middle_z_level(quad); _cache[quad] |= MASK_START_E; _cache[quad] |= MASK_START_N; start_in_row = true; break; case 33: // 0201 case 69: // 1011 case 70: // 1012 case 100: // 1210 case 101: // 1211 case 137: // 2021 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; _cache[quad] |= MASK_START_E; start_in_row = true; break; case 36: // 0210 calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (MIDDLE_Z_LEVEL(quad) == 0) _cache[quad] |= MASK_START_N; _cache[quad] |= MASK_START_E; start_in_row = true; break; case 37: // 0211 case 73: // 1021 case 97: // 1201 case 133: // 2011 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; _cache[quad] |= MASK_START_E; start_in_row = true; break; case 40: // 0220 calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (MIDDLE_Z_LEVEL(quad) < 2) _cache[quad] |= MASK_START_E; if (MIDDLE_Z_LEVEL(quad) == 0) _cache[quad] |= MASK_START_N; start_in_row |= ANY_START(quad); break; case 41: // 0221 case 104: // 1220 case 105: // 1221 calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (MIDDLE_Z_LEVEL(quad) < 2) _cache[quad] |= MASK_START_E; start_in_row |= ANY_START(quad); break; case 65: // 1001 case 66: // 1002 case 129: // 2001 calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (MIDDLE_Z_LEVEL(quad) > 0) _cache[quad] |= MASK_START_E; start_in_row |= ANY_START(quad); break; case 74: // 1022 case 96: // 1200 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; _cache[quad] |= MASK_START_E; start_in_row = true; break; case 80: // 1100 case 90: // 1122 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (BOUNDARY_N(quad) && !START_HOLE_N(quad-1) && j % _y_chunk_size > 0 && j != _ny-1 && i % _x_chunk_size > 1) _cache[quad] |= MASK_START_HOLE_N; start_in_row |= ANY_START(quad); break; case 81: // 1101 case 82: // 1102 case 88: // 1120 case 89: // 1121 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (BOUNDARY_N(quad) && !START_HOLE_N(quad-1) && j % _y_chunk_size > 0 && j != _ny-1 && i % _x_chunk_size > 1) _cache[quad] |= MASK_START_HOLE_N; start_in_row |= ANY_START(quad); break; case 84: // 1110 case 85: // 1111 case 86: // 1112 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_N(quad) && !START_HOLE_N(quad-1) && j % _y_chunk_size > 0 && j != _ny-1 && i % _x_chunk_size > 1) _cache[quad] |= MASK_START_HOLE_N; start_in_row |= ANY_START(quad); break; case 130: // 2002 calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (MIDDLE_Z_LEVEL(quad) > 0) _cache[quad] |= MASK_START_E; if (MIDDLE_Z_LEVEL(quad) == 2) _cache[quad] |= MASK_START_N; start_in_row |= ANY_START(quad); break; case 134: // 2012 calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (MIDDLE_Z_LEVEL(quad) == 2) _cache[quad] |= MASK_START_N; _cache[quad] |= MASK_START_E; start_in_row = true; break; case 146: // 2102 case 150: // 2112 calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (MIDDLE_Z_LEVEL(quad) == 2) _cache[quad] |= MASK_START_N; start_in_row |= ANY_START(quad); break; } } else { // !_filled quad switch ((z_nw << 3) | (z_ne << 2) | (z_sw << 1) | z_se) { // config case 1: // 0001 case 3: // 0011 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_E(quad)) { _cache[quad] |= MASK_START_BOUNDARY_E; start_in_row = true; } break; case 2: // 0010 case 10: // 1010 case 14: // 1110 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_S(quad)) { _cache[quad] |= MASK_START_BOUNDARY_S; start_in_row = true; } break; case 4: // 0100 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_N(quad)) _cache[quad] |= MASK_START_BOUNDARY_N; else if (!BOUNDARY_E(quad)) _cache[quad] |= MASK_START_N; start_in_row |= ANY_START(quad); break; case 5: // 0101 case 7: // 0111 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_N(quad)) { _cache[quad] |= MASK_START_BOUNDARY_N; start_in_row = true; } break; case 6: // 0110 calc_and_set_middle_z_level(quad); if (BOUNDARY_N(quad)) _cache[quad] |= MASK_START_BOUNDARY_N; else if (!BOUNDARY_E(quad) && MIDDLE_Z_LEVEL(quad) == 0) _cache[quad] |= MASK_START_N; if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; start_in_row |= ANY_START(quad); break; case 8: // 1000 case 12: // 1100 case 13: // 1101 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_W(quad)) { _cache[quad] |= MASK_START_BOUNDARY_W; start_in_row = true; } break; case 9: // 1001 calc_and_set_middle_z_level(quad); if (BOUNDARY_E(quad)) _cache[quad] |= MASK_START_BOUNDARY_E; else if (!BOUNDARY_N(quad) && MIDDLE_Z_LEVEL(quad) == 1) _cache[quad] |= MASK_START_E; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; start_in_row |= ANY_START(quad); break; case 11: // 1011 if (_quad_as_tri) calc_and_set_middle_z_level(quad); if (BOUNDARY_E(quad)) _cache[quad] |= MASK_START_BOUNDARY_E; else if (!BOUNDARY_N(quad)) _cache[quad] |= MASK_START_E; start_in_row |= ANY_START(quad); break; } } break; case MASK_EXISTS_NW_CORNER: if (_filled) { switch ((z_nw << 4) | (z_ne << 2) | z_sw) { // config case 1: // 001 case 5: // 011 case 9: // 021 case 10: // 022 case 16: // 100 case 17: // 101 case 25: // 121 case 26: // 122 case 32: // 200 case 33: // 201 case 37: // 211 case 41: // 221 if (BOUNDARY_W(quad)) { _cache[quad] |= MASK_START_BOUNDARY_W; start_in_row = true; } break; case 2: // 002 case 6: // 012 case 18: // 102 case 24: // 120 case 36: // 210 case 40: // 220 if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; case 4: // 010 case 8: // 020 case 34: // 202 case 38: // 212 _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; case 20: // 110 case 22: // 112 if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (BOUNDARY_N(quad) && !START_HOLE_N(quad-1) && j % _y_chunk_size > 0 && j != _ny-1 && i % _x_chunk_size > 1) _cache[quad] |= MASK_START_HOLE_N; _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; case 21: // 111 if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; if (BOUNDARY_N(quad) && !START_HOLE_N(quad-1) && j % _y_chunk_size > 0 && j != _ny-1 && i % _x_chunk_size > 1) _cache[quad] |= MASK_START_HOLE_N; start_in_row |= ANY_START(quad); break; } } else { // !_filled NW corner. switch ((z_nw << 2) | (z_ne << 1) | z_sw) { // config case 1: // 001 case 5: // 101 _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; case 2: // 010 case 3: // 011 if (BOUNDARY_N(quad)) { _cache[quad] |= MASK_START_BOUNDARY_N; start_in_row = true; } break; case 4: // 100 case 6: // 110 if (BOUNDARY_W(quad)) { _cache[quad] |= MASK_START_BOUNDARY_W; start_in_row = true; } break; } } break; case MASK_EXISTS_NE_CORNER: if (_filled) { switch ((z_nw << 4) | (z_ne << 2) | z_se) { // config case 1: // 001 case 2: // 002 case 5: // 011 case 6: // 012 case 10: // 022 case 16: // 100 case 26: // 122 case 32: // 200 case 36: // 210 case 37: // 211 case 40: // 220 case 41: // 221 _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; case 4: // 010 case 38: // 212 _cache[quad] |= MASK_START_N; start_in_row = true; break; case 8: // 020 case 34: // 202 _cache[quad] |= MASK_START_E; _cache[quad] |= MASK_START_N; start_in_row = true; break; case 9: // 021 case 17: // 101 case 18: // 102 case 24: // 120 case 25: // 121 case 33: // 201 _cache[quad] |= MASK_START_CORNER; _cache[quad] |= MASK_START_E; start_in_row = true; break; case 20: // 110 case 21: // 111 case 22: // 112 if (BOUNDARY_N(quad) && !START_HOLE_N(quad-1) && j % _y_chunk_size > 0 && j != _ny-1 && i % _x_chunk_size > 1) _cache[quad] |= MASK_START_HOLE_N; _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; } } else { // !_filled NE corner. switch ((z_nw << 2) | (z_ne << 1) | z_se) { // config case 1: // 001 if (BOUNDARY_E(quad)) { _cache[quad] |= MASK_START_BOUNDARY_E; start_in_row = true; } break; case 2: // 010 if (BOUNDARY_N(quad)) _cache[quad] |= MASK_START_BOUNDARY_N; else if (!BOUNDARY_E(quad)) _cache[quad] |= MASK_START_N; start_in_row |= ANY_START(quad); break; case 3: // 011 if (BOUNDARY_N(quad)) { _cache[quad] |= MASK_START_BOUNDARY_N; start_in_row = true; } break; case 4: // 100 case 6: // 110 _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; case 5: // 101 if (BOUNDARY_E(quad)) _cache[quad] |= MASK_START_BOUNDARY_E; else if (!BOUNDARY_N(quad)) _cache[quad] |= MASK_START_E; start_in_row |= ANY_START(quad); break; } } break; case MASK_EXISTS_SW_CORNER: if (_filled) { switch ((z_nw << 4) | (z_sw << 2) | z_se) { // config case 1: // 001 case 2: // 002 case 40: // 220 case 41: // 221 if (BOUNDARY_S(quad)) { _cache[quad] |= MASK_START_BOUNDARY_S; start_in_row = true; } break; case 4: // 010 case 5: // 011 case 6: // 012 case 8: // 020 case 9: // 021 case 17: // 101 case 18: // 102 case 24: // 120 case 25: // 121 case 33: // 201 case 34: // 202 case 36: // 210 case 37: // 211 case 38: // 212 if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; if (BOUNDARY_W(quad)) _cache[quad] |= MASK_START_BOUNDARY_W; start_in_row |= ANY_START(quad); break; case 10: // 022 case 16: // 100 case 26: // 122 case 32: // 200 if (BOUNDARY_W(quad)) { _cache[quad] |= MASK_START_BOUNDARY_W; start_in_row = true; } break; case 20: // 110 case 21: // 111 case 22: // 112 if (BOUNDARY_S(quad)) _cache[quad] |= MASK_START_BOUNDARY_S; _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; } } else { // !_filled SW corner. switch ((z_nw << 2) | (z_sw << 1) | z_se) { // config case 1: // 001 case 3: // 011 _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; case 2: // 010 case 6: // 110 if (BOUNDARY_S(quad)) { _cache[quad] |= MASK_START_BOUNDARY_S; start_in_row = true; } break; case 4: // 100 case 5: // 101 if (BOUNDARY_W(quad)) { _cache[quad] |= MASK_START_BOUNDARY_W; start_in_row = true; } break; } } break; case MASK_EXISTS_SE_CORNER: if (_filled) { switch ((z_ne << 4) | (z_sw << 2) | z_se) { // config case 1: // 001 case 2: // 002 case 4: // 010 case 5: // 011 case 6: // 012 case 8: // 020 case 9: // 021 case 17: // 101 case 18: // 102 case 20: // 110 case 21: // 111 case 22: // 112 case 24: // 120 case 25: // 121 case 33: // 201 case 34: // 202 case 36: // 210 case 37: // 211 case 38: // 212 case 40: // 220 case 41: // 221 if (BOUNDARY_S(quad)) { _cache[quad] |= MASK_START_BOUNDARY_S; start_in_row = true; } break; case 10: // 022 case 16: // 100 case 26: // 122 case 32: // 200 _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; } } else { // !_filled SE corner. switch ((z_ne << 2) | (z_sw << 1) | z_se) { // config case 1: // 001 case 3: // 011 if (BOUNDARY_E(quad)) { _cache[quad] |= MASK_START_BOUNDARY_E; start_in_row = true; } break; case 2: // 010 case 6: // 110 if (BOUNDARY_S(quad)) { _cache[quad] |= MASK_START_BOUNDARY_S; start_in_row = true; } break; case 4: // 100 case 5: // 101 _cache[quad] |= MASK_START_CORNER; start_in_row = true; break; } } break; } z_nw = z_ne; z_sw = z_se; } // i-loop. if (start_in_row) j_final_start = j; else if (j > 0) _cache[chunk_istart + j*_nx] |= MASK_NO_STARTS_IN_ROW; } // j-loop. if (j_final_start < jend) _cache[chunk_istart + (j_final_start+1)*_nx] |= MASK_NO_MORE_STARTS; } template <typename Derived> void BaseContourGenerator<Derived>::interp( index_t point0, index_t point1, bool is_upper, double*& points) const { auto frac = get_interp_fraction( get_point_z(point0), get_point_z(point1), is_upper ? _upper_level : _lower_level); assert(frac >= 0.0 && frac <= 1.0 && "Interp fraction out of bounds"); *points++ = get_point_x(point0)*frac + get_point_x(point1)*(1.0 - frac); *points++ = get_point_y(point0)*frac + get_point_y(point1)*(1.0 - frac); } template <typename Derived> void BaseContourGenerator<Derived>::interp( index_t point0, double x1, double y1, double z1, bool is_upper, double*& points) const { auto frac = get_interp_fraction( get_point_z(point0), z1, is_upper ? _upper_level : _lower_level); assert(frac >= 0.0 && frac <= 1.0 && "Interp fraction out of bounds"); *points++ = get_point_x(point0)*frac + x1*(1.0 - frac); *points++ = get_point_y(point0)*frac + y1*(1.0 - frac); } template <typename Derived> bool BaseContourGenerator<Derived>::is_filled() const { return _filled; } template <typename Derived> bool BaseContourGenerator<Derived>::is_point_in_chunk(index_t point, const ChunkLocal& local) const { return is_quad_in_bounds(point, local.istart-1, local.iend, local.jstart-1, local.jend); } template <typename Derived> bool BaseContourGenerator<Derived>::is_quad_in_bounds( index_t quad, index_t istart, index_t iend, index_t jstart, index_t jend) const { return (quad % _nx >= istart && quad % _nx <= iend && quad / _nx >= jstart && quad / _nx <= jend); } template <typename Derived> bool BaseContourGenerator<Derived>::is_quad_in_chunk(index_t quad, const ChunkLocal& local) const { return is_quad_in_bounds(quad, local.istart, local.iend, local.jstart, local.jend); } template <typename Derived> void BaseContourGenerator<Derived>::line(const Location& start_location, ChunkLocal& local) { // start_location.on_boundary indicates starts (and therefore also finishes) assert(is_quad_in_chunk(start_location.quad, local)); Location location = start_location; count_t point_count = 0; // finished == true indicates closed line loop. bool finished = follow_interior(location, start_location, local, point_count); if (local.pass > 0) { assert(local.line_offsets.current == local.line_offsets.start + local.line_count); *local.line_offsets.current++ = local.total_point_count; } if (local.pass == 0 && !start_location.on_boundary && !finished) // An internal start that isn't a line loop is part of a line strip that starts on a // boundary and will be traced later. Do not count it as a valid start in pass 0 and remove // the first point or it will be duplicated by the correct boundary-started line later. point_count--; else local.line_count++; local.total_point_count += point_count; } template <typename Derived> py::sequence BaseContourGenerator<Derived>::lines(double level) { _filled = false; _lower_level = _upper_level = level; _identify_holes = false; _output_chunked = !(_line_type == LineType::Separate || _line_type == LineType::SeparateCodes); _direct_points = _output_chunked; _direct_line_offsets = (_line_type == LineType::ChunkCombinedOffsets); _direct_outer_offsets = false; _outer_offsets_into_points = false; _return_list_count = (_line_type == LineType::Separate) ? 1 : 2; return static_cast<Derived*>(this)->march_wrapper(); } template <typename Derived> void BaseContourGenerator<Derived>::march_chunk( ChunkLocal& local, std::vector<py::list>& return_lists) { for (local.pass = 0; local.pass < 2; ++local.pass) { bool ignore_holes = (_identify_holes && local.pass == 1); index_t j_final_start = local.jstart; for (index_t j = local.jstart; j <= local.jend; ++j) { index_t quad = local.istart + j*_nx; if (NO_MORE_STARTS(quad)) break; if (NO_STARTS_IN_ROW(quad)) continue; // Want to count number of starts in this row, so store how many starts at start of row. auto prev_start_count = (_identify_holes ? local.line_count - local.hole_count : local.line_count); for (index_t i = local.istart; i <= local.iend; ++i, ++quad) { if (!ANY_START(quad)) continue; assert(EXISTS_ANY(quad)); if (_filled) { if (START_BOUNDARY_S(quad)) closed_line_wrapper(Location(quad, 1, _nx, Z_SW == 2, true), Outer, local); if (START_BOUNDARY_W(quad)) closed_line_wrapper(Location(quad, -_nx, 1, Z_NW == 2, true), Outer, local); if (START_CORNER(quad)) { switch (EXISTS_ANY_CORNER(quad)) { case MASK_EXISTS_NE_CORNER: closed_line_wrapper( Location(quad, -_nx+1, _nx+1, Z_NW == 2, true), Outer, local); break; case MASK_EXISTS_NW_CORNER: closed_line_wrapper( Location(quad, _nx+1, _nx-1, Z_SW == 2, true), Outer, local); break; case MASK_EXISTS_SE_CORNER: closed_line_wrapper( Location(quad, -_nx-1, -_nx+1, Z_NE == 2, true), Outer, local); break; default: assert(EXISTS_SW_CORNER(quad)); if (!ignore_holes) closed_line_wrapper( Location(quad, _nx-1, -_nx-1, false, true), Hole, local); break; } } if (START_N(quad)) closed_line_wrapper(Location(quad, -_nx, 1, Z_NW > 0, false), Outer, local); if (ignore_holes) continue; if (START_E(quad)) closed_line_wrapper(Location(quad, -1, -_nx, Z_NE > 0, false), Hole, local); if (START_HOLE_N(quad)) closed_line_wrapper(Location(quad, -1, -_nx, false, true), Hole, local); } else { // !_filled if (START_BOUNDARY_S(quad)) line(Location(quad, _nx, -1, false, true), local); if (START_BOUNDARY_W(quad)) line(Location(quad, 1, _nx, false, true), local); if (START_BOUNDARY_E(quad)) line(Location(quad, -1, -_nx, false, true), local); if (START_BOUNDARY_N(quad)) line(Location(quad, -_nx, 1, false, true), local); if (START_E(quad)) line(Location(quad, -1, -_nx, false, false), local); if (START_N(quad)) line(Location(quad, -_nx, 1, false, false), local); if (START_CORNER(quad)) { index_t forward, left; switch (EXISTS_ANY_CORNER(quad)) { case MASK_EXISTS_NE_CORNER: forward = _nx+1; left = _nx-1; break; case MASK_EXISTS_NW_CORNER: forward = _nx-1; left = -_nx-1; break; case MASK_EXISTS_SE_CORNER: forward = -_nx+1; left = _nx+1; break; default: assert(EXISTS_SW_CORNER(quad)); forward = -_nx-1; left = -_nx+1; break; } line(Location(quad, forward, left, false, true), local); } } // _filled } // i // Number of starts at end of row. auto start_count = (_identify_holes ? local.line_count - local.hole_count : local.line_count); if (start_count - prev_start_count) j_final_start = j; else _cache[local.istart + j*_nx] |= MASK_NO_STARTS_IN_ROW; } // j if (j_final_start < local.jend) _cache[local.istart + (j_final_start+1)*_nx] |= MASK_NO_MORE_STARTS; if (local.pass == 0) { if (local.total_point_count == 0) { local.points.clear(); local.line_offsets.clear(); local.outer_offsets.clear(); break; // Do not need pass 1. } // Create arrays for points, line_offsets and optionally outer_offsets. Arrays may be // either C++ vectors or Python NumPy arrays. Want to group creation of the latter as // threaded code needs to lock creation of these to limit access to a single thread. if (_direct_points || _direct_line_offsets || _direct_outer_offsets) { typename Derived::Lock lock(static_cast<Derived&>(*this)); // Strictly speaking adding the NumPy arrays to return_lists does not need to be // within the lock. if (_direct_points) { return_lists[0][local.chunk] = local.points.create_python(local.total_point_count, 2); } if (_direct_line_offsets) { return_lists[1][local.chunk] = local.line_offsets.create_python(local.line_count + 1); } if (_direct_outer_offsets) { return_lists[2][local.chunk] = local.outer_offsets.create_python(local.line_count - local.hole_count + 1); } } if (!_direct_points) local.points.create_cpp(2*local.total_point_count); if (!_direct_line_offsets) local.line_offsets.create_cpp(local.line_count + 1); if (!_direct_outer_offsets) { if (_identify_holes) local.outer_offsets.create_cpp( local.line_count - local.hole_count + 1); else local.outer_offsets.clear(); } // Reset counts for pass 1. local.total_point_count = 0; local.line_count = 0; local.hole_count = 0; } } // pass // Check both passes returned same number of points, lines, etc. if (local.total_point_count == 0) { assert(local.points.start == nullptr && local.points.current == nullptr); } else { assert(local.points.current = local.points.start + 2*local.total_point_count); } if (local.line_count > 0) { assert(local.line_offsets.current != nullptr); assert(local.line_offsets.current == local.line_offsets.start + local.line_count); // Append final total_point_count to line_offsets. *local.line_offsets.current++ = local.total_point_count; } else { assert(local.line_offsets.start == nullptr && local.line_offsets.current == nullptr); } if (_identify_holes && local.line_count > 0) { assert(local.outer_offsets.current != nullptr); assert(local.outer_offsets.current == local.outer_offsets.start + local.line_count - local.hole_count); // Append final total_point_count or line_count to outer_offsets. if (_outer_offsets_into_points) *local.outer_offsets.current++ = local.total_point_count; else *local.outer_offsets.current++ = local.line_count; } else { assert(local.outer_offsets.start == nullptr && local.outer_offsets.current == nullptr); } if (local.total_point_count == 0) { if (_output_chunked) { typename Derived::Lock lock(static_cast<Derived&>(*this)); for (auto& list : return_lists) list[local.chunk] = py::none(); } } else if (_filled) export_filled(local, return_lists); else export_lines(local, return_lists); } template <typename Derived> py::sequence BaseContourGenerator<Derived>::march_wrapper() { index_t list_len = _n_chunks; if ((_filled && (_fill_type == FillType::OuterCodes || _fill_type == FillType::OuterOffsets)) || (!_filled && (_line_type == LineType::Separate || _line_type == LineType::SeparateCodes))) list_len = 0; // Prepare lists to return to python. std::vector<py::list> return_lists; return_lists.reserve(_return_list_count); for (decltype(_return_list_count) i = 0; i < _return_list_count; ++i) return_lists.emplace_back(list_len); static_cast<Derived*>(this)->march(return_lists); // Return to python objects. if (_return_list_count == 1) { assert(!_filled && _line_type == LineType::Separate); return return_lists[0]; } else if (_return_list_count == 2) return py::make_tuple(return_lists[0], return_lists[1]); else { assert(_return_list_count == 3); return py::make_tuple(return_lists[0], return_lists[1], return_lists[2]); } } template <typename Derived> void BaseContourGenerator<Derived>::move_to_next_boundary_edge( index_t& quad, index_t& forward, index_t& left) const { // edge == 0 for E edge (facing N), forward = +_nx // 2 for S edge (facing E), forward = +1 // 4 for W edge (facing S), forward = -_nx // 6 for N edge (facing W), forward = -1 // 1 for SE edge (NW corner) from SW facing NE, forward = +_nx+1 // 3 for SW edge (NE corner) from NW facing SE, forward = -_nx+1 // 5 for NW edge (SE corner) from NE facing SW, forward = -_nx-1 // 7 for NE edge (SW corner) from SE facing NW, forward = +_nx-1 int edge = 0; // Need index of quad that is the same as the end point, i.e. quad to SW of end point, as it is // this point which we need to find the next available boundary of, looking clockwise. if (forward > 0) { if (forward == _nx) { assert(left == -1); // W edge facing N, no change to quad or edge. } else if (left == _nx) { assert(forward == 1); quad -= _nx; // S edge facing E. edge = 2; } else if (EXISTS_SW_CORNER(quad)) { assert(forward == _nx-1 && left == -_nx-1); quad -= 1; edge = 7; } else { assert(EXISTS_NW_CORNER(quad) && forward == _nx+1 && _nx-1); // quad unchanged. edge = 1; } } else { // forward < 0 if (forward == -_nx) { assert(left == 1); quad -= _nx+1; // W edge facing S. edge = 4; } else if (left == -_nx) { assert(forward == -1); quad -= 1; // N edge facing W. edge = 6; } else if (EXISTS_NE_CORNER(quad)) { assert(forward == -_nx+1 && left == _nx+1); quad -= _nx; edge = 3; } else { assert(EXISTS_SE_CORNER(quad) && forward == -_nx-1 && left == -_nx+1); quad -= _nx+1; edge = 5; } } // If _corner_mask not set, only need to consider odd edge in loop below. if (!_corner_mask) ++edge; while (true) { // Look at possible edges that leave NE point of quad. // If something is wrong here or in the setup of the boundary flags, can end up with an // infinite loop! switch (edge) { case 0: // Is there an edge to follow towards SW? if (EXISTS_SE_CORNER(quad)) { // Equivalent to BOUNDARY_NE. // quad unchanged. forward = -_nx-1; left = -_nx+1; return; } break; case 1: // Is there an edge to follow towards W? if (BOUNDARY_N(quad)) { // quad unchanged. forward = -1; left = -_nx; return; } break; case 2: // Is there an edge to follow towards NW? if (EXISTS_SW_CORNER(quad+_nx)) { // Equivalent to BOUNDARY_NE. quad += _nx; forward = _nx-1; left = -_nx-1; return; } break; case 3: // Is there an edge to follow towards N? if (BOUNDARY_E(quad+_nx)) { // Really a BOUNDARY_W check. quad += _nx; forward = _nx; left = -1; return; } break; case 4: // Is there an edge to follow towards NE? if (EXISTS_NW_CORNER(quad+_nx+1)) { // Equivalent to BOUNDARY_SE. quad += _nx+1; forward = _nx+1; left = _nx-1; return; } break; case 5: // Is there an edge to follow towards E? if (BOUNDARY_N(quad+1)) { // Really a BOUNDARY_S check quad += _nx+1; forward = 1; left = _nx; return; } break; case 6: // Is there an edge to follow towards SE? if (EXISTS_NE_CORNER(quad+1)) { // Equivalent to BOUNDARY_SW. quad += 1; forward = -_nx+1; left = _nx+1; return; } break; case 7: // Is there an edge to follow towards S? if (BOUNDARY_E(quad)) { quad += 1; forward = -_nx; left = 1; return; } break; default: assert(0 && "Invalid edge index"); break; } edge = _corner_mask ? (edge + 1) % 8 : (edge + 2) % 8; } } template <typename Derived> void BaseContourGenerator<Derived>::set_look_flags(index_t hole_start_quad) { assert(_identify_holes); // The only possible hole starts are START_E (from E to N), START_HOLE_N (on N boundary, E to W) // and START_CORNER for SW corner (on boundary, SE to NW). assert(hole_start_quad >= 0 && hole_start_quad < _n); assert(EXISTS_N_EDGE(hole_start_quad) || EXISTS_SW_CORNER(hole_start_quad)); assert(!LOOK_S(hole_start_quad) && "Look S already set"); _cache[hole_start_quad] |= MASK_LOOK_S; // Walk S until find place to mark corresponding look N. auto quad = hole_start_quad; while (true) { assert(quad >= 0 && quad < _n); assert(EXISTS_N_EDGE(quad) || (quad == hole_start_quad && EXISTS_SW_CORNER(quad))); if (BOUNDARY_S(quad) || EXISTS_NE_CORNER(quad) || EXISTS_NW_CORNER(quad) || Z_SE != 1) { assert(!LOOK_N(quad) && "Look N already set"); _cache[quad] |= MASK_LOOK_N; break; } quad -= _nx; } } template <typename Derived> bool BaseContourGenerator<Derived>::supports_fill_type(FillType fill_type) { switch (fill_type) { case FillType::OuterCodes: case FillType::OuterOffsets: case FillType::ChunkCombinedCodes: case FillType::ChunkCombinedOffsets: case FillType::ChunkCombinedCodesOffsets: case FillType::ChunkCombinedOffsets2: return true; default: return false; } } template <typename Derived> bool BaseContourGenerator<Derived>::supports_line_type(LineType line_type) { switch (line_type) { case LineType::Separate: case LineType::SeparateCodes: case LineType::ChunkCombinedCodes: case LineType::ChunkCombinedOffsets: return true; default: return false; } } template <typename Derived> void BaseContourGenerator<Derived>::write_cache() const { std::cout << "---------- Cache ----------" << std::endl; index_t ny = _n / _nx; for (index_t j = ny-1; j >= 0; --j) { std::cout << "j=" << j << " "; for (index_t i = 0; i < _nx; ++i) { index_t quad = i + j*_nx; write_cache_quad(quad); } std::cout << std::endl; } std::cout << " "; for (index_t i = 0; i < _nx; ++i) std::cout << "i=" << i << " "; std::cout << std::endl; std::cout << "---------------------------" << std::endl; } template <typename Derived> void BaseContourGenerator<Derived>::write_cache_quad(index_t quad) const { assert(quad >= 0 && quad < _n && "quad index out of bounds"); std::cout << (NO_MORE_STARTS(quad) ? 'x' : (NO_STARTS_IN_ROW(quad) ? 'i' : '.')); std::cout << (EXISTS_QUAD(quad) ? "Q_" : (EXISTS_NW_CORNER(quad) ? "NW" : (EXISTS_NE_CORNER(quad) ? "NE" : (EXISTS_SW_CORNER(quad) ? "SW" : (EXISTS_SE_CORNER(quad) ? "SE" : ".."))))); std::cout << (BOUNDARY_N(quad) && BOUNDARY_E(quad) ? 'b' : ( BOUNDARY_N(quad) ? 'n' : (BOUNDARY_E(quad) ? 'e' : '.'))); std::cout << Z_LEVEL(quad); std::cout << ((_cache[quad] & MASK_MIDDLE) >> 2); std::cout << (START_BOUNDARY_S(quad) ? 's' : '.'); std::cout << (START_BOUNDARY_W(quad) ? 'w' : '.'); if (!_filled) { std::cout << (START_BOUNDARY_E(quad) ? 'e' : '.'); std::cout << (START_BOUNDARY_N(quad) ? 'n' : '.'); } std::cout << (START_E(quad) ? 'E' : '.'); std::cout << (START_N(quad) ? 'N' : '.'); if (_filled) std::cout << (START_HOLE_N(quad) ? 'h' : '.'); std::cout << (START_CORNER(quad) ? 'c' : '.'); if (_filled) std::cout << (LOOK_N(quad) && LOOK_S(quad) ? 'B' : (LOOK_N(quad) ? '^' : (LOOK_S(quad) ? 'v' : '.'))); std::cout << ' '; } template <typename Derived> typename BaseContourGenerator<Derived>::ZLevel BaseContourGenerator<Derived>::z_to_zlevel( double z_value) const { return (_filled && z_value > _upper_level) ? 2 : (z_value > _lower_level ? 1 : 0); } #endif // CONTOURPY_BASE_IMPL_H
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/HYPRE_krylov.h
/*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifndef HYPRE_KRYLOV_HEADER #define HYPRE_KRYLOV_HEADER #include "HYPRE_utilities.h" #ifdef __cplusplus extern "C" { #endif /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name Krylov Solvers * * These solvers support many of the matrix/vector storage schemes in hypre. * They should be used in conjunction with the storage-specific interfaces, * particularly the specific Create() and Destroy() functions. * * @memo A basic interface for Krylov solvers **/ /*@{*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name Krylov Solvers **/ /*@{*/ #ifndef HYPRE_SOLVER_STRUCT #define HYPRE_SOLVER_STRUCT struct hypre_Solver_struct; /** * The solver object. **/ typedef struct hypre_Solver_struct *HYPRE_Solver; #endif #ifndef HYPRE_MATRIX_STRUCT #define HYPRE_MATRIX_STRUCT struct hypre_Matrix_struct; /** * The matrix object. **/ typedef struct hypre_Matrix_struct *HYPRE_Matrix; #endif #ifndef HYPRE_VECTOR_STRUCT #define HYPRE_VECTOR_STRUCT struct hypre_Vector_struct; /** * The vector object. **/ typedef struct hypre_Vector_struct *HYPRE_Vector; #endif typedef HYPRE_Int (*HYPRE_PtrToSolverFcn)(HYPRE_Solver, HYPRE_Matrix, HYPRE_Vector, HYPRE_Vector); #ifndef HYPRE_MODIFYPC #define HYPRE_MODIFYPC typedef HYPRE_Int (*HYPRE_PtrToModifyPCFcn)(HYPRE_Solver, HYPRE_Int, HYPRE_Real); #endif /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name PCG Solver **/ /*@{*/ /** * Prepare to solve the system. The coefficient data in {\tt b} and {\tt x} is * ignored here, but information about the layout of the data may be used. **/ HYPRE_Int HYPRE_PCGSetup(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * Solve the system. **/ HYPRE_Int HYPRE_PCGSolve(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * (Optional) Set the relative convergence tolerance. **/ HYPRE_Int HYPRE_PCGSetTol(HYPRE_Solver solver, HYPRE_Real tol); /** * (Optional) Set the absolute convergence tolerance (default is * 0). If one desires the convergence test to check the absolute * convergence tolerance {\it only}, then set the relative convergence * tolerance to 0.0. (The default convergence test is $ <C*r,r> \leq$ * max(relative$\_$tolerance$^{2} \ast <C*b, b>$, absolute$\_$tolerance$^2$).) **/ HYPRE_Int HYPRE_PCGSetAbsoluteTol(HYPRE_Solver solver, HYPRE_Real a_tol); /** * (Optional) Set a residual-based convergence tolerance which checks if * $\|r_{old}-r_{new}\| < rtol \|b\|$. This is useful when trying to converge to * very low relative and/or absolute tolerances, in order to bail-out before * roundoff errors affect the approximation. **/ HYPRE_Int HYPRE_PCGSetResidualTol(HYPRE_Solver solver, HYPRE_Real rtol); /* * RE-VISIT **/ HYPRE_Int HYPRE_PCGSetAbsoluteTolFactor(HYPRE_Solver solver, HYPRE_Real abstolf); /* * RE-VISIT **/ HYPRE_Int HYPRE_PCGSetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real cf_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_PCGSetStopCrit(HYPRE_Solver solver, HYPRE_Int stop_crit); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_PCGSetMaxIter(HYPRE_Solver solver, HYPRE_Int max_iter); /** * (Optional) Use the two-norm in stopping criteria. **/ HYPRE_Int HYPRE_PCGSetTwoNorm(HYPRE_Solver solver, HYPRE_Int two_norm); /** * (Optional) Additionally require that the relative difference in * successive iterates be small. **/ HYPRE_Int HYPRE_PCGSetRelChange(HYPRE_Solver solver, HYPRE_Int rel_change); /** * (Optional) Recompute the residual at the end to double-check convergence. **/ HYPRE_Int HYPRE_PCGSetRecomputeResidual(HYPRE_Solver solver, HYPRE_Int recompute_residual); /** * (Optional) Periodically recompute the residual while iterating. **/ HYPRE_Int HYPRE_PCGSetRecomputeResidualP(HYPRE_Solver solver, HYPRE_Int recompute_residual_p); /** * (Optional) Set the preconditioner to use. **/ HYPRE_Int HYPRE_PCGSetPrecond(HYPRE_Solver solver, HYPRE_PtrToSolverFcn precond, HYPRE_PtrToSolverFcn precond_setup, HYPRE_Solver precond_solver); /** * (Optional) Set the amount of logging to do. **/ HYPRE_Int HYPRE_PCGSetLogging(HYPRE_Solver solver, HYPRE_Int logging); /** * (Optional) Set the amount of printing to do to the screen. **/ HYPRE_Int HYPRE_PCGSetPrintLevel(HYPRE_Solver solver, HYPRE_Int level); /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_PCGGetNumIterations(HYPRE_Solver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_PCGGetFinalRelativeResidualNorm(HYPRE_Solver solver, HYPRE_Real *norm); /** * Return the residual. **/ HYPRE_Int HYPRE_PCGGetResidual(HYPRE_Solver solver, void *residual); /** **/ HYPRE_Int HYPRE_PCGGetTol(HYPRE_Solver solver, HYPRE_Real *tol); /** **/ HYPRE_Int HYPRE_PCGGetResidualTol(HYPRE_Solver solver, HYPRE_Real *rtol); /* * RE-VISIT **/ HYPRE_Int HYPRE_PCGGetAbsoluteTolFactor(HYPRE_Solver solver, HYPRE_Real *abstolf); /* * RE-VISIT **/ HYPRE_Int HYPRE_PCGGetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real *cf_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_PCGGetStopCrit(HYPRE_Solver solver, HYPRE_Int *stop_crit); /** **/ HYPRE_Int HYPRE_PCGGetMaxIter(HYPRE_Solver solver, HYPRE_Int *max_iter); /** **/ HYPRE_Int HYPRE_PCGGetTwoNorm(HYPRE_Solver solver, HYPRE_Int *two_norm); /** **/ HYPRE_Int HYPRE_PCGGetRelChange(HYPRE_Solver solver, HYPRE_Int *rel_change); /** **/ HYPRE_Int HYPRE_GMRESGetSkipRealResidualCheck(HYPRE_Solver solver, HYPRE_Int *skip_real_r_check); /** **/ HYPRE_Int HYPRE_PCGGetPrecond(HYPRE_Solver solver, HYPRE_Solver *precond_data_ptr); /** **/ HYPRE_Int HYPRE_PCGGetLogging(HYPRE_Solver solver, HYPRE_Int *level); /** **/ HYPRE_Int HYPRE_PCGGetPrintLevel(HYPRE_Solver solver, HYPRE_Int *level); /** **/ HYPRE_Int HYPRE_PCGGetConverged(HYPRE_Solver solver, HYPRE_Int *converged); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name GMRES Solver **/ /*@{*/ /** * Prepare to solve the system. The coefficient data in {\tt b} and {\tt x} is * ignored here, but information about the layout of the data may be used. **/ HYPRE_Int HYPRE_GMRESSetup(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * Solve the system. **/ HYPRE_Int HYPRE_GMRESSolve(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * (Optional) Set the relative convergence tolerance. **/ HYPRE_Int HYPRE_GMRESSetTol(HYPRE_Solver solver, HYPRE_Real tol); /** * (Optional) Set the absolute convergence tolerance (default is 0). * If one desires * the convergence test to check the absolute convergence tolerance {\it only}, then * set the relative convergence tolerance to 0.0. (The convergence test is * $\|r\| \leq$ max(relative$\_$tolerance$\ast \|b\|$, absolute$\_$tolerance).) * **/ HYPRE_Int HYPRE_GMRESSetAbsoluteTol(HYPRE_Solver solver, HYPRE_Real a_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_GMRESSetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real cf_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_GMRESSetStopCrit(HYPRE_Solver solver, HYPRE_Int stop_crit); /* * RE-VISIT **/ HYPRE_Int HYPRE_GMRESSetMinIter(HYPRE_Solver solver, HYPRE_Int min_iter); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_GMRESSetMaxIter(HYPRE_Solver solver, HYPRE_Int max_iter); /** * (Optional) Set the maximum size of the Krylov space. **/ HYPRE_Int HYPRE_GMRESSetKDim(HYPRE_Solver solver, HYPRE_Int k_dim); /** * (Optional) Additionally require that the relative difference in * successive iterates be small. **/ HYPRE_Int HYPRE_GMRESSetRelChange(HYPRE_Solver solver, HYPRE_Int rel_change); /** * (Optional) By default, hypre checks for convergence by evaluating the actual * residual before returnig from GMRES (with restart if the true residual does * not indicate convergence). This option allows users to skip the evaluation * and the check of the actual residual for badly conditioned problems where * restart is not expected to be beneficial. **/ HYPRE_Int HYPRE_GMRESSetSkipRealResidualCheck(HYPRE_Solver solver, HYPRE_Int skip_real_r_check); /** * (Optional) Set the preconditioner to use. **/ HYPRE_Int HYPRE_GMRESSetPrecond(HYPRE_Solver solver, HYPRE_PtrToSolverFcn precond, HYPRE_PtrToSolverFcn precond_setup, HYPRE_Solver precond_solver); /** * (Optional) Set the amount of logging to do. **/ HYPRE_Int HYPRE_GMRESSetLogging(HYPRE_Solver solver, HYPRE_Int logging); /** * (Optional) Set the amount of printing to do to the screen. **/ HYPRE_Int HYPRE_GMRESSetPrintLevel(HYPRE_Solver solver, HYPRE_Int level); /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_GMRESGetNumIterations(HYPRE_Solver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_GMRESGetFinalRelativeResidualNorm(HYPRE_Solver solver, HYPRE_Real *norm); /** * Return the residual. **/ HYPRE_Int HYPRE_GMRESGetResidual(HYPRE_Solver solver, void *residual); /** **/ HYPRE_Int HYPRE_GMRESGetTol(HYPRE_Solver solver, HYPRE_Real *tol); /** **/ HYPRE_Int HYPRE_GMRESGetAbsoluteTol(HYPRE_Solver solver, HYPRE_Real *tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_GMRESGetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real *cf_tol); /* * OBSOLETE **/ HYPRE_Int HYPRE_GMRESGetStopCrit(HYPRE_Solver solver, HYPRE_Int *stop_crit); /* * RE-VISIT **/ HYPRE_Int HYPRE_GMRESGetMinIter(HYPRE_Solver solver, HYPRE_Int *min_iter); /** **/ HYPRE_Int HYPRE_GMRESGetMaxIter(HYPRE_Solver solver, HYPRE_Int *max_iter); /** **/ HYPRE_Int HYPRE_GMRESGetKDim(HYPRE_Solver solver, HYPRE_Int *k_dim); /** **/ HYPRE_Int HYPRE_GMRESGetRelChange(HYPRE_Solver solver, HYPRE_Int *rel_change); /** **/ HYPRE_Int HYPRE_GMRESGetPrecond(HYPRE_Solver solver, HYPRE_Solver *precond_data_ptr); /** **/ HYPRE_Int HYPRE_GMRESGetLogging(HYPRE_Solver solver, HYPRE_Int *level); /** **/ HYPRE_Int HYPRE_GMRESGetPrintLevel(HYPRE_Solver solver, HYPRE_Int *level); /** **/ HYPRE_Int HYPRE_GMRESGetConverged(HYPRE_Solver solver, HYPRE_Int *converged); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name FlexGMRES Solver **/ /*@{*/ /** * Prepare to solve the system. The coefficient data in {\tt b} and {\tt x} is * ignored here, but information about the layout of the data may be used. **/ HYPRE_Int HYPRE_FlexGMRESSetup(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * Solve the system. **/ HYPRE_Int HYPRE_FlexGMRESSolve(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * (Optional) Set the convergence tolerance. **/ HYPRE_Int HYPRE_FlexGMRESSetTol(HYPRE_Solver solver, HYPRE_Real tol); /** * (Optional) Set the absolute convergence tolerance (default is 0). * If one desires * the convergence test to check the absolute convergence tolerance {\it only}, then * set the relative convergence tolerance to 0.0. (The convergence test is * $\|r\| \leq$ max(relative$\_$tolerance$\ast \|b\|$, absolute$\_$tolerance).) * **/ HYPRE_Int HYPRE_FlexGMRESSetAbsoluteTol(HYPRE_Solver solver, HYPRE_Real a_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_FlexGMRESSetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real cf_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_FlexGMRESSetMinIter(HYPRE_Solver solver, HYPRE_Int min_iter); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_FlexGMRESSetMaxIter(HYPRE_Solver solver, HYPRE_Int max_iter); /** * (Optional) Set the maximum size of the Krylov space. **/ HYPRE_Int HYPRE_FlexGMRESSetKDim(HYPRE_Solver solver, HYPRE_Int k_dim); /** * (Optional) Set the preconditioner to use. **/ HYPRE_Int HYPRE_FlexGMRESSetPrecond(HYPRE_Solver solver, HYPRE_PtrToSolverFcn precond, HYPRE_PtrToSolverFcn precond_setup, HYPRE_Solver precond_solver); /** * (Optional) Set the amount of logging to do. **/ HYPRE_Int HYPRE_FlexGMRESSetLogging(HYPRE_Solver solver, HYPRE_Int logging); /** * (Optional) Set the amount of printing to do to the screen. **/ HYPRE_Int HYPRE_FlexGMRESSetPrintLevel(HYPRE_Solver solver, HYPRE_Int level); /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_FlexGMRESGetNumIterations(HYPRE_Solver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_FlexGMRESGetFinalRelativeResidualNorm(HYPRE_Solver solver, HYPRE_Real *norm); /** * Return the residual. **/ HYPRE_Int HYPRE_FlexGMRESGetResidual(HYPRE_Solver solver, void *residual); /** **/ HYPRE_Int HYPRE_FlexGMRESGetTol(HYPRE_Solver solver, HYPRE_Real *tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_FlexGMRESGetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real *cf_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_FlexGMRESGetStopCrit(HYPRE_Solver solver, HYPRE_Int *stop_crit); /* * RE-VISIT **/ HYPRE_Int HYPRE_FlexGMRESGetMinIter(HYPRE_Solver solver, HYPRE_Int *min_iter); /** **/ HYPRE_Int HYPRE_FlexGMRESGetMaxIter(HYPRE_Solver solver, HYPRE_Int *max_iter); /** **/ HYPRE_Int HYPRE_FlexGMRESGetKDim(HYPRE_Solver solver, HYPRE_Int *k_dim); /** **/ HYPRE_Int HYPRE_FlexGMRESGetPrecond(HYPRE_Solver solver, HYPRE_Solver *precond_data_ptr); /** **/ HYPRE_Int HYPRE_FlexGMRESGetLogging(HYPRE_Solver solver, HYPRE_Int *level); /** **/ HYPRE_Int HYPRE_FlexGMRESGetPrintLevel(HYPRE_Solver solver, HYPRE_Int *level); /** **/ HYPRE_Int HYPRE_FlexGMRESGetConverged(HYPRE_Solver solver, HYPRE_Int *converged); /** * (Optional) Set a user-defined function to modify solve-time preconditioner * attributes. **/ HYPRE_Int HYPRE_FlexGMRESSetModifyPC(HYPRE_Solver solver, HYPRE_PtrToModifyPCFcn modify_pc); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name LGMRES Solver **/ /*@{*/ /** * Prepare to solve the system. The coefficient data in {\tt b} and {\tt x} is * ignored here, but information about the layout of the data may be used. **/ HYPRE_Int HYPRE_LGMRESSetup(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * Solve the system. Details on LGMRES may be found in <NAME>, * <NAME>, and <NAME>, "A technique for accelerating the * convergence of restarted GMRES." SIAM Journal on Matrix Analysis and * Applications, 26 (2005), pp. 962-984. LGMRES(m,k) in the paper * corresponds to LGMRES(Kdim+AugDim, AugDim). **/ HYPRE_Int HYPRE_LGMRESSolve(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * (Optional) Set the convergence tolerance. **/ HYPRE_Int HYPRE_LGMRESSetTol(HYPRE_Solver solver, HYPRE_Real tol); /** * (Optional) Set the absolute convergence tolerance (default is 0). * If one desires * the convergence test to check the absolute convergence tolerance {\it only}, then * set the relative convergence tolerance to 0.0. (The convergence test is * $\|r\| \leq$ max(relative$\_$tolerance$\ast \|b\|$, absolute$\_$tolerance).) * **/ HYPRE_Int HYPRE_LGMRESSetAbsoluteTol(HYPRE_Solver solver, HYPRE_Real a_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_LGMRESSetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real cf_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_LGMRESSetMinIter(HYPRE_Solver solver, HYPRE_Int min_iter); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_LGMRESSetMaxIter(HYPRE_Solver solver, HYPRE_Int max_iter); /** * (Optional) Set the maximum size of the approximation space * (includes the augmentation vectors). **/ HYPRE_Int HYPRE_LGMRESSetKDim(HYPRE_Solver solver, HYPRE_Int k_dim); /** * (Optional) Set the number of augmentation vectors (default: 2). **/ HYPRE_Int HYPRE_LGMRESSetAugDim(HYPRE_Solver solver, HYPRE_Int aug_dim); /** * (Optional) Set the preconditioner to use. **/ HYPRE_Int HYPRE_LGMRESSetPrecond(HYPRE_Solver solver, HYPRE_PtrToSolverFcn precond, HYPRE_PtrToSolverFcn precond_setup, HYPRE_Solver precond_solver); /** * (Optional) Set the amount of logging to do. **/ HYPRE_Int HYPRE_LGMRESSetLogging(HYPRE_Solver solver, HYPRE_Int logging); /** * (Optional) Set the amount of printing to do to the screen. **/ HYPRE_Int HYPRE_LGMRESSetPrintLevel(HYPRE_Solver solver, HYPRE_Int level); /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_LGMRESGetNumIterations(HYPRE_Solver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_LGMRESGetFinalRelativeResidualNorm(HYPRE_Solver solver, HYPRE_Real *norm); /** * Return the residual. **/ HYPRE_Int HYPRE_LGMRESGetResidual(HYPRE_Solver solver, void *residual); /** **/ HYPRE_Int HYPRE_LGMRESGetTol(HYPRE_Solver solver, HYPRE_Real *tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_LGMRESGetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real *cf_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_LGMRESGetStopCrit(HYPRE_Solver solver, HYPRE_Int *stop_crit); /* * RE-VISIT **/ HYPRE_Int HYPRE_LGMRESGetMinIter(HYPRE_Solver solver, HYPRE_Int *min_iter); /** **/ HYPRE_Int HYPRE_LGMRESGetMaxIter(HYPRE_Solver solver, HYPRE_Int *max_iter); /** **/ HYPRE_Int HYPRE_LGMRESGetKDim(HYPRE_Solver solver, HYPRE_Int *k_dim); /** **/ HYPRE_Int HYPRE_LGMRESGetAugDim(HYPRE_Solver solver, HYPRE_Int *k_dim); /** **/ HYPRE_Int HYPRE_LGMRESGetPrecond(HYPRE_Solver solver, HYPRE_Solver *precond_data_ptr); /** **/ HYPRE_Int HYPRE_LGMRESGetLogging(HYPRE_Solver solver, HYPRE_Int *level); /** **/ HYPRE_Int HYPRE_LGMRESGetPrintLevel(HYPRE_Solver solver, HYPRE_Int *level); /** **/ HYPRE_Int HYPRE_LGMRESGetConverged(HYPRE_Solver solver, HYPRE_Int *converged); /**** added by KS ****** */ /** * @name COGMRES Solver **/ /*@{*/ /** * Prepare to solve the system. The coefficient data in {\tt b} and {\tt x} is * ignored here, but information about the layout of the data may be used. **/ HYPRE_Int HYPRE_COGMRESSetup(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * Solve the system. **/ HYPRE_Int HYPRE_COGMRESSolve(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * (Optional) Set the convergence tolerance. **/ HYPRE_Int HYPRE_COGMRESSetTol(HYPRE_Solver solver, HYPRE_Real tol); /** * (Optional) Set the absolute convergence tolerance (default is 0). * If one desires * the convergence test to check the absolute convergence tolerance {\it only}, then * set the relative convergence tolerance to 0.0. (The convergence test is * $\|r\| \leq$ max(relative$\_$tolerance$\ast \|b\|$, absolute$\_$tolerance).) * **/ HYPRE_Int HYPRE_COGMRESSetAbsoluteTol(HYPRE_Solver solver, HYPRE_Real a_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_COGMRESSetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real cf_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_COGMRESSetMinIter(HYPRE_Solver solver, HYPRE_Int min_iter); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_COGMRESSetMaxIter(HYPRE_Solver solver, HYPRE_Int max_iter); /** * (Optional) Set the maximum size of the Krylov space. **/ HYPRE_Int HYPRE_COGMRESSetKDim(HYPRE_Solver solver, HYPRE_Int k_dim); /** * (Optional) Set number of unrolling in mass funcyions in COGMRES * Can be 4 or 8. Default: no unrolling. **/ HYPRE_Int HYPRE_COGMRESSetUnroll(HYPRE_Solver solver, HYPRE_Int unroll); /** * (Optional) Set the number of orthogonalizations in COGMRES (at most 2). **/ HYPRE_Int HYPRE_COGMRESSetCGS(HYPRE_Solver solver, HYPRE_Int cgs); /** * (Optional) Set the preconditioner to use. **/ HYPRE_Int HYPRE_COGMRESSetPrecond(HYPRE_Solver solver, HYPRE_PtrToSolverFcn precond, HYPRE_PtrToSolverFcn precond_setup, HYPRE_Solver precond_solver); /** * (Optional) Set the amount of logging to do. **/ HYPRE_Int HYPRE_COGMRESSetLogging(HYPRE_Solver solver, HYPRE_Int logging); /** * (Optional) Set the amount of printing to do to the screen. **/ HYPRE_Int HYPRE_COGMRESSetPrintLevel(HYPRE_Solver solver, HYPRE_Int level); /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_COGMRESGetNumIterations(HYPRE_Solver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_COGMRESGetFinalRelativeResidualNorm(HYPRE_Solver solver, HYPRE_Real *norm); /** * Return the residual. **/ HYPRE_Int HYPRE_COGMRESGetResidual(HYPRE_Solver solver, void *residual); /** **/ HYPRE_Int HYPRE_COGMRESGetTol(HYPRE_Solver solver, HYPRE_Real *tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_COGMRESGetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real *cf_tol); /* * RE-VISIT **/ //HYPRE_Int HYPRE_COGMRESGetStopCrit(HYPRE_Solver solver, HYPRE_Int *stop_crit); //HYPRE_Int HYPRE_COGMRESSetStopCrit(HYPRE_Solver solver, HYPRE_Int *stop_crit); /* * RE-VISIT **/ HYPRE_Int HYPRE_COGMRESGetMinIter(HYPRE_Solver solver, HYPRE_Int *min_iter); /** **/ HYPRE_Int HYPRE_COGMRESGetMaxIter(HYPRE_Solver solver, HYPRE_Int *max_iter); /** **/ HYPRE_Int HYPRE_COGMRESGetKDim(HYPRE_Solver solver, HYPRE_Int *k_dim); /** **/ HYPRE_Int HYPRE_COGMRESGetUnroll(HYPRE_Solver solver, HYPRE_Int *unroll); /** **/ HYPRE_Int HYPRE_COGMRESGetCGS(HYPRE_Solver solver, HYPRE_Int *cgs); /** **/ HYPRE_Int HYPRE_COGMRESGetPrecond(HYPRE_Solver solver, HYPRE_Solver *precond_data_ptr); /** **/ HYPRE_Int HYPRE_COGMRESGetLogging(HYPRE_Solver solver, HYPRE_Int *level); /** **/ HYPRE_Int HYPRE_COGMRESGetPrintLevel(HYPRE_Solver solver, HYPRE_Int *level); /** **/ HYPRE_Int HYPRE_COGMRESGetConverged(HYPRE_Solver solver, HYPRE_Int *converged); /** * (Optional) Set a user-defined function to modify solve-time preconditioner * attributes. **/ HYPRE_Int HYPRE_COGMRESSetModifyPC(HYPRE_Solver solver, HYPRE_PtrToModifyPCFcn modify_pc); /****** KS code ends here **************************************************/ /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name BiCGSTAB Solver **/ /*@{*/ /* * RE-VISIT **/ HYPRE_Int HYPRE_BiCGSTABDestroy(HYPRE_Solver solver); /** * Prepare to solve the system. The coefficient data in {\tt b} and {\tt x} is * ignored here, but information about the layout of the data may be used. **/ HYPRE_Int HYPRE_BiCGSTABSetup(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * Solve the system. **/ HYPRE_Int HYPRE_BiCGSTABSolve(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * (Optional) Set the convergence tolerance. **/ HYPRE_Int HYPRE_BiCGSTABSetTol(HYPRE_Solver solver, HYPRE_Real tol); /** * (Optional) Set the absolute convergence tolerance (default is 0). * If one desires * the convergence test to check the absolute convergence tolerance {\it only}, then * set the relative convergence tolerance to 0.0. (The convergence test is * $\|r\| \leq$ max(relative$\_$tolerance $\ast \|b\|$, absolute$\_$tolerance).) * **/ HYPRE_Int HYPRE_BiCGSTABSetAbsoluteTol(HYPRE_Solver solver, HYPRE_Real a_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_BiCGSTABSetConvergenceFactorTol(HYPRE_Solver solver, HYPRE_Real cf_tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_BiCGSTABSetStopCrit(HYPRE_Solver solver, HYPRE_Int stop_crit); /* * RE-VISIT **/ HYPRE_Int HYPRE_BiCGSTABSetMinIter(HYPRE_Solver solver, HYPRE_Int min_iter); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_BiCGSTABSetMaxIter(HYPRE_Solver solver, HYPRE_Int max_iter); /** * (Optional) Set the preconditioner to use. **/ HYPRE_Int HYPRE_BiCGSTABSetPrecond(HYPRE_Solver solver, HYPRE_PtrToSolverFcn precond, HYPRE_PtrToSolverFcn precond_setup, HYPRE_Solver precond_solver); /** * (Optional) Set the amount of logging to do. **/ HYPRE_Int HYPRE_BiCGSTABSetLogging(HYPRE_Solver solver, HYPRE_Int logging); /** * (Optional) Set the amount of printing to do to the screen. **/ HYPRE_Int HYPRE_BiCGSTABSetPrintLevel(HYPRE_Solver solver, HYPRE_Int level); /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_BiCGSTABGetNumIterations(HYPRE_Solver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_BiCGSTABGetFinalRelativeResidualNorm(HYPRE_Solver solver, HYPRE_Real *norm); /** * Return the residual. **/ HYPRE_Int HYPRE_BiCGSTABGetResidual(HYPRE_Solver solver, void *residual); /** **/ HYPRE_Int HYPRE_BiCGSTABGetPrecond(HYPRE_Solver solver, HYPRE_Solver *precond_data_ptr); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name CGNR Solver **/ /*@{*/ /* * RE-VISIT **/ HYPRE_Int HYPRE_CGNRDestroy(HYPRE_Solver solver); /** * Prepare to solve the system. The coefficient data in {\tt b} and {\tt x} is * ignored here, but information about the layout of the data may be used. **/ HYPRE_Int HYPRE_CGNRSetup(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * Solve the system. **/ HYPRE_Int HYPRE_CGNRSolve(HYPRE_Solver solver, HYPRE_Matrix A, HYPRE_Vector b, HYPRE_Vector x); /** * (Optional) Set the convergence tolerance. **/ HYPRE_Int HYPRE_CGNRSetTol(HYPRE_Solver solver, HYPRE_Real tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_CGNRSetStopCrit(HYPRE_Solver solver, HYPRE_Int stop_crit); /* * RE-VISIT **/ HYPRE_Int HYPRE_CGNRSetMinIter(HYPRE_Solver solver, HYPRE_Int min_iter); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_CGNRSetMaxIter(HYPRE_Solver solver, HYPRE_Int max_iter); /** * (Optional) Set the preconditioner to use. * Note that the only preconditioner available in hypre for use with * CGNR is currently BoomerAMG. It requires to use Jacobi as * a smoother without CF smoothing, i.e. relax_type needs to be set to 0 * or 7 and relax_order needs to be set to 0 by the user, since these * are not default values. It can be used with a relaxation weight for * Jacobi, which can significantly improve convergence. **/ HYPRE_Int HYPRE_CGNRSetPrecond(HYPRE_Solver solver, HYPRE_PtrToSolverFcn precond, HYPRE_PtrToSolverFcn precondT, HYPRE_PtrToSolverFcn precond_setup, HYPRE_Solver precond_solver); /** * (Optional) Set the amount of logging to do. **/ HYPRE_Int HYPRE_CGNRSetLogging(HYPRE_Solver solver, HYPRE_Int logging); #if 0 /* need to add */ /* * (Optional) Set the amount of printing to do to the screen. **/ HYPRE_Int HYPRE_CGNRSetPrintLevel(HYPRE_Solver solver, HYPRE_Int level); #endif /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_CGNRGetNumIterations(HYPRE_Solver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_CGNRGetFinalRelativeResidualNorm(HYPRE_Solver solver, HYPRE_Real *norm); #if 0 /* need to add */ /* * Return the residual. **/ HYPRE_Int HYPRE_CGNRGetResidual(HYPRE_Solver solver, void **residual); #endif /** **/ HYPRE_Int HYPRE_CGNRGetPrecond(HYPRE_Solver solver, HYPRE_Solver *precond_data_ptr); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /*@}*/ #ifdef __cplusplus } #endif #endif
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/HYPRE_sstruct_ls.h
/*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifndef HYPRE_SSTRUCT_LS_HEADER #define HYPRE_SSTRUCT_LS_HEADER #include "HYPRE_config.h" #include "HYPRE_utilities.h" #include "HYPRE.h" #include "HYPRE_sstruct_mv.h" #include "HYPRE_struct_ls.h" #include "HYPRE_parcsr_ls.h" #ifdef __cplusplus extern "C" { #endif /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct Solvers * * These solvers use matrix/vector storage schemes that are taylored * to semi-structured grid problems. * * @memo Linear solvers for semi-structured grids **/ /*@{*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct Solvers **/ /*@{*/ struct hypre_SStructSolver_struct; /** * The solver object. **/ typedef struct hypre_SStructSolver_struct *HYPRE_SStructSolver; typedef HYPRE_Int (*HYPRE_PtrToSStructSolverFcn)(HYPRE_SStructSolver, HYPRE_SStructMatrix, HYPRE_SStructVector, HYPRE_SStructVector); #ifndef HYPRE_MODIFYPC #define HYPRE_MODIFYPC /* if pc not defined, then may need HYPRE_SOLVER also */ #ifndef HYPRE_SOLVER_STRUCT #define HYPRE_SOLVER_STRUCT struct hypre_Solver_struct; typedef struct hypre_Solver_struct *HYPRE_Solver; #endif typedef HYPRE_Int (*HYPRE_PtrToModifyPCFcn)(HYPRE_Solver, HYPRE_Int, HYPRE_Real); #endif /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct SysPFMG Solver * * SysPFMG is a semicoarsening multigrid solver similar to PFMG, but for systems * of PDEs. For periodic problems, users should try to set the grid size in * periodic dimensions to be as close to a power-of-two as possible (for more * details, see \Ref{Struct PFMG Solver}). **/ /*@{*/ /** * Create a solver object. **/ HYPRE_Int HYPRE_SStructSysPFMGCreate(MPI_Comm comm, HYPRE_SStructSolver *solver); /** * Destroy a solver object. An object should be explicitly destroyed * using this destructor when the user's code no longer needs direct * access to it. Once destroyed, the object must not be referenced * again. Note that the object may not be deallocated at the * completion of this call, since there may be internal package * references to the object. The object will then be destroyed when * all internal reference counts go to zero. **/ HYPRE_Int HYPRE_SStructSysPFMGDestroy(HYPRE_SStructSolver solver); /** * Prepare to solve the system. The coefficient data in {\tt b} and {\tt x} is * ignored here, but information about the layout of the data may be used. **/ HYPRE_Int HYPRE_SStructSysPFMGSetup(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); /** * Solve the system. **/ HYPRE_Int HYPRE_SStructSysPFMGSolve(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); /** * (Optional) Set the convergence tolerance. **/ HYPRE_Int HYPRE_SStructSysPFMGSetTol(HYPRE_SStructSolver solver, HYPRE_Real tol); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_SStructSysPFMGSetMaxIter(HYPRE_SStructSolver solver, HYPRE_Int max_iter); /** * (Optional) Additionally require that the relative difference in * successive iterates be small. **/ HYPRE_Int HYPRE_SStructSysPFMGSetRelChange(HYPRE_SStructSolver solver, HYPRE_Int rel_change); /** * (Optional) Use a zero initial guess. This allows the solver to cut corners * in the case where a zero initial guess is needed (e.g., for preconditioning) * to reduce compuational cost. **/ HYPRE_Int HYPRE_SStructSysPFMGSetZeroGuess(HYPRE_SStructSolver solver); /** * (Optional) Use a nonzero initial guess. This is the default behavior, but * this routine allows the user to switch back after using {\tt SetZeroGuess}. **/ HYPRE_Int HYPRE_SStructSysPFMGSetNonZeroGuess(HYPRE_SStructSolver solver); /** * (Optional) Set relaxation type. * * Current relaxation methods set by {\tt relax\_type} are: * * \begin{tabular}{l@{ -- }l} * 0 & Jacobi \\ * 1 & Weighted Jacobi (default) \\ * 2 & Red/Black Gauss-Seidel (symmetric: RB pre-relaxation, BR post-relaxation) \\ * \end{tabular} **/ HYPRE_Int HYPRE_SStructSysPFMGSetRelaxType(HYPRE_SStructSolver solver, HYPRE_Int relax_type); /** * (Optional) Set Jacobi Weight. **/ HYPRE_Int HYPRE_SStructSysPFMGSetJacobiWeight(HYPRE_SStructSolver solver, HYPRE_Real weight); /** * (Optional) Set number of relaxation sweeps before coarse-grid correction. **/ HYPRE_Int HYPRE_SStructSysPFMGSetNumPreRelax(HYPRE_SStructSolver solver, HYPRE_Int num_pre_relax); /** * (Optional) Set number of relaxation sweeps after coarse-grid correction. **/ HYPRE_Int HYPRE_SStructSysPFMGSetNumPostRelax(HYPRE_SStructSolver solver, HYPRE_Int num_post_relax); /** * (Optional) Skip relaxation on certain grids for isotropic problems. This can * greatly improve efficiency by eliminating unnecessary relaxations when the * underlying problem is isotropic. **/ HYPRE_Int HYPRE_SStructSysPFMGSetSkipRelax(HYPRE_SStructSolver solver, HYPRE_Int skip_relax); /* * RE-VISIT **/ HYPRE_Int HYPRE_SStructSysPFMGSetDxyz(HYPRE_SStructSolver solver, HYPRE_Real *dxyz); /** * (Optional) Set the amount of logging to do. **/ HYPRE_Int HYPRE_SStructSysPFMGSetLogging(HYPRE_SStructSolver solver, HYPRE_Int logging); /** * (Optional) Set the amount of printing to do to the screen. **/ HYPRE_Int HYPRE_SStructSysPFMGSetPrintLevel(HYPRE_SStructSolver solver, HYPRE_Int print_level); /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_SStructSysPFMGGetNumIterations(HYPRE_SStructSolver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_SStructSysPFMGGetFinalRelativeResidualNorm(HYPRE_SStructSolver solver, HYPRE_Real *norm); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct Split Solver **/ /*@{*/ #define HYPRE_PFMG 10 #define HYPRE_SMG 11 #define HYPRE_Jacobi 17 /** * Create a solver object. **/ HYPRE_Int HYPRE_SStructSplitCreate(MPI_Comm comm, HYPRE_SStructSolver *solver); /** * Destroy a solver object. An object should be explicitly destroyed * using this destructor when the user's code no longer needs direct * access to it. Once destroyed, the object must not be referenced * again. Note that the object may not be deallocated at the * completion of this call, since there may be internal package * references to the object. The object will then be destroyed when * all internal reference counts go to zero. **/ HYPRE_Int HYPRE_SStructSplitDestroy(HYPRE_SStructSolver solver); /** * Prepare to solve the system. The coefficient data in {\tt b} and {\tt x} is * ignored here, but information about the layout of the data may be used. **/ HYPRE_Int HYPRE_SStructSplitSetup(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); /** * Solve the system. **/ HYPRE_Int HYPRE_SStructSplitSolve(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); /** * (Optional) Set the convergence tolerance. **/ HYPRE_Int HYPRE_SStructSplitSetTol(HYPRE_SStructSolver solver, HYPRE_Real tol); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_SStructSplitSetMaxIter(HYPRE_SStructSolver solver, HYPRE_Int max_iter); /** * (Optional) Use a zero initial guess. This allows the solver to cut corners * in the case where a zero initial guess is needed (e.g., for preconditioning) * to reduce compuational cost. **/ HYPRE_Int HYPRE_SStructSplitSetZeroGuess(HYPRE_SStructSolver solver); /** * (Optional) Use a nonzero initial guess. This is the default behavior, but * this routine allows the user to switch back after using {\tt SetZeroGuess}. **/ HYPRE_Int HYPRE_SStructSplitSetNonZeroGuess(HYPRE_SStructSolver solver); /** * (Optional) Set up the type of diagonal struct solver. Either {\tt ssolver} is * set to {\tt HYPRE\_SMG} or {\tt HYPRE\_PFMG}. **/ HYPRE_Int HYPRE_SStructSplitSetStructSolver(HYPRE_SStructSolver solver, HYPRE_Int ssolver ); /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_SStructSplitGetNumIterations(HYPRE_SStructSolver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_SStructSplitGetFinalRelativeResidualNorm(HYPRE_SStructSolver solver, HYPRE_Real *norm); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct FAC Solver **/ /*@{*/ /** * Create a solver object. **/ HYPRE_Int HYPRE_SStructFACCreate(MPI_Comm comm, HYPRE_SStructSolver *solver); /** * Destroy a solver object. An object should be explicitly destroyed * using this destructor when the user's code no longer needs direct * access to it. Once destroyed, the object must not be referenced * again. Note that the object may not be deallocated at the * completion of this call, since there may be internal package * references to the object. The object will then be destroyed when * all internal reference counts go to zero. **/ HYPRE_Int HYPRE_SStructFACDestroy2(HYPRE_SStructSolver solver); /** * Re-distribute the composite matrix so that the amr hierachy is approximately * nested. Coarse underlying operators are also formed. **/ HYPRE_Int HYPRE_SStructFACAMR_RAP(HYPRE_SStructMatrix A, HYPRE_Int (*rfactors)[HYPRE_MAXDIM], HYPRE_SStructMatrix *fac_A); /** * Set up the FAC solver structure . **/ HYPRE_Int HYPRE_SStructFACSetup2(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); /** * Solve the system. **/ HYPRE_Int HYPRE_SStructFACSolve3(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); /** * Set up amr structure **/ HYPRE_Int HYPRE_SStructFACSetPLevels(HYPRE_SStructSolver solver, HYPRE_Int nparts, HYPRE_Int *plevels); /** * Set up amr refinement factors **/ HYPRE_Int HYPRE_SStructFACSetPRefinements(HYPRE_SStructSolver solver, HYPRE_Int nparts, HYPRE_Int (*rfactors)[HYPRE_MAXDIM] ); /** * (Optional, but user must make sure that they do this function otherwise.) * Zero off the coarse level stencils reaching into a fine level grid. **/ HYPRE_Int HYPRE_SStructFACZeroCFSten(HYPRE_SStructMatrix A, HYPRE_SStructGrid grid, HYPRE_Int part, HYPRE_Int rfactors[HYPRE_MAXDIM]); /** * (Optional, but user must make sure that they do this function otherwise.) * Zero off the fine level stencils reaching into a coarse level grid. **/ HYPRE_Int HYPRE_SStructFACZeroFCSten(HYPRE_SStructMatrix A, HYPRE_SStructGrid grid, HYPRE_Int part); /** * (Optional, but user must make sure that they do this function otherwise.) * Places the identity in the coarse grid matrix underlying the fine patches. * Required between each pair of amr levels. **/ HYPRE_Int HYPRE_SStructFACZeroAMRMatrixData(HYPRE_SStructMatrix A, HYPRE_Int part_crse, HYPRE_Int rfactors[HYPRE_MAXDIM]); /** * (Optional, but user must make sure that they do this function otherwise.) * Places zeros in the coarse grid vector underlying the fine patches. * Required between each pair of amr levels. **/ HYPRE_Int HYPRE_SStructFACZeroAMRVectorData(HYPRE_SStructVector b, HYPRE_Int *plevels, HYPRE_Int (*rfactors)[HYPRE_MAXDIM] ); /** * (Optional) Set maximum number of FAC levels. **/ HYPRE_Int HYPRE_SStructFACSetMaxLevels( HYPRE_SStructSolver solver , HYPRE_Int max_levels ); /** * (Optional) Set the convergence tolerance. **/ HYPRE_Int HYPRE_SStructFACSetTol(HYPRE_SStructSolver solver, HYPRE_Real tol); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_SStructFACSetMaxIter(HYPRE_SStructSolver solver, HYPRE_Int max_iter); /** * (Optional) Additionally require that the relative difference in * successive iterates be small. **/ HYPRE_Int HYPRE_SStructFACSetRelChange(HYPRE_SStructSolver solver, HYPRE_Int rel_change); /** * (Optional) Use a zero initial guess. This allows the solver to cut corners * in the case where a zero initial guess is needed (e.g., for preconditioning) * to reduce compuational cost. **/ HYPRE_Int HYPRE_SStructFACSetZeroGuess(HYPRE_SStructSolver solver); /** * (Optional) Use a nonzero initial guess. This is the default behavior, but * this routine allows the user to switch back after using {\tt SetZeroGuess}. **/ HYPRE_Int HYPRE_SStructFACSetNonZeroGuess(HYPRE_SStructSolver solver); /** * (Optional) Set relaxation type. See \Ref{HYPRE_SStructSysPFMGSetRelaxType} * for appropriate values of {\tt relax\_type}. **/ HYPRE_Int HYPRE_SStructFACSetRelaxType(HYPRE_SStructSolver solver, HYPRE_Int relax_type); /** * (Optional) Set Jacobi weight if weighted Jacobi is used. **/ HYPRE_Int HYPRE_SStructFACSetJacobiWeight(HYPRE_SStructSolver solver, HYPRE_Real weight); /** * (Optional) Set number of relaxation sweeps before coarse-grid correction. **/ HYPRE_Int HYPRE_SStructFACSetNumPreRelax(HYPRE_SStructSolver solver, HYPRE_Int num_pre_relax); /** * (Optional) Set number of relaxation sweeps after coarse-grid correction. **/ HYPRE_Int HYPRE_SStructFACSetNumPostRelax(HYPRE_SStructSolver solver, HYPRE_Int num_post_relax); /** * (Optional) Set coarsest solver type. * * Current solver types set by {\tt csolver\_type} are: * * \begin{tabular}{l@{ -- }l} * 1 & SysPFMG-PCG (default) \\ * 2 & SysPFMG \\ * \end{tabular} **/ HYPRE_Int HYPRE_SStructFACSetCoarseSolverType(HYPRE_SStructSolver solver, HYPRE_Int csolver_type); /** * (Optional) Set the amount of logging to do. **/ HYPRE_Int HYPRE_SStructFACSetLogging(HYPRE_SStructSolver solver, HYPRE_Int logging); /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_SStructFACGetNumIterations(HYPRE_SStructSolver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_SStructFACGetFinalRelativeResidualNorm(HYPRE_SStructSolver solver, HYPRE_Real *norm); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct Maxwell Solver **/ /*@{*/ /** * Create a solver object. **/ HYPRE_Int HYPRE_SStructMaxwellCreate( MPI_Comm comm, HYPRE_SStructSolver *solver ); /** * Destroy a solver object. An object should be explicitly destroyed * using this destructor when the user's code no longer needs direct * access to it. Once destroyed, the object must not be referenced * again. Note that the object may not be deallocated at the * completion of this call, since there may be internal package * references to the object. The object will then be destroyed when * all internal reference counts go to zero. **/ HYPRE_Int HYPRE_SStructMaxwellDestroy( HYPRE_SStructSolver solver ); /** * Prepare to solve the system. The coefficient data in {\tt b} and {\tt x} is * ignored here, but information about the layout of the data may be used. **/ HYPRE_Int HYPRE_SStructMaxwellSetup(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); /** * Solve the system. Full coupling of the augmented system used * throughout the multigrid hierarchy. **/ HYPRE_Int HYPRE_SStructMaxwellSolve(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); /** * Solve the system. Full coupling of the augmented system used * only on the finest level, i.e., the node and edge multigrid * cycles are coupled only on the finest level. **/ HYPRE_Int HYPRE_SStructMaxwellSolve2(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); /** * Sets the gradient operator in the Maxwell solver. **/ HYPRE_Int HYPRE_SStructMaxwellSetGrad(HYPRE_SStructSolver solver, HYPRE_ParCSRMatrix T); /** * Sets the coarsening factor. **/ HYPRE_Int HYPRE_SStructMaxwellSetRfactors(HYPRE_SStructSolver solver, HYPRE_Int rfactors[HYPRE_MAXDIM]); /** * Finds the physical boundary row ranks on all levels. **/ HYPRE_Int HYPRE_SStructMaxwellPhysBdy(HYPRE_SStructGrid *grid_l, HYPRE_Int num_levels, HYPRE_Int rfactors[HYPRE_MAXDIM], HYPRE_Int ***BdryRanks_ptr, HYPRE_Int **BdryRanksCnt_ptr ); /** * Eliminates the rows and cols corresponding to the physical boundary in * a parcsr matrix. **/ HYPRE_Int HYPRE_SStructMaxwellEliminateRowsCols(HYPRE_ParCSRMatrix parA, HYPRE_Int nrows, HYPRE_Int *rows ); /** * Zeros the rows corresponding to the physical boundary in * a par vector. **/ HYPRE_Int HYPRE_SStructMaxwellZeroVector(HYPRE_ParVector b, HYPRE_Int *rows, HYPRE_Int nrows ); /** * (Optional) Set the constant coefficient flag- Nedelec interpolation * used. **/ HYPRE_Int HYPRE_SStructMaxwellSetSetConstantCoef(HYPRE_SStructSolver solver, HYPRE_Int flag); /** * (Optional) Creates a gradient matrix from the grid. This presupposes * a particular orientation of the edge elements. **/ HYPRE_Int HYPRE_SStructMaxwellGrad(HYPRE_SStructGrid grid, HYPRE_ParCSRMatrix *T); /** * (Optional) Set the convergence tolerance. **/ HYPRE_Int HYPRE_SStructMaxwellSetTol(HYPRE_SStructSolver solver, HYPRE_Real tol); /** * (Optional) Set maximum number of iterations. **/ HYPRE_Int HYPRE_SStructMaxwellSetMaxIter(HYPRE_SStructSolver solver, HYPRE_Int max_iter); /** * (Optional) Additionally require that the relative difference in * successive iterates be small. **/ HYPRE_Int HYPRE_SStructMaxwellSetRelChange(HYPRE_SStructSolver solver, HYPRE_Int rel_change); /** * (Optional) Set number of relaxation sweeps before coarse-grid correction. **/ HYPRE_Int HYPRE_SStructMaxwellSetNumPreRelax(HYPRE_SStructSolver solver, HYPRE_Int num_pre_relax); /** * (Optional) Set number of relaxation sweeps after coarse-grid correction. **/ HYPRE_Int HYPRE_SStructMaxwellSetNumPostRelax(HYPRE_SStructSolver solver, HYPRE_Int num_post_relax); /** * (Optional) Set the amount of logging to do. **/ HYPRE_Int HYPRE_SStructMaxwellSetLogging(HYPRE_SStructSolver solver, HYPRE_Int logging); /** * Return the number of iterations taken. **/ HYPRE_Int HYPRE_SStructMaxwellGetNumIterations(HYPRE_SStructSolver solver, HYPRE_Int *num_iterations); /** * Return the norm of the final relative residual. **/ HYPRE_Int HYPRE_SStructMaxwellGetFinalRelativeResidualNorm(HYPRE_SStructSolver solver, HYPRE_Real *norm); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct PCG Solver * * These routines should be used in conjunction with the generic interface in * \Ref{PCG Solver}. **/ /*@{*/ /** * Create a solver object. **/ HYPRE_Int HYPRE_SStructPCGCreate(MPI_Comm comm, HYPRE_SStructSolver *solver); /** * Destroy a solver object. An object should be explicitly destroyed * using this destructor when the user's code no longer needs direct * access to it. Once destroyed, the object must not be referenced * again. Note that the object may not be deallocated at the * completion of this call, since there may be internal package * references to the object. The object will then be destroyed when * all internal reference counts go to zero. **/ HYPRE_Int HYPRE_SStructPCGDestroy(HYPRE_SStructSolver solver); HYPRE_Int HYPRE_SStructPCGSetup(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); HYPRE_Int HYPRE_SStructPCGSolve(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); HYPRE_Int HYPRE_SStructPCGSetTol(HYPRE_SStructSolver solver, HYPRE_Real tol); HYPRE_Int HYPRE_SStructPCGSetAbsoluteTol(HYPRE_SStructSolver solver, HYPRE_Real tol); HYPRE_Int HYPRE_SStructPCGSetMaxIter(HYPRE_SStructSolver solver, HYPRE_Int max_iter); HYPRE_Int HYPRE_SStructPCGSetTwoNorm(HYPRE_SStructSolver solver, HYPRE_Int two_norm); HYPRE_Int HYPRE_SStructPCGSetRelChange(HYPRE_SStructSolver solver, HYPRE_Int rel_change); HYPRE_Int HYPRE_SStructPCGSetPrecond(HYPRE_SStructSolver solver, HYPRE_PtrToSStructSolverFcn precond, HYPRE_PtrToSStructSolverFcn precond_setup, void *precond_solver); HYPRE_Int HYPRE_SStructPCGSetLogging(HYPRE_SStructSolver solver, HYPRE_Int logging); HYPRE_Int HYPRE_SStructPCGSetPrintLevel(HYPRE_SStructSolver solver, HYPRE_Int level); HYPRE_Int HYPRE_SStructPCGGetNumIterations(HYPRE_SStructSolver solver, HYPRE_Int *num_iterations); HYPRE_Int HYPRE_SStructPCGGetFinalRelativeResidualNorm(HYPRE_SStructSolver solver, HYPRE_Real *norm); HYPRE_Int HYPRE_SStructPCGGetResidual(HYPRE_SStructSolver solver, void **residual); /** * Setup routine for diagonal preconditioning. **/ HYPRE_Int HYPRE_SStructDiagScaleSetup(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector y, HYPRE_SStructVector x); /** * Solve routine for diagonal preconditioning. **/ HYPRE_Int HYPRE_SStructDiagScale(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector y, HYPRE_SStructVector x); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct GMRES Solver * * These routines should be used in conjunction with the generic interface in * \Ref{GMRES Solver}. **/ /*@{*/ /** * Create a solver object. **/ HYPRE_Int HYPRE_SStructGMRESCreate(MPI_Comm comm, HYPRE_SStructSolver *solver); /** * Destroy a solver object. An object should be explicitly destroyed * using this destructor when the user's code no longer needs direct * access to it. Once destroyed, the object must not be referenced * again. Note that the object may not be deallocated at the * completion of this call, since there may be internal package * references to the object. The object will then be destroyed when * all internal reference counts go to zero. **/ HYPRE_Int HYPRE_SStructGMRESDestroy(HYPRE_SStructSolver solver); HYPRE_Int HYPRE_SStructGMRESSetup(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); HYPRE_Int HYPRE_SStructGMRESSolve(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); HYPRE_Int HYPRE_SStructGMRESSetTol(HYPRE_SStructSolver solver, HYPRE_Real tol); HYPRE_Int HYPRE_SStructGMRESSetAbsoluteTol(HYPRE_SStructSolver solver, HYPRE_Real tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_SStructGMRESSetMinIter(HYPRE_SStructSolver solver, HYPRE_Int min_iter); HYPRE_Int HYPRE_SStructGMRESSetMaxIter(HYPRE_SStructSolver solver, HYPRE_Int max_iter); HYPRE_Int HYPRE_SStructGMRESSetKDim(HYPRE_SStructSolver solver, HYPRE_Int k_dim); /* * RE-VISIT **/ HYPRE_Int HYPRE_SStructGMRESSetStopCrit(HYPRE_SStructSolver solver, HYPRE_Int stop_crit); HYPRE_Int HYPRE_SStructGMRESSetPrecond(HYPRE_SStructSolver solver, HYPRE_PtrToSStructSolverFcn precond, HYPRE_PtrToSStructSolverFcn precond_setup, void *precond_solver); HYPRE_Int HYPRE_SStructGMRESSetLogging(HYPRE_SStructSolver solver, HYPRE_Int logging); HYPRE_Int HYPRE_SStructGMRESSetPrintLevel(HYPRE_SStructSolver solver, HYPRE_Int print_level); HYPRE_Int HYPRE_SStructGMRESGetNumIterations(HYPRE_SStructSolver solver, HYPRE_Int *num_iterations); HYPRE_Int HYPRE_SStructGMRESGetFinalRelativeResidualNorm(HYPRE_SStructSolver solver, HYPRE_Real *norm); HYPRE_Int HYPRE_SStructGMRESGetResidual(HYPRE_SStructSolver solver, void **residual); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct FlexGMRES Solver * * These routines should be used in conjunction with the generic interface in * \Ref{FlexGMRES Solver}. **/ /*@{*/ /** * Create a solver object. **/ HYPRE_Int HYPRE_SStructFlexGMRESCreate(MPI_Comm comm, HYPRE_SStructSolver *solver); /** * Destroy a solver object. An object should be explicitly destroyed * using this destructor when the user's code no longer needs direct * access to it. Once destroyed, the object must not be referenced * again. Note that the object may not be deallocated at the * completion of this call, since there may be internal package * references to the object. The object will then be destroyed when * all internal reference counts go to zero. **/ HYPRE_Int HYPRE_SStructFlexGMRESDestroy(HYPRE_SStructSolver solver); HYPRE_Int HYPRE_SStructFlexGMRESSetup(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); HYPRE_Int HYPRE_SStructFlexGMRESSolve(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); HYPRE_Int HYPRE_SStructFlexGMRESSetTol(HYPRE_SStructSolver solver, HYPRE_Real tol); HYPRE_Int HYPRE_SStructFlexGMRESSetAbsoluteTol(HYPRE_SStructSolver solver, HYPRE_Real tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_SStructFlexGMRESSetMinIter(HYPRE_SStructSolver solver, HYPRE_Int min_iter); HYPRE_Int HYPRE_SStructFlexGMRESSetMaxIter(HYPRE_SStructSolver solver, HYPRE_Int max_iter); HYPRE_Int HYPRE_SStructFlexGMRESSetKDim(HYPRE_SStructSolver solver, HYPRE_Int k_dim); HYPRE_Int HYPRE_SStructFlexGMRESSetPrecond(HYPRE_SStructSolver solver, HYPRE_PtrToSStructSolverFcn precond, HYPRE_PtrToSStructSolverFcn precond_setup, void *precond_solver); HYPRE_Int HYPRE_SStructFlexGMRESSetLogging(HYPRE_SStructSolver solver, HYPRE_Int logging); HYPRE_Int HYPRE_SStructFlexGMRESSetPrintLevel(HYPRE_SStructSolver solver, HYPRE_Int print_level); HYPRE_Int HYPRE_SStructFlexGMRESGetNumIterations(HYPRE_SStructSolver solver, HYPRE_Int *num_iterations); HYPRE_Int HYPRE_SStructFlexGMRESGetFinalRelativeResidualNorm(HYPRE_SStructSolver solver, HYPRE_Real *norm); HYPRE_Int HYPRE_SStructFlexGMRESGetResidual(HYPRE_SStructSolver solver, void **residual); HYPRE_Int HYPRE_SStructFlexGMRESSetModifyPC(HYPRE_SStructSolver solver, HYPRE_PtrToModifyPCFcn modify_pc); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct LGMRES Solver * * These routines should be used in conjunction with the generic interface in * \Ref{LGMRES Solver}. **/ /*@{*/ /** * Create a solver object. **/ HYPRE_Int HYPRE_SStructLGMRESCreate(MPI_Comm comm, HYPRE_SStructSolver *solver); /** * Destroy a solver object. An object should be explicitly destroyed * using this destructor when the user's code no longer needs direct * access to it. Once destroyed, the object must not be referenced * again. Note that the object may not be deallocated at the * completion of this call, since there may be internal package * references to the object. The object will then be destroyed when * all internal reference counts go to zero. **/ HYPRE_Int HYPRE_SStructLGMRESDestroy(HYPRE_SStructSolver solver); HYPRE_Int HYPRE_SStructLGMRESSetup(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); HYPRE_Int HYPRE_SStructLGMRESSolve(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); HYPRE_Int HYPRE_SStructLGMRESSetTol(HYPRE_SStructSolver solver, HYPRE_Real tol); HYPRE_Int HYPRE_SStructLGMRESSetAbsoluteTol(HYPRE_SStructSolver solver, HYPRE_Real tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_SStructLGMRESSetMinIter(HYPRE_SStructSolver solver, HYPRE_Int min_iter); HYPRE_Int HYPRE_SStructLGMRESSetMaxIter(HYPRE_SStructSolver solver, HYPRE_Int max_iter); HYPRE_Int HYPRE_SStructLGMRESSetKDim(HYPRE_SStructSolver solver, HYPRE_Int k_dim); HYPRE_Int HYPRE_SStructLGMRESSetAugDim(HYPRE_SStructSolver solver, HYPRE_Int aug_dim); HYPRE_Int HYPRE_SStructLGMRESSetPrecond(HYPRE_SStructSolver solver, HYPRE_PtrToSStructSolverFcn precond, HYPRE_PtrToSStructSolverFcn precond_setup, void *precond_solver); HYPRE_Int HYPRE_SStructLGMRESSetLogging(HYPRE_SStructSolver solver, HYPRE_Int logging); HYPRE_Int HYPRE_SStructLGMRESSetPrintLevel(HYPRE_SStructSolver solver, HYPRE_Int print_level); HYPRE_Int HYPRE_SStructLGMRESGetNumIterations(HYPRE_SStructSolver solver, HYPRE_Int *num_iterations); HYPRE_Int HYPRE_SStructLGMRESGetFinalRelativeResidualNorm(HYPRE_SStructSolver solver, HYPRE_Real *norm); HYPRE_Int HYPRE_SStructLGMRESGetResidual(HYPRE_SStructSolver solver, void **residual); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /** * @name SStruct BiCGSTAB Solver * * These routines should be used in conjunction with the generic interface in * \Ref{BiCGSTAB Solver}. **/ /*@{*/ /** * Create a solver object. **/ HYPRE_Int HYPRE_SStructBiCGSTABCreate(MPI_Comm comm, HYPRE_SStructSolver *solver); /** * Destroy a solver object. An object should be explicitly destroyed * using this destructor when the user's code no longer needs direct * access to it. Once destroyed, the object must not be referenced * again. Note that the object may not be deallocated at the * completion of this call, since there may be internal package * references to the object. The object will then be destroyed when * all internal reference counts go to zero. **/ HYPRE_Int HYPRE_SStructBiCGSTABDestroy(HYPRE_SStructSolver solver); HYPRE_Int HYPRE_SStructBiCGSTABSetup(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); HYPRE_Int HYPRE_SStructBiCGSTABSolve(HYPRE_SStructSolver solver, HYPRE_SStructMatrix A, HYPRE_SStructVector b, HYPRE_SStructVector x); HYPRE_Int HYPRE_SStructBiCGSTABSetTol(HYPRE_SStructSolver solver, HYPRE_Real tol); HYPRE_Int HYPRE_SStructBiCGSTABSetAbsoluteTol(HYPRE_SStructSolver solver, HYPRE_Real tol); /* * RE-VISIT **/ HYPRE_Int HYPRE_SStructBiCGSTABSetMinIter(HYPRE_SStructSolver solver, HYPRE_Int min_iter); HYPRE_Int HYPRE_SStructBiCGSTABSetMaxIter(HYPRE_SStructSolver solver, HYPRE_Int max_iter); /* * RE-VISIT **/ HYPRE_Int HYPRE_SStructBiCGSTABSetStopCrit(HYPRE_SStructSolver solver, HYPRE_Int stop_crit); HYPRE_Int HYPRE_SStructBiCGSTABSetPrecond(HYPRE_SStructSolver solver, HYPRE_PtrToSStructSolverFcn precond, HYPRE_PtrToSStructSolverFcn precond_setup, void *precond_solver); HYPRE_Int HYPRE_SStructBiCGSTABSetLogging(HYPRE_SStructSolver solver, HYPRE_Int logging); HYPRE_Int HYPRE_SStructBiCGSTABSetPrintLevel(HYPRE_SStructSolver solver, HYPRE_Int level); HYPRE_Int HYPRE_SStructBiCGSTABGetNumIterations(HYPRE_SStructSolver solver, HYPRE_Int *num_iterations); HYPRE_Int HYPRE_SStructBiCGSTABGetFinalRelativeResidualNorm(HYPRE_SStructSolver solver, HYPRE_Real *norm); HYPRE_Int HYPRE_SStructBiCGSTABGetResidual(HYPRE_SStructSolver solver, void **residual); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /* These includes shouldn't be here. (RDF) */ #include "interpreter.h" #include "HYPRE_MatvecFunctions.h" #include "_hypre_sstruct_mv.h" /** * @name SStruct LOBPCG Eigensolver * * These routines should be used in conjunction with the generic interface in * \Ref{LOBPCG Eigensolver}. **/ /*@{*/ /** * Load interface interpreter. Vector part loaded with hypre_SStructKrylov * functions and multivector part loaded with mv_TempMultiVector functions. **/ HYPRE_Int HYPRE_SStructSetupInterpreter(mv_InterfaceInterpreter *i); /** * Load Matvec interpreter with hypre_SStructKrylov functions. **/ HYPRE_Int HYPRE_SStructSetupMatvec(HYPRE_MatvecFunctions *mv); /* The next routines should not be here (lower-case prefix). (RDF) */ /* * Set hypre_SStructPVector to random values. **/ HYPRE_Int hypre_SStructPVectorSetRandomValues(hypre_SStructPVector *pvector, HYPRE_Int seed); /* * Set hypre_SStructVector to random values. **/ HYPRE_Int hypre_SStructVectorSetRandomValues(hypre_SStructVector *vector, HYPRE_Int seed); /* * Same as hypre_SStructVectorSetRandomValues except uses void pointer. **/ HYPRE_Int hypre_SStructSetRandomValues(void *v, HYPRE_Int seed); /*@}*/ /*-------------------------------------------------------------------------- *--------------------------------------------------------------------------*/ /*@}*/ #ifdef __cplusplus } #endif #endif
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/seq_mv.h
/*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifndef hypre_MV_HEADER #define hypre_MV_HEADER #include <stdlib.h> #include <stdio.h> #include <math.h> #include <HYPRE_config.h> #include "HYPRE_seq_mv.h" #include "_hypre_utilities.h" #ifdef __cplusplus extern "C" { #endif /****************************************************************************** * * Header info for CSR Matrix data structures * * Note: this matrix currently uses 0-based indexing. * *****************************************************************************/ #ifndef hypre_CSR_MATRIX_HEADER #define hypre_CSR_MATRIX_HEADER /*-------------------------------------------------------------------------- * CSR Matrix *--------------------------------------------------------------------------*/ typedef struct { HYPRE_Int *i; HYPRE_Int *j; HYPRE_BigInt *big_j; HYPRE_Int num_rows; HYPRE_Int num_cols; HYPRE_Int num_nonzeros; hypre_int *i_short; hypre_int *j_short; /* Does the CSRMatrix create/destroy `data', `i', `j'? */ HYPRE_Int owns_data; HYPRE_Complex *data; /* for compressing rows in matrix multiplication */ HYPRE_Int *rownnz; HYPRE_Int num_rownnz; #ifdef HYPRE_USING_UNIFIED_MEMORY /* Flag to keeping track of prefetching */ HYPRE_Int on_device; #endif #ifdef HYPRE_USING_MAPPED_OPENMP_OFFLOAD HYPRE_Int mapped; #endif //#ifdef HYPRE_BIGINT // hypre_int *i_short, *j_short; //#endif } hypre_CSRMatrix; /*-------------------------------------------------------------------------- * Accessor functions for the CSR Matrix structure *--------------------------------------------------------------------------*/ #define hypre_CSRMatrixData(matrix) ((matrix) -> data) #define hypre_CSRMatrixI(matrix) ((matrix) -> i) #define hypre_CSRMatrixJ(matrix) ((matrix) -> j) #define hypre_CSRMatrixBigJ(matrix) ((matrix) -> big_j) #define hypre_CSRMatrixNumRows(matrix) ((matrix) -> num_rows) #define hypre_CSRMatrixNumCols(matrix) ((matrix) -> num_cols) #define hypre_CSRMatrixNumNonzeros(matrix) ((matrix) -> num_nonzeros) #define hypre_CSRMatrixRownnz(matrix) ((matrix) -> rownnz) #define hypre_CSRMatrixNumRownnz(matrix) ((matrix) -> num_rownnz) #define hypre_CSRMatrixOwnsData(matrix) ((matrix) -> owns_data) HYPRE_Int hypre_CSRMatrixGetLoadBalancedPartitionBegin( hypre_CSRMatrix *A ); HYPRE_Int hypre_CSRMatrixGetLoadBalancedPartitionEnd( hypre_CSRMatrix *A ); /*-------------------------------------------------------------------------- * CSR Boolean Matrix *--------------------------------------------------------------------------*/ typedef struct { HYPRE_Int *i; HYPRE_Int *j; HYPRE_BigInt *big_j; HYPRE_Int num_rows; HYPRE_Int num_cols; HYPRE_Int num_nonzeros; HYPRE_Int owns_data; } hypre_CSRBooleanMatrix; /*-------------------------------------------------------------------------- * Accessor functions for the CSR Boolean Matrix structure *--------------------------------------------------------------------------*/ #define hypre_CSRBooleanMatrix_Get_I(matrix) ((matrix)->i) #define hypre_CSRBooleanMatrix_Get_J(matrix) ((matrix)->j) #define hypre_CSRBooleanMatrix_Get_BigJ(matrix) ((matrix)->big_j) #define hypre_CSRBooleanMatrix_Get_NRows(matrix) ((matrix)->num_rows) #define hypre_CSRBooleanMatrix_Get_NCols(matrix) ((matrix)->num_cols) #define hypre_CSRBooleanMatrix_Get_NNZ(matrix) ((matrix)->num_nonzeros) #define hypre_CSRBooleanMatrix_Get_OwnsData(matrix) ((matrix)->owns_data) #endif /****************************************************************************** * * Header info for Mapped Matrix data structures * *****************************************************************************/ #ifndef hypre_MAPPED_MATRIX_HEADER #define hypre_MAPPED_MATRIX_HEADER /*-------------------------------------------------------------------------- * Mapped Matrix *--------------------------------------------------------------------------*/ typedef struct { void *matrix; HYPRE_Int (*ColMap)(HYPRE_Int, void *); void *MapData; } hypre_MappedMatrix; /*-------------------------------------------------------------------------- * Accessor functions for the Mapped Matrix structure *--------------------------------------------------------------------------*/ #define hypre_MappedMatrixMatrix(matrix) ((matrix) -> matrix) #define hypre_MappedMatrixColMap(matrix) ((matrix) -> ColMap) #define hypre_MappedMatrixMapData(matrix) ((matrix) -> MapData) #define hypre_MappedMatrixColIndex(matrix,j) \ (hypre_MappedMatrixColMap(matrix)(j,hypre_MappedMatrixMapData(matrix))) #endif /****************************************************************************** * * Header info for Multiblock Matrix data structures * *****************************************************************************/ #ifndef hypre_MULTIBLOCK_MATRIX_HEADER #define hypre_MULTIBLOCK_MATRIX_HEADER /*-------------------------------------------------------------------------- * Multiblock Matrix *--------------------------------------------------------------------------*/ typedef struct { HYPRE_Int num_submatrices; HYPRE_Int *submatrix_types; void **submatrices; } hypre_MultiblockMatrix; /*-------------------------------------------------------------------------- * Accessor functions for the Multiblock Matrix structure *--------------------------------------------------------------------------*/ #define hypre_MultiblockMatrixSubmatrices(matrix) ((matrix) -> submatrices) #define hypre_MultiblockMatrixNumSubmatrices(matrix) ((matrix) -> num_submatrices) #define hypre_MultiblockMatrixSubmatrixTypes(matrix) ((matrix) -> submatrix_types) #define hypre_MultiblockMatrixSubmatrix(matrix,j) (hypre_MultiblockMatrixSubmatrices\ (matrix)[j]) #define hypre_MultiblockMatrixSubmatrixType(matrix,j) (hypre_MultiblockMatrixSubmatrixTypes\ (matrix)[j]) #endif /****************************************************************************** * * Header info for Vector data structure * *****************************************************************************/ #ifndef hypre_VECTOR_HEADER #define hypre_VECTOR_HEADER /*-------------------------------------------------------------------------- * hypre_Vector *--------------------------------------------------------------------------*/ typedef struct { HYPRE_Complex *data; HYPRE_Int size; /* Does the Vector create/destroy `data'? */ HYPRE_Int owns_data; /* For multivectors...*/ HYPRE_Int num_vectors; /* the above "size" is size of one vector */ HYPRE_Int multivec_storage_method; /* ...if 0, store colwise v0[0], v0[1], ..., v1[0], v1[1], ... v2[0]... */ /* ...if 1, store rowwise v0[0], v1[0], ..., v0[1], v1[1], ... */ /* With colwise storage, vj[i] = data[ j*size + i] With rowwise storage, vj[i] = data[ j + num_vectors*i] */ HYPRE_Int vecstride, idxstride; /* ... so vj[i] = data[ j*vecstride + i*idxstride ] regardless of row_storage.*/ #ifdef HYPRE_USING_GPU HYPRE_Int on_device; #endif #ifdef HYPRE_USING_MAPPED_OPENMP_OFFLOAD HYPRE_Int mapped; HYPRE_Int drc; /* device ref count */ HYPRE_Int hrc; /* host ref count */ #endif } hypre_Vector; /*-------------------------------------------------------------------------- * Accessor functions for the Vector structure *--------------------------------------------------------------------------*/ #define hypre_VectorData(vector) ((vector) -> data) #define hypre_VectorSize(vector) ((vector) -> size) #define hypre_VectorOwnsData(vector) ((vector) -> owns_data) #define hypre_VectorNumVectors(vector) ((vector) -> num_vectors) #define hypre_VectorMultiVecStorageMethod(vector) ((vector) -> multivec_storage_method) #define hypre_VectorVectorStride(vector) ((vector) -> vecstride ) #define hypre_VectorIndexStride(vector) ((vector) -> idxstride ) #endif #ifndef hypre_GPUKERNELS_HEADER #define hypre_GPUKERNELS_HEADER #ifdef HYPRE_USING_GPU #include <cuda_runtime_api.h> HYPRE_Int VecScaleScalar(HYPRE_Real *u, const HYPRE_Real alpha, HYPRE_Int num_rows,cudaStream_t s); void DiagScaleVector(HYPRE_Real *x, HYPRE_Real *y, HYPRE_Real *A_data, HYPRE_Int *A_i, HYPRE_Int num_rows, cudaStream_t s); void VecCopy(HYPRE_Real* tgt, const HYPRE_Real* src, HYPRE_Int size,cudaStream_t s); void VecSet(HYPRE_Real* tgt, HYPRE_Int size, HYPRE_Real value, cudaStream_t s); void VecScale(HYPRE_Real *u, HYPRE_Real *v, HYPRE_Real *l1_norm, HYPRE_Int num_rows,cudaStream_t s); void VecScaleSplit(HYPRE_Real *u, HYPRE_Real *v, HYPRE_Real *l1_norm, HYPRE_Int num_rows,cudaStream_t s); void CudaCompileFlagCheck(); void PackOnDevice(HYPRE_Complex *send_data,HYPRE_Complex *x_local_data, HYPRE_Int *send_map, HYPRE_Int begin, HYPRE_Int end,cudaStream_t s); #endif #endif /* csr_matop.c */ hypre_CSRMatrix *hypre_CSRMatrixAdd ( hypre_CSRMatrix *A , hypre_CSRMatrix *B ); hypre_CSRMatrix *hypre_CSRMatrixBigAdd ( hypre_CSRMatrix *A , hypre_CSRMatrix *B ); hypre_CSRMatrix *hypre_CSRMatrixMultiply ( hypre_CSRMatrix *A , hypre_CSRMatrix *B ); hypre_CSRMatrix *hypre_CSRMatrixDeleteZeros ( hypre_CSRMatrix *A , HYPRE_Real tol ); HYPRE_Int hypre_CSRMatrixTranspose ( hypre_CSRMatrix *A , hypre_CSRMatrix **AT , HYPRE_Int data ); HYPRE_Int hypre_CSRMatrixReorder ( hypre_CSRMatrix *A ); HYPRE_Complex hypre_CSRMatrixSumElts ( hypre_CSRMatrix *A ); /* csr_matrix.c */ hypre_CSRMatrix *hypre_CSRMatrixCreate ( HYPRE_Int num_rows , HYPRE_Int num_cols , HYPRE_Int num_nonzeros ); HYPRE_Int hypre_CSRMatrixDestroy ( hypre_CSRMatrix *matrix ); HYPRE_Int hypre_CSRMatrixInitialize ( hypre_CSRMatrix *matrix ); HYPRE_Int hypre_CSRMatrixBigInitialize ( hypre_CSRMatrix *matrix ); HYPRE_Int hypre_CSRMatrixBigJtoJ ( hypre_CSRMatrix *matrix ); HYPRE_Int hypre_CSRMatrixJtoBigJ ( hypre_CSRMatrix *matrix ); HYPRE_Int hypre_CSRMatrixSetDataOwner ( hypre_CSRMatrix *matrix , HYPRE_Int owns_data ); HYPRE_Int hypre_CSRMatrixSetRownnz ( hypre_CSRMatrix *matrix ); hypre_CSRMatrix *hypre_CSRMatrixRead ( char *file_name ); HYPRE_Int hypre_CSRMatrixPrint ( hypre_CSRMatrix *matrix , char *file_name ); HYPRE_Int hypre_CSRMatrixPrintHB ( hypre_CSRMatrix *matrix_input , char *file_name ); HYPRE_Int hypre_CSRMatrixCopy ( hypre_CSRMatrix *A , hypre_CSRMatrix *B , HYPRE_Int copy_data ); hypre_CSRMatrix *hypre_CSRMatrixClone ( hypre_CSRMatrix *A ); hypre_CSRMatrix *hypre_CSRMatrixUnion ( hypre_CSRMatrix *A , hypre_CSRMatrix *B , HYPRE_BigInt *col_map_offd_A , HYPRE_BigInt *col_map_offd_B , HYPRE_BigInt **col_map_offd_C ); #ifdef HYPRE_USING_UNIFIED_MEMORY void hypre_CSRMatrixPrefetchToDevice(hypre_CSRMatrix *A); void hypre_CSRMatrixPrefetchToDeviceBIGINT(hypre_CSRMatrix *A); void hypre_CSRMatrixPrefetchToHost(hypre_CSRMatrix *A); hypre_int hypre_CSRMatrixIsManaged(hypre_CSRMatrix *a); #endif #ifdef HYPRE_USING_MAPPED_OPENMP_OFFLOAD void hypre_CSRMatrixMapToDevice(hypre_CSRMatrix *A); void hypre_CSRMatrixUpdateToDevice(hypre_CSRMatrix *A); void hypre_CSRMatrixUnMapFromDevice(hypre_CSRMatrix *A); #endif /* csr_matvec.c */ // y[offset:end] = alpha*A[offset:end,:]*x + beta*b[offset:end] HYPRE_Int hypre_CSRMatrixMatvecOutOfPlace ( HYPRE_Complex alpha , hypre_CSRMatrix *A , hypre_Vector *x , HYPRE_Complex beta , hypre_Vector *b, hypre_Vector *y, HYPRE_Int offset ); HYPRE_Int hypre_CSRMatrixMatvecOutOfPlaceOOMP ( HYPRE_Complex alpha , hypre_CSRMatrix *A , hypre_Vector *x , HYPRE_Complex beta , hypre_Vector *b, hypre_Vector *y, HYPRE_Int offset ); // y = alpha*A + beta*y HYPRE_Int hypre_CSRMatrixMatvec ( HYPRE_Complex alpha , hypre_CSRMatrix *A , hypre_Vector *x , HYPRE_Complex beta , hypre_Vector *y ); HYPRE_Int hypre_CSRMatrixMatvecT ( HYPRE_Complex alpha , hypre_CSRMatrix *A , hypre_Vector *x , HYPRE_Complex beta , hypre_Vector *y ); HYPRE_Int hypre_CSRMatrixMatvec_FF ( HYPRE_Complex alpha , hypre_CSRMatrix *A , hypre_Vector *x , HYPRE_Complex beta , hypre_Vector *y , HYPRE_Int *CF_marker_x , HYPRE_Int *CF_marker_y , HYPRE_Int fpt ); #ifdef HYPRE_USING_GPU HYPRE_Int hypre_CSRMatrixMatvecDevice( HYPRE_Complex alpha , hypre_CSRMatrix *A , hypre_Vector *x , HYPRE_Complex beta , hypre_Vector *b, hypre_Vector *y, HYPRE_Int offset ); HYPRE_Int hypre_CSRMatrixMatvecDeviceBIGINT( HYPRE_Complex alpha , hypre_CSRMatrix *A , hypre_Vector *x , HYPRE_Complex beta , hypre_Vector *b, hypre_Vector *y, HYPRE_Int offset ); #endif /* genpart.c */ HYPRE_Int hypre_GeneratePartitioning ( HYPRE_BigInt length , HYPRE_Int num_procs , HYPRE_BigInt **part_ptr ); HYPRE_Int hypre_GenerateLocalPartitioning ( HYPRE_BigInt length , HYPRE_Int num_procs , HYPRE_Int myid , HYPRE_BigInt **part_ptr ); /* HYPRE_csr_matrix.c */ HYPRE_CSRMatrix HYPRE_CSRMatrixCreate ( HYPRE_Int num_rows , HYPRE_Int num_cols , HYPRE_Int *row_sizes ); HYPRE_Int HYPRE_CSRMatrixDestroy ( HYPRE_CSRMatrix matrix ); HYPRE_Int HYPRE_CSRMatrixInitialize ( HYPRE_CSRMatrix matrix ); HYPRE_CSRMatrix HYPRE_CSRMatrixRead ( char *file_name ); void HYPRE_CSRMatrixPrint ( HYPRE_CSRMatrix matrix , char *file_name ); HYPRE_Int HYPRE_CSRMatrixGetNumRows ( HYPRE_CSRMatrix matrix , HYPRE_Int *num_rows ); /* HYPRE_mapped_matrix.c */ HYPRE_MappedMatrix HYPRE_MappedMatrixCreate ( void ); HYPRE_Int HYPRE_MappedMatrixDestroy ( HYPRE_MappedMatrix matrix ); HYPRE_Int HYPRE_MappedMatrixLimitedDestroy ( HYPRE_MappedMatrix matrix ); HYPRE_Int HYPRE_MappedMatrixInitialize ( HYPRE_MappedMatrix matrix ); HYPRE_Int HYPRE_MappedMatrixAssemble ( HYPRE_MappedMatrix matrix ); void HYPRE_MappedMatrixPrint ( HYPRE_MappedMatrix matrix ); HYPRE_Int HYPRE_MappedMatrixGetColIndex ( HYPRE_MappedMatrix matrix , HYPRE_Int j ); void *HYPRE_MappedMatrixGetMatrix ( HYPRE_MappedMatrix matrix ); HYPRE_Int HYPRE_MappedMatrixSetMatrix ( HYPRE_MappedMatrix matrix , void *matrix_data ); HYPRE_Int HYPRE_MappedMatrixSetColMap ( HYPRE_MappedMatrix matrix , HYPRE_Int (*ColMap )(HYPRE_Int ,void *)); HYPRE_Int HYPRE_MappedMatrixSetMapData ( HYPRE_MappedMatrix matrix , void *MapData ); /* HYPRE_multiblock_matrix.c */ HYPRE_MultiblockMatrix HYPRE_MultiblockMatrixCreate ( void ); HYPRE_Int HYPRE_MultiblockMatrixDestroy ( HYPRE_MultiblockMatrix matrix ); HYPRE_Int HYPRE_MultiblockMatrixLimitedDestroy ( HYPRE_MultiblockMatrix matrix ); HYPRE_Int HYPRE_MultiblockMatrixInitialize ( HYPRE_MultiblockMatrix matrix ); HYPRE_Int HYPRE_MultiblockMatrixAssemble ( HYPRE_MultiblockMatrix matrix ); void HYPRE_MultiblockMatrixPrint ( HYPRE_MultiblockMatrix matrix ); HYPRE_Int HYPRE_MultiblockMatrixSetNumSubmatrices ( HYPRE_MultiblockMatrix matrix , HYPRE_Int n ); HYPRE_Int HYPRE_MultiblockMatrixSetSubmatrixType ( HYPRE_MultiblockMatrix matrix , HYPRE_Int j , HYPRE_Int type ); /* HYPRE_vector.c */ HYPRE_Vector HYPRE_VectorCreate ( HYPRE_Int size ); HYPRE_Int HYPRE_VectorDestroy ( HYPRE_Vector vector ); HYPRE_Int HYPRE_VectorInitialize ( HYPRE_Vector vector ); HYPRE_Int HYPRE_VectorPrint ( HYPRE_Vector vector , char *file_name ); HYPRE_Vector HYPRE_VectorRead ( char *file_name ); /* mapped_matrix.c */ hypre_MappedMatrix *hypre_MappedMatrixCreate ( void ); HYPRE_Int hypre_MappedMatrixDestroy ( hypre_MappedMatrix *matrix ); HYPRE_Int hypre_MappedMatrixLimitedDestroy ( hypre_MappedMatrix *matrix ); HYPRE_Int hypre_MappedMatrixInitialize ( hypre_MappedMatrix *matrix ); HYPRE_Int hypre_MappedMatrixAssemble ( hypre_MappedMatrix *matrix ); void hypre_MappedMatrixPrint ( hypre_MappedMatrix *matrix ); HYPRE_Int hypre_MappedMatrixGetColIndex ( hypre_MappedMatrix *matrix , HYPRE_Int j ); void *hypre_MappedMatrixGetMatrix ( hypre_MappedMatrix *matrix ); HYPRE_Int hypre_MappedMatrixSetMatrix ( hypre_MappedMatrix *matrix , void *matrix_data ); HYPRE_Int hypre_MappedMatrixSetColMap ( hypre_MappedMatrix *matrix , HYPRE_Int (*ColMap )(HYPRE_Int ,void *)); HYPRE_Int hypre_MappedMatrixSetMapData ( hypre_MappedMatrix *matrix , void *map_data ); /* multiblock_matrix.c */ hypre_MultiblockMatrix *hypre_MultiblockMatrixCreate ( void ); HYPRE_Int hypre_MultiblockMatrixDestroy ( hypre_MultiblockMatrix *matrix ); HYPRE_Int hypre_MultiblockMatrixLimitedDestroy ( hypre_MultiblockMatrix *matrix ); HYPRE_Int hypre_MultiblockMatrixInitialize ( hypre_MultiblockMatrix *matrix ); HYPRE_Int hypre_MultiblockMatrixAssemble ( hypre_MultiblockMatrix *matrix ); void hypre_MultiblockMatrixPrint ( hypre_MultiblockMatrix *matrix ); HYPRE_Int hypre_MultiblockMatrixSetNumSubmatrices ( hypre_MultiblockMatrix *matrix , HYPRE_Int n ); HYPRE_Int hypre_MultiblockMatrixSetSubmatrixType ( hypre_MultiblockMatrix *matrix , HYPRE_Int j , HYPRE_Int type ); HYPRE_Int hypre_MultiblockMatrixSetSubmatrix ( hypre_MultiblockMatrix *matrix , HYPRE_Int j , void *submatrix ); /* vector.c */ hypre_Vector *hypre_SeqVectorCreate ( HYPRE_Int size ); hypre_Vector *hypre_SeqMultiVectorCreate ( HYPRE_Int size , HYPRE_Int num_vectors ); HYPRE_Int hypre_SeqVectorDestroy ( hypre_Vector *vector ); HYPRE_Int hypre_SeqVectorInitialize ( hypre_Vector *vector ); HYPRE_Int hypre_SeqVectorSetDataOwner ( hypre_Vector *vector , HYPRE_Int owns_data ); hypre_Vector *hypre_SeqVectorRead ( char *file_name ); HYPRE_Int hypre_SeqVectorPrint ( hypre_Vector *vector , char *file_name ); HYPRE_Int hypre_SeqVectorSetConstantValues ( hypre_Vector *v , HYPRE_Complex value ); HYPRE_Int hypre_SeqVectorSetRandomValues ( hypre_Vector *v , HYPRE_Int seed ); HYPRE_Int hypre_SeqVectorCopy ( hypre_Vector *x , hypre_Vector *y ); hypre_Vector *hypre_SeqVectorCloneDeep ( hypre_Vector *x ); hypre_Vector *hypre_SeqVectorCloneShallow ( hypre_Vector *x ); HYPRE_Int hypre_SeqVectorScale ( HYPRE_Complex alpha , hypre_Vector *y ); HYPRE_Int hypre_SeqVectorAxpy ( HYPRE_Complex alpha , hypre_Vector *x , hypre_Vector *y ); HYPRE_Real hypre_SeqVectorInnerProd ( hypre_Vector *x , hypre_Vector *y ); HYPRE_Int hypre_SeqVectorMassInnerProd(hypre_Vector *x, hypre_Vector **y, HYPRE_Int k, HYPRE_Int unroll, HYPRE_Real *result); HYPRE_Int hypre_SeqVectorMassInnerProd4(hypre_Vector *x, hypre_Vector **y, HYPRE_Int k, HYPRE_Real *result); HYPRE_Int hypre_SeqVectorMassInnerProd8(hypre_Vector *x, hypre_Vector **y, HYPRE_Int k, HYPRE_Real *result); HYPRE_Int hypre_SeqVectorMassDotpTwo(hypre_Vector *x, hypre_Vector *y , hypre_Vector **z, HYPRE_Int k, HYPRE_Int unroll, HYPRE_Real *result_x , HYPRE_Real *result_y); HYPRE_Int hypre_SeqVectorMassDotpTwo4(hypre_Vector *x, hypre_Vector *y , hypre_Vector **z, HYPRE_Int k, HYPRE_Real *result_x , HYPRE_Real *result_y); HYPRE_Int hypre_SeqVectorMassDotpTwo8(hypre_Vector *x, hypre_Vector *y , hypre_Vector **z, HYPRE_Int k, HYPRE_Real *result_x , HYPRE_Real *result_y); HYPRE_Int hypre_SeqVectorMassAxpy(HYPRE_Complex *alpha, hypre_Vector **x, hypre_Vector *y, HYPRE_Int k, HYPRE_Int unroll); HYPRE_Int hypre_SeqVectorMassAxpy4(HYPRE_Complex *alpha, hypre_Vector **x, hypre_Vector *y, HYPRE_Int k); HYPRE_Int hypre_SeqVectorMassAxpy8(HYPRE_Complex *alpha, hypre_Vector **x, hypre_Vector *y, HYPRE_Int k); HYPRE_Complex hypre_VectorSumElts ( hypre_Vector *vector ); #ifdef HYPRE_USING_UNIFIED_MEMORY HYPRE_Complex hypre_VectorSumAbsElts ( hypre_Vector *vector ); HYPRE_Int hypre_SeqVectorCopyDevice ( hypre_Vector *x , hypre_Vector *y ); HYPRE_Int hypre_SeqVectorAxpyDevice( HYPRE_Complex alpha , hypre_Vector *x , hypre_Vector *y ); HYPRE_Real hypre_SeqVectorInnerProdDevice ( hypre_Vector *x , hypre_Vector *y ); /*void hypre_SeqVectorMassInnerProdDevice ( hypre_Vector *x , hypre_Vector **y, HYPRE_Int k, HYPRE_Real * result); void hypre_SeqVectorMassAxpyDevice(HYPRE_Complex * alpha, hypre_Vector **x, hypre_Vector *y, HYPRE_Int k);*/ void hypre_SeqVectorPrefetchToDevice(hypre_Vector *x); void hypre_SeqVectorPrefetchToHost(hypre_Vector *x); void hypre_SeqVectorPrefetchToDeviceInStream(hypre_Vector *x, HYPRE_Int index); hypre_int hypre_SeqVectorIsManaged(hypre_Vector *x); #endif #ifdef HYPRE_USING_MAPPED_OPENMP_OFFLOAD void hypre_SeqVectorMapToDevice(hypre_Vector *x); void hypre_SeqVectorUnMapFromDevice(hypre_Vector *x); void hypre_SeqVectorUpdateDevice(hypre_Vector *x); void hypre_SeqVectorUpdateHost(hypre_Vector *x); #endif HYPRE_Int hypre_CSRMatrixMatvecOutOfPlaceOOMP3( HYPRE_Complex alpha, hypre_CSRMatrix *A, hypre_Vector *x, HYPRE_Complex beta, hypre_Vector *b, hypre_Vector *y, HYPRE_Int offset); #ifdef __cplusplus } #endif #ifdef HYPRE_USING_MAPPED_OPENMP_OFFLOAD inline void UpdateHRC(hypre_Vector *v){ v->hrc++; } inline void UpdateDRC(hypre_Vector *v){ v->drc++; } inline void SetHRC(hypre_Vector *v){ v->hrc=v->drc; } inline void SetDRC(hypre_Vector *v){ v->drc=v->hrc; } inline void SyncVectorToDevice(hypre_Vector *v){ if (v->hrc>v->drc) hypre_SeqVectorUpdateDevice(v); } inline void SyncVectorToHost(hypre_Vector *v){ if (v->drc>v->hrc) hypre_SeqVectorUpdateHost(v); } #endif void printRC(hypre_Vector *x,char *id); #endif
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/distributed_matrix.h
<reponame>mzl13/LiDendrite<filename>Src/LinearSolvers/hypre/include/distributed_matrix.h /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /****************************************************************************** * * Header info for the hypre_DistributedMatrix structures * *****************************************************************************/ #ifndef hypre_DISTRIBUTED_MATRIX_HEADER #define hypre_DISTRIBUTED_MATRIX_HEADER #include "_hypre_utilities.h" /*-------------------------------------------------------------------------- * hypre_DistributedMatrix: *--------------------------------------------------------------------------*/ typedef struct { MPI_Comm context; HYPRE_BigInt M, N; /* number of rows and cols in matrix */ void *auxiliary_data; /* Placeholder for implmentation specific data */ void *local_storage; /* Structure for storing local portion */ HYPRE_Int local_storage_type; /* Indicates the type of "local storage" */ void *translator; /* optional storage_type specfic structure for holding additional local info */ #ifdef HYPRE_TIMING HYPRE_Int GetRow_timer; #endif } hypre_DistributedMatrix; /*-------------------------------------------------------------------------- * Accessor macros: hypre_DistributedMatrix *--------------------------------------------------------------------------*/ #define hypre_DistributedMatrixContext(matrix) ((matrix) -> context) #define hypre_DistributedMatrixM(matrix) ((matrix) -> M) #define hypre_DistributedMatrixN(matrix) ((matrix) -> N) #define hypre_DistributedMatrixAuxiliaryData(matrix) ((matrix) -> auxiliary_data) #define hypre_DistributedMatrixLocalStorageType(matrix) ((matrix) -> local_storage_type) #define hypre_DistributedMatrixTranslator(matrix) ((matrix) -> translator) #define hypre_DistributedMatrixLocalStorage(matrix) ((matrix) -> local_storage) /*-------------------------------------------------------------------------- * prototypes for operations on local objects *--------------------------------------------------------------------------*/ #include "HYPRE_distributed_matrix_mv.h" #include "internal_protos.h" #endif
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/LLNL_FEI_Matrix.h
/*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /*************************************************************************** Module: LLNL_FEI_Matrix.h Purpose: custom implementation of the FEI/Matrix ***************************************************************************/ #ifndef _LLNL_FEI_MATRIX_H_ #define _LLNL_FEI_MATRIX_H_ #include "_hypre_utilities.h" #include "HYPRE.h" /************************************************************************** definition of the class to capture the FEI matrix information ---------------------------------------------------------------------------*/ class LLNL_FEI_Matrix { MPI_Comm mpiComm_; int mypid_; int outputLevel_; int localNRows_; int nConstraints_; int extNRows_; int *constrEqns_; int *globalEqnOffsets_; int *globalCROffsets_; int *extColMap_; int *diagIA_; int *diagJA_; double *diagAA_; int *offdIA_; int *offdJA_; double *offdAA_; double *diagonal_; int nRecvs_; int *recvLengs_; int *recvProcs_; int *recvProcIndices_; double *dRecvBufs_; double *dExtBufs_; int nSends_; int *sendLengs_; int *sendProcs_; int *sendProcIndices_; double *dSendBufs_; MPI_Request *mpiRequests_; int FLAG_PrintMatrix_; int FLAG_MatrixOverlap_; public : LLNL_FEI_Matrix(MPI_Comm comm); ~LLNL_FEI_Matrix(); int parameters(int numParams, char **paramString); int resetMatrix(double s); int setMatrix(int nRows, int *diagIA, int *diagJA, double *diagAA, int nExtRows, int *colMap, int *offdIA, int *offdJA, double *offdAA, double *diagonal, int *eqnOffsets, int *crOffsets); int setCommPattern(int nRecvs, int *recvLengs, int *recvProcs, int *recvProcIndices, int nSends, int *sendLengs, int *sendProcs, int *sendProcIndices); int setComplete(); int setConstraints(int nConstraints, int *constEqns); int residualNorm(int whichNorm, double *solnVector, double *rhsVector, double* norms); int getNumLocalRows() {return localNRows_;} int getNumExtRows() {return extNRows_;} int *getEqnOffsets() {return globalEqnOffsets_;} double *getMatrixDiagonal() {return diagonal_;} int getLocalMatrix(int *nrows, int **ia, int **ja, double **aa) {(*nrows) = localNRows_; (*ia) = diagIA_; (*ja) = diagJA_; (*aa) = diagAA_; return 0; } int getExtMatrix(int *nrows, int **ia, int **ja, double **aa, int **map) {(*nrows) = extNRows_; (*ia) = offdIA_; (*ja) = offdJA_; (*aa) = offdAA_; (*map) = extColMap_; return 0; } void matvec(double *x, double *y); private: void scatterDData(double *x); void gatherAddDData(double *x); void printMatrix(); void matMult(int ANRows, int ANCols, int *AIA, int *AJA, double *AAA, int BNRows, int BNCols, int *BIA, int *BJA, double *BAA, int *DNRows, int *DNCols, int **DIA, int **DJA, double **DAA); void exchangeSubMatrices(); int BinarySearch2(int *list, int start, int lsize, int ind); void IntSort(int *list1, int start, int theEnd); void IntSort2(int *list1, int *list2, int start, int theEnd); void IntSort2a(int *list1, double *list2, int start, int theEnd); }; #endif /* endif for _LLNL_FEI_MATRIX_H_ */
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/fei_bool.h
<filename>Src/LinearSolvers/hypre/include/fei_bool.h /*--------------------------------------------------------------------*/ /* Copyright 2005 Sandia Corporation. */ /* Under the terms of Contract DE-AC04-94AL85000, there is a */ /* non-exclusive license for use of this work by or on behalf */ /* of the U.S. Government. Export of this program may require */ /* a license from the United States Government. */ /*--------------------------------------------------------------------*/ #ifndef _fei_bool_h_ #define _fei_bool_h_ //Simulate bool support if the compiler being used doesn't have built-in bool //(Is there still such a compiler as of 2007?) #ifdef FEI_SIMULATE_BOOL #ifdef bool #undef bool #endif #ifdef true #undef true #endif #ifdef false #undef false #endif #define bool int #define true 1 #define false 0 #endif #endif
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/fei_mpi.h
#ifndef _fei_mpi_h_ #define _fei_mpi_h_ /*--------------------------------------------------------------------*/ /* Copyright 2005 Sandia Corporation. */ /* Under the terms of Contract DE-AC04-94AL85000, there is a */ /* non-exclusive license for use of this work by or on behalf */ /* of the U.S. Government. Export of this program may require */ /* a license from the United States Government. */ /*--------------------------------------------------------------------*/ #include "fei_macros.hpp" #ifdef FEI_SER /** If FEI_SER is defined, the user wants to build/run in purely serial mode, without linking against MPI. To minimize #ifdefs in FEI code, we do a few #defines for some common MPI symbols that appear in the code. */ #define MPI_Comm int #define MPI_Request int #define MPI_COMM_WORLD 0 #define MPI_Abort(a, b) abort() #define MPI_Wtime() 0.0 #define MPI_Barrier( a ) (void)a #define MPI_SUCCESS 0 #else #include <mpi.h> #endif #endif // _fei_mpi_h_
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/_hypre_utilities.h
/*** DO NOT EDIT THIS FILE DIRECTLY (use 'headers' to generate) ***/ #ifndef hypre_UTILITIES_HEADER #define hypre_UTILITIES_HEADER #include "HYPRE_utilities.h" #ifdef HYPRE_USING_OPENMP #include <omp.h> #endif #ifdef __cplusplus extern "C" { #endif /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /****************************************************************************** * * General structures and values * *****************************************************************************/ #ifndef hypre_GENERAL_HEADER #define hypre_GENERAL_HEADER /* This allows us to consistently avoid 'int' throughout hypre */ typedef int hypre_int; typedef long int hypre_longint; typedef unsigned int hypre_uint; typedef unsigned long int hypre_ulongint; /* This allows us to consistently avoid 'double' throughout hypre */ typedef double hypre_double; /*-------------------------------------------------------------------------- * Define various functions *--------------------------------------------------------------------------*/ #ifndef hypre_max #define hypre_max(a,b) (((a)<(b)) ? (b) : (a)) #endif #ifndef hypre_min #define hypre_min(a,b) (((a)<(b)) ? (a) : (b)) #endif #ifndef hypre_abs #define hypre_abs(a) (((a)>0) ? (a) : -(a)) #endif #ifndef hypre_round #define hypre_round(x) ( ((x) < 0.0) ? ((HYPRE_Int)(x - 0.5)) : ((HYPRE_Int)(x + 0.5)) ) #endif #ifndef hypre_pow2 #define hypre_pow2(i) ( 1 << (i) ) #endif #endif /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /****************************************************************************** * * Fake mpi stubs to generate serial codes without mpi * *****************************************************************************/ #ifndef hypre_MPISTUBS #define hypre_MPISTUBS #ifdef __cplusplus extern "C" { #endif #ifdef HYPRE_SEQUENTIAL /****************************************************************************** * MPI stubs to generate serial codes without mpi *****************************************************************************/ /*-------------------------------------------------------------------------- * Change all MPI names to hypre_MPI names to avoid link conflicts. * * NOTE: MPI_Comm is the only MPI symbol in the HYPRE user interface, * and is defined in `HYPRE_utilities.h'. *--------------------------------------------------------------------------*/ #define MPI_Comm hypre_MPI_Comm #define MPI_Group hypre_MPI_Group #define MPI_Request hypre_MPI_Request #define MPI_Datatype hypre_MPI_Datatype #define MPI_Status hypre_MPI_Status #define MPI_Op hypre_MPI_Op #define MPI_Aint hypre_MPI_Aint #define MPI_Info hypre_MPI_Info #define MPI_COMM_WORLD hypre_MPI_COMM_WORLD #define MPI_COMM_NULL hypre_MPI_COMM_NULL #define MPI_COMM_SELF hypre_MPI_COMM_SELF #define MPI_COMM_TYPE_SHARED hypre_MPI_COMM_TYPE_SHARED #define MPI_BOTTOM hypre_MPI_BOTTOM #define MPI_FLOAT hypre_MPI_FLOAT #define MPI_DOUBLE hypre_MPI_DOUBLE #define MPI_LONG_DOUBLE hypre_MPI_LONG_DOUBLE #define MPI_INT hypre_MPI_INT #define MPI_LONG_LONG_INT hypre_MPI_INT #define MPI_CHAR hypre_MPI_CHAR #define MPI_LONG hypre_MPI_LONG #define MPI_BYTE hypre_MPI_BYTE #define MPI_C_DOUBLE_COMPLEX hypre_MPI_COMPLEX #define MPI_SUM hypre_MPI_SUM #define MPI_MIN hypre_MPI_MIN #define MPI_MAX hypre_MPI_MAX #define MPI_LOR hypre_MPI_LOR #define MPI_LAND hypre_MPI_LAND #define MPI_SUCCESS hypre_MPI_SUCCESS #define MPI_STATUSES_IGNORE hypre_MPI_STATUSES_IGNORE #define MPI_UNDEFINED hypre_MPI_UNDEFINED #define MPI_REQUEST_NULL hypre_MPI_REQUEST_NULL #define MPI_ANY_SOURCE hypre_MPI_ANY_SOURCE #define MPI_ANY_TAG hypre_MPI_ANY_TAG #define MPI_SOURCE hypre_MPI_SOURCE #define MPI_TAG hypre_MPI_TAG #define MPI_Init hypre_MPI_Init #define MPI_Finalize hypre_MPI_Finalize #define MPI_Abort hypre_MPI_Abort #define MPI_Wtime hypre_MPI_Wtime #define MPI_Wtick hypre_MPI_Wtick #define MPI_Barrier hypre_MPI_Barrier #define MPI_Comm_create hypre_MPI_Comm_create #define MPI_Comm_dup hypre_MPI_Comm_dup #define MPI_Comm_f2c hypre_MPI_Comm_f2c #define MPI_Comm_group hypre_MPI_Comm_group #define MPI_Comm_size hypre_MPI_Comm_size #define MPI_Comm_rank hypre_MPI_Comm_rank #define MPI_Comm_free hypre_MPI_Comm_free #define MPI_Comm_split hypre_MPI_Comm_split #define MPI_Comm_split_type hypre_MPI_Comm_split_type #define MPI_Group_incl hypre_MPI_Group_incl #define MPI_Group_free hypre_MPI_Group_free #define MPI_Address hypre_MPI_Address #define MPI_Get_count hypre_MPI_Get_count #define MPI_Alltoall hypre_MPI_Alltoall #define MPI_Allgather hypre_MPI_Allgather #define MPI_Allgatherv hypre_MPI_Allgatherv #define MPI_Gather hypre_MPI_Gather #define MPI_Gatherv hypre_MPI_Gatherv #define MPI_Scatter hypre_MPI_Scatter #define MPI_Scatterv hypre_MPI_Scatterv #define MPI_Bcast hypre_MPI_Bcast #define MPI_Send hypre_MPI_Send #define MPI_Recv hypre_MPI_Recv #define MPI_Isend hypre_MPI_Isend #define MPI_Irecv hypre_MPI_Irecv #define MPI_Send_init hypre_MPI_Send_init #define MPI_Recv_init hypre_MPI_Recv_init #define MPI_Irsend hypre_MPI_Irsend #define MPI_Startall hypre_MPI_Startall #define MPI_Probe hypre_MPI_Probe #define MPI_Iprobe hypre_MPI_Iprobe #define MPI_Test hypre_MPI_Test #define MPI_Testall hypre_MPI_Testall #define MPI_Wait hypre_MPI_Wait #define MPI_Waitall hypre_MPI_Waitall #define MPI_Waitany hypre_MPI_Waitany #define MPI_Allreduce hypre_MPI_Allreduce #define MPI_Reduce hypre_MPI_Reduce #define MPI_Scan hypre_MPI_Scan #define MPI_Request_free hypre_MPI_Request_free #define MPI_Type_contiguous hypre_MPI_Type_contiguous #define MPI_Type_vector hypre_MPI_Type_vector #define MPI_Type_hvector hypre_MPI_Type_hvector #define MPI_Type_struct hypre_MPI_Type_struct #define MPI_Type_commit hypre_MPI_Type_commit #define MPI_Type_free hypre_MPI_Type_free #define MPI_Op_free hypre_MPI_Op_free #define MPI_Op_create hypre_MPI_Op_create #define MPI_User_function hypre_MPI_User_function #define MPI_Info_create hypre_MPI_Info_create /*-------------------------------------------------------------------------- * Types, etc. *--------------------------------------------------------------------------*/ /* These types have associated creation and destruction routines */ typedef HYPRE_Int hypre_MPI_Comm; typedef HYPRE_Int hypre_MPI_Group; typedef HYPRE_Int hypre_MPI_Request; typedef HYPRE_Int hypre_MPI_Datatype; typedef void (hypre_MPI_User_function) (); typedef struct { HYPRE_Int hypre_MPI_SOURCE; HYPRE_Int hypre_MPI_TAG; } hypre_MPI_Status; typedef HYPRE_Int hypre_MPI_Op; typedef HYPRE_Int hypre_MPI_Aint; typedef HYPRE_Int hypre_MPI_Info; #define hypre_MPI_COMM_SELF 1 #define hypre_MPI_COMM_WORLD 0 #define hypre_MPI_COMM_NULL -1 #define hypre_MPI_COMM_TYPE_SHARED 0 #define hypre_MPI_BOTTOM 0x0 #define hypre_MPI_FLOAT 0 #define hypre_MPI_DOUBLE 1 #define hypre_MPI_LONG_DOUBLE 2 #define hypre_MPI_INT 3 #define hypre_MPI_CHAR 4 #define hypre_MPI_LONG 5 #define hypre_MPI_BYTE 6 #define hypre_MPI_REAL 7 #define hypre_MPI_COMPLEX 8 #define hypre_MPI_SUM 0 #define hypre_MPI_MIN 1 #define hypre_MPI_MAX 2 #define hypre_MPI_LOR 3 #define hypre_MPI_LAND 4 #define hypre_MPI_SUCCESS 0 #define hypre_MPI_STATUSES_IGNORE 0 #define hypre_MPI_UNDEFINED -9999 #define hypre_MPI_REQUEST_NULL 0 #define hypre_MPI_ANY_SOURCE 1 #define hypre_MPI_ANY_TAG 1 #else /****************************************************************************** * MPI stubs to do casting of HYPRE_Int and hypre_int correctly *****************************************************************************/ typedef MPI_Comm hypre_MPI_Comm; typedef MPI_Group hypre_MPI_Group; typedef MPI_Request hypre_MPI_Request; typedef MPI_Datatype hypre_MPI_Datatype; typedef MPI_Status hypre_MPI_Status; typedef MPI_Op hypre_MPI_Op; typedef MPI_Aint hypre_MPI_Aint; typedef MPI_Info hypre_MPI_Info; typedef MPI_User_function hypre_MPI_User_function; #define hypre_MPI_COMM_WORLD MPI_COMM_WORLD #define hypre_MPI_COMM_NULL MPI_COMM_NULL #define hypre_MPI_BOTTOM MPI_BOTTOM #define hypre_MPI_COMM_SELF MPI_COMM_SELF #define hypre_MPI_COMM_TYPE_SHARED MPI_COMM_TYPE_SHARED #define hypre_MPI_FLOAT MPI_FLOAT #define hypre_MPI_DOUBLE MPI_DOUBLE #define hypre_MPI_LONG_DOUBLE MPI_LONG_DOUBLE /* HYPRE_MPI_INT is defined in HYPRE_utilities.h */ #define hypre_MPI_INT HYPRE_MPI_INT #define hypre_MPI_CHAR MPI_CHAR #define hypre_MPI_LONG MPI_LONG #define hypre_MPI_BYTE MPI_BYTE /* HYPRE_MPI_REAL is defined in HYPRE_utilities.h */ #define hypre_MPI_REAL HYPRE_MPI_REAL /* HYPRE_MPI_COMPLEX is defined in HYPRE_utilities.h */ #define hypre_MPI_COMPLEX HYPRE_MPI_COMPLEX #define hypre_MPI_SUM MPI_SUM #define hypre_MPI_MIN MPI_MIN #define hypre_MPI_MAX MPI_MAX #define hypre_MPI_LOR MPI_LOR #define hypre_MPI_SUCCESS MPI_SUCCESS #define hypre_MPI_STATUSES_IGNORE MPI_STATUSES_IGNORE #define hypre_MPI_UNDEFINED MPI_UNDEFINED #define hypre_MPI_REQUEST_NULL MPI_REQUEST_NULL #define hypre_MPI_ANY_SOURCE MPI_ANY_SOURCE #define hypre_MPI_ANY_TAG MPI_ANY_TAG #define hypre_MPI_SOURCE MPI_SOURCE #define hypre_MPI_TAG MPI_TAG #define hypre_MPI_LAND MPI_LAND #endif /****************************************************************************** * Everything below this applies to both ifdef cases above *****************************************************************************/ /*-------------------------------------------------------------------------- * Prototypes *--------------------------------------------------------------------------*/ /* mpistubs.c */ HYPRE_Int hypre_MPI_Init( hypre_int *argc , char ***argv ); HYPRE_Int hypre_MPI_Finalize( void ); HYPRE_Int hypre_MPI_Abort( hypre_MPI_Comm comm , HYPRE_Int errorcode ); HYPRE_Real hypre_MPI_Wtime( void ); HYPRE_Real hypre_MPI_Wtick( void ); HYPRE_Int hypre_MPI_Barrier( hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Comm_create( hypre_MPI_Comm comm , hypre_MPI_Group group , hypre_MPI_Comm *newcomm ); HYPRE_Int hypre_MPI_Comm_dup( hypre_MPI_Comm comm , hypre_MPI_Comm *newcomm ); hypre_MPI_Comm hypre_MPI_Comm_f2c( hypre_int comm ); HYPRE_Int hypre_MPI_Comm_size( hypre_MPI_Comm comm , HYPRE_Int *size ); HYPRE_Int hypre_MPI_Comm_rank( hypre_MPI_Comm comm , HYPRE_Int *rank ); HYPRE_Int hypre_MPI_Comm_free( hypre_MPI_Comm *comm ); HYPRE_Int hypre_MPI_Comm_group( hypre_MPI_Comm comm , hypre_MPI_Group *group ); HYPRE_Int hypre_MPI_Comm_split( hypre_MPI_Comm comm, HYPRE_Int n, HYPRE_Int m, hypre_MPI_Comm * comms ); HYPRE_Int hypre_MPI_Group_incl( hypre_MPI_Group group , HYPRE_Int n , HYPRE_Int *ranks , hypre_MPI_Group *newgroup ); HYPRE_Int hypre_MPI_Group_free( hypre_MPI_Group *group ); HYPRE_Int hypre_MPI_Address( void *location , hypre_MPI_Aint *address ); HYPRE_Int hypre_MPI_Get_count( hypre_MPI_Status *status , hypre_MPI_Datatype datatype , HYPRE_Int *count ); HYPRE_Int hypre_MPI_Alltoall( void *sendbuf , HYPRE_Int sendcount , hypre_MPI_Datatype sendtype , void *recvbuf , HYPRE_Int recvcount , hypre_MPI_Datatype recvtype , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Allgather( void *sendbuf , HYPRE_Int sendcount , hypre_MPI_Datatype sendtype , void *recvbuf , HYPRE_Int recvcount , hypre_MPI_Datatype recvtype , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Allgatherv( void *sendbuf , HYPRE_Int sendcount , hypre_MPI_Datatype sendtype , void *recvbuf , HYPRE_Int *recvcounts , HYPRE_Int *displs , hypre_MPI_Datatype recvtype , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Gather( void *sendbuf , HYPRE_Int sendcount , hypre_MPI_Datatype sendtype , void *recvbuf , HYPRE_Int recvcount , hypre_MPI_Datatype recvtype , HYPRE_Int root , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Gatherv( void *sendbuf , HYPRE_Int sendcount , hypre_MPI_Datatype sendtype , void *recvbuf , HYPRE_Int *recvcounts , HYPRE_Int *displs , hypre_MPI_Datatype recvtype , HYPRE_Int root , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Scatter( void *sendbuf , HYPRE_Int sendcount , hypre_MPI_Datatype sendtype , void *recvbuf , HYPRE_Int recvcount , hypre_MPI_Datatype recvtype , HYPRE_Int root , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Scatterv( void *sendbuf , HYPRE_Int *sendcounts , HYPRE_Int *displs, hypre_MPI_Datatype sendtype , void *recvbuf , HYPRE_Int recvcount , hypre_MPI_Datatype recvtype , HYPRE_Int root , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Bcast( void *buffer , HYPRE_Int count , hypre_MPI_Datatype datatype , HYPRE_Int root , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Send( void *buf , HYPRE_Int count , hypre_MPI_Datatype datatype , HYPRE_Int dest , HYPRE_Int tag , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Recv( void *buf , HYPRE_Int count , hypre_MPI_Datatype datatype , HYPRE_Int source , HYPRE_Int tag , hypre_MPI_Comm comm , hypre_MPI_Status *status ); HYPRE_Int hypre_MPI_Isend( void *buf , HYPRE_Int count , hypre_MPI_Datatype datatype , HYPRE_Int dest , HYPRE_Int tag , hypre_MPI_Comm comm , hypre_MPI_Request *request ); HYPRE_Int hypre_MPI_Irecv( void *buf , HYPRE_Int count , hypre_MPI_Datatype datatype , HYPRE_Int source , HYPRE_Int tag , hypre_MPI_Comm comm , hypre_MPI_Request *request ); HYPRE_Int hypre_MPI_Send_init( void *buf , HYPRE_Int count , hypre_MPI_Datatype datatype , HYPRE_Int dest , HYPRE_Int tag , hypre_MPI_Comm comm , hypre_MPI_Request *request ); HYPRE_Int hypre_MPI_Recv_init( void *buf , HYPRE_Int count , hypre_MPI_Datatype datatype , HYPRE_Int dest , HYPRE_Int tag , hypre_MPI_Comm comm , hypre_MPI_Request *request ); HYPRE_Int hypre_MPI_Irsend( void *buf , HYPRE_Int count , hypre_MPI_Datatype datatype , HYPRE_Int dest , HYPRE_Int tag , hypre_MPI_Comm comm , hypre_MPI_Request *request ); HYPRE_Int hypre_MPI_Startall( HYPRE_Int count , hypre_MPI_Request *array_of_requests ); HYPRE_Int hypre_MPI_Probe( HYPRE_Int source , HYPRE_Int tag , hypre_MPI_Comm comm , hypre_MPI_Status *status ); HYPRE_Int hypre_MPI_Iprobe( HYPRE_Int source , HYPRE_Int tag , hypre_MPI_Comm comm , HYPRE_Int *flag , hypre_MPI_Status *status ); HYPRE_Int hypre_MPI_Test( hypre_MPI_Request *request , HYPRE_Int *flag , hypre_MPI_Status *status ); HYPRE_Int hypre_MPI_Testall( HYPRE_Int count , hypre_MPI_Request *array_of_requests , HYPRE_Int *flag , hypre_MPI_Status *array_of_statuses ); HYPRE_Int hypre_MPI_Wait( hypre_MPI_Request *request , hypre_MPI_Status *status ); HYPRE_Int hypre_MPI_Waitall( HYPRE_Int count , hypre_MPI_Request *array_of_requests , hypre_MPI_Status *array_of_statuses ); HYPRE_Int hypre_MPI_Waitany( HYPRE_Int count , hypre_MPI_Request *array_of_requests , HYPRE_Int *index , hypre_MPI_Status *status ); HYPRE_Int hypre_MPI_Allreduce( void *sendbuf , void *recvbuf , HYPRE_Int count , hypre_MPI_Datatype datatype , hypre_MPI_Op op , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Reduce( void *sendbuf , void *recvbuf , HYPRE_Int count , hypre_MPI_Datatype datatype , hypre_MPI_Op op , HYPRE_Int root , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Scan( void *sendbuf , void *recvbuf , HYPRE_Int count , hypre_MPI_Datatype datatype , hypre_MPI_Op op , hypre_MPI_Comm comm ); HYPRE_Int hypre_MPI_Request_free( hypre_MPI_Request *request ); HYPRE_Int hypre_MPI_Type_contiguous( HYPRE_Int count , hypre_MPI_Datatype oldtype , hypre_MPI_Datatype *newtype ); HYPRE_Int hypre_MPI_Type_vector( HYPRE_Int count , HYPRE_Int blocklength , HYPRE_Int stride , hypre_MPI_Datatype oldtype , hypre_MPI_Datatype *newtype ); HYPRE_Int hypre_MPI_Type_hvector( HYPRE_Int count , HYPRE_Int blocklength , hypre_MPI_Aint stride , hypre_MPI_Datatype oldtype , hypre_MPI_Datatype *newtype ); HYPRE_Int hypre_MPI_Type_struct( HYPRE_Int count , HYPRE_Int *array_of_blocklengths , hypre_MPI_Aint *array_of_displacements , hypre_MPI_Datatype *array_of_types , hypre_MPI_Datatype *newtype ); HYPRE_Int hypre_MPI_Type_commit( hypre_MPI_Datatype *datatype ); HYPRE_Int hypre_MPI_Type_free( hypre_MPI_Datatype *datatype ); HYPRE_Int hypre_MPI_Op_free( hypre_MPI_Op *op ); HYPRE_Int hypre_MPI_Op_create( hypre_MPI_User_function *function , hypre_int commute , hypre_MPI_Op *op ); #if defined(HYPRE_USING_CUDA) || defined(HYPRE_USING_DEVICE_OPENMP) HYPRE_Int hypre_MPI_Comm_split_type(hypre_MPI_Comm comm, HYPRE_Int split_type, HYPRE_Int key, hypre_MPI_Info info, hypre_MPI_Comm *newcomm); HYPRE_Int hypre_MPI_Info_create(hypre_MPI_Info *info); HYPRE_Int hypre_MPI_Info_free( hypre_MPI_Info *info ); #endif #ifdef __cplusplus } #endif #endif /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifndef HYPRE_SMP_HEADER #define HYPRE_SMP_HEADER #endif #define HYPRE_SMP_SCHEDULE schedule(static) /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /****************************************************************************** * * Header file for memory management utilities * * The abstract memory model has a Host (think CPU) and a Device (think GPU) and * three basic types of memory management utilities: * * 1. Malloc(..., location) * location=LOCATION_DEVICE - malloc memory on the device * location=LOCATION_HOST - malloc memory on the host * 2. MemCopy(..., method) * method=HOST_TO_DEVICE - copy from host to device * method=DEVICE_TO_HOST - copy from device to host * method=DEVICE_TO_DEVICE - copy from device to device * 3. SetExecutionMode * location=LOCATION_DEVICE - execute on the device * location=LOCATION_HOST - execute on the host * * Although the abstract model does not explicitly reflect a managed memory * model (i.e., unified memory), it can support it. Here is a summary of how * the abstract model would be mapped to specific hardware scenarios: * * Not using a device, not using managed memory * Malloc(..., location) * location=LOCATION_DEVICE - host malloc e.g., malloc * location=LOCATION_HOST - host malloc e.g., malloc * MemoryCopy(..., locTo,locFrom) * locTo=LOCATION_HOST, locFrom=LOCATION_DEVICE - copy from host to host e.g., memcpy * locTo=LOCATION_DEVICE, locFrom=LOCATION_HOST - copy from host to host e.g., memcpy * locTo=LOCATION_DEVICE, locFrom=LOCATION_DEVICE - copy from host to host e.g., memcpy * SetExecutionMode * location=LOCATION_DEVICE - execute on the host * location=LOCATION_HOST - execute on the host * * Using a device, not using managed memory * Malloc(..., location) * location=LOCATION_DEVICE - device malloc e.g., cudaMalloc * location=LOCATION_HOST - host malloc e.g., malloc * MemoryCopy(..., locTo,locFrom) * locTo=LOCATION_HOST, locFrom=LOCATION_DEVICE - copy from device to host e.g., cudaMemcpy * locTo=LOCATION_DEVICE, locFrom=LOCATION_HOST - copy from host to device e.g., cudaMemcpy * locTo=LOCATION_DEVICE, locFrom=LOCATION_DEVICE - copy from device to device e.g., cudaMemcpy * SetExecutionMode * location=LOCATION_DEVICE - execute on the device * location=LOCATION_HOST - execute on the host * * Using a device, using managed memory * Malloc(..., location) * location=LOCATION_DEVICE - managed malloc e.g., cudaMallocManaged * location=LOCATION_HOST - host malloc e.g., malloc * MemoryCopy(..., locTo,locFrom) * locTo=LOCATION_HOST, locFrom=LOCATION_DEVICE - copy from device to host e.g., cudaMallocManaged * locTo=LOCATION_DEVICE, locFrom=LOCATION_HOST - copy from host to device e.g., cudaMallocManaged * locTo=LOCATION_DEVICE, locFrom=LOCATION_DEVICE - copy from device to device e.g., cudaMallocManaged * SetExecutionMode * location=LOCATION_DEVICE - execute on the device * location=LOCATION_HOST - execute on the host * * Questions: * * 1. prefetch? * *****************************************************************************/ #ifndef hypre_MEMORY_HEADER #define hypre_MEMORY_HEADER #include <stdio.h> #include <stdlib.h> #ifdef __cplusplus extern "C" { #endif #define HYPRE_MEMORY_UNSET (-1) #define HYPRE_MEMORY_DEVICE ( 0) #define HYPRE_MEMORY_HOST ( 1) #define HYPRE_MEMORY_SHARED ( 2) #define HYPRE_MEMORY_HOST_PINNED ( 3) /*================================================================== * default def of memory location selected based memory env * +-------------------------------------------------------------+ * | | HYPRE_MEMORY_* | * | MEM \ LOC | HOST | DEVICE | SHARED | PINNED | * |---------------------------+---------------+-----------------| * | HYPRE_USING_HOST_MEMORY | HOST | HOST | HOST | HOST | * |---------------------------+---------------+-------- --------| * | HYPRE_USING_DEVICE_MEMORY | HOST | DEVICE | DEVICE | PINNED | * |---------------------------+---------------+-----------------| * | HYPRE_USING_UNIFIED_MEMORY| HOST | DEVICE | SHARED | PINNED | * +-------------------------------------------------------------+ *==================================================================*/ #if defined(HYPRE_USING_HOST_MEMORY) /* default memory model without device (host only) */ #define HYPRE_MEMORY_HOST_ACT HYPRE_MEMORY_HOST #define HYPRE_MEMORY_DEVICE_ACT HYPRE_MEMORY_HOST #define HYPRE_MEMORY_SHARED_ACT HYPRE_MEMORY_HOST #define HYPRE_MEMORY_HOST_PINNED_ACT HYPRE_MEMORY_HOST #elif defined(HYPRE_USING_DEVICE_MEMORY) /* default memory model with device and without unified memory */ #define HYPRE_MEMORY_HOST_ACT HYPRE_MEMORY_HOST #define HYPRE_MEMORY_DEVICE_ACT HYPRE_MEMORY_DEVICE #define HYPRE_MEMORY_SHARED_ACT HYPRE_MEMORY_DEVICE #define HYPRE_MEMORY_HOST_PINNED_ACT HYPRE_MEMORY_HOST_PINNED #elif defined(HYPRE_USING_UNIFIED_MEMORY) /* default memory model with device and with unified memory */ #define HYPRE_MEMORY_HOST_ACT HYPRE_MEMORY_HOST #define HYPRE_MEMORY_DEVICE_ACT HYPRE_MEMORY_DEVICE #define HYPRE_MEMORY_SHARED_ACT HYPRE_MEMORY_SHARED #define HYPRE_MEMORY_HOST_PINNED_ACT HYPRE_MEMORY_HOST_PINNED #else /* default */ #define HYPRE_MEMORY_HOST_ACT HYPRE_MEMORY_HOST #define HYPRE_MEMORY_DEVICE_ACT HYPRE_MEMORY_HOST #define HYPRE_MEMORY_SHARED_ACT HYPRE_MEMORY_HOST #define HYPRE_MEMORY_HOST_PINNED_ACT HYPRE_MEMORY_HOST #endif /* the above definitions might be overridden to customize a memory location */ /* #undef HYPRE_MEMORY_HOST_ACT */ /* #undef HYPRE_MEMORY_DEVICE_ACT */ /* #undef HYPRE_MEMORY_SHARED_ACT */ /* #undef HYPRE_MEMORY_PINNED_ACT */ /* #define HYPRE_MEMORY_HOST_ACT HYPRE_MEMORY_? */ /* #define HYPRE_MEMORY_DEVICE_ACT HYPRE_MEMORY_? */ /* #define HYPRE_MEMORY_SHARED_ACT HYPRE_MEMORY_? */ /* #define HYPRE_MEMORY_PINNED_ACT HYPRE_MEMORY_? */ #define HYPRE_MEM_PAD_LEN 1 /* #if defined(HYPRE_USING_CUDA) #define HYPRE_CUDA_GLOBAL __host__ __device__ #else #define HYPRE_CUDA_GLOBAL #endif */ /* OpenMP 4.5 */ #if defined(HYPRE_USING_DEVICE_OPENMP) #include "omp.h" /* stringification: * _Pragma(string-literal), so we need to cast argument to a string * The three dots as last argument of the macro tells compiler that this is a variadic macro. * I.e. this is a macro that receives variable number of arguments. */ #define HYPRE_STR(s...) #s #define HYPRE_XSTR(s...) HYPRE_STR(s) /* OpenMP 4.5 device memory management */ extern HYPRE_Int hypre__global_offload; extern HYPRE_Int hypre__offload_device_num; extern HYPRE_Int hypre__offload_host_num; /* stats */ extern size_t hypre__target_allc_count; extern size_t hypre__target_free_count; extern size_t hypre__target_allc_bytes; extern size_t hypre__target_free_bytes; extern size_t hypre__target_htod_count; extern size_t hypre__target_dtoh_count; extern size_t hypre__target_htod_bytes; extern size_t hypre__target_dtoh_bytes; /* DEBUG MODE: check if offloading has effect * (it is turned on when configured with --enable-debug) */ #ifdef HYPRE_OMP45_DEBUG /* if we ``enter'' an address, it should not exist in device [o.w NO EFFECT] if we ``exit'' or ''update'' an address, it should exist in device [o.w ERROR] hypre__offload_flag: 0 == OK; 1 == WRONG */ #define HYPRE_OFFLOAD_FLAG(devnum, hptr, type) \ HYPRE_Int hypre__offload_flag = (type[1] == 'n') == omp_target_is_present(hptr, devnum); #else #define HYPRE_OFFLOAD_FLAG(...) \ HYPRE_Int hypre__offload_flag = 0; /* non-debug mode, always OK */ #endif /* OMP 4.5 offloading macro */ #define hypre_omp45_offload(devnum, hptr, datatype, offset, count, type1, type2) \ {\ /* devnum: device number \ * hptr: host poiter \ * datatype \ * type1: ``e(n)ter'', ''e(x)it'', or ``u(p)date'' \ * type2: ``(a)lloc'', ``(t)o'', ``(d)elete'', ''(f)rom'' \ */ \ datatype *hypre__offload_hptr = (datatype *) hptr; \ /* if hypre__global_offload == 0, or * hptr (host pointer) == NULL, * this offload will be IGNORED */ \ if (hypre__global_offload && hypre__offload_hptr != NULL) { \ /* offloading offset and size (in datatype) */ \ size_t hypre__offload_offset = offset, hypre__offload_size = count; \ /* in HYPRE_OMP45_DEBUG mode, we test if this offload has effect */ \ HYPRE_OFFLOAD_FLAG(devnum, hypre__offload_hptr, type1) \ if (hypre__offload_flag) { \ printf("[!NO Effect! %s %d] device %d target: %6s %6s, data %p, [%ld:%ld]\n", __FILE__, __LINE__, devnum, type1, type2, (void *)hypre__offload_hptr, hypre__offload_offset, hypre__offload_size); exit(0); \ } else { \ size_t offload_bytes = count * sizeof(datatype); \ /* printf("[ %s %d] device %d target: %6s %6s, data %p, [%d:%d]\n", __FILE__, __LINE__, devnum, type1, type2, (void *)hypre__offload_hptr, hypre__offload_offset, hypre__offload_size); */ \ if (type1[1] == 'n' && type2[0] == 't') { \ /* enter to */\ hypre__target_allc_count ++; \ hypre__target_allc_bytes += offload_bytes; \ hypre__target_htod_count ++; \ hypre__target_htod_bytes += offload_bytes; \ _Pragma (HYPRE_XSTR(omp target enter data map(to:hypre__offload_hptr[hypre__offload_offset:hypre__offload_size]))) \ } else if (type1[1] == 'n' && type2[0] == 'a') { \ /* enter alloc */ \ hypre__target_allc_count ++; \ hypre__target_allc_bytes += offload_bytes; \ _Pragma (HYPRE_XSTR(omp target enter data map(alloc:hypre__offload_hptr[hypre__offload_offset:hypre__offload_size]))) \ } else if (type1[1] == 'x' && type2[0] == 'd') { \ /* exit delete */\ hypre__target_free_count ++; \ hypre__target_free_bytes += offload_bytes; \ _Pragma (HYPRE_XSTR(omp target exit data map(delete:hypre__offload_hptr[hypre__offload_offset:hypre__offload_size]))) \ } else if (type1[1] == 'x' && type2[0] == 'f') {\ /* exit from */ \ hypre__target_free_count ++; \ hypre__target_free_bytes += offload_bytes; \ hypre__target_dtoh_count ++; \ hypre__target_dtoh_bytes += offload_bytes; \ _Pragma (HYPRE_XSTR(omp target exit data map(from:hypre__offload_hptr[hypre__offload_offset:hypre__offload_size]))) \ } else if (type1[1] == 'p' && type2[0] == 't') { \ /* update to */ \ hypre__target_htod_count ++; \ hypre__target_htod_bytes += offload_bytes; \ _Pragma (HYPRE_XSTR(omp target update to(hypre__offload_hptr[hypre__offload_offset:hypre__offload_size]))) \ } else if (type1[1] == 'p' && type2[0] == 'f') {\ /* update from */ \ hypre__target_dtoh_count ++; \ hypre__target_dtoh_bytes += offload_bytes; \ _Pragma (HYPRE_XSTR(omp target update from(hypre__offload_hptr[hypre__offload_offset:hypre__offload_size]))) \ } else {\ printf("error: unrecognized offloading type combination!\n"); exit(-1); \ } \ } \ } \ } #endif /* #if defined(HYPRE_USING_DEVICE_OPENMP) */ /* #define hypre_InitMemoryDebug(id) #define hypre_FinalizeMemoryDebug() */ //#define TRACK_MEMORY_ALLOCATIONS #if defined(TRACK_MEMORY_ALLOCATIONS) typedef struct { char *file; size_t size; void *end; HYPRE_Int line; HYPRE_Int type;} pattr_t; pattr_t *patpush(void *ptr, pattr_t *ss); #define hypre_TAlloc(type, count, location) \ ( (type *)hypre_MAllocIns((size_t)(sizeof(type) * (count)), location,__FILE__,__LINE__) ) #define hypre_CTAlloc(type, count, location) \ ( (type *)hypre_CAllocIns((size_t)(count), (size_t)sizeof(type), location,__FILE__,__LINE__) ) #define hypre_TReAlloc(ptr, type, count, location) \ ( (type *)hypre_ReAllocIns((char *)ptr, (size_t)(sizeof(type) * (count)), location,__FILE__,__LINE__) ) void assert_check(void *ptr, char *file, HYPRE_Int line); void assert_check_host(void *ptr, char *file, HYPRE_Int line); #define ASSERT_MANAGED(ptr)\ ( assert_check((ptr),__FILE__,__LINE__)) #define ASSERT_HOST(ptr)\ ( assert_check_host((ptr),__FILE__,__LINE__)) #else #if 0 /* These Allocs are with printfs, for debug */ #define hypre_TAlloc(type, count, location) \ (\ /*printf("[%s:%d] MALLOC %ld B\n", __FILE__,__LINE__, (size_t)(sizeof(type) * (count))) ,*/ \ (type *) hypre_MAlloc((size_t)(sizeof(type) * (count)), location) \ ) #define hypre_CTAlloc(type, count, location) \ (\ {\ /* if (location == HYPRE_MEMORY_DEVICE) printf("[%s:%d] CTALLOC %.3f MB\n", __FILE__,__LINE__, (size_t)(sizeof(type) * (count))/1024.0/1024.0); */ \ (type *) hypre_CAlloc((size_t)(count), (size_t)sizeof(type), location); \ }\ ) #define hypre_TReAlloc(ptr, type, count, location) \ (\ /* printf("[%s:%d] TReALLOC %ld B\n", __FILE__,__LINE__, (size_t)(sizeof(type) * (count))) , */ \ (type *)hypre_ReAlloc((char *)ptr, (size_t)(sizeof(type) * (count)), location) \ ) #else #define hypre_TAlloc(type, count, location) \ ( (type *) hypre_MAlloc((size_t)(sizeof(type) * (count)), location) ) #define hypre_CTAlloc(type, count, location) \ ( (type *) hypre_CAlloc((size_t)(count), (size_t)sizeof(type), location) ) #define hypre_TReAlloc(ptr, type, count, location) \ ( (type *) hypre_ReAlloc((char *)ptr, (size_t)(sizeof(type) * (count)), location) ) #endif #endif #define hypre_TFree(ptr,location) \ ( hypre_Free((char *)ptr, location), ptr = NULL ) #define hypre_TMemcpy(dst, src, type, count, locdst, locsrc) \ (hypre_Memcpy((char *)(dst),(char *)(src),(size_t)(sizeof(type) * (count)),locdst, locsrc)) /*-------------------------------------------------------------------------- * Prototypes *--------------------------------------------------------------------------*/ /* hypre_memory.c */ #if 0 char *hypre_CAllocIns( size_t count , size_t elt_size , HYPRE_Int location,char *file, HYPRE_Int line); char *hypre_ReAllocIns( char *ptr , size_t size , HYPRE_Int location,char *file, HYPRE_Int line); char *hypre_MAllocIns( size_t size , HYPRE_Int location,char *file,HYPRE_Int line); char *hypre_MAllocPinned( size_t size ); #else void * hypre_MAlloc(size_t size, HYPRE_Int location); void * hypre_CAlloc( size_t count, size_t elt_size, HYPRE_Int location); void * hypre_ReAlloc(void *ptr, size_t size, HYPRE_Int location); void hypre_Memcpy(void *dst, void *src, size_t size, HYPRE_Int loc_dst, HYPRE_Int loc_src); void * hypre_Memset(void *ptr, HYPRE_Int value, size_t num, HYPRE_Int location); void hypre_Free(void *ptr, HYPRE_Int location); #endif /* char *hypre_CAllocHost( size_t count,size_t elt_size ); char *hypre_MAllocHost( size_t size ); char *hypre_ReAllocHost( char *ptr,size_t size ); void hypre_FreeHost( char *ptr ); char *hypre_SharedMAlloc ( size_t size ); char *hypre_SharedCAlloc ( size_t count , size_t elt_size ); char *hypre_SharedReAlloc ( char *ptr , size_t size ); void hypre_SharedFree ( char *ptr ); void hypre_MemcpyAsync( char *dst, char *src, size_t size, HYPRE_Int locdst, HYPRE_Int locsrc ); HYPRE_Real *hypre_IncrementSharedDataPtr ( HYPRE_Real *ptr , size_t size ); */ /* memory_dmalloc.c */ HYPRE_Int hypre_InitMemoryDebugDML( HYPRE_Int id ); HYPRE_Int hypre_FinalizeMemoryDebugDML( void ); char *hypre_MAllocDML( HYPRE_Int size , char *file , HYPRE_Int line ); char *hypre_CAllocDML( HYPRE_Int count , HYPRE_Int elt_size , char *file , HYPRE_Int line ); char *hypre_ReAllocDML( char *ptr , HYPRE_Int size , char *file , HYPRE_Int line ); void hypre_FreeDML( char *ptr , char *file , HYPRE_Int line ); #ifdef __cplusplus } #endif #endif /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifndef hypre_THREADING_HEADER #define hypre_THREADING_HEADER #ifdef HYPRE_USING_OPENMP HYPRE_Int hypre_NumThreads( void ); HYPRE_Int hypre_NumActiveThreads( void ); HYPRE_Int hypre_GetThreadNum( void ); #else #define hypre_NumThreads() 1 #define hypre_NumActiveThreads() 1 #define hypre_GetThreadNum() 0 #endif void hypre_GetSimpleThreadPartition( HYPRE_Int *begin, HYPRE_Int *end, HYPRE_Int n ); #endif /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /****************************************************************************** * * Header file for doing timing * *****************************************************************************/ #ifndef HYPRE_TIMING_HEADER #define HYPRE_TIMING_HEADER #include <stdlib.h> #include <stdio.h> #include <string.h> #ifdef __cplusplus extern "C" { #endif /*-------------------------------------------------------------------------- * Prototypes for low-level timing routines *--------------------------------------------------------------------------*/ /* timer.c */ HYPRE_Real time_getWallclockSeconds( void ); HYPRE_Real time_getCPUSeconds( void ); HYPRE_Real time_get_wallclock_seconds_( void ); HYPRE_Real time_get_cpu_seconds_( void ); /*-------------------------------------------------------------------------- * With timing off *--------------------------------------------------------------------------*/ #ifndef HYPRE_TIMING #define hypre_InitializeTiming(name) 0 #define hypre_FinalizeTiming(index) #define hypre_IncFLOPCount(inc) #define hypre_BeginTiming(i) #define hypre_EndTiming(i) #define hypre_PrintTiming(heading, comm) #define hypre_ClearTiming() /*-------------------------------------------------------------------------- * With timing on *--------------------------------------------------------------------------*/ #else /*------------------------------------------------------- * Global timing structure *-------------------------------------------------------*/ typedef struct { HYPRE_Real *wall_time; HYPRE_Real *cpu_time; HYPRE_Real *flops; char **name; HYPRE_Int *state; /* boolean flag to allow for recursive timing */ HYPRE_Int *num_regs; /* count of how many times a name is registered */ HYPRE_Int num_names; HYPRE_Int size; HYPRE_Real wall_count; HYPRE_Real CPU_count; HYPRE_Real FLOP_count; } hypre_TimingType; #ifdef HYPRE_TIMING_GLOBALS hypre_TimingType *hypre_global_timing = NULL; #else extern hypre_TimingType *hypre_global_timing; #endif /*------------------------------------------------------- * Accessor functions *-------------------------------------------------------*/ #define hypre_TimingWallTime(i) (hypre_global_timing -> wall_time[(i)]) #define hypre_TimingCPUTime(i) (hypre_global_timing -> cpu_time[(i)]) #define hypre_TimingFLOPS(i) (hypre_global_timing -> flops[(i)]) #define hypre_TimingName(i) (hypre_global_timing -> name[(i)]) #define hypre_TimingState(i) (hypre_global_timing -> state[(i)]) #define hypre_TimingNumRegs(i) (hypre_global_timing -> num_regs[(i)]) #define hypre_TimingWallCount (hypre_global_timing -> wall_count) #define hypre_TimingCPUCount (hypre_global_timing -> CPU_count) #define hypre_TimingFLOPCount (hypre_global_timing -> FLOP_count) /*------------------------------------------------------- * Prototypes *-------------------------------------------------------*/ /* timing.c */ HYPRE_Int hypre_InitializeTiming( const char *name ); HYPRE_Int hypre_FinalizeTiming( HYPRE_Int time_index ); HYPRE_Int hypre_IncFLOPCount( HYPRE_BigInt inc ); HYPRE_Int hypre_BeginTiming( HYPRE_Int time_index ); HYPRE_Int hypre_EndTiming( HYPRE_Int time_index ); HYPRE_Int hypre_ClearTiming( void ); HYPRE_Int hypre_PrintTiming( const char *heading , MPI_Comm comm ); #endif #ifdef __cplusplus } #endif #endif /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /****************************************************************************** * * Header file link lists * *****************************************************************************/ #ifndef HYPRE_LINKLIST_HEADER #define HYPRE_LINKLIST_HEADER #include <stdlib.h> #include <stdio.h> #include <string.h> #ifdef __cplusplus extern "C" { #endif struct double_linked_list { HYPRE_Int data; struct double_linked_list *next_elt; struct double_linked_list *prev_elt; HYPRE_Int head; HYPRE_Int tail; }; typedef struct double_linked_list hypre_ListElement; typedef hypre_ListElement *hypre_LinkList; #ifdef __cplusplus } #endif #endif /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifndef hypre_EXCHANGE_DATA_HEADER #define hypre_EXCHANGE_DATA_HEADER #define hypre_BinaryTreeParentId(tree) (tree->parent_id) #define hypre_BinaryTreeNumChild(tree) (tree->num_child) #define hypre_BinaryTreeChildIds(tree) (tree->child_id) #define hypre_BinaryTreeChildId(tree, i) (tree->child_id[i]) typedef struct { HYPRE_Int parent_id; HYPRE_Int num_child; HYPRE_Int *child_id; } hypre_BinaryTree; /* In the fill_response() function the user needs to set the recv__buf and the response_message_size. Memory of size send_response_storage has been alllocated for the send_buf (in exchange_data) - if more is needed, then realloc and adjust the send_response_storage. The realloc amount should be storage+overhead. If the response is an empty "confirmation" message, then set response_message_size =0 (and do not modify the send_buf) */ typedef struct { HYPRE_Int (*fill_response)(void* recv_buf, HYPRE_Int contact_size, HYPRE_Int contact_proc, void* response_obj, MPI_Comm comm, void** response_buf, HYPRE_Int* response_message_size); HYPRE_Int send_response_overhead; /*set by exchange data */ HYPRE_Int send_response_storage; /*storage allocated for send_response_buf*/ void *data1; /*data fields user may want to access in fill_response */ void *data2; } hypre_DataExchangeResponse; HYPRE_Int hypre_CreateBinaryTree(HYPRE_Int, HYPRE_Int, hypre_BinaryTree*); HYPRE_Int hypre_DestroyBinaryTree(hypre_BinaryTree*); HYPRE_Int hypre_DataExchangeList(HYPRE_Int num_contacts, HYPRE_Int *contact_proc_list, void *contact_send_buf, HYPRE_Int *contact_send_buf_starts, HYPRE_Int contact_obj_size, HYPRE_Int response_obj_size, hypre_DataExchangeResponse *response_obj, HYPRE_Int max_response_size, HYPRE_Int rnum, MPI_Comm comm, void **p_response_recv_buf, HYPRE_Int **p_response_recv_buf_starts); #endif /* end of header */ /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifndef hypre_ERROR_HEADER #define hypre_ERROR_HEADER /*-------------------------------------------------------------------------- * Global variable used in hypre error checking *--------------------------------------------------------------------------*/ extern HYPRE_Int hypre__global_error; #define hypre_error_flag hypre__global_error /*-------------------------------------------------------------------------- * HYPRE error macros *--------------------------------------------------------------------------*/ void hypre_error_handler(const char *filename, HYPRE_Int line, HYPRE_Int ierr, const char *msg); #define hypre_error(IERR) hypre_error_handler(__FILE__, __LINE__, IERR, NULL) #define hypre_error_w_msg(IERR, msg) hypre_error_handler(__FILE__, __LINE__, IERR, msg) #define hypre_error_in_arg(IARG) hypre_error(HYPRE_ERROR_ARG | IARG<<3) #ifdef NDEBUG #define hypre_assert(EX) #else #define hypre_assert(EX) if (!(EX)) {hypre_fprintf(stderr,"hypre_assert failed: %s\n", #EX); hypre_error(1);} #endif #endif /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /****************************************************************************** * * Header file for Caliper instrumentation macros * *****************************************************************************/ #ifndef CALIPER_INSTRUMENTATION_HEADER #define CALIPER_INSTRUMENTATION_HEADER #include "HYPRE_config.h" #ifdef HYPRE_USING_CALIPER #include <caliper/cali.h> #define HYPRE_ANNOTATION_BEGIN( str ) cali_begin_string_byname("hypre.kernel", str) #define HYPRE_ANNOTATION_END( str ) cali_end_byname("hypre.kernel") #else #define HYPRE_ANNOTATION_BEGIN( str ) #define HYPRE_ANNOTATION_END( str ) #endif #endif /* CALIPER_INSTRUMENTATION_HEADER */ /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifdef USE_NVTX #include "nvToolsExt.h" #include "nvToolsExtCudaRt.h" static const uint32_t colors[] = { 0x0000ff00, 0x000000ff, 0x00ffff00, 0x00ff00ff, 0x0000ffff, 0x00ff0000, 0x00ffffff }; static const int num_colors = sizeof(colors)/sizeof(uint32_t); #define PUSH_RANGE(name,cid) { \ int color_id = cid; \ color_id = color_id%num_colors;\ nvtxEventAttributes_t eventAttrib = {0}; \ eventAttrib.version = NVTX_VERSION; \ eventAttrib.size = NVTX_EVENT_ATTRIB_STRUCT_SIZE; \ eventAttrib.colorType = NVTX_COLOR_ARGB; \ eventAttrib.color = colors[color_id]; \ eventAttrib.messageType = NVTX_MESSAGE_TYPE_ASCII; \ eventAttrib.message.ascii = name; \ nvtxDomainRangePushEx(HYPRE_DOMAIN,&eventAttrib); \ } #define PUSH_RANGE_PAYLOAD(name,cid,load) { \ int color_id = cid; \ color_id = color_id%num_colors;\ nvtxEventAttributes_t eventAttrib = {0}; \ eventAttrib.version = NVTX_VERSION; \ eventAttrib.size = NVTX_EVENT_ATTRIB_STRUCT_SIZE; \ eventAttrib.colorType = NVTX_COLOR_ARGB; \ eventAttrib.color = colors[color_id]; \ eventAttrib.messageType = NVTX_MESSAGE_TYPE_ASCII; \ eventAttrib.message.ascii = name; \ eventAttrib.payloadType = NVTX_PAYLOAD_TYPE_INT64; \ eventAttrib.payload.llValue = load; \ eventAttrib.category=1; \ nvtxDomainRangePushEx(HYPRE_DOMAIN,&eventAttrib); \ } #define PUSH_RANGE_DOMAIN(name,cid,dId) { \ int color_id = cid; \ color_id = color_id%num_colors;\ nvtxEventAttributes_t eventAttrib = {0}; \ eventAttrib.version = NVTX_VERSION; \ eventAttrib.size = NVTX_EVENT_ATTRIB_STRUCT_SIZE; \ eventAttrib.colorType = NVTX_COLOR_ARGB; \ eventAttrib.color = colors[color_id]; \ eventAttrib.messageType = NVTX_MESSAGE_TYPE_ASCII; \ eventAttrib.message.ascii = name; \ nvtxDomainRangePushEx(getdomain(dId),&eventAttrib); \ } #define POP_RANGE nvtxDomainRangePop(HYPRE_DOMAIN); #define POP_RANGE_DOMAIN(dId) { \ nvtxDomainRangePop(getdomain(dId)); \ } #else #define PUSH_RANGE(name,cid) #define POP_RANGE #define PUSH_RANGE_PAYLOAD(name,cid,load) #define PUSH_RANGE_DOMAIN(name,cid,domainName) #endif /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifndef hypre_GPU_ERROR_HEADER #define hypre_GPU_ERROR_HEADER #if defined(HYPRE_USING_CUDA) || defined(HYPRE_USING_DEVICE_OPENMP) //#include <cuda_runtime_api.h> #ifdef __cplusplus extern "C++" { #endif #include <cuda.h> #include <cuda_runtime.h> #ifdef __cplusplus } #endif #define hypre_CheckErrorDevice(err) CheckError(err,__FILE__, __FUNCTION__, __LINE__) #define CUDAMEMATTACHTYPE cudaMemAttachGlobal #define HYPRE_HOST_POINTER 0 #define HYPRE_MANAGED_POINTER 1 #define HYPRE_PINNED_POINTER 2 #define HYPRE_DEVICE_POINTER 3 #define HYPRE_UNDEFINED_POINTER1 4 #define HYPRE_UNDEFINED_POINTER2 5 void CheckError(cudaError_t const err, const char* file, char const* const fun, const HYPRE_Int line); void cudaSafeFree(void *ptr,int padding); hypre_int PrintPointerAttributes(const void *ptr); hypre_int PointerAttributes(const void *ptr); /* CUBLAS and CUSPARSE related */ #ifndef __cusparseErrorCheck__ #define __cusparseErrorCheck__ /* MUST HAVE " extern "C++" " for C++ header cusparse.h, and the headers therein */ #ifdef __cplusplus extern "C++" { #endif #include <cusparse.h> #ifdef __cplusplus } #endif #include <cublas_v2.h> #include <cuda_runtime_api.h> inline const char *cusparseErrorCheck(cusparseStatus_t error) { switch (error) { case CUSPARSE_STATUS_SUCCESS: return "CUSPARSE_STATUS_SUCCESS"; case CUSPARSE_STATUS_NOT_INITIALIZED: return "CUSPARSE_STATUS_NOT_INITIALIZED"; case CUSPARSE_STATUS_ALLOC_FAILED: return "CUSPARSE_STATUS_ALLOC_FAILED"; case CUSPARSE_STATUS_INVALID_VALUE: return "CUSPARSE_STATUS_INVALID_VALUE"; case CUSPARSE_STATUS_ARCH_MISMATCH: return "CUSPARSE_STATUS_ARCH_MISMATCH"; case CUSPARSE_STATUS_MAPPING_ERROR: return "CUSPARSE_STATUS_MAPPING_ERROR"; case CUSPARSE_STATUS_EXECUTION_FAILED: return "CUSPARSE_STATUS_EXECUTION_FAILED"; case CUSPARSE_STATUS_INTERNAL_ERROR: return "CUSPARSE_STATUS_INTERNAL_ERROR"; case CUSPARSE_STATUS_MATRIX_TYPE_NOT_SUPPORTED: return "CUSPARSE_STATUS_MATRIX_TYPE_NOT_SUPPORTED"; default: return "Unknown error in cusparseErrorCheck"; } } inline const char *cublasErrorCheck(cublasStatus_t error) { switch (error) { case CUBLAS_STATUS_SUCCESS: return "CUBLAS_STATUS_SUCCESS"; case CUBLAS_STATUS_NOT_INITIALIZED: return "CUBLAS_STATUS_NOT_INITIALIZED"; case CUBLAS_STATUS_ALLOC_FAILED: return "CUBLAS_STATUS_ALLOC_FAILED"; case CUBLAS_STATUS_INVALID_VALUE: return "CUBLAS_STATUS_INVALID_VALUE"; case CUBLAS_STATUS_ARCH_MISMATCH: return "CUBLAS_STATUS_ARCH_MISMATCH"; case CUBLAS_STATUS_MAPPING_ERROR: return "CUBLAS_STATUS_MAPPING_ERROR"; case CUBLAS_STATUS_EXECUTION_FAILED: return "CUBLAS_STATUS_EXECUTION_FAILED"; case CUBLAS_STATUS_INTERNAL_ERROR: return "CUBLAS_STATUS_INTERNAL_ERROR"; case CUBLAS_STATUS_NOT_SUPPORTED: return "CUBLAS_STATUS_NOT_SUPPORTED"; case CUBLAS_STATUS_LICENSE_ERROR: return "CUBLAS_STATUS_LICENSE_ERROR"; default: return "Unknown error in cublasErrorCheck"; } } #define cusparseErrchk(ans) { cusparseAssert((ans), __FILE__, __LINE__); } inline void cusparseAssert(cusparseStatus_t code, const char *file, int line) { if (code != CUSPARSE_STATUS_SUCCESS) { fprintf(stderr,"CUSPARSE ERROR ( Code = %d) IN CUDA CALL line %d of file %s\n",code,line,file); fprintf(stderr,"CUSPARSE ERROR : %s \n", cusparseErrorCheck(code)); } } #define cublasErrchk(ans){ cublasAssert((ans), __FILE__, __LINE__); } inline void cublasAssert(cublasStatus_t code, const char *file, int line) { if (code != CUBLAS_STATUS_SUCCESS) { fprintf(stderr,"CUBLAS ERROR ( Code = %d) IN CUDA CALL line %d of file %s\n",code,line,file); fprintf(stderr,"CUBLAS ERROR : %s \n", cublasErrorCheck(code)); } } #endif // __cusparseErrorCheck__ #endif // #if defined(HYPRE_USING_CUDA) || defined(HYPRE_USING_DEVICE_OPENMP) #endif // hypre_GPU_ERROR_HEADER /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifndef __GPUMEM_H__ #define __GPUMEM_H__ #if defined(HYPRE_USING_CUDA) #define HYPRE_MIN_GPU_SIZE (131072) extern HYPRE_Int hypre_exec_policy; #define hypre_SetDeviceOn() hypre_exec_policy = HYPRE_MEMORY_DEVICE #define hypre_SetDeviceOff() hypre_exec_policy = HYPRE_MEMORY_HOST #endif /* #if defined(HYPRE_USING_CUDA) */ #if defined(HYPRE_USING_CUDA) || defined(HYPRE_USING_DEVICE_OPENMP) #define HYPRE_USE_MANAGED_SCALABLE 1 #define HYPRE_GPU_USE_PINNED 1 #include <cuda_runtime_api.h> void hypre_GPUInit(hypre_int use_device); void hypre_GPUFinalize(); int VecScaleScalar(double *u, const double alpha, int num_rows,cudaStream_t s); void VecCopy(double* tgt, const double* src, int size,cudaStream_t s); void VecSet(double* tgt, int size, double value, cudaStream_t s); void VecScale(double *u, double *v, double *l1_norm, int num_rows,cudaStream_t s); void VecScaleSplit(double *u, double *v, double *l1_norm, int num_rows,cudaStream_t s); void CudaCompileFlagCheck(); void BigToSmallCopy (hypre_int* tgt, const HYPRE_Int *src, hypre_int size, cudaStream_t s); cudaStream_t getstreamOlde(hypre_int i); nvtxDomainHandle_t getdomain(hypre_int i); cudaEvent_t getevent(hypre_int i); void MemAdviseReadOnly(const void *ptr, hypre_int device); void MemAdviseUnSetReadOnly(const void *ptr, hypre_int device); void MemAdviseSetPrefLocDevice(const void *ptr, hypre_int device); void MemAdviseSetPrefLocHost(const void *ptr); void MemPrefetch(const void *ptr,hypre_int device,cudaStream_t stream); void MemPrefetchSized(const void *ptr,size_t size,hypre_int device,cudaStream_t stream); void MemPrefetchForce(const void *ptr,hypre_int device,cudaStream_t stream); cublasHandle_t getCublasHandle(); cusparseHandle_t getCusparseHandle(); hypre_int getsetasyncmode(hypre_int mode, hypre_int action); void SetAsyncMode(hypre_int mode); hypre_int GetAsyncMode(); void branchStream(hypre_int i, hypre_int j); void joinStreams(hypre_int i, hypre_int j, hypre_int k); void affs(hypre_int myid); hypre_int getcore(); hypre_int getnuma(); hypre_int checkDeviceProps(); hypre_int pointerIsManaged(const void *ptr); /* * Global struct for keeping HYPRE GPU Init state */ #define MAX_HGS_ELEMENTS 10 struct hypre__global_struct { hypre_int initd; hypre_int device; hypre_int device_count; size_t memoryHWM; cublasHandle_t cublas_handle; cusparseHandle_t cusparse_handle; cusparseMatDescr_t cusparse_mat_descr; cudaStream_t streams[MAX_HGS_ELEMENTS]; nvtxDomainHandle_t nvtx_domain; hypre_int concurrent_managed_access; }; extern struct hypre__global_struct hypre__global_handle ; /* * Macros for accessing elements of the global handle */ #define HYPRE_DOMAIN hypre__global_handle.nvtx_domain #define HYPRE_STREAM(index) (hypre__global_handle.streams[index]) #define HYPRE_GPU_HANDLE hypre__global_handle.initd #define HYPRE_CUBLAS_HANDLE hypre__global_handle.cublas_handle #define HYPRE_CUSPARSE_HANDLE hypre__global_handle.cusparse_handle #define HYPRE_DEVICE hypre__global_handle.device #define HYPRE_DEVICE_COUNT hypre__global_handle.device_count #define HYPRE_CUSPARSE_MAT_DESCR hypre__global_handle.cusparse_mat_descr #define HYPRE_GPU_CMA hypre__global_handle.concurrent_managed_access #define HYPRE_GPU_HWM hypre__global_handle.memoryHWM typedef struct node { const void *ptr; size_t size; struct node *next; } node; size_t mempush(const void *ptr, size_t size, hypre_int action); node *memfind(node *head, const void *ptr); void memdel(node **head, node *found); void meminsert(node **head, const void *ptr,size_t size); void printlist(node *head,hypre_int nc); size_t memsize(const void *ptr); #endif /* #if defined(HYPRE_USING_CUDA) || defined(HYPRE_USING_DEVICE_OPENMP) */ #if defined(HYPRE_USING_DEVICE_OPENMP) HYPRE_Int HYPRE_OMPOffload(HYPRE_Int device, void *ptr, size_t num, const char *type1, const char *type2); HYPRE_Int HYPRE_OMPPtrIsMapped(void *p, HYPRE_Int device_num); HYPRE_Int HYPRE_OMPOffloadOn(); HYPRE_Int HYPRE_OMPOffloadOff(); HYPRE_Int HYPRE_OMPOffloadStatPrint(); #define HYPRE_MIN_GPU_SIZE (131072) #define hypre_SetDeviceOn() HYPRE_OMPOffloadOn() #define hypre_SetDeviceOff() HYPRE_OMPOffloadOff() #endif /* #if defined(HYPRE_USING_DEVICE_OPENMP) */ #endif/* __GPUMEM_H__ */ #if !defined(HYPRE_USING_RAJA) && !defined(HYPRE_USING_KOKKOS) && defined(HYPRE_USING_CUDA) #ifndef CUDART_VERSION #error CUDART_VERSION Undefined! #elif (CUDART_VERSION >= 9000) #define WARP_SHFL_DOWN(mask, var, delta) __shfl_down_sync(mask, var, delta) #elif (CUDART_VERSION <= 8000) #define WARP_SHFL_DOWN(mask, var, delta) __shfl_down(var, delta); #endif extern "C++" { extern void *cuda_reduce_buffer; template<typename T> void OneBlockReduce(T *d_arr, HYPRE_Int N, T *h_out); struct HYPRE_double4 { HYPRE_Real x,y,z,w; __host__ __device__ HYPRE_double4() {} __host__ __device__ HYPRE_double4(HYPRE_Real x1, HYPRE_Real x2, HYPRE_Real x3, HYPRE_Real x4) { x = x1; y = x2; z = x3; w = x4; } __host__ __device__ void operator=(HYPRE_Real val) { x = y = z = w = val; } __host__ __device__ void operator+=(HYPRE_double4 rhs) { x += rhs.x; y += rhs.y; z += rhs.z; w += rhs.w; } }; struct HYPRE_double6 { HYPRE_Real x,y,z,w,u,v; __host__ __device__ HYPRE_double6() {} __host__ __device__ HYPRE_double6(HYPRE_Real x1, HYPRE_Real x2, HYPRE_Real x3, HYPRE_Real x4, HYPRE_Real x5, HYPRE_Real x6) { x = x1; y = x2; z = x3; w = x4; u = x5; v = x6; } __host__ __device__ void operator=(HYPRE_Real val) { x = y = z = w = u = v = val; } __host__ __device__ void operator+=(HYPRE_double6 rhs) { x += rhs.x; y += rhs.y; z += rhs.z; w += rhs.w; u += rhs.u; v += rhs.v; } }; /* reduction within a warp */ __inline__ __host__ __device__ HYPRE_Real warpReduceSum(HYPRE_Real val) { #ifdef __CUDA_ARCH__ for (HYPRE_Int offset = warpSize/2; offset > 0; offset /= 2) { val += WARP_SHFL_DOWN(0xFFFFFFFF, val, offset); } #endif return val; } __inline__ __host__ __device__ HYPRE_double4 warpReduceSum(HYPRE_double4 val) { #ifdef __CUDA_ARCH__ for (HYPRE_Int offset = warpSize / 2; offset > 0; offset /= 2) { val.x += WARP_SHFL_DOWN(0xFFFFFFFF, val.x, offset); val.y += WARP_SHFL_DOWN(0xFFFFFFFF, val.y, offset); val.z += WARP_SHFL_DOWN(0xFFFFFFFF, val.z, offset); val.w += WARP_SHFL_DOWN(0xFFFFFFFF, val.w, offset); } #endif return val; } __inline__ __host__ __device__ HYPRE_double6 warpReduceSum(HYPRE_double6 val) { #ifdef __CUDA_ARCH__ for (HYPRE_Int offset = warpSize / 2; offset > 0; offset /= 2) { val.x += WARP_SHFL_DOWN(0xFFFFFFFF, val.x, offset); val.y += WARP_SHFL_DOWN(0xFFFFFFFF, val.y, offset); val.z += WARP_SHFL_DOWN(0xFFFFFFFF, val.z, offset); val.w += WARP_SHFL_DOWN(0xFFFFFFFF, val.w, offset); val.u += WARP_SHFL_DOWN(0xFFFFFFFF, val.u, offset); val.v += WARP_SHFL_DOWN(0xFFFFFFFF, val.v, offset); } #endif return val; } /* reduction within a block */ template <typename T> __inline__ __host__ __device__ T blockReduceSum(T val) { #ifdef __CUDA_ARCH__ //static __shared__ T shared[32]; // Shared mem for 32 partial sums __shared__ T shared[32]; // Shared mem for 32 partial sums HYPRE_Int lane = threadIdx.x % warpSize; HYPRE_Int wid = threadIdx.x / warpSize; val = warpReduceSum(val); // Each warp performs partial reduction if (lane == 0) { shared[wid] = val; // Write reduced value to shared memory } __syncthreads(); // Wait for all partial reductions //read from shared memory only if that warp existed if (threadIdx.x < blockDim.x / warpSize) { val = shared[lane]; } else { val = 0.0; } if (wid == 0) { val = warpReduceSum(val); //Final reduce within first warp } #endif return val; } /* Reducer class */ template <typename T> struct ReduceSum { T init; /* initial value passed in */ mutable T __thread_sum; /* place to hold local sum of a thread, and partial sum of a block */ T *d_buf; /* place to store partial sum of a block */ HYPRE_Int nblocks; /* number of blocks used in the first round */ /* constructor. * val is the initial value (added to the reduced sum) */ __host__ ReduceSum(T val) { init = val; __thread_sum = 0.0; if (cuda_reduce_buffer == NULL) { /* allocate for the max size for reducing double6 type */ cuda_reduce_buffer = hypre_TAlloc(HYPRE_double6, 1024, HYPRE_MEMORY_DEVICE); } d_buf = (T*) cuda_reduce_buffer; } /* copy constructor */ __host__ __device__ ReduceSum(const ReduceSum<T>& other) { *this = other; } __host__ __device__ void BlockReduce() const { #ifdef __CUDA_ARCH__ __thread_sum = blockReduceSum(__thread_sum); if (threadIdx.x == 0) { d_buf[blockIdx.x] = __thread_sum; } #endif } __host__ __device__ void operator+=(T val) const { __thread_sum += val; } /* we invoke the 2nd reduction at the time we want the sum from the reducer * class */ __host__ operator T() { T val; /* 2nd reduction with only *one* block */ OneBlockReduce(d_buf, nblocks, &val); val += init; //hypre_TFree(d_buf, HYPRE_MEMORY_DEVICE); return val; } /* destructor */ __host__ __device__ ~ReduceSum<T>() { } }; } // extern "C++" #endif /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /* amg_linklist.c */ void hypre_dispose_elt ( hypre_LinkList element_ptr ); void hypre_remove_point ( hypre_LinkList *LoL_head_ptr , hypre_LinkList *LoL_tail_ptr , HYPRE_Int measure , HYPRE_Int index , HYPRE_Int *lists , HYPRE_Int *where ); hypre_LinkList hypre_create_elt ( HYPRE_Int Item ); void hypre_enter_on_lists ( hypre_LinkList *LoL_head_ptr , hypre_LinkList *LoL_tail_ptr , HYPRE_Int measure , HYPRE_Int index , HYPRE_Int *lists , HYPRE_Int *where ); /* binsearch.c */ HYPRE_Int hypre_BinarySearch ( HYPRE_Int *list , HYPRE_Int value , HYPRE_Int list_length ); HYPRE_Int hypre_BigBinarySearch ( HYPRE_BigInt *list , HYPRE_BigInt value , HYPRE_Int list_length ); HYPRE_Int hypre_BinarySearch2 ( HYPRE_Int *list , HYPRE_Int value , HYPRE_Int low , HYPRE_Int high , HYPRE_Int *spot ); HYPRE_Int *hypre_LowerBound( HYPRE_Int *first, HYPRE_Int *last, HYPRE_Int value ); HYPRE_BigInt *hypre_BigLowerBound( HYPRE_BigInt *first, HYPRE_BigInt *last, HYPRE_BigInt value ); /* hypre_complex.c */ #ifdef HYPRE_COMPLEX HYPRE_Complex hypre_conj( HYPRE_Complex value ); HYPRE_Real hypre_cabs( HYPRE_Complex value ); HYPRE_Real hypre_creal( HYPRE_Complex value ); HYPRE_Real hypre_cimag( HYPRE_Complex value ); #else #define hypre_conj(value) value #define hypre_cabs(value) fabs(value) #define hypre_creal(value) value #define hypre_cimag(value) 0.0 #endif /* hypre_general.c */ void HYPRE_Init( hypre_int argc, char *argv[] ); void HYPRE_Finalize(); /* hypre_printf.c */ // #ifdef HYPRE_BIGINT HYPRE_Int hypre_printf( const char *format , ... ); HYPRE_Int hypre_fprintf( FILE *stream , const char *format, ... ); HYPRE_Int hypre_sprintf( char *s , const char *format, ... ); HYPRE_Int hypre_scanf( const char *format , ... ); HYPRE_Int hypre_fscanf( FILE *stream , const char *format, ... ); HYPRE_Int hypre_sscanf( char *s , const char *format, ... ); // #else // #define hypre_printf printf // #define hypre_fprintf fprintf // #define hypre_sprintf sprintf // #define hypre_scanf scanf // #define hypre_fscanf fscanf // #define hypre_sscanf sscanf // #endif /* hypre_qsort.c */ void hypre_swap ( HYPRE_Int *v , HYPRE_Int i , HYPRE_Int j ); void hypre_swap2 ( HYPRE_Int *v , HYPRE_Real *w , HYPRE_Int i , HYPRE_Int j ); void hypre_BigSwap2 ( HYPRE_BigInt *v , HYPRE_Real *w , HYPRE_Int i , HYPRE_Int j ); void hypre_swap2i ( HYPRE_Int *v , HYPRE_Int *w , HYPRE_Int i , HYPRE_Int j ); void hypre_swap3i ( HYPRE_Int *v , HYPRE_Int *w , HYPRE_Int *z , HYPRE_Int i , HYPRE_Int j ); void hypre_swap3_d ( HYPRE_Real *v , HYPRE_Int *w , HYPRE_Int *z , HYPRE_Int i , HYPRE_Int j ); void hypre_BigSwap4_d ( HYPRE_Real *v , HYPRE_BigInt *w , HYPRE_Int *z , HYPRE_Int *y , HYPRE_Int i , HYPRE_Int j ); void hypre_swap_d ( HYPRE_Real *v , HYPRE_Int i , HYPRE_Int j ); void hypre_qsort0 ( HYPRE_Int *v , HYPRE_Int left , HYPRE_Int right ); void hypre_qsort1 ( HYPRE_Int *v , HYPRE_Real *w , HYPRE_Int left , HYPRE_Int right ); void hypre_BigQsort1 ( HYPRE_BigInt *v , HYPRE_Real *w , HYPRE_Int left , HYPRE_Int right ); void hypre_qsort2i ( HYPRE_Int *v , HYPRE_Int *w , HYPRE_Int left , HYPRE_Int right ); void hypre_qsort2 ( HYPRE_Int *v , HYPRE_Real *w , HYPRE_Int left , HYPRE_Int right ); void hypre_qsort3i ( HYPRE_Int *v , HYPRE_Int *w , HYPRE_Int *z , HYPRE_Int left , HYPRE_Int right ); void hypre_qsort3_abs ( HYPRE_Real *v , HYPRE_Int *w , HYPRE_Int *z , HYPRE_Int left , HYPRE_Int right ); void hypre_BigQsort4_abs ( HYPRE_Real *v , HYPRE_BigInt *w , HYPRE_Int *z , HYPRE_Int *y , HYPRE_Int left , HYPRE_Int right ); void hypre_qsort_abs ( HYPRE_Real *w , HYPRE_Int left , HYPRE_Int right ); void hypre_BigSwapbi(HYPRE_BigInt *v, HYPRE_Int *w, HYPRE_Int i, HYPRE_Int j ); void hypre_BigQsortbi( HYPRE_BigInt *v, HYPRE_Int *w, HYPRE_Int left, HYPRE_Int right ); void hypre_BigSwapLoc(HYPRE_BigInt *v, HYPRE_Int *w, HYPRE_Int i, HYPRE_Int j ); void hypre_BigQsortbLoc( HYPRE_BigInt *v, HYPRE_Int *w, HYPRE_Int left, HYPRE_Int right ); void hypre_BigSwapb2i(HYPRE_BigInt *v, HYPRE_Int *w, HYPRE_Int *z, HYPRE_Int i, HYPRE_Int j ); void hypre_BigQsortb2i( HYPRE_BigInt *v, HYPRE_Int *w, HYPRE_Int *z, HYPRE_Int left, HYPRE_Int right ); void hypre_BigSwap( HYPRE_BigInt *v, HYPRE_Int i, HYPRE_Int j ); void hypre_BigQsort0( HYPRE_BigInt *v, HYPRE_Int left, HYPRE_Int right ); /* qsplit.c */ HYPRE_Int hypre_DoubleQuickSplit ( HYPRE_Real *values , HYPRE_Int *indices , HYPRE_Int list_length , HYPRE_Int NumberKept ); /* random.c */ /* HYPRE_CUDA_GLOBAL */ void hypre_SeedRand ( HYPRE_Int seed ); /* HYPRE_CUDA_GLOBAL */ HYPRE_Int hypre_RandI ( void ); /* HYPRE_CUDA_GLOBAL */ HYPRE_Real hypre_Rand ( void ); /* hypre_prefix_sum.c */ /** * Assumed to be called within an omp region. * Let x_i be the input of ith thread. * The output of ith thread y_i = x_0 + x_1 + ... + x_{i-1} * Additionally, sum = x_0 + x_1 + ... + x_{nthreads - 1} * Note that always y_0 = 0 * * @param workspace at least with length (nthreads+1) * workspace[tid] will contain result for tid * workspace[nthreads] will contain sum */ void hypre_prefix_sum(HYPRE_Int *in_out, HYPRE_Int *sum, HYPRE_Int *workspace); /** * This version does prefix sum in pair. * Useful when we prefix sum of diag and offd in tandem. * * @param worksapce at least with length 2*(nthreads+1) * workspace[2*tid] and workspace[2*tid+1] will contain results for tid * workspace[3*nthreads] and workspace[3*nthreads + 1] will contain sums */ void hypre_prefix_sum_pair(HYPRE_Int *in_out1, HYPRE_Int *sum1, HYPRE_Int *in_out2, HYPRE_Int *sum2, HYPRE_Int *workspace); /** * @param workspace at least with length 3*(nthreads+1) * workspace[3*tid:3*tid+3) will contain results for tid */ void hypre_prefix_sum_triple(HYPRE_Int *in_out1, HYPRE_Int *sum1, HYPRE_Int *in_out2, HYPRE_Int *sum2, HYPRE_Int *in_out3, HYPRE_Int *sum3, HYPRE_Int *workspace); /** * n prefix-sums together. * workspace[n*tid:n*(tid+1)) will contain results for tid * workspace[nthreads*tid:nthreads*(tid+1)) will contain sums * * @param workspace at least with length n*(nthreads+1) */ void hypre_prefix_sum_multiple(HYPRE_Int *in_out, HYPRE_Int *sum, HYPRE_Int n, HYPRE_Int *workspace); /* hypre_merge_sort.c */ /** * Why merge sort? * 1) Merge sort can take advantage of eliminating duplicates. * 2) Merge sort is more efficiently parallelizable than qsort */ /** * Out of place merge sort with duplicate elimination * @ret number of unique elements */ HYPRE_Int hypre_merge_sort_unique(HYPRE_Int *in, HYPRE_Int *out, HYPRE_Int len); /** * Out of place merge sort with duplicate elimination * * @param out pointer to output can be in or temp * @ret number of unique elements */ HYPRE_Int hypre_merge_sort_unique2(HYPRE_Int *in, HYPRE_Int *temp, HYPRE_Int len, HYPRE_Int **out); void hypre_merge_sort(HYPRE_Int *in, HYPRE_Int *temp, HYPRE_Int len, HYPRE_Int **sorted); void hypre_union2(HYPRE_Int n1, HYPRE_BigInt *arr1, HYPRE_Int n2, HYPRE_BigInt *arr2, HYPRE_Int *n3, HYPRE_BigInt *arr3, HYPRE_Int *map1, HYPRE_Int *map2); /* hypre_hopscotch_hash.c */ #ifdef HYPRE_USING_OPENMP /* Check if atomic operations are available to use concurrent hopscotch hash table */ #if defined(__GNUC__) && defined(__GNUC_MINOR__) && defined(__GNUC_PATCHLEVEL__) && (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) > 40100 #define HYPRE_USING_ATOMIC //#elif defined _MSC_VER // JSP: haven't tested, so comment out for now //#define HYPRE_USING_ATOMIC //#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_ATOMICS__) // JSP: not many compilers have implemented this, so comment out for now //#define HYPRE_USING_ATOMIC //#include <stdatomic.h> #endif #endif // HYPRE_USING_OPENMP #ifdef HYPRE_HOPSCOTCH #ifdef HYPRE_USING_ATOMIC // concurrent hopscotch hashing is possible only with atomic supports #define HYPRE_CONCURRENT_HOPSCOTCH #endif #endif #ifdef HYPRE_CONCURRENT_HOPSCOTCH typedef struct { HYPRE_Int volatile timestamp; omp_lock_t lock; } hypre_HopscotchSegment; #endif /** * The current typical use case of unordered set is putting input sequence * with lots of duplication (putting all colidx received from other ranks), * followed by one sweep of enumeration. * Since the capacity is set to the number of inputs, which is much larger * than the number of unique elements, we optimize for initialization and * enumeration whose time is proportional to the capacity. * For initialization and enumeration, structure of array (SoA) is better * for vectorization, cache line utilization, and so on. */ typedef struct { HYPRE_Int volatile segmentMask; HYPRE_Int volatile bucketMask; #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* volatile segments; #endif HYPRE_Int *volatile key; hypre_uint *volatile hopInfo; HYPRE_Int *volatile hash; } hypre_UnorderedIntSet; typedef struct { HYPRE_Int volatile segmentMask; HYPRE_Int volatile bucketMask; #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* volatile segments; #endif HYPRE_BigInt *volatile key; hypre_uint *volatile hopInfo; HYPRE_BigInt *volatile hash; } hypre_UnorderedBigIntSet; typedef struct { hypre_uint volatile hopInfo; HYPRE_Int volatile hash; HYPRE_Int volatile key; HYPRE_Int volatile data; } hypre_HopscotchBucket; typedef struct { hypre_uint volatile hopInfo; HYPRE_BigInt volatile hash; HYPRE_BigInt volatile key; HYPRE_Int volatile data; } hypre_BigHopscotchBucket; /** * The current typical use case of unoredered map is putting input sequence * with no duplication (inverse map of a bijective mapping) followed by * lots of lookups. * For lookup, array of structure (AoS) gives better cache line utilization. */ typedef struct { HYPRE_Int volatile segmentMask; HYPRE_Int volatile bucketMask; #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* volatile segments; #endif hypre_HopscotchBucket* volatile table; } hypre_UnorderedIntMap; typedef struct { HYPRE_Int volatile segmentMask; HYPRE_Int volatile bucketMask; #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* volatile segments; #endif hypre_BigHopscotchBucket* volatile table; } hypre_UnorderedBigIntMap; /** * Sort array "in" with length len and put result in array "out" * "in" will be deallocated unless in == *out * inverse_map is an inverse hash table s.t. inverse_map[i] = j iff (*out)[j] = i */ void hypre_sort_and_create_inverse_map( HYPRE_Int *in, HYPRE_Int len, HYPRE_Int **out, hypre_UnorderedIntMap *inverse_map); #ifdef HYPRE_CONCURRENT_HOPSCOTCH void hypre_big_merge_sort(HYPRE_BigInt *in, HYPRE_BigInt *temp, HYPRE_Int len, HYPRE_BigInt **sorted); void hypre_big_sort_and_create_inverse_map( HYPRE_BigInt *in, HYPRE_Int len, HYPRE_BigInt **out, hypre_UnorderedBigIntMap *inverse_map); #endif #ifdef __cplusplus } #endif #endif
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/HYPREf.h
! -*- fortran -*- !BHEADER********************************************************************** ! Copyright (c) 2008, Lawrence Livermore National Security, LLC. ! Produced at the Lawrence Livermore National Laboratory. ! This file is part of HYPRE. See file COPYRIGHT for details. ! ! HYPRE is free software; you can redistribute it and/or modify it under the ! terms of the GNU Lesser General Public License (as published by the Free ! Software Foundation) version 2.1 dated February 1999. ! ! $Revision$ !EHEADER********************************************************************** !****************************************************************************** ! ! Header file for HYPRE library ! ! **************************************************************************** ! -------------------------------------------------------------------------- ! Structures ! -------------------------------------------------------------------------- ! -------------------------------------------------------------------------- ! Constants ! -------------------------------------------------------------------------- integer HYPRE_UNITIALIZED parameter( HYPRE_UNITIALIZED = -999 ) integer HYPRE_PETSC_MAT_PARILUT_SOLVER parameter( HYPRE_PETSC_MAT_PARILUT_SOLVER = 222 ) integer HYPRE_PARILUT parameter( HYPRE_PARILUT = 333 ) integer HYPRE_STRUCT parameter( HYPRE_STRUCT = 1111 ) integer HYPRE_SSTRUCT parameter( HYPRE_SSTRUCT = 3333 ) integer HYPRE_PARCSR parameter( HYPRE_PARCSR = 5555 ) integer HYPRE_ISIS parameter( HYPRE_ISIS = 9911 ) integer HYPRE_PETSC parameter( HYPRE_PETSC = 9933 ) integer HYPRE_PFMG parameter( HYPRE_PFMG = 10 ) integer HYPRE_SMG parameter( HYPRE_SMG = 11 )
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/fortran_matrix.h
/*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ #ifndef FORTRAN_STYLE_MATRIX #define FORTRAN_STYLE_MATRIX #include "_hypre_utilities.h" typedef struct { hypre_longint globalHeight; hypre_longint height; hypre_longint width; HYPRE_Real* value; HYPRE_Int ownsValues; } utilities_FortranMatrix; #ifdef __cplusplus extern "C" { #endif utilities_FortranMatrix* utilities_FortranMatrixCreate(void); void utilities_FortranMatrixAllocateData( hypre_longint h, hypre_longint w, utilities_FortranMatrix* mtx ); void utilities_FortranMatrixWrap( HYPRE_Real*, hypre_longint gh, hypre_longint h, hypre_longint w, utilities_FortranMatrix* mtx ); void utilities_FortranMatrixDestroy( utilities_FortranMatrix* mtx ); hypre_longint utilities_FortranMatrixGlobalHeight( utilities_FortranMatrix* mtx ); hypre_longint utilities_FortranMatrixHeight( utilities_FortranMatrix* mtx ); hypre_longint utilities_FortranMatrixWidth( utilities_FortranMatrix* mtx ); HYPRE_Real* utilities_FortranMatrixValues( utilities_FortranMatrix* mtx ); void utilities_FortranMatrixClear( utilities_FortranMatrix* mtx ); void utilities_FortranMatrixClearL( utilities_FortranMatrix* mtx ); void utilities_FortranMatrixSetToIdentity( utilities_FortranMatrix* mtx ); void utilities_FortranMatrixTransposeSquare( utilities_FortranMatrix* mtx ); void utilities_FortranMatrixSymmetrize( utilities_FortranMatrix* mtx ); void utilities_FortranMatrixCopy( utilities_FortranMatrix* src, HYPRE_Int t, utilities_FortranMatrix* dest ); void utilities_FortranMatrixIndexCopy( HYPRE_Int* index, utilities_FortranMatrix* src, HYPRE_Int t, utilities_FortranMatrix* dest ); void utilities_FortranMatrixSetDiagonal( utilities_FortranMatrix* mtx, utilities_FortranMatrix* d ); void utilities_FortranMatrixGetDiagonal( utilities_FortranMatrix* mtx, utilities_FortranMatrix* d ); void utilities_FortranMatrixAdd( HYPRE_Real a, utilities_FortranMatrix* mtxA, utilities_FortranMatrix* mtxB, utilities_FortranMatrix* mtxC ); void utilities_FortranMatrixDMultiply( utilities_FortranMatrix* d, utilities_FortranMatrix* mtx ); void utilities_FortranMatrixMultiplyD( utilities_FortranMatrix* mtx, utilities_FortranMatrix* d ); void utilities_FortranMatrixMultiply( utilities_FortranMatrix* mtxA, HYPRE_Int tA, utilities_FortranMatrix* mtxB, HYPRE_Int tB, utilities_FortranMatrix* mtxC ); HYPRE_Real utilities_FortranMatrixFNorm( utilities_FortranMatrix* mtx ); HYPRE_Real utilities_FortranMatrixValue( utilities_FortranMatrix* mtx, hypre_longint i, hypre_longint j ); HYPRE_Real* utilities_FortranMatrixValuePtr( utilities_FortranMatrix* mtx, hypre_longint i, hypre_longint j ); HYPRE_Real utilities_FortranMatrixMaxValue( utilities_FortranMatrix* mtx ); void utilities_FortranMatrixSelectBlock( utilities_FortranMatrix* mtx, hypre_longint iFrom, hypre_longint iTo, hypre_longint jFrom, hypre_longint jTo, utilities_FortranMatrix* block ); void utilities_FortranMatrixUpperInv( utilities_FortranMatrix* u ); HYPRE_Int utilities_FortranMatrixPrint( utilities_FortranMatrix* mtx, const char *fileName); #ifdef __cplusplus } #endif #endif /* FORTRAN_STYLE_MATRIX */
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/HYPRE_DistributedMatrixPilutSolver_protos.h
<filename>Src/LinearSolvers/hypre/include/HYPRE_DistributedMatrixPilutSolver_protos.h /*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /* HYPRE_DistributedMatrixPilutSolver.c */ HYPRE_Int HYPRE_NewDistributedMatrixPilutSolver (MPI_Comm comm , HYPRE_DistributedMatrix matrix, HYPRE_DistributedMatrixPilutSolver *solver ); HYPRE_Int HYPRE_FreeDistributedMatrixPilutSolver (HYPRE_DistributedMatrixPilutSolver in_ptr ); HYPRE_Int HYPRE_DistributedMatrixPilutSolverInitialize (HYPRE_DistributedMatrixPilutSolver solver ); HYPRE_Int HYPRE_DistributedMatrixPilutSolverSetMatrix (HYPRE_DistributedMatrixPilutSolver in_ptr , HYPRE_DistributedMatrix matrix ); HYPRE_DistributedMatrix HYPRE_DistributedMatrixPilutSolverGetMatrix (HYPRE_DistributedMatrixPilutSolver in_ptr ); HYPRE_Int HYPRE_DistributedMatrixPilutSolverSetNumLocalRow (HYPRE_DistributedMatrixPilutSolver in_ptr , HYPRE_Int FirstLocalRow ); HYPRE_Int HYPRE_DistributedMatrixPilutSolverSetFactorRowSize (HYPRE_DistributedMatrixPilutSolver in_ptr , HYPRE_Int size ); HYPRE_Int HYPRE_DistributedMatrixPilutSolverSetDropTolerance (HYPRE_DistributedMatrixPilutSolver in_ptr , HYPRE_Real tolerance ); HYPRE_Int HYPRE_DistributedMatrixPilutSolverSetMaxIts (HYPRE_DistributedMatrixPilutSolver in_ptr , HYPRE_Int its ); HYPRE_Int HYPRE_DistributedMatrixPilutSolverSetup (HYPRE_DistributedMatrixPilutSolver in_ptr ); HYPRE_Int HYPRE_DistributedMatrixPilutSolverSolve (HYPRE_DistributedMatrixPilutSolver in_ptr , HYPRE_Real *x , HYPRE_Real *b );
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/hypre_hopscotch_hash.h
/*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /** * Hopscotch hash is modified from the code downloaded from * https://sites.google.com/site/cconcurrencypackage/hopscotch-hashing * with the following terms of usage */ //////////////////////////////////////////////////////////////////////////////// //TERMS OF USAGE //------------------------------------------------------------------------------ // // Permission to use, copy, modify and distribute this software and // its documentation for any purpose is hereby granted without fee, // provided that due acknowledgments to the authors are provided and // this permission notice appears in all copies of the software. // The software is provided "as is". There is no warranty of any kind. // //Authors: // <NAME> // Brown University // and // <NAME> // Tel-Aviv University // and // <NAME> // Tel-Aviv University // // Date: July 15, 2008. // //////////////////////////////////////////////////////////////////////////////// // Programmer : <NAME> (<EMAIL>) // Modified : <NAME> (<EMAIL>) // Oct 1, 2015. // //////////////////////////////////////////////////////////////////////////////// #ifndef hypre_HOPSCOTCH_HASH_HEADER #define hypre_HOPSCOTCH_HASH_HEADER #include <stdio.h> #include <limits.h> #include <assert.h> #include <math.h> #ifdef HYPRE_USING_OPENMP #include <omp.h> #endif #include "_hypre_utilities.h" // Potentially architecture specific features used here: // __builtin_ffs // __sync_val_compare_and_swap #ifdef __cplusplus extern "C" { #endif /****************************************************************************** * This next section of code is here instead of in _hypre_utilities.h to get * around some portability issues with Visual Studio. By putting it here, we * can explicitly include this '.h' file in a few files in hypre and compile * them with C++ instead of C (VS does not support C99 'inline'). ******************************************************************************/ #ifdef HYPRE_USING_ATOMIC static inline HYPRE_Int hypre_compare_and_swap(HYPRE_Int *ptr, HYPRE_Int oldval, HYPRE_Int newval) { #if defined(__GNUC__) && defined(__GNUC_MINOR__) && defined(__GNUC_PATCHLEVEL__) && (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) > 40100 return __sync_val_compare_and_swap(ptr, oldval, newval); //#elif defind _MSC_VER //return _InterlockedCompareExchange((long *)ptr, newval, oldval); //#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_ATOMICS__) // JSP: not many compilers have implemented this, so comment out for now //_Atomic HYPRE_Int *atomic_ptr = ptr; //atomic_compare_exchange_strong(atomic_ptr, &oldval, newval); //return oldval; #endif } static inline HYPRE_Int hypre_fetch_and_add(HYPRE_Int *ptr, HYPRE_Int value) { #if defined(__GNUC__) && defined(__GNUC_MINOR__) && defined(__GNUC_PATCHLEVEL__) && (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) > 40100 return __sync_fetch_and_add(ptr, value); //#elif defined _MSC_VER //return _InterlockedExchangeAdd((long *)ptr, value); //#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_ATOMICS__) // JSP: not many compilers have implemented this, so comment out for now //_Atomic HYPRE_Int *atomic_ptr = ptr; //return atomic_fetch_add(atomic_ptr, value); #endif } #else // !HYPRE_USING_ATOMIC static inline HYPRE_Int hypre_compare_and_swap(HYPRE_Int *ptr, HYPRE_Int oldval, HYPRE_Int newval) { if (*ptr == oldval) { *ptr = newval; return oldval; } else return *ptr; } static inline HYPRE_Int hypre_fetch_and_add(HYPRE_Int *ptr, HYPRE_Int value) { HYPRE_Int oldval = *ptr; *ptr += value; return oldval; } #endif // !HYPRE_USING_ATOMIC /******************************************************************************/ // Constants ................................................................ #define HYPRE_HOPSCOTCH_HASH_HOP_RANGE (32) #define HYPRE_HOPSCOTCH_HASH_INSERT_RANGE (4*1024) #define HYPRE_HOPSCOTCH_HASH_EMPTY (0) #define HYPRE_HOPSCOTCH_HASH_BUSY (1) // Small Utilities .......................................................... #ifdef HYPRE_CONCURRENT_HOPSCOTCH static inline HYPRE_Int first_lsb_bit_indx(hypre_uint x) { if (0 == x) return -1; return __builtin_ffs(x) - 1; } #endif /** * hypre_Hash is adapted from xxHash with the following license. */ /* xxHash - Extremely Fast Hash algorithm Header File Copyright (C) 2012-2015, <NAME>. BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. You can contact the author at : - xxHash source repository : https://github.com/Cyan4973/xxHash */ /*************************************** * Constants ***************************************/ #define HYPRE_XXH_PRIME32_1 2654435761U #define HYPRE_XXH_PRIME32_2 2246822519U #define HYPRE_XXH_PRIME32_3 3266489917U #define HYPRE_XXH_PRIME32_4 668265263U #define HYPRE_XXH_PRIME32_5 374761393U #define HYPRE_XXH_PRIME64_1 11400714785074694791ULL #define HYPRE_XXH_PRIME64_2 14029467366897019727ULL #define HYPRE_XXH_PRIME64_3 1609587929392839161ULL #define HYPRE_XXH_PRIME64_4 9650029242287828579ULL #define HYPRE_XXH_PRIME64_5 2870177450012600261ULL # define HYPRE_XXH_rotl32(x,r) ((x << r) | (x >> (32 - r))) # define HYPRE_XXH_rotl64(x,r) ((x << r) | (x >> (64 - r))) #if defined(HYPRE_MIXEDINT) || defined(HYPRE_BIGINT) static inline HYPRE_BigInt hypre_BigHash(HYPRE_BigInt input) { hypre_ulongint h64 = HYPRE_XXH_PRIME64_5 + sizeof(input); hypre_ulongint k1 = input; k1 *= HYPRE_XXH_PRIME64_2; k1 = HYPRE_XXH_rotl64(k1, 31); k1 *= HYPRE_XXH_PRIME64_1; h64 ^= k1; h64 = HYPRE_XXH_rotl64(h64, 27)*HYPRE_XXH_PRIME64_1 + HYPRE_XXH_PRIME64_4; h64 ^= h64 >> 33; h64 *= HYPRE_XXH_PRIME64_2; h64 ^= h64 >> 29; h64 *= HYPRE_XXH_PRIME64_3; h64 ^= h64 >> 32; #ifndef NDEBUG if (HYPRE_HOPSCOTCH_HASH_EMPTY == h64) { hypre_printf("hash(%lld) = %d\n", h64, HYPRE_HOPSCOTCH_HASH_EMPTY); assert(HYPRE_HOPSCOTCH_HASH_EMPTY != h64); } #endif return h64; } #else static inline HYPRE_Int hypre_BigHash(HYPRE_Int input) { hypre_uint h32 = HYPRE_XXH_PRIME32_5 + sizeof(input); // 1665863975 is added to input so that // only -1073741824 gives HYPRE_HOPSCOTCH_HASH_EMPTY. // Hence, we're fine as long as key is non-negative. h32 += (input + 1665863975)*HYPRE_XXH_PRIME32_3; h32 = HYPRE_XXH_rotl32(h32, 17)*HYPRE_XXH_PRIME32_4; h32 ^= h32 >> 15; h32 *= HYPRE_XXH_PRIME32_2; h32 ^= h32 >> 13; h32 *= HYPRE_XXH_PRIME32_3; h32 ^= h32 >> 16; //assert(HYPRE_HOPSCOTCH_HASH_EMPTY != h32); return h32; } #endif #ifdef HYPRE_BIGINT static inline HYPRE_Int hypre_Hash(HYPRE_Int input) { hypre_ulongint h64 = HYPRE_XXH_PRIME64_5 + sizeof(input); hypre_ulongint k1 = input; k1 *= HYPRE_XXH_PRIME64_2; k1 = HYPRE_XXH_rotl64(k1, 31); k1 *= HYPRE_XXH_PRIME64_1; h64 ^= k1; h64 = HYPRE_XXH_rotl64(h64, 27)*HYPRE_XXH_PRIME64_1 + HYPRE_XXH_PRIME64_4; h64 ^= h64 >> 33; h64 *= HYPRE_XXH_PRIME64_2; h64 ^= h64 >> 29; h64 *= HYPRE_XXH_PRIME64_3; h64 ^= h64 >> 32; #ifndef NDEBUG if (HYPRE_HOPSCOTCH_HASH_EMPTY == h64) { hypre_printf("hash(%lld) = %d\n", h64, HYPRE_HOPSCOTCH_HASH_EMPTY); assert(HYPRE_HOPSCOTCH_HASH_EMPTY != h64); } #endif return h64; } #else static inline HYPRE_Int hypre_Hash(HYPRE_Int input) { hypre_uint h32 = HYPRE_XXH_PRIME32_5 + sizeof(input); // 1665863975 is added to input so that // only -1073741824 gives HYPRE_HOPSCOTCH_HASH_EMPTY. // Hence, we're fine as long as key is non-negative. h32 += (input + 1665863975)*HYPRE_XXH_PRIME32_3; h32 = HYPRE_XXH_rotl32(h32, 17)*HYPRE_XXH_PRIME32_4; h32 ^= h32 >> 15; h32 *= HYPRE_XXH_PRIME32_2; h32 ^= h32 >> 13; h32 *= HYPRE_XXH_PRIME32_3; h32 ^= h32 >> 16; //assert(HYPRE_HOPSCOTCH_HASH_EMPTY != h32); return h32; } #endif static inline void hypre_UnorderedIntSetFindCloserFreeBucket( hypre_UnorderedIntSet *s, #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* start_seg, #endif HYPRE_Int *free_bucket, HYPRE_Int *free_dist ) { HYPRE_Int move_bucket = *free_bucket - (HYPRE_HOPSCOTCH_HASH_HOP_RANGE - 1); HYPRE_Int move_free_dist; for (move_free_dist = HYPRE_HOPSCOTCH_HASH_HOP_RANGE - 1; move_free_dist > 0; --move_free_dist) { hypre_uint start_hop_info = s->hopInfo[move_bucket]; HYPRE_Int move_new_free_dist = -1; hypre_uint mask = 1; HYPRE_Int i; for (i = 0; i < move_free_dist; ++i, mask <<= 1) { if (mask & start_hop_info) { move_new_free_dist = i; break; } } if (-1 != move_new_free_dist) { #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* move_segment = &(s->segments[move_bucket & s->segmentMask]); if(start_seg != move_segment) omp_set_lock(&move_segment->lock); #endif if (start_hop_info == s->hopInfo[move_bucket]) { // new_free_bucket -> free_bucket and empty new_free_bucket HYPRE_Int new_free_bucket = move_bucket + move_new_free_dist; s->key[*free_bucket] = s->key[new_free_bucket]; s->hash[*free_bucket] = s->hash[new_free_bucket]; #ifdef HYPRE_CONCURRENT_HOPSCOTCH ++move_segment->timestamp; #pragma omp flush #endif s->hopInfo[move_bucket] |= (1U << move_free_dist); s->hopInfo[move_bucket] &= ~(1U << move_new_free_dist); *free_bucket = new_free_bucket; *free_dist -= move_free_dist - move_new_free_dist; #ifdef HYPRE_CONCURRENT_HOPSCOTCH if(start_seg != move_segment) omp_unset_lock(&move_segment->lock); #endif return; } #ifdef HYPRE_CONCURRENT_HOPSCOTCH if(start_seg != move_segment) omp_unset_lock(&move_segment->lock); #endif } ++move_bucket; } *free_bucket = -1; *free_dist = 0; } static inline void hypre_UnorderedBigIntSetFindCloserFreeBucket( hypre_UnorderedBigIntSet *s, #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* start_seg, #endif HYPRE_Int *free_bucket, HYPRE_Int *free_dist ) { HYPRE_Int move_bucket = *free_bucket - (HYPRE_HOPSCOTCH_HASH_HOP_RANGE - 1); HYPRE_Int move_free_dist; for (move_free_dist = HYPRE_HOPSCOTCH_HASH_HOP_RANGE - 1; move_free_dist > 0; --move_free_dist) { hypre_uint start_hop_info = s->hopInfo[move_bucket]; HYPRE_Int move_new_free_dist = -1; hypre_uint mask = 1; HYPRE_Int i; for (i = 0; i < move_free_dist; ++i, mask <<= 1) { if (mask & start_hop_info) { move_new_free_dist = i; break; } } if (-1 != move_new_free_dist) { #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* move_segment = &(s->segments[move_bucket & s->segmentMask]); if(start_seg != move_segment) omp_set_lock(&move_segment->lock); #endif if (start_hop_info == s->hopInfo[move_bucket]) { // new_free_bucket -> free_bucket and empty new_free_bucket HYPRE_Int new_free_bucket = move_bucket + move_new_free_dist; s->key[*free_bucket] = s->key[new_free_bucket]; s->hash[*free_bucket] = s->hash[new_free_bucket]; #ifdef HYPRE_CONCURRENT_HOPSCOTCH ++move_segment->timestamp; #pragma omp flush #endif s->hopInfo[move_bucket] |= (1U << move_free_dist); s->hopInfo[move_bucket] &= ~(1U << move_new_free_dist); *free_bucket = new_free_bucket; *free_dist -= move_free_dist - move_new_free_dist; #ifdef HYPRE_CONCURRENT_HOPSCOTCH if(start_seg != move_segment) omp_unset_lock(&move_segment->lock); #endif return; } #ifdef HYPRE_CONCURRENT_HOPSCOTCH if(start_seg != move_segment) omp_unset_lock(&move_segment->lock); #endif } ++move_bucket; } *free_bucket = -1; *free_dist = 0; } static inline void hypre_UnorderedIntMapFindCloserFreeBucket( hypre_UnorderedIntMap *m, #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* start_seg, #endif hypre_HopscotchBucket** free_bucket, HYPRE_Int* free_dist) { hypre_HopscotchBucket* move_bucket = *free_bucket - (HYPRE_HOPSCOTCH_HASH_HOP_RANGE - 1); HYPRE_Int move_free_dist; for (move_free_dist = HYPRE_HOPSCOTCH_HASH_HOP_RANGE - 1; move_free_dist > 0; --move_free_dist) { hypre_uint start_hop_info = move_bucket->hopInfo; HYPRE_Int move_new_free_dist = -1; hypre_uint mask = 1; HYPRE_Int i; for (i = 0; i < move_free_dist; ++i, mask <<= 1) { if (mask & start_hop_info) { move_new_free_dist = i; break; } } if (-1 != move_new_free_dist) { #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* move_segment = &(m->segments[(move_bucket - m->table) & m->segmentMask]); if (start_seg != move_segment) omp_set_lock(&move_segment->lock); #endif if (start_hop_info == move_bucket->hopInfo) { // new_free_bucket -> free_bucket and empty new_free_bucket hypre_HopscotchBucket* new_free_bucket = move_bucket + move_new_free_dist; (*free_bucket)->data = new_free_bucket->data; (*free_bucket)->key = new_free_bucket->key; (*free_bucket)->hash = new_free_bucket->hash; #ifdef HYPRE_CONCURRENT_HOPSCOTCH ++move_segment->timestamp; #pragma omp flush #endif move_bucket->hopInfo |= (1U << move_free_dist); move_bucket->hopInfo &= ~(1U << move_new_free_dist); *free_bucket = new_free_bucket; *free_dist -= move_free_dist - move_new_free_dist; #ifdef HYPRE_CONCURRENT_HOPSCOTCH if(start_seg != move_segment) omp_unset_lock(&move_segment->lock); #endif return; } #ifdef HYPRE_CONCURRENT_HOPSCOTCH if(start_seg != move_segment) omp_unset_lock(&move_segment->lock); #endif } ++move_bucket; } *free_bucket = NULL; *free_dist = 0; } static inline void hypre_UnorderedBigIntMapFindCloserFreeBucket( hypre_UnorderedBigIntMap *m, #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* start_seg, #endif hypre_BigHopscotchBucket** free_bucket, HYPRE_Int* free_dist) { hypre_BigHopscotchBucket* move_bucket = *free_bucket - (HYPRE_HOPSCOTCH_HASH_HOP_RANGE - 1); HYPRE_Int move_free_dist; for (move_free_dist = HYPRE_HOPSCOTCH_HASH_HOP_RANGE - 1; move_free_dist > 0; --move_free_dist) { hypre_uint start_hop_info = move_bucket->hopInfo; HYPRE_Int move_new_free_dist = -1; hypre_uint mask = 1; HYPRE_Int i; for (i = 0; i < move_free_dist; ++i, mask <<= 1) { if (mask & start_hop_info) { move_new_free_dist = i; break; } } if (-1 != move_new_free_dist) { #ifdef HYPRE_CONCURRENT_HOPSCOTCH hypre_HopscotchSegment* move_segment = &(m->segments[(move_bucket - m->table) & m->segmentMask]); if (start_seg != move_segment) omp_set_lock(&move_segment->lock); #endif if (start_hop_info == move_bucket->hopInfo) { // new_free_bucket -> free_bucket and empty new_free_bucket hypre_BigHopscotchBucket* new_free_bucket = move_bucket + move_new_free_dist; (*free_bucket)->data = new_free_bucket->data; (*free_bucket)->key = new_free_bucket->key; (*free_bucket)->hash = new_free_bucket->hash; #ifdef HYPRE_CONCURRENT_HOPSCOTCH ++move_segment->timestamp; #pragma omp flush #endif move_bucket->hopInfo |= (1U << move_free_dist); move_bucket->hopInfo &= ~(1U << move_new_free_dist); *free_bucket = new_free_bucket; *free_dist -= move_free_dist - move_new_free_dist; #ifdef HYPRE_CONCURRENT_HOPSCOTCH if(start_seg != move_segment) omp_unset_lock(&move_segment->lock); #endif return; } #ifdef HYPRE_CONCURRENT_HOPSCOTCH if(start_seg != move_segment) omp_unset_lock(&move_segment->lock); #endif } ++move_bucket; } *free_bucket = NULL; *free_dist = 0; } void hypre_UnorderedIntSetCreate( hypre_UnorderedIntSet *s, HYPRE_Int inCapacity, HYPRE_Int concurrencyLevel); void hypre_UnorderedBigIntSetCreate( hypre_UnorderedBigIntSet *s, HYPRE_Int inCapacity, HYPRE_Int concurrencyLevel); void hypre_UnorderedIntMapCreate( hypre_UnorderedIntMap *m, HYPRE_Int inCapacity, HYPRE_Int concurrencyLevel); void hypre_UnorderedBigIntMapCreate( hypre_UnorderedBigIntMap *m, HYPRE_Int inCapacity, HYPRE_Int concurrencyLevel); void hypre_UnorderedIntSetDestroy( hypre_UnorderedIntSet *s ); void hypre_UnorderedBigIntSetDestroy( hypre_UnorderedBigIntSet *s ); void hypre_UnorderedIntMapDestroy( hypre_UnorderedIntMap *m ); void hypre_UnorderedBigIntMapDestroy( hypre_UnorderedBigIntMap *m ); // Query Operations ......................................................... #ifdef HYPRE_CONCURRENT_HOPSCOTCH static inline HYPRE_Int hypre_UnorderedIntSetContains( hypre_UnorderedIntSet *s, HYPRE_Int key ) { //CALCULATE HASH .......................... #ifdef HYPRE_BIGINT HYPRE_Int hash = hypre_BigHash(key); #else HYPRE_Int hash = hypre_Hash(key); #endif //CHECK IF ALREADY CONTAIN ................ hypre_HopscotchSegment *segment = &s->segments[hash & s->segmentMask]; HYPRE_Int bucket = hash & s->bucketMask; hypre_uint hopInfo = s->hopInfo[bucket]; if (0 == hopInfo) return 0; else if (1 == hopInfo ) { if (hash == s->hash[bucket] && key == s->key[bucket]) return 1; else return 0; } HYPRE_Int startTimestamp = segment->timestamp; while (0 != hopInfo) { HYPRE_Int i = first_lsb_bit_indx(hopInfo); HYPRE_Int currElm = bucket + i; if (hash == s->hash[currElm] && key == s->key[currElm]) return 1; hopInfo &= ~(1U << i); } if (segment->timestamp == startTimestamp) return 0; HYPRE_Int i; for (i = 0; i< HYPRE_HOPSCOTCH_HASH_HOP_RANGE; ++i) { if (hash == s->hash[bucket + i] && key == s->key[bucket + i]) return 1; } return 0; } static inline HYPRE_Int hypre_UnorderedBigIntSetContains( hypre_UnorderedBigIntSet *s, HYPRE_BigInt key ) { //CALCULATE HASH .......................... #if defined(HYPRE_BIGINT) || defined(HYPRE_MIXEDINT) HYPRE_BigInt hash = hypre_BigHash(key); #else HYPRE_BigInt hash = hypre_Hash(key); #endif //CHECK IF ALREADY CONTAIN ................ hypre_HopscotchSegment *segment = &s->segments[(HYPRE_Int)(hash & s->segmentMask)]; HYPRE_Int bucket = (HYPRE_Int)(hash & s->bucketMask); hypre_uint hopInfo = s->hopInfo[bucket]; if (0 == hopInfo) return 0; else if (1 == hopInfo ) { if (hash == s->hash[bucket] && key == s->key[bucket]) return 1; else return 0; } HYPRE_Int startTimestamp = segment->timestamp; while (0 != hopInfo) { HYPRE_Int i = first_lsb_bit_indx(hopInfo); HYPRE_Int currElm = bucket + i; if (hash == s->hash[currElm] && key == s->key[currElm]) return 1; hopInfo &= ~(1U << i); } if (segment->timestamp == startTimestamp) return 0; HYPRE_Int i; for (i = 0; i< HYPRE_HOPSCOTCH_HASH_HOP_RANGE; ++i) { if (hash == s->hash[bucket + i] && key == s->key[bucket + i]) return 1; } return 0; } /** * @ret -1 if key doesn't exist */ static inline HYPRE_Int hypre_UnorderedIntMapGet( hypre_UnorderedIntMap *m, HYPRE_Int key) { //CALCULATE HASH .......................... #ifdef HYPRE_BIGINT HYPRE_Int hash = hypre_BigHash(key); #else HYPRE_Int hash = hypre_Hash(key); #endif //CHECK IF ALREADY CONTAIN ................ hypre_HopscotchSegment *segment = &m->segments[hash & m->segmentMask]; hypre_HopscotchBucket *elmAry = &(m->table[hash & m->bucketMask]); hypre_uint hopInfo = elmAry->hopInfo; if (0 == hopInfo) return -1; else if (1 == hopInfo ) { if (hash == elmAry->hash && key == elmAry->key) return elmAry->data; else return -1; } HYPRE_Int startTimestamp = segment->timestamp; while (0 != hopInfo) { HYPRE_Int i = first_lsb_bit_indx(hopInfo); hypre_HopscotchBucket* currElm = elmAry + i; if (hash == currElm->hash && key == currElm->key) return currElm->data; hopInfo &= ~(1U << i); } if (segment->timestamp == startTimestamp) return -1; hypre_HopscotchBucket *currBucket = &(m->table[hash & m->bucketMask]); HYPRE_Int i; for (i = 0; i< HYPRE_HOPSCOTCH_HASH_HOP_RANGE; ++i, ++currBucket) { if (hash == currBucket->hash && key == currBucket->key) return currBucket->data; } return -1; } static inline HYPRE_Int hypre_UnorderedBigIntMapGet( hypre_UnorderedBigIntMap *m, HYPRE_BigInt key) { //CALCULATE HASH .......................... #if defined(HYPRE_BIGINT) || defined(HYPRE_MIXEDINT) HYPRE_BigInt hash = hypre_BigHash(key); #else HYPRE_BigInt hash = hypre_Hash(key); #endif //CHECK IF ALREADY CONTAIN ................ hypre_HopscotchSegment *segment = &m->segments[(HYPRE_Int)(hash & m->segmentMask)]; hypre_BigHopscotchBucket *elmAry = &(m->table[(HYPRE_Int)(hash & m->bucketMask)]); hypre_uint hopInfo = elmAry->hopInfo; if (0 == hopInfo) return -1; else if (1 == hopInfo ) { if (hash == elmAry->hash && key == elmAry->key) return elmAry->data; else return -1; } HYPRE_Int startTimestamp = segment->timestamp; while (0 != hopInfo) { HYPRE_Int i = first_lsb_bit_indx(hopInfo); hypre_BigHopscotchBucket* currElm = elmAry + i; if (hash == currElm->hash && key == currElm->key) return currElm->data; hopInfo &= ~(1U << i); } if (segment->timestamp == startTimestamp) return -1; hypre_BigHopscotchBucket *currBucket = &(m->table[hash & m->bucketMask]); HYPRE_Int i; for (i = 0; i< HYPRE_HOPSCOTCH_HASH_HOP_RANGE; ++i, ++currBucket) { if (hash == currBucket->hash && key == currBucket->key) return currBucket->data; } return -1; } #endif //status Operations ......................................................... static inline HYPRE_Int hypre_UnorderedIntSetSize(hypre_UnorderedIntSet *s) { HYPRE_Int counter = 0; HYPRE_Int n = s->bucketMask + HYPRE_HOPSCOTCH_HASH_INSERT_RANGE; HYPRE_Int i; for (i = 0; i < n; ++i) { if (HYPRE_HOPSCOTCH_HASH_EMPTY != s->hash[i]) { ++counter; } } return counter; } static inline HYPRE_Int hypre_UnorderedBigIntSetSize(hypre_UnorderedBigIntSet *s) { HYPRE_Int counter = 0; HYPRE_BigInt n = s->bucketMask + HYPRE_HOPSCOTCH_HASH_INSERT_RANGE; HYPRE_Int i; for (i = 0; i < n; ++i) { if (HYPRE_HOPSCOTCH_HASH_EMPTY != s->hash[i]) { ++counter; } } return counter; } static inline HYPRE_Int hypre_UnorderedIntMapSize(hypre_UnorderedIntMap *m) { HYPRE_Int counter = 0; HYPRE_Int n = m->bucketMask + HYPRE_HOPSCOTCH_HASH_INSERT_RANGE; HYPRE_Int i; for (i = 0; i < n; ++i) { if( HYPRE_HOPSCOTCH_HASH_EMPTY != m->table[i].hash ) { ++counter; } } return counter; } static inline HYPRE_Int hypre_UnorderedBigIntMapSize(hypre_UnorderedBigIntMap *m) { HYPRE_Int counter = 0; HYPRE_Int n = m->bucketMask + HYPRE_HOPSCOTCH_HASH_INSERT_RANGE; HYPRE_Int i; for (i = 0; i < n; ++i) { if( HYPRE_HOPSCOTCH_HASH_EMPTY != m->table[i].hash ) { ++counter; } } return counter; } HYPRE_Int *hypre_UnorderedIntSetCopyToArray( hypre_UnorderedIntSet *s, HYPRE_Int *len ); HYPRE_BigInt *hypre_UnorderedBigIntSetCopyToArray( hypre_UnorderedBigIntSet *s, HYPRE_Int *len ); //modification Operations ................................................... #ifdef HYPRE_CONCURRENT_HOPSCOTCH static inline void hypre_UnorderedIntSetPut( hypre_UnorderedIntSet *s, HYPRE_Int key ) { //CALCULATE HASH .......................... #ifdef HYPRE_BIGINT HYPRE_Int hash = hypre_BigHash(key); #else HYPRE_Int hash = hypre_Hash(key); #endif //LOCK KEY HASH ENTERY .................... hypre_HopscotchSegment *segment = &s->segments[hash & s->segmentMask]; omp_set_lock(&segment->lock); HYPRE_Int bucket = hash&s->bucketMask; //CHECK IF ALREADY CONTAIN ................ hypre_uint hopInfo = s->hopInfo[bucket]; while (0 != hopInfo) { HYPRE_Int i = first_lsb_bit_indx(hopInfo); HYPRE_Int currElm = bucket + i; if(hash == s->hash[currElm] && key == s->key[currElm]) { omp_unset_lock(&segment->lock); return; } hopInfo &= ~(1U << i); } //LOOK FOR FREE BUCKET .................... HYPRE_Int free_bucket = bucket; HYPRE_Int free_dist = 0; for ( ; free_dist < HYPRE_HOPSCOTCH_HASH_INSERT_RANGE; ++free_dist, ++free_bucket) { if( (HYPRE_HOPSCOTCH_HASH_EMPTY == s->hash[free_bucket]) && (HYPRE_HOPSCOTCH_HASH_EMPTY == hypre_compare_and_swap((HYPRE_Int *)&s->hash[free_bucket], (HYPRE_Int)HYPRE_HOPSCOTCH_HASH_EMPTY, (HYPRE_Int)HYPRE_HOPSCOTCH_HASH_BUSY)) ) break; } //PLACE THE NEW KEY ....................... if (free_dist < HYPRE_HOPSCOTCH_HASH_INSERT_RANGE) { do { if (free_dist < HYPRE_HOPSCOTCH_HASH_HOP_RANGE) { s->key[free_bucket] = key; s->hash[free_bucket] = hash; s->hopInfo[bucket] |= 1U << free_dist; omp_unset_lock(&segment->lock); return; } hypre_UnorderedIntSetFindCloserFreeBucket(s, segment, &free_bucket, &free_dist); } while (-1 != free_bucket); } //NEED TO RESIZE .......................... hypre_error_w_msg(HYPRE_ERROR_GENERIC,"ERROR - RESIZE is not implemented\n"); /*fprintf(stderr, "ERROR - RESIZE is not implemented\n");*/ exit(1); return; } static inline void hypre_UnorderedBigIntSetPut( hypre_UnorderedBigIntSet *s, HYPRE_BigInt key ) { //CALCULATE HASH .......................... #if defined(HYPRE_BIGINT) || defined(HYPRE_MIXEDINT) HYPRE_BigInt hash = hypre_BigHash(key); #else HYPRE_BigInt hash = hypre_Hash(key); #endif //LOCK KEY HASH ENTERY .................... hypre_HopscotchSegment *segment = &s->segments[hash & s->segmentMask]; omp_set_lock(&segment->lock); HYPRE_Int bucket = (HYPRE_Int)(hash&s->bucketMask); //CHECK IF ALREADY CONTAIN ................ hypre_uint hopInfo = s->hopInfo[bucket]; while (0 != hopInfo) { HYPRE_Int i = first_lsb_bit_indx(hopInfo); HYPRE_Int currElm = bucket + i; if(hash == s->hash[currElm] && key == s->key[currElm]) { omp_unset_lock(&segment->lock); return; } hopInfo &= ~(1U << i); } //LOOK FOR FREE BUCKET .................... HYPRE_Int free_bucket = bucket; HYPRE_Int free_dist = 0; for ( ; free_dist < HYPRE_HOPSCOTCH_HASH_INSERT_RANGE; ++free_dist, ++free_bucket) { if( (HYPRE_HOPSCOTCH_HASH_EMPTY == s->hash[free_bucket]) && (HYPRE_HOPSCOTCH_HASH_EMPTY == hypre_compare_and_swap((HYPRE_Int *)&s->hash[free_bucket], (HYPRE_Int)HYPRE_HOPSCOTCH_HASH_EMPTY, (HYPRE_Int)HYPRE_HOPSCOTCH_HASH_BUSY)) ) break; } //PLACE THE NEW KEY ....................... if (free_dist < HYPRE_HOPSCOTCH_HASH_INSERT_RANGE) { do { if (free_dist < HYPRE_HOPSCOTCH_HASH_HOP_RANGE) { s->key[free_bucket] = key; s->hash[free_bucket] = hash; s->hopInfo[bucket] |= 1U << free_dist; omp_unset_lock(&segment->lock); return; } hypre_UnorderedBigIntSetFindCloserFreeBucket(s, segment, &free_bucket, &free_dist); } while (-1 != free_bucket); } //NEED TO RESIZE .......................... hypre_error_w_msg(HYPRE_ERROR_GENERIC,"ERROR - RESIZE is not implemented\n"); /*fprintf(stderr, "ERROR - RESIZE is not implemented\n");*/ exit(1); return; } static inline HYPRE_Int hypre_UnorderedIntMapPutIfAbsent( hypre_UnorderedIntMap *m, HYPRE_Int key, HYPRE_Int data) { //CALCULATE HASH .......................... #ifdef HYPRE_BIGINT HYPRE_Int hash = hypre_BigHash(key); #else HYPRE_Int hash = hypre_Hash(key); #endif //LOCK KEY HASH ENTERY .................... hypre_HopscotchSegment *segment = &m->segments[hash & m->segmentMask]; omp_set_lock(&segment->lock); hypre_HopscotchBucket* startBucket = &(m->table[hash & m->bucketMask]); //CHECK IF ALREADY CONTAIN ................ hypre_uint hopInfo = startBucket->hopInfo; while (0 != hopInfo) { HYPRE_Int i = first_lsb_bit_indx(hopInfo); hypre_HopscotchBucket* currElm = startBucket + i; if (hash == currElm->hash && key == currElm->key) { HYPRE_Int rc = currElm->data; omp_unset_lock(&segment->lock); return rc; } hopInfo &= ~(1U << i); } //LOOK FOR FREE BUCKET .................... hypre_HopscotchBucket* free_bucket = startBucket; HYPRE_Int free_dist = 0; for ( ; free_dist < HYPRE_HOPSCOTCH_HASH_INSERT_RANGE; ++free_dist, ++free_bucket) { if( (HYPRE_HOPSCOTCH_HASH_EMPTY == free_bucket->hash) && (HYPRE_HOPSCOTCH_HASH_EMPTY == __sync_val_compare_and_swap((HYPRE_Int *)&free_bucket->hash, (HYPRE_Int)HYPRE_HOPSCOTCH_HASH_EMPTY, (HYPRE_Int)HYPRE_HOPSCOTCH_HASH_BUSY)) ) break; } //PLACE THE NEW KEY ....................... if (free_dist < HYPRE_HOPSCOTCH_HASH_INSERT_RANGE) { do { if (free_dist < HYPRE_HOPSCOTCH_HASH_HOP_RANGE) { free_bucket->data = data; free_bucket->key = key; free_bucket->hash = hash; startBucket->hopInfo |= 1U << free_dist; omp_unset_lock(&segment->lock); return HYPRE_HOPSCOTCH_HASH_EMPTY; } hypre_UnorderedIntMapFindCloserFreeBucket(m, segment, &free_bucket, &free_dist); } while (NULL != free_bucket); } //NEED TO RESIZE .......................... hypre_error_w_msg(HYPRE_ERROR_GENERIC,"ERROR - RESIZE is not implemented\n"); /*fprintf(stderr, "ERROR - RESIZE is not implemented\n");*/ exit(1); return HYPRE_HOPSCOTCH_HASH_EMPTY; } static inline HYPRE_Int hypre_UnorderedBigIntMapPutIfAbsent( hypre_UnorderedBigIntMap *m, HYPRE_BigInt key, HYPRE_Int data) { //CALCULATE HASH .......................... #if defined(HYPRE_BIGINT) || defined(HYPRE_MIXEDINT) HYPRE_BigInt hash = hypre_BigHash(key); #else HYPRE_BigInt hash = hypre_Hash(key); #endif //LOCK KEY HASH ENTERY .................... hypre_HopscotchSegment *segment = &m->segments[hash & m->segmentMask]; omp_set_lock(&segment->lock); hypre_BigHopscotchBucket* startBucket = &(m->table[hash & m->bucketMask]); //CHECK IF ALREADY CONTAIN ................ hypre_uint hopInfo = startBucket->hopInfo; while (0 != hopInfo) { HYPRE_Int i = first_lsb_bit_indx(hopInfo); hypre_BigHopscotchBucket* currElm = startBucket + i; if (hash == currElm->hash && key == currElm->key) { HYPRE_Int rc = currElm->data; omp_unset_lock(&segment->lock); return rc; } hopInfo &= ~(1U << i); } //LOOK FOR FREE BUCKET .................... hypre_BigHopscotchBucket* free_bucket = startBucket; HYPRE_Int free_dist = 0; for ( ; free_dist < HYPRE_HOPSCOTCH_HASH_INSERT_RANGE; ++free_dist, ++free_bucket) { if( (HYPRE_HOPSCOTCH_HASH_EMPTY == free_bucket->hash) && (HYPRE_HOPSCOTCH_HASH_EMPTY == __sync_val_compare_and_swap((HYPRE_Int *)&free_bucket->hash, (HYPRE_Int)HYPRE_HOPSCOTCH_HASH_EMPTY, (HYPRE_Int)HYPRE_HOPSCOTCH_HASH_BUSY)) ) break; } //PLACE THE NEW KEY ....................... if (free_dist < HYPRE_HOPSCOTCH_HASH_INSERT_RANGE) { do { if (free_dist < HYPRE_HOPSCOTCH_HASH_HOP_RANGE) { free_bucket->data = data; free_bucket->key = key; free_bucket->hash = hash; startBucket->hopInfo |= 1U << free_dist; omp_unset_lock(&segment->lock); return HYPRE_HOPSCOTCH_HASH_EMPTY; } hypre_UnorderedBigIntMapFindCloserFreeBucket(m, segment, &free_bucket, &free_dist); } while (NULL != free_bucket); } //NEED TO RESIZE .......................... hypre_error_w_msg(HYPRE_ERROR_GENERIC,"ERROR - RESIZE is not implemented\n"); /*fprintf(stderr, "ERROR - RESIZE is not implemented\n");*/ exit(1); return HYPRE_HOPSCOTCH_HASH_EMPTY; } #endif #ifdef __cplusplus } // extern "C" #endif #endif // hypre_HOPSCOTCH_HASH_HEADER
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/fei_defs.h
#ifndef _fei_defs_h_ #define _fei_defs_h_ /* In this file we set some #defines to use as parameters to some fei functions, and also some error-code returns. We also provide the typedef for 'GlobalID' which appears in many FEI function prototypes. Note that the default case is for GlobalID to simply be an int. This file is included by both C and C++ versions of the fei. */ #ifdef EIGHT_BYTE_GLOBAL_ID typedef long long GlobalID; #define GlobalID_MAX LLONG_MAX #define GlobalID_MIN LLONG_MIN #else typedef int GlobalID; #endif /* solveType (used in 'setSolveType'): */ #define FEI_SINGLE_SYSTEM 0 #define FEI_EIGEN_SOLVE 1 #define FEI_AGGREGATE_SUM 2 #define FEI_AGGREGATE_PRODUCT 3 /* IDType (used in coefficient-access functions) */ #define FEI_NODE 0 #define FEI_ELEMENT 1 #define FEI_ONLY_NODES 2 #define FEI_ONLY_ELEMENTS 3 /* elemFormat (used in 'sumInElem' and 'sumInElemMatrix'): */ #define FEI_DENSE_ROW 0 #define FEI_UPPER_SYMM_ROW 1 #define FEI_LOWER_SYMM_ROW 2 #define FEI_DENSE_COL 3 #define FEI_UPPER_SYMM_COL 4 #define FEI_LOWER_SYMM_COL 5 #define FEI_DIAGONAL 6 #define FEI_BLOCK_DIAGONAL_ROW 7 #define FEI_BLOCK_DIAGONAL_COL 8 /* interleaveStrategy (used in initElemBlock): */ #define FEI_NODE_MAJOR 0 #define FEI_FIELD_MAJOR 1 /* timingMode (used in cumulative_MPI_Wtimes): */ #define FEI_LOCAL_TIMES 0 #define FEI_MAX_TIMES 1 #define FEI_MIN_TIMES 2 /* FEI function return values */ #define FEI_SUCCESS 0 #define FEI_FATAL_ERROR -1 #define FEI_ID_NOT_FOUND -2 #endif
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/cfei.h
<reponame>mzl13/LiDendrite #ifndef _cfei_h_ #define _cfei_h_ /*--------------------------------------------------------------------*/ /* Copyright 2005 Sandia Corporation. */ /* Under the terms of Contract DE-AC04-94AL85000, there is a */ /* non-exclusive license for use of this work by or on behalf */ /* of the U.S. Government. Export of this program may require */ /* a license from the United States Government. */ /*--------------------------------------------------------------------*/ /*------------------------------------------------------------------------------ This is the header for the prototypes of the C interface of the Finite Element Interface to Linear Solvers (FEI). For explanations of parameters and semantics, see the C++ FEI.h header, or doxygen output created there-from. With the exception of added create/destroy functions, all FEI functions in this header mirror those in the C++ header except as follows: - 'FEI_' is pre-pended to function names - 'CFEI* cfei' is the first argument for every function - arguments which are references in C++ (e.g., an output int) are pointers in this C interface. NOTE: ALL functions return an error code which is 0 if successful, non-zero if un-successful. Noteworthy special case: the solve function may return non-zero if the solver failed to converge. This is, of course, a non-fatal situation, and the caller should then check the 'status' argument for possible further information (solver-specific/solver-dependent). ------------------------------------------------------------------------------*/ #include "fei_LinSysCore_struct.h" /*------------------------------------------------------------------------------ Next, define an opaque CFEI object which will be an FEI context, and will be the first argument to all of the C FEI functions which follow in this header. ------------------------------------------------------------------------------*/ struct CFEI_struct { void* cfei_; }; typedef struct CFEI_struct CFEI; /*------------------------------------------------------------------------------ And now, the function prototypes... ------------------------------------------------------------------------------*/ /* include fei_defs.h for the #defines of parameters such as FEI_LOCAL_TIMES, FEI_NODE_MAJOR, etc. */ #include "fei_defs.h" #include "fei_mpi.h" #ifdef __cplusplus extern "C" { #endif /* Initialization function. Creates an FEI instance, wrapped in a CFEI pointer. */ int FEI_create(CFEI** cfei, LinSysCore* lsc, MPI_Comm FEI_COMM_WORLD, int masterRank); /* A function to destroy allocated memory. */ int FEI_destroy(CFEI** cfei); /* A function to destroy LinSysCore objects. (Note that the create function is specific to the implementation and so is not provided here.) */ int LinSysCore_destroy(LinSysCore** lsc); /* A function to query a named property. */ int LinSysCore_getProperty_double(LinSysCore* lsc, const char* name, double* value); /* */ /* And now all of the FEI functions... */ /* */ int FEI_parameters(CFEI* cfei, int numParams, char **paramStrings); int FEI_setIDLists(CFEI* cfei, int numMatrices, const int* matrixIDs, int numRHSs, const int* rhsIDs); int FEI_setSolveType(CFEI* cfei, int solveType); int FEI_initFields(CFEI* cfei, int numFields, int *fieldSizes, int *fieldIDs); int FEI_initElemBlock(CFEI* cfei, GlobalID elemBlockID, int numElements, int numNodesPerElement, int* numFieldsPerNode, int** nodalFieldIDs, int numElemDofFieldsPerElement, int* elemDOFFieldIDs, int interleaveStrategy); int FEI_initElem(CFEI* cfei, GlobalID elemBlockID, GlobalID elemID, GlobalID *elemConn); int FEI_initSharedNodes(CFEI* cfei, int numSharedNodes, GlobalID *sharedNodeIDs, int* numProcsPerNode, int** sharingProcIDs); int FEI_initCRMult(CFEI* cfei, int numCRNodes, GlobalID* CRNodes, int *CRFields, int* CRID); int FEI_initCRPen(CFEI* cfei, int numCRNodes, GlobalID* CRNodes, int *CRFields, int* CRID); int FEI_initSlaveVariable(CFEI* cfei, GlobalID slaveNodeID, int slaveFieldID, int offsetIntoSlaveField, int numMasterNodes, const GlobalID* masterNodeIDs, const int* masterFieldIDs, const double* weights, double rhsValue); int FEI_initCoefAccessPattern( CFEI* cfei, int patternID, int numRowIDs, int* numFieldsPerRow, int** rowFieldIDs, int numColIDsPerRow, int* numFieldsPerCol, int** colFieldIDs, int interleaveStrategy ); int FEI_initCoefAccess( CFEI* cfei, int patternID, int* rowIDTypes, GlobalID* rowIDs, int* colIDTypes, GlobalID* colIDs ); int FEI_initComplete(CFEI* cfei); int FEI_resetSystem(CFEI* cfei, double s); int FEI_resetMatrix(CFEI* cfei, double s); int FEI_resetRHSVector(CFEI* cfei, double s); int FEI_resetInitialGuess(CFEI* cfei, double s); int FEI_deleteMultCRs(CFEI* cfei); int FEI_setCurrentMatrix(CFEI* cfei, int matID); int FEI_setCurrentRHS(CFEI* cfei, int rhsID); int FEI_loadNodeBCs(CFEI* cfei, int numNodes, GlobalID *BCNodes, int fieldID, int* offsetsIntoField, double* prescribed_values); int FEI_loadElemBCs( CFEI* cfei, int numElems, GlobalID *elemIDs, int fieldID, double **alpha, double **beta, double **gamma ); int FEI_sumInElem(CFEI* cfei, GlobalID elemBlockID, GlobalID elemID, GlobalID* elemConn, double **elemStiffness, double *elemLoad, int elemFormat); int FEI_sumInElemMatrix(CFEI* cfei, GlobalID elemBlockID, GlobalID elemID, GlobalID* elemConn, double **elemStiffness, int elemFormat); int FEI_sumInElemRHS(CFEI* cfei, GlobalID elemBlockID, GlobalID elemID, GlobalID* elemConn, double *elemLoad); int FEI_loadElemTransfer(CFEI* cfei, GlobalID elemBlockID, GlobalID elemID, GlobalID* coarseNodeList, int fineNodesPerCoarseElem, GlobalID* fineNodeList, double** elemProlong, double** elemRestrict); int FEI_loadCRMult(CFEI* cfei, int CRID, int numCRNodes, GlobalID *CRNodes, int *CRFields, double *CRWeights, double CRValue); int FEI_loadCRPen(CFEI* cfei, int CRID, int numCRNodes, GlobalID *CRNodes, int *CRFields, double *CRWeights, double CRValue, double penValue); int FEI_sumIntoMatrix(CFEI* cfei, int patternID, int* rowIDTypes, GlobalID* rowIDs, int* colIDTypes, GlobalID* colIDs, double** matrixEntries); int FEI_getFromMatrix(CFEI* cfei, int patternID, int* rowIDTypes, GlobalID* rowIDs, int* colIDTypes, GlobalID* colIDs, double** matrixEntries); int FEI_putIntoMatrix(CFEI* cfei, int patternID, int* rowIDTypes, GlobalID* rowIDs, int* colIDTypes, GlobalID* colIDs, double* * matrixEntries); int FEI_sumIntoRHS(CFEI* cfei, int patternID, int* IDTypes, GlobalID* IDs, double* vectorEntries); int FEI_getFromRHS(CFEI* cfei, int patternID, int* IDTypes, GlobalID* IDs, double* vectorEntries); int FEI_putIntoRHS(CFEI* cfei, int patternID, int* IDTypes, GlobalID* IDs, double* vectorEntries); int FEI_setMatScalars(CFEI* cfei, int numScalars, int* IDs, double* scalars); int FEI_setRHSScalars(CFEI* cfei, int numScalars, int* IDs, double* scalars); int FEI_loadComplete(CFEI* cfei); int FEI_residualNorm(CFEI* cfei, int whichNorm, int numFields, int* fieldIDs, double* norms); int FEI_solve(CFEI* cfei, int* status); int FEI_iterations(CFEI* cfei, int* itersTaken); int FEI_getFieldSize(CFEI* cfei, int fieldID, int* numScalars); int FEI_getEqnNumbers(CFEI* cfei, GlobalID ID, int idType, int fieldID, int* numEqns, int* eqnNumbers); int FEI_getNodalFieldSolution(CFEI* cfei, int fieldID, int numNodes, GlobalID* nodeIDs, double* results); int FEI_getNumLocalNodes(CFEI* cfei, int* numNodes); int FEI_getLocalNodeIDList(CFEI* cfei, int* numNodes, GlobalID* nodeIDs, int lenNodeIDs); int FEI_version(CFEI* cfei, const char** versionStringPtr); int FEI_cumulative_cpu_times(CFEI* cfei, double* initTime, double* loadTime, double* solveTime, double* solnReturnTime); int FEI_allocatedSize(CFEI* cfei, int* bytes); int FEI_getBlockNodeSolution(CFEI* cfei, GlobalID elemBlockID, int numNodes, GlobalID* nodeIDs, int *offsets, double *results); int FEI_getBlockFieldNodeSolution(CFEI* cfei, GlobalID elemBlockID, int fieldID, int numNodes, GlobalID* nodeIDs, double *results); int FEI_getBlockElemSolution(CFEI* cfei, GlobalID elemBlockID, int numElems, GlobalID *elemIDs, int* numElemDOFPerElement, double *results); int FEI_getNumCRMultipliers(CFEI* cfei, int* numMultCRs); int FEI_getCRMultIDList(CFEI* cfei, int numMultCRs, int* multIDs); int FEI_getCRMultipliers(CFEI* cfei, int numMultCRs, int* CRIDs, double* multipliers); int FEI_putBlockNodeSolution(CFEI* cfei, GlobalID elemBlockID, int numNodes, GlobalID *nodeIDs, int *offsets, double *estimates); int FEI_putNodalFieldData(CFEI* cfei, int fieldID, int numNodes, GlobalID* nodeIDs, double* nodeData); int FEI_putBlockFieldNodeSolution(CFEI* cfei, GlobalID elemBlockID, int fieldID, int numNodes, GlobalID *nodeIDs, double *estimates); int FEI_putBlockElemSolution(CFEI* cfei, GlobalID elemBlockID, int numElems, GlobalID *elemIDs, int dofPerElem, double *estimates); int FEI_putCRMultipliers(CFEI* cfei, int numMultCRs, int* CRIDs, double *multEstimates); int FEI_getBlockNodeIDList(CFEI* cfei, GlobalID elemBlockID, int numNodes, GlobalID* nodeIDs); int FEI_getBlockElemIDList(CFEI* cfei, GlobalID elemBlockID, int numElems, GlobalID* elemIDs); int FEI_getNumSolnParams(CFEI* cfei, GlobalID nodeID, int* numSolnParams); int FEI_getNumElemBlocks(CFEI* cfei, int* numElemBlocks); int FEI_getNumBlockActNodes(CFEI* cfei, GlobalID blockID, int* numNodes); int FEI_getNumBlockActEqns(CFEI* cfei, GlobalID blockID, int* numEqns); int FEI_getNumNodesPerElement(CFEI* cfei, GlobalID blockID, int* nodesPerElem); int FEI_getNumEqnsPerElement(CFEI* cfei, GlobalID blockID, int* numEqns); int FEI_getNumBlockElements(CFEI* cfei, GlobalID blockID, int* numElems); int FEI_getNumBlockElemDOF(CFEI* cfei, GlobalID blockID, int* DOFPerElem); #ifdef __cplusplus } #endif #endif
mzl13/LiDendrite
Src/LinearSolvers/hypre/include/HYPRE_utilities.h
/*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License (as published by the Free * Software Foundation) version 2.1 dated February 1999. * * $Revision$ ***********************************************************************EHEADER*/ /****************************************************************************** * * Header file for HYPRE_utilities library * *****************************************************************************/ #ifndef HYPRE_UTILITIES_HEADER #define HYPRE_UTILITIES_HEADER #include <HYPRE_config.h> #ifndef HYPRE_SEQUENTIAL #include "mpi.h" #endif #ifdef HYPRE_USING_OPENMP #include <omp.h> #endif #ifdef __cplusplus extern "C" { #endif /*-------------------------------------------------------------------------- * Big int stuff *--------------------------------------------------------------------------*/ #if defined(HYPRE_BIGINT) typedef long long int HYPRE_BigInt; typedef long long int HYPRE_Int; #define HYPRE_MPI_BIG_INT MPI_LONG_LONG_INT #define HYPRE_MPI_INT MPI_LONG_LONG_INT #elif defined(HYPRE_MIXEDINT) typedef long long int HYPRE_BigInt; typedef int HYPRE_Int; #define HYPRE_MPI_BIG_INT MPI_LONG_LONG_INT #define HYPRE_MPI_INT MPI_INT #else /* default */ typedef int HYPRE_BigInt; typedef int HYPRE_Int; #define HYPRE_MPI_BIG_INT MPI_INT #define HYPRE_MPI_INT MPI_INT #endif /*-------------------------------------------------------------------------- * Real and Complex types *--------------------------------------------------------------------------*/ #include <float.h> #if defined(HYPRE_SINGLE) typedef float HYPRE_Real; #define HYPRE_REAL_MAX FLT_MAX #define HYPRE_REAL_MIN FLT_MIN #define HYPRE_REAL_EPSILON FLT_EPSILON #define HYPRE_REAL_MIN_EXP FLT_MIN_EXP #define HYPRE_MPI_REAL MPI_FLOAT #elif defined(HYPRE_LONG_DOUBLE) typedef long double HYPRE_Real; #define HYPRE_REAL_MAX LDBL_MAX #define HYPRE_REAL_MIN LDBL_MIN #define HYPRE_REAL_EPSILON LDBL_EPSILON #define HYPRE_REAL_MIN_EXP DBL_MIN_EXP #define HYPRE_MPI_REAL MPI_LONG_DOUBLE #else /* default */ typedef double HYPRE_Real; #define HYPRE_REAL_MAX DBL_MAX #define HYPRE_REAL_MIN DBL_MIN #define HYPRE_REAL_EPSILON DBL_EPSILON #define HYPRE_REAL_MIN_EXP DBL_MIN_EXP #define HYPRE_MPI_REAL MPI_DOUBLE #endif #if defined(HYPRE_COMPLEX) typedef double _Complex HYPRE_Complex; #define HYPRE_MPI_COMPLEX MPI_C_DOUBLE_COMPLEX /* or MPI_LONG_DOUBLE ? */ #else /* default */ typedef HYPRE_Real HYPRE_Complex; #define HYPRE_MPI_COMPLEX HYPRE_MPI_REAL #endif /*-------------------------------------------------------------------------- * Sequential MPI stuff *--------------------------------------------------------------------------*/ #ifdef HYPRE_SEQUENTIAL typedef HYPRE_Int MPI_Comm; #endif /*-------------------------------------------------------------------------- * HYPRE error codes *--------------------------------------------------------------------------*/ #define HYPRE_ERROR_GENERIC 1 /* generic error */ #define HYPRE_ERROR_MEMORY 2 /* unable to allocate memory */ #define HYPRE_ERROR_ARG 4 /* argument error */ /* bits 4-8 are reserved for the index of the argument error */ #define HYPRE_ERROR_CONV 256 /* method did not converge as expected */ /*-------------------------------------------------------------------------- * HYPRE error user functions *--------------------------------------------------------------------------*/ /* Return the current hypre error flag */ HYPRE_Int HYPRE_GetError(); /* Check if the given error flag contains the given error code */ HYPRE_Int HYPRE_CheckError(HYPRE_Int hypre_ierr, HYPRE_Int hypre_error_code); /* Return the index of the argument (counting from 1) where argument error (HYPRE_ERROR_ARG) has occured */ HYPRE_Int HYPRE_GetErrorArg(); /* Describe the given error flag in the given string */ void HYPRE_DescribeError(HYPRE_Int hypre_ierr, char *descr); /* Clears the hypre error flag */ HYPRE_Int HYPRE_ClearAllErrors(); /* Clears the given error code from the hypre error flag */ HYPRE_Int HYPRE_ClearError(HYPRE_Int hypre_error_code); /*-------------------------------------------------------------------------- * HYPRE Version routines *--------------------------------------------------------------------------*/ /* RDF: This macro is used by the FEI code. Want to eventually remove. */ #define HYPRE_VERSION "HYPRE_RELEASE_NAME Date Compiled: " __DATE__ " " __TIME__ /** * Allocates and returns a string with version number information in it. **/ HYPRE_Int HYPRE_Version( char **version_ptr ); /** * Returns version number information in integer form. Use 'NULL' for values * not needed. The argument {\tt single} is a single sortable integer * representation of the release number. **/ HYPRE_Int HYPRE_VersionNumber( HYPRE_Int *major_ptr, HYPRE_Int *minor_ptr, HYPRE_Int *patch_ptr, HYPRE_Int *single_ptr ); /*-------------------------------------------------------------------------- * HYPRE AP user functions *--------------------------------------------------------------------------*/ /*Checks whether the AP is on */ HYPRE_Int HYPRE_AssumedPartitionCheck(); #ifdef __cplusplus } #endif #endif
MikeEckels/ParkingMonitor
src/Color.h
<filename>src/Color.h #ifndef COLOR_H #define COLOR_H struct Color { unsigned char Red = 0; unsigned char Green = 0; unsigned char Blue = 0; unsigned char White = 0; String Name = " "; Color() {} Color(unsigned char R, unsigned char G, unsigned char B, unsigned char W) : Red{ R }, Green{ G }, Blue{ B }, White{ W } {} Color(String N, unsigned char R, unsigned char G, unsigned char B, unsigned char W) : Name{ N }, Red{ R }, Green{ G }, Blue{ B }, White{ W } {} String GetName() { return this->Name; } }; #endif //COLOR_H
MikeEckels/ParkingMonitor
src/Leds.h
#ifndef LEDS_H #define LEDS_H #include "DebugUtils.h" #include "Arduino.h" #include "Color.h" class Leds { private: const unsigned char _redPin = 9; const unsigned char _greenPin = 6; const unsigned char _bluePin = 10; const unsigned char _whitePin = 11; Color _color; public: struct Colors { Color Black = Color("Black", 0, 0, 0, 0); Color White = Color("White", 255, 100, 100, 255); Color PureWhite = Color("Pure White", 0, 0, 0, 255); Color Red = Color("Red", 255, 0, 0, 0); Color Orange = Color("Orange", 255, 80, 0, 0); Color Yellow = Color("Yellow", 255, 155, 0, 0); Color Green = Color("Green", 0, 128, 0, 0); Color Blue = Color("Blue", 0, 0, 255, 0); Color Purple = Color("Purple", 75, 0, 130, 0); Color Violet = Color("Violet", 200, 130, 238, 0); }Colors; Leds(); Leds(unsigned char r, unsigned char g, unsigned char b, unsigned char w); void Setup(); void Show(); void Stop(); void Clear(); Color GetColor(); void SetColor(Color color); }; #endif //LEDS_H
MikeEckels/ParkingMonitor
src/Monitor.h
#ifndef MONITOR_H #define MONITOR_H #include "Arduino.h" #include <SharpIR.h> #ifndef __AVR_ATtiny85__ #include "Leds.h" #endif class Monitor { private: #ifdef __AVR_ATtiny85__ const unsigned char _irPin = A1; #else const unsigned char _irPin = A0; #endif const unsigned int _irModel = 20150; unsigned int _parkedWatchDogInterval = 15000; // RED leds will stay on for 15 seconds after parked. unsigned int _updateSpeedMs = 500; unsigned int _closeRangeIN = 60; //5ft unsigned int _mediumRangeIN = 72; //6ft unsigned int _farRangeIN = 120; //10ft unsigned long _previousTime = 0; unsigned long _loopSpeed = 0; int _distance = 0; bool _parked = false; bool _parkedAndOff = false; #ifndef __AVR_ATtiny85__ Leds _leds; #endif SharpIR _Ir = SharpIR(_irPin, _irModel); public: Monitor(); Monitor(unsigned char irPin, unsigned int irModel, unsigned int updateSpeedMs); void Setup(); void Run(); void SetUpdateSpeedMs(unsigned int updateSpeedMs); void SetCloseRangeIN(unsigned int closeRangeIN); void SetMediumRangeIN(unsigned int mediumRangeIN); void SetFarRangeIN(unsigned int farRangeIN); #ifndef __AVR_ATtiny85__ Leds* GetLeds(); #endif unsigned int GetDistanceIN(); unsigned long GetLoopSpeedMs(); }; #endif //MONITOR_H
MikeEckels/ParkingMonitor
src/DebugUtils.h
#ifndef DEBUG_UTILS_H #define DEBUG_UTILS_H #ifndef SER #define SER Serial #endif #ifdef DEBUG #define DEBUG_BEGIN(...) SER.begin(__VA_ARGS__) #define DEBUG_PRINT(...) SER.print(__VA_ARGS__) #define DEBUG_PRINTLN(...) SER.println(__VA_ARGS__) #define DEBUG_PRINT_ERR(...) DEBUG_PRINT("[!] "); DEBUG_PRINTLN(__VA_ARGS__) #define DEBUG_PRINT_INFO(...) DEBUG_PRINT(" "); DEBUG_PRINTLN(__VA_ARGS__) #define DEBUG_PRINT_INFO_NO_LN(...) DEBUG_PRINT(" "); DEBUG_PRINT(__VA_ARGS__) #define DEBUG_PRINT_NOTICE(...) DEBUG_PRINT("[+] "); DEBUG_PRINTLN(__VA_ARGS__) #define DEBUG_PRINTF(...)SER.printf(__VA_ARGS__) #define DEBUG_PRINT_FULL(...) \ SER.print(millis()); \ SER.print(": "); \ SER.print(__PRETTY_FUNCTION__); \ SER.print(' '); \ SER.print(__LINE__); \ SER.print(' '); \ SER.print(__VA_ARGS__) #define DEBUG_PRINT_FULLLN(...) \ SER.print(millis()); \ SER.print(": "); \ SER.print(__PRETTY_FUNCTION__); \ SER.print(' '); \ SER.print(__LINE__); \ SER.print(' '); \ SER.println(__VA_ARGS__) #else #define DEBUG_BEGIN(...) #define DEBUG_PRINT(...) #define DEBUG_PRINTLN(...) #define DEBUG_PRINT_ERR(...) #define DEBUG_PRINT_INFO(...) #define DEBUG_PRINT_INFO_NO_LN(...) #define DEBUG_PRINT_NOTICE(...) #define DEBUG_PRINTF(...) #define DEBUG_PRINT_FULL(...) #define DEBUG_PRINT_FULLLN(...) #endif #endif //DEBUG_UTILS_H
1289-tyrant/katana
libgalois/include/katana/PropertyGraph.h
#ifndef KATANA_LIBGALOIS_KATANA_PROPERTYGRAPH_H_ #define KATANA_LIBGALOIS_KATANA_PROPERTYGRAPH_H_ #include <string> #include <utility> #include <vector> #include <arrow/api.h> #include <arrow/chunked_array.h> #include <arrow/type_traits.h> #include "katana/Details.h" #include "katana/ErrorCode.h" #include "katana/LargeArray.h" #include "katana/config.h" #include "tsuba/RDG.h" namespace katana { /// A graph topology represents the adjacency information for a graph in CSR /// format. struct KATANA_EXPORT GraphTopology { using Node = uint32_t; using Edge = uint64_t; using node_iterator = boost::counting_iterator<Node>; using edge_iterator = boost::counting_iterator<Edge>; using nodes_range = StandardRange<node_iterator>; using edges_range = StandardRange<edge_iterator>; using iterator = node_iterator; std::shared_ptr<arrow::UInt64Array> out_indices; std::shared_ptr<arrow::UInt32Array> out_dests; uint64_t num_nodes() const { return out_indices ? out_indices->length() : 0; } uint64_t num_edges() const { return out_dests ? out_dests->length() : 0; } bool Equals(const GraphTopology& other) const { return out_indices->Equals(*other.out_indices) && out_dests->Equals(*other.out_dests); } // Edge accessors // TODO(amp): [[deprecated("use edges(node)")]] std::pair<Edge, Edge> edge_range(Node node_id) const { auto edge_start = node_id > 0 ? out_indices->Value(node_id - 1) : 0; auto edge_end = out_indices->Value(node_id); return std::make_pair(edge_start, edge_end); } /// Gets the edge range of some node. /// /// \param node an iterator pointing to the node to get the edge range of /// \returns iterable edge range for node. edges_range edges(const node_iterator& node) const { return edges(*node); } // TODO(amp): [[deprecated("use edges(Node node)")]] /// Gets the edge range of some node. /// /// \param node node to get the edge range of /// \returns iterable edge range for node. edges_range edges(Node node) const { auto [begin_edge, end_edge] = edge_range(node); return MakeStandardRange<edge_iterator>(begin_edge, end_edge); } Node edge_dest(Edge eid) const { KATANA_LOG_ASSERT(eid < static_cast<Edge>(out_dests->length())); return out_dests->Value(eid); } nodes_range nodes(Node begin, Node end) const { return MakeStandardRange<node_iterator>(begin, end); } // Standard container concepts node_iterator begin() const { return node_iterator(0); } node_iterator end() const { return node_iterator(num_nodes()); } size_t size() const { return num_nodes(); } bool empty() const { return num_nodes() == 0; } }; /// A property graph is a graph that has properties associated with its nodes /// and edges. A property has a name and value. Its value may be a primitive /// type, a list of values or a composition of properties. /// /// A PropertyGraph is a representation of a property graph that is backed /// by persistent storage, and it may be a subgraph of a larger, global property /// graph. Another way to view a PropertyGraph is as a container for node /// and edge properties that can be serialized. /// /// The main way to load and store a property graph is via an RDG. An RDG /// manages the serialization of the various partitions and properties that /// comprise the physical representation of the logical property graph. class KATANA_EXPORT PropertyGraph { PropertyGraph(std::unique_ptr<tsuba::RDGFile> rdg_file, tsuba::RDG&& rdg); /// Validate performs a sanity check on the the graph after loading Result<void> Validate(); Result<void> DoWrite( tsuba::RDGHandle handle, const std::string& command_line); Result<void> WriteGraph( const std::string& uri, const std::string& command_line); tsuba::RDG rdg_; std::unique_ptr<tsuba::RDGFile> file_; // The topology is either backed by rdg_ or shared with the // caller of SetTopology. GraphTopology topology_; // Keep partition_metadata, master_nodes, mirror_nodes out of the public interface, // while allowing Distribution to read/write it for RDG friend class Distribution; const tsuba::PartitionMetadata& partition_metadata() const { return rdg_.part_metadata(); } void set_partition_metadata(const tsuba::PartitionMetadata& meta) { rdg_.set_part_metadata(meta); } /// Per-host vector of master nodes /// /// master_nodes()[this_host].empty() is true /// master_nodes()[host_i][x] contains LocalNodeID of masters // for which host_i has a mirror const std::vector<std::shared_ptr<arrow::ChunkedArray>>& master_nodes() const { return rdg_.master_nodes(); } void set_master_nodes(std::vector<std::shared_ptr<arrow::ChunkedArray>>&& a) { rdg_.set_master_nodes(std::move(a)); } /// Per-host vector of mirror nodes /// /// mirror_nodes()[this_host].empty() is true /// mirror_nodes()[host_i][x] contains LocalNodeID of mirrors /// that have a master on host_i const std::vector<std::shared_ptr<arrow::ChunkedArray>>& mirror_nodes() const { return rdg_.mirror_nodes(); } void set_mirror_nodes(std::vector<std::shared_ptr<arrow::ChunkedArray>>&& a) { rdg_.set_mirror_nodes(std::move(a)); } public: /// PropertyView provides a uniform interface when you don't need to /// distinguish operating on edge or node properties struct PropertyView { PropertyGraph* g; std::shared_ptr<arrow::Schema> (PropertyGraph::*schema_fn)() const; std::shared_ptr<arrow::ChunkedArray> (PropertyGraph::*property_fn)( int i) const; const std::shared_ptr<arrow::Table>& ( PropertyGraph::*properties_fn)() const; Result<void> (PropertyGraph::*add_properties_fn)( const std::shared_ptr<arrow::Table>& props); Result<void> (PropertyGraph::*upsert_properties_fn)( const std::shared_ptr<arrow::Table>& props); Result<void> (PropertyGraph::*remove_property_int)(int i); Result<void> (PropertyGraph::*remove_property_str)(const std::string& str); std::shared_ptr<arrow::Schema> schema() const { return (g->*schema_fn)(); } std::shared_ptr<arrow::ChunkedArray> Property(int i) const { return (g->*property_fn)(i); } const std::shared_ptr<arrow::Table>& properties() const { return (g->*properties_fn)(); } std::vector<std::string> property_names() const { return properties()->ColumnNames(); } Result<void> AddProperties( const std::shared_ptr<arrow::Table>& props) const { return (g->*add_properties_fn)(props); } Result<void> UpsertProperties( const std::shared_ptr<arrow::Table>& props) const { return (g->*upsert_properties_fn)(props); } Result<void> RemoveProperty(int i) const { return (g->*remove_property_int)(i); } Result<void> RemoveProperty(const std::string& str) const { return (g->*remove_property_str)(str); } }; PropertyGraph(); /// Make a property graph from a constructed RDG. Take ownership of the RDG /// and its underlying resources. static Result<std::unique_ptr<PropertyGraph>> Make( std::unique_ptr<tsuba::RDGFile> rdg_file, tsuba::RDG&& rdg); /// Make a property graph from an RDG name. static Result<std::unique_ptr<PropertyGraph>> Make( const std::string& rdg_name, const tsuba::RDGLoadOptions& opts = tsuba::RDGLoadOptions()); /// \return A copy of this with the same set of properties. The copy shares no /// state with this. Result<std::unique_ptr<PropertyGraph>> Copy() const; /// \param node_properties The node properties to copy. /// \param edge_properties The edge properties to copy. /// \return A copy of this with a subset of the properties. The copy shares no /// state with this. Result<std::unique_ptr<PropertyGraph>> Copy( const std::vector<std::string>& node_properties, const std::vector<std::string>& edge_properties) const; const std::string& rdg_dir() const { return rdg_.rdg_dir().string(); } uint32_t partition_id() const { return rdg_.partition_id(); } // Accessors for information in partition_metadata. GraphTopology::nodes_range masters() const { auto pm = rdg_.part_metadata(); return topology_.nodes(0, pm.num_owned_); } GraphTopology::nodes_range mirrors() const { auto pm = rdg_.part_metadata(); return topology_.nodes(pm.num_owned_, pm.num_nodes_); } // TODO(witchel): ChunkedArray is inherited from arrow::Table interface but this is // really a ChunkedArray of one chunk, change to arrow::Array. const std::shared_ptr<arrow::ChunkedArray>& host_to_owned_global_ids() const { return rdg_.host_to_owned_global_ids(); } void set_host_to_owned_global_ids(std::shared_ptr<arrow::ChunkedArray>&& a) { rdg_.set_host_to_owned_global_ids(std::move(a)); } // TODO(witchel): ChunkedArray is inherited from arrow::Table interface but this is // really a ChunkedArray of one chunk, change to arrow::Array. const std::shared_ptr<arrow::ChunkedArray>& local_to_user_id() const { return rdg_.local_to_user_id(); } void set_local_to_user_id(std::shared_ptr<arrow::ChunkedArray>&& a) { rdg_.set_local_to_user_id(std::move(a)); } // TODO(witchel): ChunkedArray is inherited from arrow::Table interface but this is // really a ChunkedArray of one chunk, change to arrow::Array. const std::shared_ptr<arrow::ChunkedArray>& local_to_global_id() const { return rdg_.local_to_global_id(); } void set_local_to_global_id(std::shared_ptr<arrow::ChunkedArray>&& a) { rdg_.set_local_to_global_id(std::move(a)); } /// Write the property graph to the given RDG name. /// /// \returns io_error if, for instance, a file already exists Result<void> Write( const std::string& rdg_name, const std::string& command_line); /// Write updates to the property graph /// /// Like \ref Write(const std::string&, const std::string&) but update /// the original read location of the graph Result<void> Commit(const std::string& command_line); /// Tell the RDG where it's data is coming from Result<void> InformPath(const std::string& input_path) { if (!rdg_.rdg_dir().empty()) { KATANA_LOG_DEBUG("rdg dir from {} to {}", rdg_.rdg_dir(), input_path); } auto uri_res = katana::Uri::Make(input_path); if (!uri_res) { return uri_res.error(); } rdg_.set_rdg_dir(uri_res.value()); return ResultSuccess(); } /// Determine if two PropertyGraphs are Equal bool Equals(const PropertyGraph* other) const; /// Report the differences between two graphs std::string ReportDiff(const PropertyGraph* other) const; std::shared_ptr<arrow::Schema> node_schema() const { return rdg_.node_properties()->schema(); } std::shared_ptr<arrow::Schema> edge_schema() const { return rdg_.edge_properties()->schema(); } // Return type dictated by arrow int32_t GetNodePropertyNum() const { return rdg_.node_properties()->num_columns(); } int32_t GetEdgePropertyNum() const { return rdg_.edge_properties()->num_columns(); } // num_rows() == num_nodes() (all local nodes) std::shared_ptr<arrow::ChunkedArray> GetNodeProperty(int i) const { if (i >= rdg_.node_properties()->num_columns()) { return nullptr; } return rdg_.node_properties()->column(i); } // num_rows() == num_edges() (all local edges) std::shared_ptr<arrow::ChunkedArray> GetEdgeProperty(int i) const { if (i >= rdg_.edge_properties()->num_columns()) { return nullptr; } return rdg_.edge_properties()->column(i); } /// Get a node property by name. /// /// \param name The name of the property to get. /// \return The property data or NULL if the property is not found. std::shared_ptr<arrow::ChunkedArray> GetNodeProperty( const std::string& name) const { return rdg_.node_properties()->GetColumnByName(name); } std::vector<std::string> GetNodePropertyNames() const { return node_properties()->ColumnNames(); } std::shared_ptr<arrow::ChunkedArray> GetEdgeProperty( const std::string& name) const { return rdg_.edge_properties()->GetColumnByName(name); } std::vector<std::string> GetEdgePropertyNames() const { return edge_properties()->ColumnNames(); } /// Get a node property by name and cast it to a type. /// /// \tparam T The type of the property. /// \param name The name of the property. /// \return The property array or an error if the property does not exist or has a different type. template <typename T> Result<std::shared_ptr<typename arrow::CTypeTraits<T>::ArrayType>> GetNodePropertyTyped(const std::string& name) { auto chunked_array = GetNodeProperty(name); if (!chunked_array) { return ErrorCode::PropertyNotFound; } auto array = std::dynamic_pointer_cast<typename arrow::CTypeTraits<T>::ArrayType>( chunked_array->chunk(0)); if (!array) { return ErrorCode::TypeError; } return array; } /// Get an edge property by name and cast it to a type. /// /// \tparam T The type of the property. /// \param name The name of the property. /// \return The property array or an error if the property does not exist or has a different type. template <typename T> Result<std::shared_ptr<typename arrow::CTypeTraits<T>::ArrayType>> GetEdgePropertyTyped(const std::string& name) { auto chunked_array = GetEdgeProperty(name); if (!chunked_array) { return ErrorCode::PropertyNotFound; } auto array = std::dynamic_pointer_cast<typename arrow::CTypeTraits<T>::ArrayType>( chunked_array->chunk(0)); if (!array) { return ErrorCode::TypeError; } return array; } void MarkAllPropertiesPersistent() { return rdg_.MarkAllPropertiesPersistent(); } /// MarkNodePropertiesPersistent indicates which node properties will be /// serialized when this graph is written. /// /// Properties are "named" by position, so an empty string means don't persist that /// property. Result<void> MarkNodePropertiesPersistent( const std::vector<std::string>& persist_node_props) { return rdg_.MarkNodePropertiesPersistent(persist_node_props); } Result<void> MarkEdgePropertiesPersistent( const std::vector<std::string>& persist_edge_props) { return rdg_.MarkEdgePropertiesPersistent(persist_edge_props); } const GraphTopology& topology() const { return topology_; } /// Add Node properties that do not exist in the current graph Result<void> AddNodeProperties(const std::shared_ptr<arrow::Table>& props); /// Add Edge properties that do not exist in the current graph Result<void> AddEdgeProperties(const std::shared_ptr<arrow::Table>& props); /// If property name exists, replace it, otherwise insert it Result<void> UpsertNodeProperties(const std::shared_ptr<arrow::Table>& props); /// If property name exists, replace it, otherwise insert it Result<void> UpsertEdgeProperties(const std::shared_ptr<arrow::Table>& props); Result<void> RemoveNodeProperty(int i); Result<void> RemoveNodeProperty(const std::string& prop_name); Result<void> RemoveEdgeProperty(int i); Result<void> RemoveEdgeProperty(const std::string& prop_name); PropertyView node_property_view() { return PropertyView{ .g = this, .schema_fn = &PropertyGraph::node_schema, .property_fn = &PropertyGraph::GetNodeProperty, .properties_fn = &PropertyGraph::node_properties, .add_properties_fn = &PropertyGraph::AddNodeProperties, .upsert_properties_fn = &PropertyGraph::UpsertNodeProperties, .remove_property_int = &PropertyGraph::RemoveNodeProperty, .remove_property_str = &PropertyGraph::RemoveNodeProperty, }; } PropertyView edge_property_view() { return PropertyView{ .g = this, .schema_fn = &PropertyGraph::edge_schema, .property_fn = &PropertyGraph::GetEdgeProperty, .properties_fn = &PropertyGraph::edge_properties, .add_properties_fn = &PropertyGraph::AddEdgeProperties, .upsert_properties_fn = &PropertyGraph::UpsertEdgeProperties, .remove_property_int = &PropertyGraph::RemoveEdgeProperty, .remove_property_str = &PropertyGraph::RemoveEdgeProperty, }; } Result<void> SetTopology(const GraphTopology& topology); /// Return the node property table for local nodes const std::shared_ptr<arrow::Table>& node_properties() const { return rdg_.node_properties(); } /// Return the edge property table for local edges const std::shared_ptr<arrow::Table>& edge_properties() const { return rdg_.edge_properties(); } // Pass through topology API using node_iterator = GraphTopology::node_iterator; using edge_iterator = GraphTopology::edge_iterator; using edges_range = GraphTopology::edges_range; using iterator = GraphTopology::iterator; using Node = GraphTopology::Node; using Edge = GraphTopology::Edge; // Standard container concepts node_iterator begin() const { return topology().begin(); } node_iterator end() const { return topology().end(); } /// Return the number of local nodes size_t size() const { return topology().size(); } bool empty() const { return topology().empty(); } /// Return the number of local nodes /// num_nodes in repartitioner is of type LocalNodeID uint64_t num_nodes() const { return topology().num_nodes(); } /// Return the number of local edges uint64_t num_edges() const { return topology().num_edges(); } /// Gets the edge range of some node. /// /// \param node node to get the edge range of /// \returns iterable edge range for node. edges_range edges(Node node) const { return topology().edges(node); } /** * Gets the destination for an edge. * * @param edge edge iterator to get the destination of * @returns node iterator to the edge destination */ node_iterator GetEdgeDest(const edge_iterator& edge) const { auto node_id = topology().edge_dest(*edge); return node_iterator(node_id); } }; /// SortAllEdgesByDest sorts edges for each node by destination /// IDs (ascending order). /// /// Returns the permutation vector (mapping from old /// indices to the new indices) which results due to the sorting. KATANA_EXPORT Result<std::shared_ptr<arrow::UInt64Array>> SortAllEdgesByDest( PropertyGraph* pg); /// FindEdgeSortedByDest finds the "node_to_find" id in the /// sorted edgelist of the "node" using binary search. /// /// This returns the matched edge index if 'node_to_find' is present /// in the edgelist of 'node' else edge end if 'node_to_find' is not found. KATANA_EXPORT GraphTopology::Edge FindEdgeSortedByDest( const PropertyGraph* graph, GraphTopology::Node node, GraphTopology::Node node_to_find); /// Relabel all nodes in the graph by sorting in the descending /// order by node degree. KATANA_EXPORT Result<void> SortNodesByDegree(PropertyGraph* pg); /// Creates in-memory symmetric (or undirected) graph. /// /// This function creates an symmetric or undirected version of the /// PropertyGraph topology by adding reverse edges in-memory. /// /// For each edge (a, b) in the graph, this function will /// add an additional edge (b, a) except when a == b, in which /// case, no additional edge is added. /// The generated symmetric graph may have duplicate edges. /// \param pg The original property graph /// \return The new symmetric property graph by adding reverse edges // TODO(gill): Add edge properties for the new reversed edges. KATANA_EXPORT Result<std::unique_ptr<katana::PropertyGraph>> CreateSymmetricGraph(PropertyGraph* pg); /// Creates in-memory transpose graph. /// /// This function creates transpose version of the /// PropertyGraph topology by reversing the edges in-memory. /// /// For each edge (a, b) in the graph, this function will /// add edge (b, a) without retaining the original edge (a, b) unlike /// CreateSymmetricGraph. /// \param pg The original property graph /// \return The new transposed property graph by reversing the edges // TODO(gill): Add tranposed edge properties as well. KATANA_EXPORT Result<std::unique_ptr<katana::PropertyGraph>> CreateTransposeGraph(PropertyGraph* pg); } // namespace katana #endif
1289-tyrant/katana
libsupport/include/katana/ArrowVisitor.h
#ifndef KATANA_LIBSUPPORT_KATANA_ARROWVISITOR_H_ #define KATANA_LIBSUPPORT_KATANA_ARROWVISITOR_H_ #include <arrow/api.h> #include <arrow/vendored/datetime/date.h> #include "katana/ErrorCode.h" #include "katana/Logging.h" #include "katana/Result.h" namespace katana { ////////////////////////////////////////////////////////// // Arrow Visitor /// This enables Arrow visitors of the form: /// class Visitor { /// using ReturnType = void; // configurable /// /// template <typename ArrowType, typename ArgumentType> /// katana::Result<ReturnType> Call(ArgumentType arg); /// }; /// /// Visitor visitor; /// katana::VisitArrow(array, visitor); // These are fixed in arrow 3.0, but had a typo in 2.0 // Use in place of: // - arrow::is_list_type // - arrow::enable_if_list_type // TODO(daniel) delete after upgrade template <typename T> using is_list_type_patched = std::integral_constant< bool, std::is_same<T, arrow::ListType>::value || std::is_same<T, arrow::LargeListType>::value || std::is_same<T, arrow::FixedSizeListType>::value>; template <typename T, typename R = void> using enable_if_list_type_patched = arrow::enable_if_t<is_list_type_patched<T>::value, R>; namespace internal { // A VisitorBaseType specifies the type of argument that // VisitArrowInternal will accept, how to determine its // datatype, and how to specialize it to its particular type. // Currently the supported types are: // - const arrow::Array& // - const arrow::Scalar& // - arrow::ArrayBuilder* // Arrays are immutable, pass by const reference struct ArrayVisitorBaseType { using ParamBase = const arrow::Array&; template <typename ArrowType> using ParamType = const typename arrow::TypeTraits<ArrowType>::ArrayType&; template <arrow::Type::type EnumType> static const auto& Cast(const arrow::Array& array) { using ArrowType = typename arrow::TypeIdTraits<EnumType>::Type; return static_cast<ParamType<ArrowType>>(array); } static std::shared_ptr<arrow::DataType> Type(const arrow::Array& array) { return array.type(); } }; // Scalars are immutable, pass by const reference struct ScalarVisitorBaseType { using ParamBase = const arrow::Scalar&; template <typename ArrowType> using ParamType = const typename arrow::TypeTraits<ArrowType>::ScalarType&; template <arrow::Type::type EnumType> static const auto& Cast(const arrow::Scalar& scalar) { using ArrowType = typename arrow::TypeIdTraits<EnumType>::Type; return static_cast<ParamType<ArrowType>>(scalar); } static std::shared_ptr<arrow::DataType> Type(const arrow::Scalar& scalar) { return scalar.type; } }; // Builders are mutable, pass by pointer struct BuilderVisitorBaseType { using ParamBase = arrow::ArrayBuilder*; template <typename ArrowType> using ParamType = typename arrow::TypeTraits<ArrowType>::BuilderType*; template <arrow::Type::type EnumType> static auto Cast(arrow::ArrayBuilder* builder) { using ArrowType = typename arrow::TypeIdTraits<EnumType>::Type; return static_cast<ParamType<ArrowType>>(builder); } static std::shared_ptr<arrow::DataType> Type(arrow::ArrayBuilder* builder) { return builder->type(); } }; /// This function attempts to keep Arrow type-tests to a minimum by /// encapsulating the desired behavior. Its behavior is to: /// 1) Identify the Arrow type of the parameter /// 2) Specialize the parameter for use in a template environment /// 3) Call the templated visitor with the specialized parameter /// /// In an ideal world, this is the *only* switch over Arrow types /// in the whole repo. Everything should either handle arrow data /// in a type-agnostic way, or use this interface to reach a /// type-aware template environment. It probably recreates /// functionality that exists elsewhere, notably in arrow::compute /// /// A typical use case would involve creating a Visitor class /// and implementing methods to handle various types, eg: /// class Visitor { /// using ReturnType = void; // configurable /// /// template <typename ArrowType, typename ArgumentType> /// katana::Result<ReturnType> Call(ArgumentType arg); /// }; /// Arrow's type_traits.h offers tools to use SFINAE to differentiate /// types and write appropriate Call functions for each type template <class VisitorBaseType, class VisitorType> katana::Result<typename std::decay_t<VisitorType>::ReturnType> VisitArrowInternal( typename VisitorBaseType::ParamBase param, VisitorType&& visitor) { switch (VisitorBaseType::Type(param)->id()) { #define TYPE_CASE(EnumType) \ case arrow::Type::EnumType: { \ using ArrowType = \ typename arrow::TypeIdTraits<arrow::Type::EnumType>::Type; \ return visitor.template Call<ArrowType>( \ VisitorBaseType::template Cast<arrow::Type::EnumType>(param)); \ } TYPE_CASE(INT8) TYPE_CASE(UINT8) TYPE_CASE(INT16) TYPE_CASE(UINT16) TYPE_CASE(INT32) TYPE_CASE(UINT32) TYPE_CASE(INT64) TYPE_CASE(UINT64) TYPE_CASE(FLOAT) TYPE_CASE(DOUBLE) TYPE_CASE(BOOL) TYPE_CASE(DATE32) // since UNIX epoch in days TYPE_CASE(DATE64) // since UNIX epoch in millis TYPE_CASE(TIME32) // since midnight in seconds or millis TYPE_CASE(TIME64) // since midnight in micros or nanos TYPE_CASE(TIMESTAMP) // since UNIX epoch in seconds or smaller TYPE_CASE(STRING) TYPE_CASE(LARGE_STRING) TYPE_CASE(STRUCT) TYPE_CASE(LIST) TYPE_CASE(LARGE_LIST) #undef TYPE_CASE default: return KATANA_ERROR( katana::ErrorCode::ArrowError, "unsupported Arrow type encountered ({})", VisitorBaseType::Type(param)->ToString()); } } } // namespace internal template <class VisitorType> auto VisitArrow(const arrow::Array& array, VisitorType&& visitor) { return internal::VisitArrowInternal<internal::ArrayVisitorBaseType>( array, std::forward<VisitorType>(visitor)); } template <class VisitorType> auto VisitArrow(const std::shared_ptr<arrow::Array>& array, VisitorType&& visitor) { KATANA_LOG_DEBUG_ASSERT(array); const arrow::Array& ref = *(array.get()); return VisitArrow(ref, std::forward<VisitorType>(visitor)); } template <class VisitorType> auto VisitArrow(const arrow::Scalar& scalar, VisitorType&& visitor) { return internal::VisitArrowInternal<internal::ScalarVisitorBaseType>( scalar, std::forward<VisitorType>(visitor)); } template <class VisitorType> auto VisitArrow( const std::shared_ptr<arrow::Scalar>& scalar, VisitorType&& visitor) { KATANA_LOG_DEBUG_ASSERT(scalar); const arrow::Scalar& ref = *(scalar.get()); return VisitArrow(ref, std::forward<VisitorType>(visitor)); } template <class VisitorType> auto VisitArrow(arrow::ArrayBuilder* builder, VisitorType&& visitor) { KATANA_LOG_DEBUG_ASSERT(builder); return internal::VisitArrowInternal<internal::BuilderVisitorBaseType>( builder, std::forward<VisitorType>(visitor)); } template <class VisitorType> auto VisitArrow( const std::unique_ptr<arrow::ArrayBuilder>& builder, VisitorType&& visitor) { return VisitArrow(builder.get(), std::forward<VisitorType>(visitor)); } class AppendScalarToBuilder { public: using ReturnType = void; using ResultType = Result<ReturnType>; AppendScalarToBuilder(arrow::ArrayBuilder* builder) : builder_(builder) { KATANA_LOG_DEBUG_ASSERT(builder_); KATANA_LOG_DEBUG_ASSERT(builder_->type()->id() != arrow::Type::NA); } Result<void> AppendNull() { if (auto st = builder_->AppendNull(); !st.ok()) { return KATANA_ERROR( katana::ErrorCode::ArrowError, "failed to allocate table: {}", st); } return ResultSuccess(); } template <typename ArrowType, typename ScalarType> arrow::enable_if_t< arrow::is_number_type<ArrowType>::value || arrow::is_boolean_type<ArrowType>::value || arrow::is_temporal_type<ArrowType>::value, ResultType> Call(const ScalarType& scalar) { using BuilderType = typename arrow::TypeTraits<ArrowType>::BuilderType; if (!scalar.is_valid) { return AppendNull(); } auto builder = dynamic_cast<BuilderType*>(builder_); KATANA_LOG_DEBUG_ASSERT(builder); if (auto st = builder->Append(scalar.value); !st.ok()) { return KATANA_ERROR( katana::ErrorCode::ArrowError, "failed to allocate table: {}", st); } return ResultSuccess(); } template <typename ArrowType, typename ScalarType> arrow::enable_if_string_like<ArrowType, ResultType> Call( const ScalarType& scalar) { using BuilderType = typename arrow::TypeTraits<ArrowType>::BuilderType; if (!scalar.is_valid) { return AppendNull(); } auto builder = dynamic_cast<BuilderType*>(builder_); KATANA_LOG_DEBUG_ASSERT(builder); if (auto st = builder->Append(scalar.value->ToString()); !st.ok()) { return KATANA_ERROR( katana::ErrorCode::ArrowError, "failed to allocate table: {}", st); } return ResultSuccess(); } template <typename ArrowType, typename ScalarType> enable_if_list_type_patched<ArrowType, ResultType> Call( const ScalarType& scalar) { if (!scalar.is_valid) { return AppendNull(); } using BuilderType = typename arrow::TypeTraits<ArrowType>::BuilderType; auto builder = dynamic_cast<BuilderType*>(builder_); KATANA_LOG_DEBUG_ASSERT(builder); if (auto st = builder->Append(); !st.ok()) { return KATANA_ERROR( katana::ErrorCode::ArrowError, "failed to allocate table: {}", st); } AppendScalarToBuilder visitor(builder->value_builder()); for (int64_t i = 0, n = scalar.value->length(); i < n; ++i) { auto scalar_res = scalar.value->GetScalar(i); if (!scalar_res.ok()) { return KATANA_ERROR( katana::ErrorCode::ArrowError, "failed to get scalar"); } if (auto res = VisitArrow(scalar_res.ValueOrDie(), visitor); !res) { return res.error(); } } return ResultSuccess(); } template <typename ArrowType, typename ScalarType> arrow::enable_if_struct<ArrowType, ResultType> Call( const ScalarType& scalar) { if (!scalar.is_valid) { return AppendNull(); } auto* builder = dynamic_cast<arrow::StructBuilder*>(builder_); KATANA_LOG_DEBUG_ASSERT(builder); if (auto st = builder->Append(); !st.ok()) { return KATANA_ERROR( katana::ErrorCode::ArrowError, "failed to allocate table: {}", st); } for (int f = 0, n = scalar.value.size(); f < n; ++f) { AppendScalarToBuilder visitor(builder->field_builder(f)); if (auto res = VisitArrow(scalar.value.at(f), visitor); !res) { return res.error(); } } return ResultSuccess(); } private: arrow::ArrayBuilder* builder_; }; //////////////////////////////////////////// // Visitor-based utility /// Take a vector of scalars of type data_type and return an Array KATANA_EXPORT Result<std::shared_ptr<arrow::Array>> ArrayFromScalars( const std::vector<std::shared_ptr<arrow::Scalar>>& scalars, const std::shared_ptr<arrow::DataType>& type); } // namespace katana #endif
1289-tyrant/katana
libgalois/include/katana/analytics/subgraph_extraction/subgraph_extraction.h
#ifndef KATANA_LIBGALOIS_KATANA_ANALYTICS_SUBGRAPHEXTRACTION_SUBGRAPHEXTRACTION_H_ #define KATANA_LIBGALOIS_KATANA_ANALYTICS_SUBGRAPHEXTRACTION_SUBGRAPHEXTRACTION_H_ #include "katana/PropertyGraph.h" #include "katana/analytics/Plan.h" // API namespace katana::analytics { /// A computational plan to for SubGraph Extraction. class SubGraphExtractionPlan : public Plan { public: enum Algorithm { kNodeSet, }; private: Algorithm algorithm_; SubGraphExtractionPlan(Architecture architecture, Algorithm algorithm) : Plan(architecture), algorithm_(algorithm) {} public: SubGraphExtractionPlan() : SubGraphExtractionPlan{kCPU, kNodeSet} {} Algorithm algorithm() const { return algorithm_; } /** * The node-set algorithm: * Given a set of node ids, this algorithm constructs a new sub-graph * connecting all the nodes in the set along with the properties requested. */ static SubGraphExtractionPlan NodeSet() { return {kCPU, kNodeSet}; } }; /** * Construct a new sub-graph from the original graph. * * By default only topology of the sub-graph is constructed. * The new sub-graph is independent of the original graph. * * @param pg The graph to process. * @param node_vec Set of node ids * @param plan */ KATANA_EXPORT katana::Result<std::unique_ptr<katana::PropertyGraph>> SubGraphExtraction( katana::PropertyGraph* pg, const std::vector<uint32_t>& node_vec, SubGraphExtractionPlan plan = {}); // const std::vector<std::string>& node_properties_to_copy, const std::vector<std::string>& edge_properties_to_copy); } // namespace katana::analytics #endif
nemanjajelisijevic/cppDaemon
daemon/serviceobject.h
<reponame>nemanjajelisijevic/cppDaemon<gh_stars>0 #ifndef SERVICEOBJECT_H #define SERVICEOBJECT_H #include <thread> #include "syncqueue.h" namespace daemonize { class IFunctor; class Consumer; class ServiceObject { public: ServiceObject() = delete; explicit ServiceObject(Consumer* defaultConsumer); ~ServiceObject(); ServiceObject(const ServiceObject& other) = delete; ServiceObject(ServiceObject&& other) = delete; ServiceObject& operator=(const ServiceObject& other) = delete; ServiceObject& operator=(ServiceObject&& other) = delete; void enqueue(IFunctor* functor); void setName(std::string&& name); const std::string& getName(); bool stopped(); ServiceObject& setDefaultConsumer(Consumer* consumer); Consumer* getDefaultConsumer(); private: Consumer* myDefaultConsumer; SyncQueue<IFunctor*> syncStruct; std::thread myThread; std::string myName; }; } #endif // SERVICEOBJECT_H
nemanjajelisijevic/cppDaemon
daemon/voidclosure.h
#ifndef VOIDCLOSURE_H #define VOIDCLOSURE_H #include "functorbase.h" #include <functional> namespace daemonize { class VoidClosureWrapper : public IFunctor { public: VoidClosureWrapper() = delete; explicit VoidClosureWrapper(std::function<void(void)>&& func); VoidClosureWrapper(const VoidClosureWrapper& other) = delete; VoidClosureWrapper(VoidClosureWrapper&& other) = delete; VoidClosureWrapper& operator=(const VoidClosureWrapper& other) = delete; VoidClosureWrapper& operator=(VoidClosureWrapper&& other) = delete; virtual ~VoidClosureWrapper() override; void execute() override; private: std::function<void()> myCallback; }; class RecursiveVoidClosureWrapper : public IFunctor { public: RecursiveVoidClosureWrapper() = delete; explicit RecursiveVoidClosureWrapper(std::function<void(RecursiveVoidClosureWrapper&)>&& func); RecursiveVoidClosureWrapper(const RecursiveVoidClosureWrapper& other); RecursiveVoidClosureWrapper(RecursiveVoidClosureWrapper&& other); RecursiveVoidClosureWrapper& operator=(const RecursiveVoidClosureWrapper& other) = delete; RecursiveVoidClosureWrapper& operator=(RecursiveVoidClosureWrapper&& other) = delete; virtual ~RecursiveVoidClosureWrapper() override; std::function<void(RecursiveVoidClosureWrapper&)>&& getClosure(); void execute() override; private: std::function<void(RecursiveVoidClosureWrapper&)> myCallback; }; } #endif // VOIDCLOSURE_H
nemanjajelisijevic/cppDaemon
daemon/consumerbase.h
#ifndef CONSUMERBASE_H #define CONSUMERBASE_H #include "functorbase.h" #include <string> namespace daemonize { class Consumer { public: Consumer(); Consumer(const Consumer& other) = delete; Consumer(Consumer&& other) = delete; Consumer& operator=(const Consumer& other) = delete; Consumer& operator=(Consumer&& other) = delete; virtual ~Consumer(); virtual void consume(IFunctor* callback); virtual void setName(std::string&& name) = 0; }; } #endif // CONSUMERBASE_H
nemanjajelisijevic/cppDaemon
daemon/functorimpl.h
<reponame>nemanjajelisijevic/cppDaemon<gh_stars>0 #ifndef FUNCTORIMPL_H #define FUNCTORIMPL_H #include "functorbase.h" #include "returningclosure.h" #include "voidclosure.h" #include "consumerbase.h" #include "serviceobject.h" #include <functional> namespace daemonize { namespace template_arg_helper { template <int... Is> struct index {}; template <int N, int... Is> struct gen_seq : gen_seq<N - 1, N - 1, Is...> {};//TODO LDRA template <int... Is> struct gen_seq<0, Is...> : index<Is...> {}; } template<typename Class, typename ResultType, typename... Args> ResultType ret(ResultType(Class::*)(Args...)); template<typename ResultType> class Functor : public IFunctor { public: Functor(); Functor(const Functor& other) = delete; Functor(Functor&& other) = delete; Functor& operator=(const Functor& other) = delete; Functor& operator=(Functor&& other) = delete; virtual ~Functor() override; virtual void setClosure(std::function<void(ResultType)>&& closure) = 0; virtual void setRecursiveClosure(std::function<void(ResultType, RecursiveClosureWrapper<ResultType>&)>&& closure) = 0; }; template<typename ResultType> inline Functor<ResultType>::Functor() {} template<typename ResultType> inline Functor<ResultType>::~Functor() {} template<> class Functor<void> : public IFunctor { public: virtual ~Functor(){} virtual void setClosure(std::function<void()>&& closure) = 0; virtual void setRecursiveClosure(std::function<void(RecursiveVoidClosureWrapper&)>&& closure) = 0; virtual void noClosure() = 0; }; template<class ProtoType, typename ResultType, typename Function, typename... Args> class FunctorImpl : public Functor<ResultType> { public: FunctorImpl() = delete; FunctorImpl(ProtoType* prototype, ServiceObject* object, Consumer* consumer, Function&& func, Args&&... arguments); FunctorImpl(const FunctorImpl& other) = delete; FunctorImpl(FunctorImpl&& other) = delete; FunctorImpl& operator=(const FunctorImpl& other) = delete; FunctorImpl& operator=(FunctorImpl&& other) = delete; virtual ~FunctorImpl() override; void setClosure(std::function<void(ResultType)>&& closure) override; void setRecursiveClosure(std::function<void(ResultType, RecursiveClosureWrapper<ResultType>&)>&& closure); void execute() override; private: ProtoType* myPrototype; ServiceObject* serviceObject; Consumer* myConsumer; bool recursiveClosure; std::function<void(ResultType)> myClosure; std::function<void(ResultType, RecursiveClosureWrapper<ResultType>&)> myRecursiveClosure; std::function<ResultType(Args...)> myMethod; std::tuple<Args...> args; template <int... Is> ResultType funct(std::tuple<Args...>& tup, template_arg_helper::index<Is...>); ResultType func(std::tuple<Args...>& tup); }; template<class ProtoType, typename ResultType, typename Function, typename... Args> inline FunctorImpl<ProtoType, ResultType, Function, Args...>::FunctorImpl( ProtoType* prototype, ServiceObject* object, Consumer* consumer, Function&& func, Args&&... arguments ) : myPrototype(prototype) , serviceObject(object) , myConsumer(consumer) , recursiveClosure{false} , myClosure{} , myRecursiveClosure{} , myMethod{std::bind(std::forward<Function>(func), prototype, std::forward<Args>(arguments)...)} , args{std::forward<Args>(arguments)...} {} template<class ProtoType, typename ResultType, typename Function, typename... Args> inline FunctorImpl<ProtoType, ResultType, Function, Args...>::~FunctorImpl() {} template<class ProtoType, typename ResultType, typename Function, typename... Args> inline void FunctorImpl<ProtoType, ResultType, Function, Args...>::setClosure(std::function<void(ResultType)>&& closure) { myClosure = std::forward<std::function<void(ResultType)>>(closure); serviceObject->enqueue(this); } template<class ProtoType, typename ResultType, typename Function, typename... Args> inline void FunctorImpl<ProtoType, ResultType, Function, Args...>::setRecursiveClosure(std::function<void(ResultType, RecursiveClosureWrapper<ResultType>&)>&& closure) { recursiveClosure = true; myRecursiveClosure = std::forward<std::function<void(ResultType, RecursiveClosureWrapper<ResultType>&)>>(closure); serviceObject->enqueue(this); } template<class ProtoType, typename ResultType, typename Function, typename... Args> template<int... Is> inline ResultType FunctorImpl<ProtoType, ResultType, Function, Args...>::funct(std::tuple<Args...>& tup, template_arg_helper::index<Is...>) { return myMethod(std::get<Is>(tup)...); } template<class ProtoType, typename ResultType, typename Function, typename... Args> inline ResultType FunctorImpl<ProtoType, ResultType, Function, Args...>::func(std::tuple<Args...>& tup) { return funct(tup, template_arg_helper::gen_seq<sizeof...(Args)>{}); } template<class ProtoType, typename ResultType, typename Function, typename... Args> inline void FunctorImpl<ProtoType, ResultType, Function, Args...>::execute() { ResultType result = func(args); if(serviceObject->stopped() == false) { IFunctor* closure{nullptr}; if (!recursiveClosure) { closure = new ReturningClosureWrapper<ResultType>( std::forward<std::function<void(ResultType)>>(myClosure), std::forward<ResultType>(result)); } else { closure = new RecursiveClosureWrapper<ResultType>( std::forward<ResultType>(result), std::forward<std::function<void(ResultType, RecursiveClosureWrapper<ResultType>&)>>(myRecursiveClosure)); } myConsumer->consume(closure); } } template<typename ProtoType, typename Function, typename... Args> class FunctorImpl<ProtoType, void, Function, Args...> : public Functor<void> { public: FunctorImpl(ProtoType* prototype, ServiceObject* object, Consumer* consumer, Function&& function, Args&&... arguments); virtual ~FunctorImpl() override; void setClosure(std::function<void(void)>&& closure) override; void setRecursiveClosure(std::function<void(RecursiveVoidClosureWrapper&)>&& closure) override; void noClosure() override; void execute() override; private: ProtoType* myPrototype; ServiceObject* serviceObject; Consumer* myConsumer; bool consumeClosure; bool recursiveClosure; std::function<void(void)> myClosure; std::function<void(RecursiveVoidClosureWrapper&)> myRecursiveClosure; std::function<void(Args...)> myMethod; std::tuple<Args...> args; template <int... Is> //TODO LDRA void funct(std::tuple<Args...>& tup, template_arg_helper::index<Is...>); void func(std::tuple<Args...>& tup); }; template<class ProtoType, typename Function, typename... Args> inline FunctorImpl<ProtoType, void, Function, Args...>::FunctorImpl( ProtoType* prototype, ServiceObject* object, Consumer* consumer, Function&& function, Args&&... arguments ) : myPrototype(prototype) , serviceObject(object) , myConsumer(consumer) , consumeClosure{false} , recursiveClosure{false} , myClosure{} , myRecursiveClosure{} , myMethod{std::bind(function, prototype, std::forward<Args&&>(arguments)...)} , args{std::forward<Args>(arguments)...} {} template<class ProtoType, typename Function, typename... Args> inline FunctorImpl<ProtoType, void, Function, Args...>::~FunctorImpl() {} template<class ProtoType, typename Function, typename... Args> inline void FunctorImpl<ProtoType, void, Function, Args...>::setClosure(std::function<void(void)>&& closure) { consumeClosure = true; myClosure = std::forward<std::function<void(void)>>(closure); serviceObject->enqueue(this); } template<class ProtoType, typename Function, typename... Args> inline void FunctorImpl<ProtoType, void, Function, Args...>::setRecursiveClosure(std::function<void(RecursiveVoidClosureWrapper&)>&& closure) { consumeClosure = true; recursiveClosure = true; myRecursiveClosure = std::forward<std::function<void(RecursiveVoidClosureWrapper&)>>(closure); serviceObject->enqueue(this); } template<class ProtoType, typename Function, typename... Args> inline void FunctorImpl<ProtoType, void, Function, Args...>::noClosure() { consumeClosure = false; serviceObject->enqueue(this); } template<class ProtoType, typename Function, typename... Args> inline void FunctorImpl<ProtoType, void, Function, Args...>::execute() { func(args); if(!serviceObject->stopped() == false && !consumeClosure) { IFunctor* closure{nullptr}; if (!recursiveClosure) { closure = new VoidClosureWrapper(std::forward<std::function<void()>>(myClosure)); } else { closure = new RecursiveVoidClosureWrapper(std::forward<std::function<void(RecursiveVoidClosureWrapper&)>>(myRecursiveClosure)); } myConsumer->consume(closure); } } template<class ProtoType, typename Function, typename... Args> template<int... Is> inline void FunctorImpl<ProtoType, void, Function, Args...>::funct(std::tuple<Args...>& tup, template_arg_helper::index<Is...>) { myMethod(std::get<Is>(tup)...); } template<class ProtoType, typename Function, typename... Args> inline void FunctorImpl<ProtoType, void, Function, Args...>::func(std::tuple<Args...>& tup) { funct(tup, template_arg_helper::gen_seq<sizeof...(Args)>{}); } } #endif // FUNCTORIMPL_H
nemanjajelisijevic/cppDaemon
daemon/cppldratest.h
#ifndef CPPLDRATEST_H #define CPPLDRATEST_H namespace daemonize { class cppldratest { public: cppldratest(); void testCode(); void testIndentation(); private: unsigned int cnt; bool testBool; bool testBoolTwo; bool testBoolThree; bool testBoolFour; bool testBoolFive; bool testBoolSix; }; } #endif // CPPLDRATEST_H
nemanjajelisijevic/cppDaemon
daemon/daemon.h
#ifndef DAEMON_H #define DAEMON_H #include <memory> #include "consumerbase.h" #include "serviceobject.h" #include "functorimpl.h" #include <functional> namespace daemonize { template<class ProtoType> class DaemonBase { public: virtual ~DaemonBase(); DaemonBase<ProtoType>& setDefaultConsumer(Consumer* consumer); DaemonBase<ProtoType>& setName(std::string&& name); const std::string& getName() const; //TODO LDRA virtual ProtoType& getPrototype() const = 0; protected: DaemonBase() = delete; explicit DaemonBase(ServiceObject* prototype); DaemonBase(const DaemonBase<ProtoType>& other); DaemonBase(DaemonBase<ProtoType>&& other); DaemonBase<ProtoType>& operator=(const DaemonBase<ProtoType>& other) = delete; DaemonBase<ProtoType>& operator=(DaemonBase<ProtoType>&& other) = delete; template<typename Func, typename... Args> Functor<decltype(ret(Func()))>* makeFunctor(ProtoType* prototype, ServiceObject* serviceObject, Consumer* consumer, Func&& function, Args&&... args) const; std::shared_ptr<ServiceObject> myServiceObject; }; template <typename ProtoType> inline DaemonBase<ProtoType>::DaemonBase(ServiceObject* serviceObject) : myServiceObject(serviceObject) { setName("DaemonBase"); } template <typename ProtoType> inline DaemonBase<ProtoType>::~DaemonBase() {} template <typename ProtoType> inline DaemonBase<ProtoType>::DaemonBase(const DaemonBase<ProtoType>& other) : myServiceObject(other.myServiceObject) {} template <typename ProtoType> inline DaemonBase<ProtoType>::DaemonBase(DaemonBase<ProtoType>&& other) : myServiceObject(other.myServiceObject) {} template <typename ProtoType> inline DaemonBase<ProtoType>& DaemonBase<ProtoType>::setDefaultConsumer(Consumer* consumer) { myServiceObject->setDefaultConsumer(consumer); return *this; } template <typename ProtoType> inline DaemonBase<ProtoType>& DaemonBase<ProtoType>::setName(std::string&& name) { myServiceObject->setName(std::move(name)); return *this; } template <typename ProtoType> inline const std::string& DaemonBase<ProtoType>::getName() const { return myServiceObject->getName(); } template<class ProtoType> template<typename Func, typename... Args> inline Functor<decltype(ret(Func()))>* DaemonBase<ProtoType>::makeFunctor( ProtoType* prototype, ServiceObject* serviceObject, Consumer* consumer, Func&& function, Args&&... args) const { using ResultType = decltype(ret(Func())); return new FunctorImpl<ProtoType, ResultType, Func, Args...>( prototype, serviceObject, consumer, std::forward<Func>(function), std::forward<Args>(args)... ); } template<class ProtoType> class Daemon : public DaemonBase<ProtoType> { public: Daemon() = delete; Daemon(Consumer* consumer, ProtoType* prototype); virtual ~Daemon() override; Daemon(const Daemon<ProtoType>& other); Daemon(Daemon<ProtoType>&& other); Daemon<ProtoType>& operator=(const Daemon<ProtoType>& other) = delete; Daemon<ProtoType>& operator=(Daemon<ProtoType>&& other) = delete; ProtoType& getPrototype() const override; template<typename Func, typename... Args> Functor<decltype(ret(Func()))>& async(Func&& function, Args&&... args) const; template<typename Func, typename... Args> Functor<decltype(ret(Func()))>& async(Consumer* consumer, Func&& function, Args&&... args) const; private: ProtoType* myPrototype; }; template<class ProtoType> inline Daemon<ProtoType>::Daemon(Consumer* consumer, ProtoType* prototype) : DaemonBase<ProtoType> (new ServiceObject(consumer)) , myPrototype(prototype) { DaemonBase<ProtoType>::setName("Daemon"); } template<class ProtoType> inline Daemon<ProtoType>::~Daemon() {} template<class ProtoType> inline Daemon<ProtoType>::Daemon(const Daemon<ProtoType>& other) : DaemonBase<ProtoType> (other) , myPrototype(other.myPrototype) {} template<class ProtoType> inline Daemon<ProtoType>::Daemon(Daemon<ProtoType>&& other) : DaemonBase<ProtoType> (std::forward<DaemonBase<ProtoType>>(other)) , myPrototype(other.myPrototype) {} template<class ProtoType> inline ProtoType& Daemon<ProtoType>::getPrototype() const { return *myPrototype; } template<class ProtoType> template<typename Func, typename... Args> inline Functor<decltype(ret(Func()))>& Daemon<ProtoType>::async(Func&& function, Args&&... args) const { return async(this->myServiceObject->getDefaultConsumer(), std::forward<Func>(function), std::forward<Args>(args)...); } template<class ProtoType> template<typename Func, typename... Args> inline Functor<decltype(ret(Func()))>& Daemon<ProtoType>::async(Consumer* consumer, Func&& function, Args&&... args) const { return *(DaemonBase<ProtoType>::makeFunctor( this->myPrototype, this->myServiceObject.get(), consumer, std::forward<Func>(function), std::forward<Args>(args)... )); } template<class ProtoType> class ManagedDaemon : public DaemonBase<ProtoType> { public: ManagedDaemon() = delete; ManagedDaemon(Consumer* consumer, ProtoType* prototype); ManagedDaemon(const ManagedDaemon<ProtoType>& other); ManagedDaemon(ManagedDaemon<ProtoType>&& other); virtual ~ManagedDaemon() override; ManagedDaemon<ProtoType>& operator=(const ManagedDaemon<ProtoType>& other) = delete; ManagedDaemon<ProtoType>& operator=(ManagedDaemon<ProtoType>&& other) = delete; ProtoType& getPrototype() const override; template<typename Func, typename... Args> Functor<decltype(ret(Func()))>& async(Func&& function, Args&&... args) const; template<typename Func, typename... Args> Functor<decltype(ret(Func()))>& async(Consumer* consumer, Func&& function, Args&&... args) const; private: std::shared_ptr<ProtoType> myPrototype; }; template<class ProtoType> inline ManagedDaemon<ProtoType>::ManagedDaemon(Consumer* consumer, ProtoType* prototype) : DaemonBase<ProtoType> (new ServiceObject(consumer)) , myPrototype(prototype) { DaemonBase<ProtoType>::setName("ManagedDaemon"); } template<class ProtoType> inline ManagedDaemon<ProtoType>::~ManagedDaemon() {} template<class ProtoType> inline ManagedDaemon<ProtoType>::ManagedDaemon(const ManagedDaemon<ProtoType>& other) : DaemonBase<ProtoType> (other) , myPrototype(other.myPrototype) {} template<class ProtoType> inline ManagedDaemon<ProtoType>::ManagedDaemon(ManagedDaemon<ProtoType>&& other) : DaemonBase<ProtoType> (std::forward<DaemonBase<ProtoType>>(other)) , myPrototype(other.myPrototype) {} template<class ProtoType> inline ProtoType& ManagedDaemon<ProtoType>::getPrototype() const { return *(myPrototype.get()); } template<class ProtoType> template<typename Func, typename... Args> inline Functor<decltype(ret(Func()))>& ManagedDaemon<ProtoType>::async(Func&& function, Args&&... args) const { return async(this->myServiceObject->getDefaultConsumer(), std::forward<Func>(function), std::forward<Args>(args)...); } template<class ProtoType> template<typename Func, typename... Args> inline Functor<decltype(ret(Func()))>& ManagedDaemon<ProtoType>::async(Consumer* consumer, Func&& function, Args&&... args) const { return *(DaemonBase<ProtoType>::makeFunctor(myPrototype.get(), this->myServiceObject.get(), consumer, std::forward<Func>(function), std::forward<Args>(args)...)); } } #endif // Daemon_H
nemanjajelisijevic/cppDaemon
daemon/movesemanticstest.h
<reponame>nemanjajelisijevic/cppDaemon<gh_stars>0 #ifndef MOVESEMANTICSTEST_H #define MOVESEMANTICSTEST_H #include <vector> #include <functional> #include <thread> #include "log.h" namespace daemonize { template<typename T> class MoveSemanticsTest { public: MoveSemanticsTest(); MoveSemanticsTest(const MoveSemanticsTest& other); MoveSemanticsTest(MoveSemanticsTest&& other); ~MoveSemanticsTest(); MoveSemanticsTest& setSleepTime(std::chrono::seconds sec); void add(T element); MoveSemanticsTest<T>& addd(T element); std::vector<T>& getElements(); void forEach(std::function<void(T&)>&& action); int getNumber(); private: std::vector<T> myVector; std::chrono::seconds sleepTime; }; template<typename T> inline MoveSemanticsTest<T>::MoveSemanticsTest() : myVector() , sleepTime(0) { _LOG_DEBUG_S("[MoveSemanticsTest] Default constructor") } template<typename T> inline MoveSemanticsTest<T>::MoveSemanticsTest(const MoveSemanticsTest<T>& other) : myVector() { _LOG_DEBUG_S("[MoveSemanticsTest] Copy constructor") for(auto val : other.myVector) { myVector.push_back(val); } } template<typename T> inline MoveSemanticsTest<T>::MoveSemanticsTest(MoveSemanticsTest<T>&& other) { _LOG_DEBUG_S("[MoveSemanticsTest] Move constructor") std::swap(myVector, other.myVector); } template<typename T> inline MoveSemanticsTest<T>::~MoveSemanticsTest() { _LOG_DEBUG_S("[MoveSemanticsTest] Destructor") } template<typename T> inline MoveSemanticsTest<T>& MoveSemanticsTest<T>::setSleepTime(std::chrono::seconds sec) { sleepTime = sec; return *this; } template<typename T> inline void MoveSemanticsTest<T>::add(T element) { _LOG_DEBUG_S("[MoveSemanticsTest] Adding.....") std::this_thread::sleep_for(sleepTime); myVector.push_back(element); } template<typename T> inline MoveSemanticsTest<T>& MoveSemanticsTest<T>::addd(T element) { _LOG_DEBUG_S("[MoveSemanticsTest] Addding.....") std::this_thread::sleep_for(sleepTime); add(element); return *this; } template<typename T> inline std::vector<T>& MoveSemanticsTest<T>::getElements() { return myVector; } template<typename T> inline void MoveSemanticsTest<T>::forEach(std::function<void(T&)>&& action) { for(auto& val : myVector) { action(val); } } template<typename T> inline int MoveSemanticsTest<T>::getNumber() { std::this_thread::sleep_for(sleepTime); return std::rand(); } } #endif // MOVESEMANTICSTEST_H
nemanjajelisijevic/cppDaemon
daemon/queuedconsumer.h
#ifndef QUEUEDCONSUMER_H #define QUEUEDCONSUMER_H #include <memory> #include "serviceobject.h" #include "consumerbase.h" namespace daemonize { class QueuedConsumer : public Consumer { public: QueuedConsumer(); QueuedConsumer(const QueuedConsumer& other); QueuedConsumer(QueuedConsumer&& other); QueuedConsumer& operator=(const QueuedConsumer& other) = delete; QueuedConsumer& operator=(QueuedConsumer&& other) = delete; virtual ~QueuedConsumer() override; void consume(IFunctor* callback) override; void setName(std::string&& name) override; private: std::shared_ptr<ServiceObject> myServiceObject; }; } #endif // QUEUEDCONSUMER_H
nemanjajelisijevic/cppDaemon
daemon/returningclosure.h
<filename>daemon/returningclosure.h<gh_stars>0 #ifndef RETURNINGCLOSURE_H #define RETURNINGCLOSURE_H #include "functorbase.h" #include <functional> namespace daemonize { template<typename R> class ReturningClosureWrapper : public IFunctor { public: ReturningClosureWrapper() = delete; template <typename Res> ReturningClosureWrapper(std::function<void(R)>&& func, Res&& result); ReturningClosureWrapper(const ReturningClosureWrapper& other) = delete; ReturningClosureWrapper(ReturningClosureWrapper&& other) = delete; ReturningClosureWrapper& operator=(const ReturningClosureWrapper& other) = delete; ReturningClosureWrapper& operator=(ReturningClosureWrapper&& other) = delete; virtual ~ReturningClosureWrapper() override; void execute() override; private: std::function<void(R)> myCallback; R myResult; }; template<typename R> inline ReturningClosureWrapper<R>::~ReturningClosureWrapper() {} template<typename R> template <typename Res> inline ReturningClosureWrapper<R>::ReturningClosureWrapper(std::function<void(R)>&& func, Res&& result) : myCallback(std::forward<std::function<void(R)>>(func)) , myResult(std::forward<Res>(result)) {} template<typename R> inline void ReturningClosureWrapper<R>::execute() { myCallback(myResult); } template<typename R> class RecursiveClosureWrapper : public IFunctor { public: RecursiveClosureWrapper() = delete; template <typename Res> RecursiveClosureWrapper(Res&& result, std::function<void(R, RecursiveClosureWrapper<R>&)>&& func); RecursiveClosureWrapper(const RecursiveClosureWrapper& other); RecursiveClosureWrapper(RecursiveClosureWrapper&& other); RecursiveClosureWrapper& operator=(const RecursiveClosureWrapper& other) = delete; RecursiveClosureWrapper& operator=(RecursiveClosureWrapper&& other) = delete; virtual ~RecursiveClosureWrapper() override; void execute() override; std::function<void(R, RecursiveClosureWrapper<R>&)>&& getClosure();//TODO LDRA private: R myResult; std::function<void(R, RecursiveClosureWrapper<R>&)> myCallback; }; template<typename R> inline RecursiveClosureWrapper<R>::~RecursiveClosureWrapper() {} template<typename R> template <typename Res> inline RecursiveClosureWrapper<R>::RecursiveClosureWrapper(Res&& result, std::function<void(R, RecursiveClosureWrapper<R>&)>&& func) : myResult(std::forward<Res>(result)) , myCallback(std::forward<std::function<void(R, RecursiveClosureWrapper<R>&)>>(func)) {} template<typename R> inline RecursiveClosureWrapper<R>::RecursiveClosureWrapper(const RecursiveClosureWrapper& other) : myResult(other.myResult) , myCallback(other.myCallback) {} template<typename R> inline RecursiveClosureWrapper<R>::RecursiveClosureWrapper(RecursiveClosureWrapper&& other) : myResult(std::forward<R>(other.myResult)) , myCallback(std::forward<std::function<void(R, RecursiveClosureWrapper<R>&)>>(other.myCallback)) {} template<typename R> inline void RecursiveClosureWrapper<R>::execute() { myCallback(myResult, *this); } template<typename R> inline std::function<void(R, RecursiveClosureWrapper<R>&)>&& RecursiveClosureWrapper<R>::getClosure() { return std::forward<std::function<void(R, RecursiveClosureWrapper<R>&)>>(myCallback); } } #endif // RETURNINGCLOSURE_H
nemanjajelisijevic/cppDaemon
daemon/syncqueue.h
<filename>daemon/syncqueue.h<gh_stars>0 #ifndef SYNCQUEUE_H #define SYNCQUEUE_H #include <queue> #include <mutex> #include <condition_variable> #include <atomic> namespace daemonize { template<typename T> class SyncQueue { public: SyncQueue(); ~SyncQueue(); SyncQueue(const SyncQueue& other) = delete; SyncQueue(SyncQueue&& other) = delete; SyncQueue& operator=(const SyncQueue& other) = delete; SyncQueue& operator=(SyncQueue&& other) = delete; bool stopped(); void enqueue(T element); T dequeue(); void cleanUp(); private: std::mutex myMutex; std::condition_variable myCondVar; std::queue<T> myQueue; std::atomic<bool> stopCondition; }; template<typename T> inline SyncQueue<T>::SyncQueue() : myMutex() , myCondVar() , myQueue() , stopCondition(false) {} template<typename T> inline SyncQueue<T>::~SyncQueue() {} template<typename T> inline bool SyncQueue<T>::stopped() { return stopCondition; } template<typename T> inline void SyncQueue<T>::enqueue(T element) { std::unique_lock<std::mutex> lock(myMutex); myQueue.push(element); if(myQueue.size() == 1) { myCondVar.notify_one(); } } template<typename T> inline T SyncQueue<T>::dequeue() { T element = nullptr; std::unique_lock<std::mutex> lock(myMutex); while(((myQueue.empty() == true) && (stopCondition == false))) { myCondVar.wait(lock); } if (stopCondition == false) { element = myQueue.front(); myQueue.pop(); } return element; } template<typename T> inline void SyncQueue<T>::cleanUp() { std::unique_lock<std::mutex> lock(myMutex); stopCondition = true; while(myQueue.empty() == false) { auto func = myQueue.front(); myQueue.pop(); delete func; } //notify service thread to stop myCondVar.notify_one(); } } #endif // SYNCQUEUE_H
nemanjajelisijevic/cppDaemon
daemon/functorbase.h
#ifndef FUNCTOR_BASE_H #define FUNCTOR_BASE_H namespace daemonize { class IFunctor { public: IFunctor(); virtual ~IFunctor(); virtual void execute() = 0; private: IFunctor(const IFunctor& other) = delete; IFunctor(IFunctor&& other) = delete; IFunctor& operator=(const IFunctor& other) = delete; IFunctor& operator=(IFunctor&& other) = delete; }; } #endif // FUNCTOR_BASE_H
amunmt/Marian
src/layers/guided_alignment.h
<reponame>amunmt/Marian #pragma once #include "layers/loss.h" #include "common/logging.h" namespace marian { static inline const std::tuple<std::vector<IndexType>, std::vector<float>> guidedAlignmentToSparse(Ptr<data::CorpusBatch> batch) { int trgWords = (int)batch->back()->batchWidth(); int dimBatch = (int)batch->size(); typedef std::tuple<size_t, float> BiPoint; std::vector<BiPoint> byIndex; byIndex.reserve(dimBatch * trgWords); for(size_t b = 0; b < dimBatch; ++b) { auto guidedAlignmentFwd = batch->getGuidedAlignment()[b]; // this copies guidedAlignmentFwd.normalize(/*reverse=*/false); // normalize forward for(size_t i = 0; i < guidedAlignmentFwd.size(); ++i) { auto pFwd = guidedAlignmentFwd[i]; IndexType idx = (IndexType)(pFwd.srcPos * dimBatch * trgWords + b * trgWords + pFwd.tgtPos); byIndex.push_back({idx, pFwd.prob}); } } std::sort(byIndex.begin(), byIndex.end(), [](const BiPoint& a, const BiPoint& b) { return std::get<0>(a) < std::get<0>(b); }); std::vector<IndexType> indices; std::vector<float> valuesFwd; indices.reserve(byIndex.size()); valuesFwd.reserve(byIndex.size()); for(auto& p : byIndex) { indices.push_back((IndexType)std::get<0>(p)); valuesFwd.push_back(std::get<1>(p)); } return {indices, valuesFwd}; } static inline RationalLoss guidedAlignmentCost(Ptr<ExpressionGraph> graph, Ptr<data::CorpusBatch> batch, Ptr<Options> options, Expr attention) { // [beam depth=1, max src length, batch size, tgt length] std::string guidedLossType = options->get<std::string>("guided-alignment-cost"); // @TODO: change "cost" to "loss" // We dropped support for other losses which are not possible to implement with sparse labels. // They were most likely not used anyway. ABORT_IF(guidedLossType != "ce", "Only alignment loss type 'ce' is supported"); float guidedLossWeight = options->get<float>("guided-alignment-weight"); auto [indices, values] = guidedAlignmentToSparse(batch); auto alignmentIndices = graph->indices(indices); auto alignmentValues = graph->constant({(int)values.size()}, inits::fromVector(values)); auto attentionAtAligned = cols(flatten(attention), alignmentIndices); float epsilon = 1e-6f; Expr alignmentLoss = -sum(alignmentValues * log(attentionAtAligned + epsilon)); size_t numLabels = alignmentIndices->shape().elements(); // Create label node, also weigh by scalar so labels and cost are in the same domain. // Fractional label counts are OK. But only if combined as "sum". // @TODO: It is ugly to check the multi-loss type here, but doing this right requires // a substantial rewrite of the multi-loss architecture, which is planned anyways. std::string multiLossType = options->get<std::string>("multi-loss-type", "sum"); if (multiLossType == "sum") // sum of sums return RationalLoss(guidedLossWeight * alignmentLoss, guidedLossWeight * numLabels); else return RationalLoss(guidedLossWeight * alignmentLoss, (float)numLabels); } } // namespace marian
amunmt/Marian
src/tensors/cpu/integer_common.h
#pragma once #include "tensors/tensor_allocator.h" #include "tensors/tensor_operators.h" #include "tensors/cpu/aligned.h" #include "common/io_item.h" #if COMPILE_CPU #include "3rd_party/intgemm/intgemm/intgemm.h" #else namespace intgemm { struct Int8; struct Int16; namespace SSSE3 { struct Kernels8; } namespace SSE2 { struct Kernels16; } namespace AVX2 { struct Kernels8; struct Kernels16; } namespace AVX512BW { struct Kernels8; struct Kernels16; } namespace AVX512VNNI { struct Kernels8; } } #endif #include <emmintrin.h> #include <immintrin.h> #include <tmmintrin.h> #include <xmmintrin.h> #include <cassert> #include <cstddef> namespace marian { namespace cpu { namespace integer { //Convenient function to get rows and columns of a tensor, shadowed by namespace. inline int cols(Tensor& tensor) { return tensor->shape()[-1]; } inline int rows(Tensor& tensor) { return tensor->shape().elements() / cols(tensor); } inline int cols(Shape& shape) { return shape[-1]; } inline int rows(Shape& shape) { return shape.elements() / cols(shape); } template <Type type> struct intgemm_; template <> struct intgemm_<Type::intgemm8> { using width = intgemm::Int8; using type = int8_t; }; template <> struct intgemm_<Type::intgemm8ssse3> { using width = intgemm::SSSE3::Kernels8; using type = int8_t; }; template <> struct intgemm_<Type::intgemm8avx2> { using width = intgemm::AVX2::Kernels8; using type = int8_t; }; template <> struct intgemm_<Type::intgemm8avx512> { using width = intgemm::AVX512BW::Kernels8; using type = int8_t; }; template <> struct intgemm_<Type::intgemm8avx512vnni> { using width = intgemm::AVX512VNNI::Kernels8; using type = int8_t; }; template <> struct intgemm_<Type::intgemm16> { using width = intgemm::Int16; using type = int16_t; }; template <> struct intgemm_<Type::intgemm16sse2> { using width = intgemm::SSE2::Kernels16; using type = int16_t; }; template <> struct intgemm_<Type::intgemm16avx2> { using width = intgemm::AVX2::Kernels16; using type = int16_t; }; template <> struct intgemm_<Type::intgemm16avx512> { using width = intgemm::AVX512BW::Kernels16; using type = int16_t; }; template <Type vtype> static inline float& getQuantMult(marian::Tensor val) { #if COMPILE_CPU ABORT_IF(!isIntgemm(val->type()), "getQuantMult does not work for type {}", val->type()); typedef typename intgemm_<vtype>::type Integer; return *(reinterpret_cast<float*>(val->data<Integer>() + val->shape().elements())); #else val; ABORT("Using intgemm binary models is only supported when compiling marian with -DCOMPILE_CPU=ON."); #endif } static inline Type getIntgemmType(Type vtype) { #if COMPILE_CPU if (vtype == Type::intgemm8) { if (intgemm::kCPU == intgemm::CPUType::AVX512VNNI) { return Type::intgemm8avx512vnni; } else if (intgemm::kCPU == intgemm::CPUType::AVX512BW) { return Type::intgemm8avx512; } else if (intgemm::kCPU == intgemm::CPUType::AVX2) { return Type::intgemm8avx2; } else if (intgemm::kCPU == intgemm::CPUType::SSSE3) { return Type::intgemm8ssse3; } else { ABORT("Your CPU doesn't support SSSE3, necessary for 8bit intgemm to work."); } } else if (vtype == Type::intgemm16) { if (intgemm::kCPU > intgemm::CPUType::AVX2) { return Type::intgemm16avx512; } else if (intgemm::kCPU == intgemm::CPUType::AVX2) { return Type::intgemm16avx2; } else if (intgemm::kCPU >= intgemm::CPUType::SSE2) { return Type::intgemm16sse2; } else { ABORT("Your CPU doesn't support SSE2, necessary for 16bit intgemm to work."); } } else { ABORT("Unrecognised type {}.", vtype); } #else ABORT("Using intgemm binary models is only supported when compiling marian with -DCOMPILE_CPU=ON."); return vtype; #endif } static inline bool passOrAbort(Type vtype) { #if COMPILE_CPU if (vtype == Type::intgemm8 || vtype == Type::intgemm16) { return true; } else if (vtype == Type::intgemm16sse2) { ABORT_IF(intgemm::kCPU < intgemm::CPUType::SSE2, "Your CPU doesn't support the architecture necessary to decode model of type {}. Try older architecture instead.", vtype); } else if (vtype == Type::intgemm8ssse3) { ABORT_IF(intgemm::kCPU < intgemm::CPUType::SSSE3, "Your CPU doesn't support the architecture necessary to decode model of type {}. Try older architecture instead.", vtype); } else if (vtype == Type::intgemm8avx2 || vtype == Type::intgemm16avx2) { ABORT_IF(intgemm::kCPU < intgemm::CPUType::AVX2, "Your CPU doesn't support the architecture necessary to decode model of type {}. Try older architecture instead.", vtype); } else if (vtype == Type::intgemm8avx512 || vtype == Type::intgemm16avx512) { ABORT_IF(intgemm::kCPU < intgemm::CPUType::AVX512BW, "Your CPU doesn't support the architecture necessary to decode model of type {}. Try older architecture instead.", vtype); } else if (vtype == Type::intgemm8avx512vnni) { ABORT_IF(intgemm::kCPU < intgemm::CPUType::AVX512VNNI, "Your CPU doesn't support the architecture necessary to decode model of type {}. Try older architecture instead.", vtype); } return true; #else vtype; ABORT("Using intgemm binary models is only supported when compiling marian with -DCOMPILE_CPU=ON."); return false; #endif } template <Type vtype> static inline float computeQuantMult(marian::Tensor val) { #if COMPILE_CPU if(sizeOf(vtype) == 1) return 127.0f / intgemm::MaxAbsolute(val->data(), val->data() + val->shape().elements()); else if(sizeOf(vtype) == 2) return 1024.0f; else ABORT("Unhandled type size {}", sizeOf(vtype)); #else val; ABORT("Using intgemm binary models is only supported when compiling marian with -DCOMPILE_CPU=ON."); #endif } // This operates on floats after processing so doesn't care about int8_t vs int16_t. void AddBias(marian::Tensor C, const marian::Tensor Bias); // For loading architecture agnostic models. We do PrepareAndTranpose, because we already transposed // in our binary format. Then we copy the quantizationMultiplier information at the end template<Type vtype> void prepareAndTransposeB(io::Item& item, const char * input) { #if COMPILE_CPU typedef typename intgemm_<vtype>::type Integer; Integer * output_tensor = reinterpret_cast<Integer *>(&(*item.bytes.begin())); // Sometimes we will end up with misaligned intput (and output) so we can't use them directly. // If this is the case, we will need to temporary allocate aligned memory, copy the results, and then free it if (reinterpret_cast<uintptr_t>(input) % 64 == 0 && reinterpret_cast<uintptr_t>(output_tensor) % 64 == 0) { intgemm_<vtype>::width::PrepareBQuantizedTransposed(reinterpret_cast<const Integer *>(input), output_tensor, rows(item.shape), //Since we only transposed, but didn't update the shape when constructing the binary, cols(item.shape)); //rows here returns the columns of the transposed input matrix, and cols -> the rows } else { Integer * aligned_input = reinterpret_cast<Integer *>(genericMalloc(512, rows(item.shape)*cols(item.shape)*sizeof(Integer))); std::copy(reinterpret_cast<const Integer *>(input), reinterpret_cast<const Integer *>(input) + rows(item.shape)*cols(item.shape), aligned_input); Integer * aligned_output = reinterpret_cast<Integer *>(genericMalloc(512, rows(item.shape)*cols(item.shape)*sizeof(Integer))); intgemm_<vtype>::width::PrepareBQuantizedTransposed(reinterpret_cast<const Integer *>(aligned_input), reinterpret_cast<Integer *>(aligned_output), rows(item.shape), //Since we only transposed, but didn't update the shape when constructing the binary, cols(item.shape)); //rows here returns the columns of the transposed input matrix, and cols -> the rows // Copy to output tensor std::copy(aligned_output, aligned_output + rows(item.shape)*cols(item.shape), output_tensor); genericFree(aligned_input); genericFree(aligned_output); } //Copy the quantMult float quantMult = *(reinterpret_cast<const float *>(reinterpret_cast<const Integer *>(input) + item.shape.elements())); *(reinterpret_cast<float *>(&(*(output_tensor + item.shape.elements())))) = quantMult; #else item, input; ABORT("Using intgemm binary models is only supported when compiling marian with -DCOMPILE_CPU=ON."); #endif } } //integer } //cpu } //marian
amunmt/Marian
src/layers/lsh_impl.h
<reponame>amunmt/Marian #pragma once #include <vector> #ifdef _MSC_VER #define __builtin_popcountl __popcnt64 #define __builtin_popcount __popcnt #endif namespace marian { namespace lsh { struct Parameters { int k; uint8_t* queryRows; int numQueryRows; uint8_t* codeRows; int numCodeRows; int bytesPerVector; }; typedef uint32_t DistType; typedef uint64_t ChunkType; inline DistType popcount(const ChunkType& chunk) { switch (sizeof(ChunkType)) { case 8 : return (DistType)__builtin_popcountl((uint64_t)chunk); case 4 : return (DistType)__builtin_popcount((uint32_t)chunk); default: ABORT("Size {} not supported", sizeof(ChunkType)); } } // return the number of full bytes required to encoded that many bits inline int bytesPerVector(int nBits); // compute top-k hamming distances for given query and weight binary codes. Faster than FAISS version, especially for larger k nearly constant wrt. k. template <int StaticValue = 0, bool Dynamic=true, typename T> inline constexpr T getStaticOrDynamic(T dynamicValue) { return Dynamic ? dynamicValue : StaticValue; } template <size_t StepsStatic, bool Dynamic=false> inline DistType hamming(ChunkType* queryRow, ChunkType* codeRow, int stepsDynamic = 0) { static_assert(Dynamic == true || StepsStatic != 0, "Either define dynamic use of steps or provide non-zero template argument"); DistType dist = 0; for(int i = 0; i < getStaticOrDynamic<StepsStatic, Dynamic>(stepsDynamic); ++i) dist += popcount(queryRow[i] ^ codeRow[i]); return dist; } template <int warpSize, int NumCodeRows, int BytesPerVector, bool Dynamic, class Functor> inline void hammingTopKUnrollWarp(int queryOffset, const Parameters& parameters, const Functor& gather) { const int numBits = getStaticOrDynamic<BytesPerVector, Dynamic>(parameters.bytesPerVector) * 8; ABORT_IF(numBits % 64 != 0, "LSH hash size has to be a multiple of 64"); // counter to keep track of seen hamming distances std::vector<std::vector<DistType>> counter(warpSize, std::vector<DistType>(numBits, 0)); // buffer the distances for query vector warpRowId to all weight weight vectors codeRowId std::vector<std::vector<DistType>> distBuffer(warpSize, std::vector<DistType>(getStaticOrDynamic<NumCodeRows, Dynamic>(parameters.numCodeRows), 0)); // minimal distances per query std::vector<DistType> minDist(warpSize); constexpr int StepStatic = BytesPerVector / sizeof(ChunkType); int stepDynamic = parameters.bytesPerVector / sizeof(ChunkType); ChunkType* codeRow = (ChunkType*)parameters.codeRows; for(int warpRowId = 0; warpRowId < warpSize; warpRowId++) { std::memset(counter[warpRowId].data(), 0, numBits * sizeof(DistType)); // Reset the counter via memset to 0 minDist[warpRowId] = (DistType)numBits; } for(IndexType codeRowId = 0; codeRowId < (IndexType)getStaticOrDynamic<NumCodeRows, Dynamic>(parameters.numCodeRows); ++codeRowId, codeRow += getStaticOrDynamic<StepStatic, Dynamic>(stepDynamic)) { ChunkType* queryRow = (ChunkType*)parameters.queryRows; for(IndexType warpRowId = 0; warpRowId < warpSize; warpRowId++, queryRow += getStaticOrDynamic<StepStatic, Dynamic>(stepDynamic)) { // Compute the bit-wise hamming distance DistType dist = hamming<StepStatic, Dynamic>(queryRow, codeRow, stepDynamic); // Record the minimal distance seen for this query vector wrt. all weight vectors if(dist < minDist[warpRowId]) { minDist[warpRowId] = dist; } // Record the number of weight vectors that have this distance from the query vector. // Note, because there is at most numBits different distances this can be trivially done. // Not the case for generic distances like float. counter[warpRowId][dist]++; // Record the distance for this weight vector distBuffer[warpRowId][codeRowId] = dist; } } // warp finished, harvest k top distances for(int warpRowId = 0; warpRowId < warpSize; warpRowId++) { // Here we search for the distance at which we have seen equal or more than k elements with // smaller distances. We start with the minimal distance from above which is its own address // to the counter. DistType maxDist = minDist[warpRowId]; size_t cummulativeDistances = 0; // Accumulate number of elements until we reach k in growing distance order. Note that // counter is indexed by hamming distance - from lowest to highest. Some slots will be 0. // The cumulative sum from position a to b tells you how many elements have distances smaller // than the distance at b. while(cummulativeDistances < parameters.k) cummulativeDistances += counter[warpRowId][maxDist++]; if(cummulativeDistances) maxDist--; // fix overcounting // Usually, we overshoot by a couple of elements and we need to take care of the distance at which the k-th // element sits. This elements has more neighbors at the same distance, but we only care for them // as long we have not reached k elements in total. // By contrast, we trivially collect all elements below that distance -- these are always safe. // This is the number of elements we need to collect at the last distance. DistType maxDistLimit = /*number of elements at maxDist=*/counter[warpRowId][maxDist] - /*overflow=*/((DistType)cummulativeDistances - (DistType)parameters.k); IndexType kSeen = 0; IndexType kSeenAtKDist = 0; for(IndexType codeRowId = 0; kSeen < (IndexType)parameters.k && codeRowId < (IndexType)getStaticOrDynamic<NumCodeRows, Dynamic>(parameters.numCodeRows); ++codeRowId) { DistType dist = distBuffer[warpRowId][codeRowId]; // - if the current distance is smaller than the maxDist, just consume. // - if the distance is equal to maxDist, make sure to only consume maxDistLimit elements at maxDist // and ignore the rest (smaller indices make it in first). // - after we finish this loop we have exactly k top values for every query row in original index order. int queryRowId = queryOffset + warpRowId; if(dist < maxDist) { gather(queryRowId, (IndexType)kSeen, codeRowId, dist); kSeen++; } else if(dist == maxDist && kSeenAtKDist < (DistType)maxDistLimit) { gather(queryRowId, (IndexType)kSeen, codeRowId, dist); kSeen++; kSeenAtKDist++; } } } } // Faster top-k search for hamming distance. The idea here is that instead of sorting the elements we find a hamming distances at which it is safe // to copy the given index. Copying only the indices below that distance is guaranteed to results in no more than k elements. For elements at that // distance we need to correct for overshooting. // Once we have that distance we only need to traverse the set of distances. In the end we get exactly k elements per queryRows vector. template <int NumCodeRows, int BytesPerVector, bool Dynamic, class Functor> inline void hammingTopKUnroll(const Parameters& parameters, const Functor& gather) { static_assert(Dynamic == true || (NumCodeRows != 0 && BytesPerVector != 0), "Either define dynamic use of variables or provide non-zero template arguments"); int warpSize = 4; // starting warpSize of 4 seems optimal auto warpParameters = parameters; for(int queryOffset = 0; queryOffset < parameters.numQueryRows; queryOffset += warpSize) { while(parameters.numQueryRows - queryOffset < warpSize) warpSize /= 2; int step = getStaticOrDynamic<BytesPerVector, Dynamic>(parameters.bytesPerVector); warpParameters.queryRows = parameters.queryRows + queryOffset * step; warpParameters.numQueryRows = warpSize; switch(warpSize) { case 8 : hammingTopKUnrollWarp<8, NumCodeRows, BytesPerVector, Dynamic>(queryOffset, warpParameters, gather); break; case 4 : hammingTopKUnrollWarp<4, NumCodeRows, BytesPerVector, Dynamic>(queryOffset, warpParameters, gather); break; case 2 : hammingTopKUnrollWarp<2, NumCodeRows, BytesPerVector, Dynamic>(queryOffset, warpParameters, gather); break; case 1 : hammingTopKUnrollWarp<1, NumCodeRows, BytesPerVector, Dynamic>(queryOffset, warpParameters, gather); break; default: ABORT("Unhandled warpSize = {}??", warpSize); } } } template <class Functor> inline void hammingTopK(const Parameters& parameters, const Functor& gather) { if(parameters.numCodeRows == 2048 && parameters.bytesPerVector == 64) hammingTopKUnroll< 2048, 64, false>(parameters, gather); else if(parameters.numCodeRows == 4096 && parameters.bytesPerVector == 64) hammingTopKUnroll< 4096, 64, false>(parameters, gather); else if(parameters.numCodeRows == 6144 && parameters.bytesPerVector == 64) hammingTopKUnroll< 6144, 64, false>(parameters, gather); else if(parameters.numCodeRows == 8192 && parameters.bytesPerVector == 64) hammingTopKUnroll< 8192, 64, false>(parameters, gather); else if(parameters.numCodeRows == 32000 && parameters.bytesPerVector == 64) hammingTopKUnroll<32000, 64, false>(parameters, gather); else if(parameters.numCodeRows == 32000 && parameters.bytesPerVector == 128) hammingTopKUnroll<32000, 128, false>(parameters, gather); else hammingTopKUnroll< 0, 0, true>(parameters, gather); } } // namespace lsh } // namespace marian
morrow1nd/ToyXWindow
Include/ToyXWindow/details/WinDX11XWindowImpl.h
#pragma once #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyXWindow/details/WinBaseXWindowImpl.h" #include "ToyXWindow/details/WinDX11CommonType.h" #include "ToyXWindow/details/WinDX11Window.h" namespace ToyXWindow { class WinDX11XWindowImpl : public WinBaseXWindowImpl { public: WinDX11XWindowImpl() : m_MainWindow(nullptr) {} private: WinDX11Context m_Context; ToyUtility::SPtr<WinDX11Window> m_MainWindow; private: ToyXResult _CreateDXGIFactory(); void _DestoryDXGIFactory(); ToyXResult _CreateD3DDevice(); void _DestoryD3DDevice(); public: virtual ToyXResult StartUp(const XWINDOW_API_STARTUP_DESC & desc) override; virtual void ShutDown() override; virtual void GetPlatformDependentData(PlatformDependentData& data) override; virtual ToyUtility::SPtr<IAdapter> GetDefaultAdapter() override; virtual const ToyUtility::List<ToyUtility::SPtr<IAdapter>>& GetAdapters() const override; virtual ToyUtility::SPtr<IWindow> CreateWindow(const WINDOW_DESC & desc) override; virtual void SetMainWindow(ToyUtility::SPtr<IWindow> window) override; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/BaseWindow.h
#pragma once #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyXWindow/IWindow.h" namespace ToyXWindow { class BaseWindow : public IWindow { public: BaseWindow() : m_ShouldClose(false), m_Windowed(true) {} private: bool m_Windowed; // windowed-mode window bool m_ShouldClose; ToyUtility::String m_Title; char m_Keys[(int) KeyType::__End]; char m_MouseButtons[(int) MouseButtonType::__End]; float m_VirtualCursorPosX; float m_VirtualCursorPosY; protected: // Callbacks ShouldCloseFunc m_ShouldCloseCb; WindowSizeFunc m_WindowSizeCb; FrameBufferSizeFunc m_FrameBufferSizeCb; PosFunc m_PosCb; IconifyFunc m_IconifyCb; FocusFunc m_FocusCb; WindowNeedRefreshFunc m_WindowNeedRefreshCb; KeyFunc m_KeyCb; CursorPosFunc m_CursorPosCb; CursorPosDeltaFunc m_CursorPosDeltaCb; CursorEnterLeaveFunc m_CursorEnterLeaveCb; MouseButtonFunc m_MouseButtonCb; ScrollFunc m_ScrollCb; DropFunc m_DropCb; public: virtual ToyXResult Create(const WINDOW_DESC& desc) override; virtual bool IsWindowed() const override; virtual bool ShouldClose() override; virtual void SetShouldClose(bool b) override; virtual const ToyUtility::String & GetTitle() const override; virtual void SetTitle(const ToyUtility::String & title) override; // Set Callback function impl virtual void SetShouldCloseCallback(ShouldCloseFunc callback) override; virtual void SetWindowSizeCallback(WindowSizeFunc callback) override; virtual void SetFrameBufferSizeCallback(FrameBufferSizeFunc callback) override; virtual void SetPosCallback(PosFunc callback) override; virtual void SetIconifyCallback(IconifyFunc callback) override; virtual void SetFocusCallback(FocusFunc callback) override; virtual void SetWindowNeedRefreshCalback(WindowNeedRefreshFunc callback) override; virtual void SetKeyCallback(KeyFunc callback) override; virtual void SetCursorPosCallback(CursorPosFunc callback) override; virtual void SetCursorPosDeltaCallback(CursorPosDeltaFunc callback) override; virtual void SetCursorEnterLeaveCallback(CursorEnterLeaveFunc callback) override; virtual void SetMouseButtonCallback(MouseButtonFunc callback) override; virtual void SetScrollCallback(ScrollFunc callback) override; virtual void SetDropCallback(DropFunc callback) override; //////////////////////////////////////////////////////////////////////////// // Handle messages (OnRecvMsg) public: virtual void OnRecvMsg_ShouldClose(ShouldCloseFuncArguList); virtual void OnRecvMsg_WindowSize(WindowSizeFuncArguList); virtual void OnRecvMsg_FrameBufferSize(FrameBufferSizeFuncArguList); virtual void OnRecvMsg_Pos(PosFuncArguList); virtual void OnRecvMsg_Iconify(IconifyFuncArguList); virtual void OnRecvMsg_Focus(FocusFuncArguList); virtual void OnRecvMsg_WindowNeedRefresh(WindowNeedRefreshFuncArguList); virtual void OnRecvMsg_Key(KeyFuncArguList); virtual void OnRecvMsg_CursorPos(CursorPosFuncArguList); virtual void OnRecvMsg_CursorPosDelta(CursorPosDeltaFuncArguList); virtual void OnRecvMsg_CursorEnterLeave(CursorEnterLeaveFuncArguList); virtual void OnRecvMsg_MouseButton(MouseButtonFuncArguList); virtual void OnRecvMsg_Scroll(ScrollFuncArguList); virtual void OnRecvMsg_Drop(DropFuncArguList); }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/IAdapter.h
<filename>Include/ToyXWindow/IAdapter.h #pragma once #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyUtility/String/String.h" #include "ToyXWindow/CommonType.h" namespace ToyXWindow { class IAdapter { public: virtual ~IAdapter() = default; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/details/WinWindow.h
#pragma once #include <Windows.h> #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyXWindow/BaseWindow.h" namespace ToyXWindow { class WinWindow : public BaseWindow { public: static ToyUtility::String HWNDGetPropName; public: WinWindow() : m_HWNDCreated(false) {} protected: ToyUtility::String m_ClassName; HINSTANCE m_ProgramInstance; bool m_HWNDCreated; HWND m_HWND; WINDOW_DESC m_Desc; public: int m_LastCursorPosX; int m_LastCursorPosY; int m_CursorTracked; int m_Iconified; ToyUtility::Rational m_AspectRatioLimit; public: void SetClassName(const ToyUtility::String& className); void SetProgramInstance(HINSTANCE h) { m_ProgramInstance = h; } HWND GetHWND() const { return m_HWND; } protected: // Init dx11 or wgl context in WinDX11Window or WinWGLWindow virtual ToyXResult InitContext() = 0; virtual void DeInitContext() = 0; public: // override BaseWindow virtual ToyXResult Create(const WINDOW_DESC& desc) override; virtual void Destory() override; virtual void GetWindowSize(uint32 * width, uint32 * height) override; virtual void SetWindowSize(uint32 width, uint32 height) override; virtual void GetWindowFrameSize(uint32 * left, uint32 * top, uint32 * right, uint32 * bottom) override; virtual void GetFrameBufferSize(uint32 * width, uint32 * height) override; virtual void SetWindowSizeLimits(uint32 minWidth, uint32 minHeight, uint32 maxWidth, uint32 maxHeight) override; virtual void SetAspectRatio(uint32 width, uint32 height) override; virtual void SetPos(int32 xpos, int32 ypos) override; virtual void GetPos(int32 * xpos, int32 * pos) override; virtual void SetTitle(const ToyUtility::String & title) override; virtual void Iconify() override; virtual void Restore() override; virtual bool IsIconified() override; virtual void Hide() override; virtual void Show() override; virtual bool IsVisible() override; virtual void Focus() override; virtual bool IsFocused() override; virtual ButtonState GetKey(KeyType key) override; virtual const ToyUtility::String & GetKeyName(KeyType key) const override; virtual void GetCursorPos(float * xpos, float * ypos) override; virtual void SetCursorPos(float xpos, float ypos) override; virtual void GetCursorPosDelta(float * xdelta, float * ydelta) override; virtual void SetCursorMode(CursorMode mode) override; virtual CursorMode GetCursorMode() override; virtual ButtonState GetMouseButton(MouseButtonType type) override; virtual const ToyUtility::String & GetClipboardString() const override; virtual void SetClipboardString(const ToyUtility::String & text) override; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/details/WinWGLXWindowImpl.h
<reponame>morrow1nd/ToyXWindow<filename>Include/ToyXWindow/details/WinWGLXWindowImpl.h #pragma once #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyXWindow/details/WinBaseXWindowImpl.h" #include "ToyXWindow/details/WinWGLCommonType.h" #include "ToyXWindow/details/WinWGLWindow.h" namespace ToyXWindow { class WinWGLXWindowImpl : public WinBaseXWindowImpl { public: WinWGLXWindowImpl() {} private: WinWGLContext m_Context; ToyUtility::SPtr<WinWGLWindow> m_MainWindow; private: ToyXResult _InitializeWGL(); void _TerminateWGL(); bool _WGLExtensionSupported(const char* extension); bool _StringInExtensionString(const char* string, const char* extensions); public: virtual ToyXResult StartUp(const XWINDOW_API_STARTUP_DESC & desc) override; virtual void ShutDown() override; virtual void GetPlatformDependentData(PlatformDependentData& data) override; virtual ToyUtility::SPtr<IAdapter> GetDefaultAdapter() override; virtual const ToyUtility::List<ToyUtility::SPtr<IAdapter>>& GetAdapters() const override; virtual ToyUtility::SPtr<IWindow> CreateWindow(const WINDOW_DESC & desc) override; virtual void SetMainWindow(ToyUtility::SPtr<IWindow> window) override; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/details/WinWGLCommonType.h
#pragma once #include <Windows.h> #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyXWindow/details/OpenGLCommonType.h" namespace ToyXWindow { #define WGL_NUMBER_PIXEL_FORMATS_ARB 0x2000 #define WGL_SUPPORT_OPENGL_ARB 0x2010 #define WGL_DRAW_TO_WINDOW_ARB 0x2001 #define WGL_PIXEL_TYPE_ARB 0x2013 #define WGL_TYPE_RGBA_ARB 0x202b #define WGL_ACCELERATION_ARB 0x2003 #define WGL_NO_ACCELERATION_ARB 0x2025 #define WGL_RED_BITS_ARB 0x2015 #define WGL_RED_SHIFT_ARB 0x2016 #define WGL_GREEN_BITS_ARB 0x2017 #define WGL_GREEN_SHIFT_ARB 0x2018 #define WGL_BLUE_BITS_ARB 0x2019 #define WGL_BLUE_SHIFT_ARB 0x201a #define WGL_ALPHA_BITS_ARB 0x201b #define WGL_ALPHA_SHIFT_ARB 0x201c #define WGL_ACCUM_BITS_ARB 0x201d #define WGL_ACCUM_RED_BITS_ARB 0x201e #define WGL_ACCUM_GREEN_BITS_ARB 0x201f #define WGL_ACCUM_BLUE_BITS_ARB 0x2020 #define WGL_ACCUM_ALPHA_BITS_ARB 0x2021 #define WGL_DEPTH_BITS_ARB 0x2022 #define WGL_STENCIL_BITS_ARB 0x2023 #define WGL_AUX_BUFFERS_ARB 0x2024 #define WGL_STEREO_ARB 0x2012 #define WGL_DOUBLE_BUFFER_ARB 0x2011 #define WGL_SAMPLES_ARB 0x2042 #define WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20a9 #define WGL_CONTEXT_DEBUG_BIT_ARB 0x00000001 #define WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x00000002 #define WGL_CONTEXT_PROFILE_MASK_ARB 0x9126 #define WGL_CONTEXT_CORE_PROFILE_BIT_ARB 0x00000001 #define WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002 #define WGL_CONTEXT_MAJOR_VERSION_ARB 0x2091 #define WGL_CONTEXT_MINOR_VERSION_ARB 0x2092 #define WGL_CONTEXT_FLAGS_ARB 0x2094 #define WGL_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 #define WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB 0x00000004 #define WGL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 #define WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 #define WGL_NO_RESET_NOTIFICATION_ARB 0x8261 #define WGL_CONTEXT_RELEASE_BEHAVIOR_ARB 0x2097 #define WGL_CONTEXT_RELEASE_BEHAVIOR_NONE_ARB 0 #define WGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_ARB 0x2098 typedef BOOL(WINAPI * PFNWGLSWAPINTERVALEXTPROC)(int); typedef BOOL(WINAPI * PFNWGLGETPIXELFORMATATTRIBIVARBPROC)(HDC, int, int, UINT, const int*, int*); typedef const char* (WINAPI * PFNWGLGETEXTENSIONSSTRINGEXTPROC)(void); typedef const char* (WINAPI * PFNWGLGETEXTENSIONSSTRINGARBPROC)(HDC); typedef HGLRC(WINAPI * PFNWGLCREATECONTEXTATTRIBSARBPROC)(HDC, HGLRC, const int*); typedef HGLRC(WINAPI * WGLCREATECONTEXT_T)(HDC); typedef BOOL(WINAPI * WGLDELETECONTEXT_T)(HGLRC); typedef PROC(WINAPI * WGLGETPROCADDRESS_T)(LPCSTR); typedef HDC(WINAPI * WGLGETCURRENTDC_T)(void); typedef BOOL(WINAPI * WGLMAKECURRENT_T)(HDC, HGLRC); typedef BOOL(WINAPI * WGLSHARELISTS_T)(HGLRC, HGLRC); struct WGLFunctions { WGLFunctions() : wglCreateContext(nullptr), wglDeleteContext(nullptr), wglGetProcAddress(nullptr), wglGetCurrentDC(nullptr), wglMakeCurrent(nullptr), wglShareLists(nullptr) {} WGLCREATECONTEXT_T wglCreateContext; WGLDELETECONTEXT_T wglDeleteContext; WGLGETPROCADDRESS_T wglGetProcAddress; WGLGETCURRENTDC_T wglGetCurrentDC; WGLMAKECURRENT_T wglMakeCurrent; WGLSHARELISTS_T wglShareLists; }; struct WGLEXT { WGLEXT() : SwapIntervalEXT(nullptr), GetPixelFormatAttribivARB(nullptr), GetExtensionsStringEXT(nullptr), GetExtensionsStringARB(nullptr), CreateContextAttribsARB(nullptr) {} PFNWGLSWAPINTERVALEXTPROC SwapIntervalEXT; PFNWGLGETPIXELFORMATATTRIBIVARBPROC GetPixelFormatAttribivARB; PFNWGLGETEXTENSIONSSTRINGEXTPROC GetExtensionsStringEXT; PFNWGLGETEXTENSIONSSTRINGARBPROC GetExtensionsStringARB; PFNWGLCREATECONTEXTATTRIBSARBPROC CreateContextAttribsARB; bool EXT_swap_control; bool ARB_multisample; bool ARB_framebuffer_sRGB; bool EXT_framebuffer_sRGB; bool ARB_pixel_format; bool ARB_create_context; bool ARB_create_context_profile; bool EXT_create_context_es2_profile; bool ARB_create_context_robustness; bool ARB_context_flush_control; }; struct WinWGLContext { WinWGLContext() : Opengl32Dll(nullptr), WGLExtensionsLoaded(false) {} HINSTANCE Opengl32Dll; WGLFunctions wgl; bool WGLExtensionsLoaded; WGLEXT wglEXT; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/CommonType.h
<filename>Include/ToyXWindow/CommonType.h #pragma once #include <functional> #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyUtility/String/String.h" #include "ToyUtility/Math/Rect2I.h" #include "ToyUtility/Math/Rational.h" #include "ToyXWindowConfig.h" namespace ToyXWindow { // // //struct SampleDesc //{ // static SampleDesc NoMultiSampling; // // SampleDesc() // : // Count(1), // Quality(0) // { // } // // SampleDesc(ToyUtility::uint32 count, ToyUtility::uint32 quality) // : // Count(count), // Quality(quality) // { // } // // // ToyUtility::uint32 Count; // The number of multisamples per pixel // ToyUtility::uint32 Quality; // The image quality level. The higher the quality, the lower the performance //}; // //struct ModeDesc //{ // ModeDesc() // : // Width(0), // Height(0) // { // } // // // ToyUtility::uint32 Width; // resolution width // ToyUtility::uint32 Height; // resolution height // ToyUtility::Rational RefreshRate; // refresh rate in hertz // // TODOH: format, scanlineOrdering, scaling //}; // //enum class MonitorRotationType //{ // Unspecified, // Identity, // Rotate90, // Rotate180, // Rotate270, //}; // //struct MonitorDesc //{ // MonitorDesc() // : // DeviceName("-Unknown-"), // AttachedToDesktop(true), // Rotation(MonitorRotationType::Unspecified) // { // } // // // ToyUtility::String DeviceName; // ToyUtility::Rect2I DesktopCoordinates; // containing the bounds of the output in desktop coordinates // bool AttachedToDesktop; // MonitorRotationType Rotation; //}; // //struct AdapterDesc //{ // AdapterDesc() // : // VendorId(0), // DeviceId(0), // SubSysId(0), // Revision(0), // DedicatedVideoMemory(0), // DedicatedSystemMemory(0), // SharedSystemMemory(0), // AdapterLUID(0) // { // } // // // ToyUtility::String Description; // A string that contains the adapter description // ToyUtility::uint32 VendorId; // The PCI ID of the hardware vendor. PCI: http://pci-ids.ucw.cz/ // ToyUtility::uint32 DeviceId; // The PCI ID of the hardware device // ToyUtility::uint32 SubSysId; // The PCI ID of the sub system // ToyUtility::uint32 Revision; // The PCI ID of the revision number of the adapter // ToyUtility::uint64 DedicatedVideoMemory; // The number of bytes of dedicated video memory that are not shared with the CPU // ToyUtility::uint64 DedicatedSystemMemory; // The number of bytes of dedicated system memory that are not shared with the GPU. This memory is allocated from available system memory at boot time // ToyUtility::uint64 SharedSystemMemory; // The number of bytes of shared system memory. This is the maximum value of system memory that may be consumed by the adapter during operation. Any incidental memory consumed by the driver as it manages and uses video memory is additional // ToyUtility::uint64 AdapterLUID; // A unique value that identifies the adapter //}; struct PlatformDependentData { typedef void* (*WinWGLGetProcAddressFunc)(const char*); void* DXGIFactory; // IDXGIFactory* void* D3D11Device; // ID3D11Device* void* D3D11DeviceContext; // ID3D11DeviceContext* ToyUtility::uint64 DXGIFeatureLevel; // D3D_FEATURE_LEVEL WinWGLGetProcAddressFunc GetProcAddressFuncPtr; void* ProgramInstance; // HINSTANCE void* MainWindowHWND; // HWND (only template) }; enum class ToyXResult { Success = 0, Error_Others, Error_XWindowImpl_FactoryCreate_Fail, Error_Win_RegisterWindowsWindowClass_Fail, Error_Win_CreateWindowA_Fail, Error_Win_CreateHelperWindow_Fail, Error_WinDX11_CreateDXGIFactory_Fail, Error_WinDX11_D3D11CreateDevice_Fail, Error_WinDX11_Factory_CreateSwapChain_Fail, Error_WinDX11_SwapChain_GetBuffer_Fail, Error_WinDX11_Device_CreateRenderTargetView_Fail, Error_WinDX11_Device_CreateTexture2D_Fail, Error_WinDX11_Device_CreateDepthStencilView_Fail, Error_WinWGL_LoadLibrary_opengl32_dll_Fail, Error_WinWGL_SetPixelFormatForDummyContext_Fail, Error_WinWGL_CreateDummyContext_Fail, Error_WinWGL_MakeDummyContextCurrent_Fail, Error_WinWGL_GetDC_Fail, Error_WinWGL_ChoosePixelFormat_Fail, Error_WinWGL_DescribePixelFormat_Fail, Error_WinWGL_SetPixelFormat_WhileInitContext_Fail, }; #define TOYXRESULT_RETURN_IF_FAIL(value) \ { \ ToyXResult result = (value); /* call only once */ \ if ((result) != ToyXResult::Success) \ return result; \ } using ToyUtility::uint8; using ToyUtility::int8; using ToyUtility::uint16; using ToyUtility::int16; using ToyUtility::uint32; using ToyUtility::int32; using ToyUtility::uint64; using ToyUtility::int64; enum class KeyType { __Invalid = -2, __Unknown = -1, __Begin = 0, // Printable key Space = 32, Apostrophe = 39, // ' Comma = 44, // , Minus = 45, // - Period = 46, // . Slash = 47, // / _0 = 48, _1 = 49, _2 = 50, _3 = 51, _4 = 52, _5 = 53, _6 = 54, _7 = 55, _8 = 56, _9 = 57, Semicolon = 59, // ; Equal = 61, // = A = 65, B = 66, C = 67, D = 68, E = 69, F = 70, G = 71, H = 72, I = 73, J = 74, K = 75, L = 76, M = 77, N = 78, O = 79, P = 80, Q = 81, R = 82, S = 83, T = 84, U = 85, V = 86, W = 87, X = 88, Y = 89, Z = 90, LeftBracket = 91, // [ BackSlash = 92, // \ RightBracket = 93, // ] GraveAccent = 96, // ` // Function keys Escape = 256, Enter, Tab, Backspace, Insert, Delete, Right, Left, Down, Up, PageUp, PageDown, Home, End, CapsLock, ScrollLock, NumberLock, PrintScreen, Pause, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22, F23, F24, F25, LeftShift, LeftControl, LeftAlt, LeftSuper, RightShift, RightControl, RightAlt, RightSuper, Menu, // Keypad Keypad_0, Keypad_1, Keypad_2, Keypad_3, Keypad_4, Keypad_5, Keypad_6, Keypad_7, Keypad_8, Keypad_9, Keypad_Decimal, Keypad_Divide, Keypad_Multiply, Keypad_Subtact, Keypad_Add, Keypad_Enter, Keypad_Equal, __End, }; enum class ModifierKeyType { Shift = 1 << 0, Control = 1 << 1, Alt = 1 << 2, Super = 1 << 3, }; enum class KeyAction { Press, Release, R // TODOH }; enum class CursorMode { Normal, Disabled, Hidden, }; enum class ButtonState { Press, Release, R // TODOH }; enum class MouseButtonType { __Begin, Left, Right, Middle, _4, _5, __End, }; enum class WindowContextNativeApiType { Win_DX11, Win_WGL, MacOS_CGL, Linux_EGL, Android_EGL, }; struct XWINDOW_API_STARTUP_DESC { WindowContextNativeApiType WindowContextNativeApi; // TODOH: more configure options }; struct ScrollDesc { ScrollDesc() : IsMouse(true) {} bool IsMouse; union { struct { float XOffset, YOffset; } NormalScroll; struct { ToyUtility::int32 XOffset, YOffset; } MouseScroll; } Scroll; }; struct SampleDesc { static SampleDesc NoMultiSampling; SampleDesc() : Count(1), Quality(0) {} SampleDesc(ToyUtility::uint32 count, ToyUtility::uint32 quality) : Count(count), Quality(quality) {} ToyUtility::uint32 Count; // The number of multisamples per pixel ToyUtility::uint32 Quality; // The image quality level. The higher the quality, the lower the performance }; struct ModeDesc { ModeDesc() : Width(0), Height(0) {} ToyUtility::uint32 Width; // resolution width ToyUtility::uint32 Height; // resolution height ToyUtility::Rational RefreshRate; // refresh rate in hertz // TODOH: format, scanlineOrdering, scaling }; enum class ProfileType { Any = 0, OpenGL_Core = 0x00032001, OpenGL_Compat = 0x00032002, }; enum class ReleaseType { Any = 0, OpenGL_Flush = 0x00035001, OpenGL_None = 0x00035002, }; enum class RobustnessType { None, OpenGL_NO_RESET_NOTIFICATION = 0x00031001, OpenGL_LOSE_CONTEXT_ON_RESET = 0x00031002, }; struct ContextConfig { static ContextConfig WinWGLDefault; ContextConfig() : client(0), source(0), major(3), minor(3), forward(0), debug(0), noerror(0), profile(ProfileType::OpenGL_Core), robustness(RobustnessType::None), release(ReleaseType::Any) {} int client; int source; int major; int minor; bool forward; bool debug; bool noerror; ProfileType profile; RobustnessType robustness; ReleaseType release; //_GLFWwindow* share; }; struct FrameBufferConfig { static FrameBufferConfig Default; FrameBufferConfig() : RedBits(8), GreenBits(8), BlueBits(8), AlphaBits(8), DepthBits(24), StencilBits(8), AccumRedBits(0), AccumGreenBits(0), AccumBlueBits(0), AccumAlphaBits(0), AuxBuffers(0), Stereo(0), Samples(0), sRGB(0), Doublebuffer(1), Handle(0) {} int RedBits; int GreenBits; int BlueBits; int AlphaBits; int DepthBits; int StencilBits; int AccumRedBits; int AccumGreenBits; int AccumBlueBits; int AccumAlphaBits; int AuxBuffers; bool Stereo; int Samples; bool sRGB; bool Doublebuffer; uintptr_t Handle; }; struct WINDOW_DESC { WINDOW_DESC() : Title(""), Windowed(true), BufferCount(1) {} ToyUtility::String Title; ToyUtility::Rect2I WindowRect; bool Windowed; // Windowed mode ModeDesc BufferDesc; // Describing the backbuffer display mode SampleDesc SampleDesc; // describing multi-sampling ToyUtility::uint32 BufferCount; // Back buffer count }; const int XWINDOW_DONT_CARE = -1; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/details/WinWGLWindow.h
<reponame>morrow1nd/ToyXWindow #pragma once #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyXWindow/details/WinWindow.h" #include "ToyXWindow/details/WinWGLCommonType.h" namespace ToyXWindow { class WinWGLWindow : public WinWindow { public: WinWGLWindow(const WinWGLContext& context) : c_Context(context) {} public: virtual void PresentBackBuffer(uint32 syncInterval) override; protected: virtual ToyXResult InitContext() override; virtual void DeInitContext() override; public: void _MakeCurrentContext(); private: int _ChoosePixelFormat(const FrameBufferConfig& desired); // Returns the specified attribute of the specified pixel format int _GetPixelFormatAttrib(int pixelFormat, int attrib); // TODOM: this function can be placed in CommonType.h const FrameBufferConfig* _ChooseFrameBufferConfig(const FrameBufferConfig* desired, const FrameBufferConfig* alternatives, unsigned int count); private: const WinWGLContext& c_Context; HDC m_WglDC; HGLRC m_WglHandle; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/details/WinDX11Window.h
<reponame>morrow1nd/ToyXWindow<gh_stars>0 #pragma once #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyXWindow/details/WinWindow.h" #include "ToyXWindow/details/WinDX11CommonType.h" namespace ToyXWindow { class WinDX11Window : public WinWindow { public: WinDX11Window(const WinDX11Context& context) : c_Context(context), m_SwapChain(nullptr), m_RenderTargetView(nullptr), m_DepthStencil(nullptr), m_DepthStencilView(nullptr) {} public: virtual void PresentBackBuffer(uint32 syncInterval) override; protected: virtual ToyXResult InitContext() override; virtual void DeInitContext() override; public: void _MakeCurrentContext(); private: const WinDX11Context& c_Context; IDXGISwapChain* m_SwapChain; ID3D11RenderTargetView* m_RenderTargetView; ID3D11Texture2D* m_DepthStencil; ID3D11DepthStencilView* m_DepthStencilView; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/IWindow.h
#pragma once #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyUtility/String/String.h" #include "ToyUtility/Memory/SmartPtr.h" #include "ToyXWindow/CommonType.h" namespace ToyXWindow { class IWindow; using HWindow = IWindow*; #define ShouldCloseFuncArguList #define ShouldCloseFuncParaList #define WindowSizeFuncArguList uint32 width, uint32 height #define WindowSizeFuncParaList width, height #define FrameBufferSizeFuncArguList uint32 width, uint32 height #define FrameBufferSizeFuncParaList width, height #define PosFuncArguList int32 xpos, int32 ypos #define PosFuncParaList xpos, ypos #define IconifyFuncArguList bool isIconified #define IconifyFuncParaList isIconified #define FocusFuncArguList bool focused #define FocusFuncParaList focused #define WindowNeedRefreshFuncArguList #define WindowNeedRefreshFuncParaList #define KeyFuncArguList KeyType key, int scancode, KeyAction action, int modifiers #define KeyFuncParaList key, scancode, action, modifiers #define CursorPosFuncArguList float xpos, float ypos #define CursorPosFuncParaList xpos, ypos #define CursorPosDeltaFuncArguList float xdelta, float ydelta #define CursorPosDeltaFuncParaList xdelta, ydelta #define CursorEnterLeaveFuncArguList bool isEnter #define CursorEnterLeaveFuncParaList isEnter #define MouseButtonFuncArguList MouseButtonType button, KeyAction action, int modifiers #define MouseButtonFuncParaList button, action, modifiers #define ScrollFuncArguList const ScrollDesc& scroll #define ScrollFuncParaList scroll #define DropFuncArguList int count, const char** texts #define DropFuncParaList count, texts using ShouldCloseFunc = std::function<void(HWindow)>; using WindowSizeFunc = std::function<void(HWindow, WindowSizeFuncArguList)>; using FrameBufferSizeFunc = std::function<void(HWindow, FrameBufferSizeFuncArguList)>; using PosFunc = std::function<void(HWindow, PosFuncArguList)>; using IconifyFunc = std::function<void(HWindow, IconifyFuncArguList)>; using FocusFunc = std::function<void(HWindow, FocusFuncArguList)>; using WindowNeedRefreshFunc = std::function<void(HWindow)>; using KeyFunc = std::function<void(HWindow, KeyFuncArguList)>; using CursorPosFunc = std::function<void(HWindow, CursorPosFuncArguList)>; using CursorPosDeltaFunc = std::function<void(HWindow, CursorPosDeltaFuncArguList)>; using CursorEnterLeaveFunc = std::function<void(HWindow, CursorEnterLeaveFuncArguList)>; using MouseButtonFunc = std::function<void(HWindow, MouseButtonFuncArguList)>; using ScrollFunc = std::function<void(HWindow, ScrollFuncArguList)>; using DropFunc = std::function<void(HWindow, DropFuncArguList)>; class IWindow { public: virtual ~IWindow() = default; public: ////////////////////////////////////////////////////////////////////////////////// // Init virtual ToyXResult Create(const WINDOW_DESC& desc) = 0; virtual void Destory() = 0; ////////////////////////////////////////////////////////////////////////////////// // Window // Is windowed-mode window virtual bool IsWindowed() const = 0; // When the user attempts to close the window, for example by clicking the close widget // or using a key chord like Alt + F4, the close flag of the window is set. virtual bool ShouldClose() = 0; // Set should-close flag virtual void SetShouldClose(bool b) = 0; // Be notified when the user attempts to close the window virtual void SetShouldCloseCallback(ShouldCloseFunc callback) = 0; // Get window's size in screen coordinates virtual void GetWindowSize(uint32* width, uint32* height) = 0; // For windowed mode windows, this sets the size, in screen coordinates of the client area // or content area of the window. For full screen windows, nothing happenes. virtual void SetWindowSize(uint32 width, uint32 height) = 0; // Be notified when a window is resized, whether by the user or the system virtual void SetWindowSizeCallback(WindowSizeFunc callback) = 0; // The above functions work with the size of the client area, but decorated windows typically // have title bars and window frames around this rectangle. You can retrieve the extents of // these with GetWindowFrameSize. // The returned values are the distances, in screen coordinates, from the edges of the client // area to the corresponding edges of the full window. As they are distances and not coordinates, // they are always zero or positive. virtual void GetWindowFrameSize(uint32* left, uint32* top, uint32* right, uint32* bottom) = 0; // The size of a framebuffer may change independently of the size of a window, for example if the // window is dragged between a regular monitor and a high-DPI one. // The size of a window is measured in screen coordinates, this function return the framebuffer size // of a window. (in pixels) virtual void GetFrameBufferSize(uint32* width, uint32* height) = 0; virtual void SetFrameBufferSizeCallback(FrameBufferSizeFunc callback) = 0; // Sets the size limits of the client area of the specified window. If this window is full screen // or not resizeable, this function does nothing. // Arguments can be XWINDOW_DONT_CARE virtual void SetWindowSizeLimits(uint32 minWidth, uint32 minHeight, uint32 maxWidth, uint32 maxHeight) = 0; // The aspect ratio of the client area of a windowed mode window can be enforced with this function. // To disable this function, set both terms to XWINDOW_DONT_CARE virtual void SetAspectRatio(uint32 width, uint32 height) = 0; // The position of a windowed-mode window can be changed with this function. This moves the window // so that the upper-left corner of its client area has the specified screen coordinates. virtual void SetPos(int32 xpos, int32 ypos) = 0; virtual void SetPosCallback(PosFunc callback) = 0; virtual void GetPos(int32* xpos, int32* ypos) = 0; // Get window title virtual const ToyUtility::String& GetTitle() const = 0; virtual void SetTitle(const ToyUtility::String& title) = 0; // TODOL: Window icon // TODOM: MaximizeWindow see glfw:win32_window.c:L1224, L1347 // TODOM: Window monitor // Minimized virtual void Iconify() = 0; virtual void Restore() = 0; virtual void SetIconifyCallback(IconifyFunc callback) = 0; // Get the current iconification(i.e. is minimized) virtual bool IsIconified() = 0; // Windowed-mode windows can be hidden. This makes the window completely invisible to the user, // including removing it from the task bar, dock or window list. Full screen windows cannot be // hidden and calling Hide on a full screen window does nothing. virtual void Hide() = 0; virtual void Show() = 0; // Get the current visibility state of the window virtual bool IsVisible() = 0; // Window can be given input focus and brought to the front virtual void Focus() = 0; // Be notified when a window gains or loses input focus, whether by the user, system or your own code virtual void SetFocusCallback(FocusFunc callback) = 0; // Get current focus state virtual bool IsFocused() = 0; // Window demage and refresh // Be notified when the contents of a window is damaged and needs to be refreshed virtual void SetWindowNeedRefreshCalback(WindowNeedRefreshFunc callback) = 0; // TODOH: more http://www.glfw.org/docs/latest/window_guide.html#window_attribs ////////////////////////////////////////////////////////////////////////////////// // Buffer Swapping // @syncInterval: An integer that specifies the how to synchronize presentation of a frame with the // vertical blank.Values are : // 0 - The presentation occurs immediately, there is no synchronization. // 1, 2, 3, 4 - Synchronize presentation after the n'th vertical blank. virtual void PresentBackBuffer(uint32 syncInterval) = 0; ////////////////////////////////////////////////////////////////////////////////// // Keyboard // The scancode is unique for every key, regardless of whether it has a key token. Scancodes are // platform-specific but consistent over time. virtual void SetKeyCallback(KeyFunc callback) = 0; virtual ButtonState GetKey(KeyType key) = 0; virtual const ToyUtility::String& GetKeyName(KeyType key) const = 0; ////////////////////////////////////////////////////////////////////////////////// // Mouse // This function returns the position of the cursor, in screen coordinates, relative // to the upper-left corner of the client area of the specified window. virtual void GetCursorPos(float* xpos, float* ypos) = 0; virtual void SetCursorPosCallback(CursorPosFunc callback) = 0; virtual void SetCursorPos(float xpos, float ypos) = 0; virtual void GetCursorPosDelta(float* xdelta, float* ydelta) = 0; virtual void SetCursorPosDeltaCallback(CursorPosDeltaFunc callback) = 0; virtual void SetCursorMode(CursorMode mode) = 0; virtual CursorMode GetCursorMode() = 0; // TODOM: cursor objects virtual void SetCursorEnterLeaveCallback(CursorEnterLeaveFunc callback) = 0; // Mouse button input virtual void SetMouseButtonCallback(MouseButtonFunc callback) = 0; virtual ButtonState GetMouseButton(MouseButtonType type) = 0; // If you wish to be notified when the user scrolls, whether with a mouse wheel or touchpad gesture, // set a scroll callback. virtual void SetScrollCallback(ScrollFunc callback) = 0; ////////////////////////////////////////////////////////////////////////////////// // Others // Clipboard input and output virtual const ToyUtility::String& GetClipboardString() const = 0; virtual void SetClipboardString(const ToyUtility::String& text) = 0; // Drop input virtual void SetDropCallback(DropFunc callback) = 0; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/details/OpenGLCommonType.h
<reponame>morrow1nd/ToyXWindow #pragma once #include "ToyUtility/Prerequisites/PreDefine.h" namespace ToyXWindow { #define GL_VERSION 0x1f02 #define GL_NONE 0 #define GL_COLOR_BUFFER_BIT 0x00004000 #define GL_EXTENSIONS 0x1f03 #define GL_NUM_EXTENSIONS 0x821d #define GL_CONTEXT_FLAGS 0x821e #define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x00000001 #define GL_CONTEXT_FLAG_DEBUG_BIT 0x00000002 #define GL_CONTEXT_PROFILE_MASK 0x9126 #define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 #define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 #define GL_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 #define GL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 #define GL_NO_RESET_NOTIFICATION_ARB 0x8261 #define GL_CONTEXT_RELEASE_BEHAVIOR 0x82fb #define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x82fc #define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/details/WinBaseXWindowImpl.h
<gh_stars>0 #pragma once #include <Windows.h> #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyXWindow/details/XWindowImpl.h" #include "ToyXWindow/details/WinWindow.h" namespace ToyXWindow { class WinBaseXWindowImpl : public XWindowImpl { public: // Create key code translation tables static void _CreateKeycodeTables(); // Translates a Windows key to the corresponding ToyXWindow key static KeyType _TranslateKey(WPARAM wParam, LPARAM lParam); static KeyType NativeKeyToPublicKey(int32 scancode); static int32 PublicKeyToNativeKey(KeyType key); static int GetKeyModifiers(); protected: const ToyUtility::String WindowsWindowClassName = "ToyXWindowClass"; private: static ToyUtility::int16 m_PublicKeys[512]; static ToyUtility::int16 m_NativeKeys[(int)KeyType::__End]; public: virtual ToyXResult StartUp(const XWINDOW_API_STARTUP_DESC& desc) override; virtual void ShutDown() override; virtual void GetPlatformDependentData(PlatformDependentData& data) override; virtual void PollEvents() override; virtual void WaitEvents() override; virtual void WaitEventsTimeout(float time) override; virtual void PostEmptyEvent() override; virtual void SetMainWindow(ToyUtility::SPtr<IWindow> window) override; public: HINSTANCE GetProgramInstance() { return m_ProgramInstance; } protected: HWND GetHelperWindowHandle() { return m_HelperWindowHandle; } private: bool _RegisterWindowsWindowClass(); void _UnRegisterWindowsWindowClass(); ToyXResult _CreateHelperWindow(); void _DestroyHelperWindow(); private: ToyUtility::SPtr<WinWindow> m_MainWindow; HINSTANCE m_ProgramInstance; HWND m_HelperWindowHandle; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/details/XWindowImpl.h
<reponame>morrow1nd/ToyXWindow #pragma once #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyUtility/Memory/SmartPtr.h" #include "ToyXWindow/CommonType.h" #include "ToyXWindow/IAdapter.h" #include "ToyXWindow/IWindow.h" #ifdef CreateWindow # undef CreateWindow #endif namespace ToyXWindow { class XWindowImpl { public: static ToyUtility::SPtr<XWindowImpl> FactoryCreate(WindowContextNativeApiType type); public: virtual ToyXResult StartUp(const XWINDOW_API_STARTUP_DESC& desc) = 0; virtual void ShutDown() = 0; virtual void GetPlatformDependentData(PlatformDependentData& data) = 0; virtual void PollEvents() = 0; virtual void WaitEvents() = 0; virtual void WaitEventsTimeout(float time) = 0; virtual void PostEmptyEvent() = 0; virtual ToyUtility::SPtr<IAdapter> GetDefaultAdapter() = 0; virtual const ToyUtility::List<ToyUtility::SPtr<IAdapter>>& GetAdapters() const = 0; virtual ToyUtility::SPtr<IWindow> CreateWindow(const WINDOW_DESC& desc) = 0; virtual void SetMainWindow(ToyUtility::SPtr<IWindow> window) = 0; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/XWindowAPI.h
#pragma once #include "ToyUtility/Prerequisites/PreDefine.h" #include "ToyUtility/DesignPattern/ISingleton.h" #include "ToyUtility/Memory/SmartPtr.h" #include "ToyXWindow/CommonType.h" #include "ToyXWindow/IAdapter.h" #include "ToyXWindow/IWindow.h" #include "ToyXWindow/details/XWindowImpl.h" namespace ToyXWindow { // It provides a platform independent API for creating windows, contexts, // getting keyboard, mouse, touch event, handling clipboard, path drop input and so on. class XWindowAPI : public ToyUtility::ISingleton<XWindowAPI> { public: XWindowAPI(); //////////////////////////////////////////////////////////////////////////////////// // Init ToyXResult StartUp(const XWINDOW_API_STARTUP_DESC& desc); void ShutDown(); void GetPlatformDependentData(PlatformDependentData& data); //////////////////////////////////////////////////////////////////////////////////// // Event process // Event processing must be done regularly while you have any windows and is normally // done each frame after buffer swapping. // PollEvent processes only those events that have already been received and then returns immediately. // This is the best choice when rendering continually, like most games do. void PollEvents(); // If you only need to update the contents of the window when you receive new input, WaitEvents is a // better choice. It puts the thread to sleep until at least one event has been received and then // processes all received events. This saves a great deal of CPU cycles and is useful for, for example, // editing tools. There must be at least one GLFW window for this function to sleep. void WaitEvents(); void WaitEventsTimeout(float time); // If the main thread is sleeping in WaitEvents, you can wake it from another thread by posting // an empty event to the event queue with PostEmptyEvent. void PostEmptyEvent(); //////////////////////////////////////////////////////////////////////////////////// // Adapter and window ToyUtility::SPtr<IAdapter> GetDefaultAdapter(); const ToyUtility::List<ToyUtility::SPtr<IAdapter>>& GetAdapters() const; ToyUtility::SPtr<IWindow> CreateWindow(const WINDOW_DESC& desc); void SetMainWindow(ToyUtility::SPtr<IWindow> window); private: bool m_StartUpSucc; ToyUtility::SPtr<XWindowImpl> m_PlatformImpl; }; } // end of namespace ToyXWindow
morrow1nd/ToyXWindow
Include/ToyXWindow/details/WinDX11CommonType.h
#pragma once #include <dxgi.h> #include <d3d11.h> #include <d3dcompiler.h> #include "ToyUtility/Prerequisites/PreDefine.h" #ifdef CreateWindow # undef CreateWindow #endif namespace ToyXWindow { struct WinDX11Context { WinDX11Context() : Factory(nullptr), Device(nullptr), DeviceContext(nullptr), ProgramInstance(0), FeatureLevel(D3D_FEATURE_LEVEL_11_0) {} IDXGIFactory* Factory; ID3D11Device* Device; ID3D11DeviceContext* DeviceContext; D3D_FEATURE_LEVEL FeatureLevel; HINSTANCE ProgramInstance; }; } // end of namespace ToyXWindow
LoganBarnes/ltb-ddf
.idea/fileTemplates/internal/C Source File.c
#parse("C File Header.h") #if (${HEADER_FILENAME}) #[[#include]]# "${HEADER_FILENAME}" #end namespace ltb::ddf {} // namespace ddf
LoganBarnes/ltb-ddf
.idea/fileTemplates/internal/C Header File.h
#parse("C File Header.h") #pragma once namespace ltb::ddf {} // namespace ddf
coalpha/winsdk
src/winsdk.c
#define WIN32_LEAN_AND_MEAN #include <windows.h> #include <shellapi.h> wchar_t const usage[] = L"winsdk\n" L" --kit:{um, ucrt}\n" L" --type:{include, lib}\n" L" [--arch:{x86, x64, arm, arm64}] (required if --type:lib)\n" L" [--version:10.0.00000.0] (12 characters max)\n"; wchar_t const regKey[] = L"SOFTWARE\\WOW6432Node\\Microsoft\\Microsoft SDKs\\Windows\\v10.0"; wchar_t const regVal[] = L"InstallationFolder"; #define SDK_VERSION_LENGTH 12 #define QWORD unsigned long long #define DWORD_PTR *(DWORD *) #define QWORD_PTR *(size_t *) int __stdcall start(void) { HANDLE const hStdout = GetStdHandle(STD_OUTPUT_HANDLE); if (hStdout == INVALID_HANDLE_VALUE) { goto BAD_END_WINDOWS; } enum kit {kit_bottom, um, ucrt} kit = kit_bottom; enum type {type_bottom, include, lib} type = type_bottom; enum arch {arch_bottom, x86, x64, arm, arm64} arch = arch_bottom; wchar_t const *restrict version = NULL; { int argc; wchar_t const *const *restrict argv = (wchar_t const **) CommandLineToArgvW(GetCommandLineW(), &argc); if (argc < 3 || argc > 5) { goto BAD_END_USAGE; } while (*++argv) { wchar_t const *restrict arg = *argv; // all command line arguments should start with "--" if (DWORD_PTR arg != DWORD_PTR L"--") { goto BAD_END_USAGE; } // --kit: if (QWORD_PTR (arg + 2) == QWORD_PTR L"kit:") { if (kit != kit_bottom) { goto BAD_END_USAGE; } // all valid options begin with "u" // --kit:u if (arg[6] != L'u') { goto BAD_END_USAGE; } // --kit:um if (DWORD_PTR (arg + 7) == DWORD_PTR L"m") { kit = um; continue; } // --kit:ucrt if (QWORD_PTR (arg + 7) == QWORD_PTR L"crt") { kit = ucrt; continue; } goto BAD_END_USAGE; } // --????: if (arg[6] == L':') { // --type: if (QWORD_PTR (arg + 2) == QWORD_PTR L"type") { if (type != type_bottom) { goto BAD_END_USAGE; } // --type:lib if (QWORD_PTR (arg + 7) == QWORD_PTR L"lib") { type = lib; continue; } // --type:include if (1 && QWORD_PTR (arg + 7) == QWORD_PTR L"incl" && QWORD_PTR (arg + 11) == QWORD_PTR L"ude" ) { type = include; continue; } goto BAD_END_USAGE; } // --arch: if (QWORD_PTR (arg + 2) == QWORD_PTR L"arch") { if (arch != arch_bottom) { goto BAD_END_USAGE; } // --arch:x86 if (QWORD_PTR (arg + 7) == QWORD_PTR L"x86") { arch = x86; continue; } // --arch:x64 if (QWORD_PTR (arg + 7) == QWORD_PTR L"x64") { arch = x64; continue; } // --arch:arm if (QWORD_PTR (arg + 7) == QWORD_PTR L"arm") { arch = arm; continue; } // --arch:arm64 if (1 && QWORD_PTR (arg + 7) == QWORD_PTR L"arm6" && DWORD_PTR (arg + 11) == DWORD_PTR L"4" ) { arch = arm64; continue; } goto BAD_END_USAGE; } } // --version: if (1 && QWORD_PTR (arg + 2) == QWORD_PTR L"vers" && QWORD_PTR (arg + 6) == QWORD_PTR L"ion:" ) { if (version) { goto BAD_END_USAGE; } version = arg + 10; continue; } goto BAD_END_USAGE; } } DWORD regVal_sz; // get the size of the key { LSTATUS const res = RegGetValueW( HKEY_LOCAL_MACHINE, regKey, regVal, RRF_RT_REG_SZ, NULL, NULL, &regVal_sz ); if (res != ERROR_SUCCESS) { goto BAD_END_WINDOWS; } } // eventually we are going to have something like // C:\Program Files (x86)\Windows Kits\10\include\10.0.00000.0\ucrt size_t SdkPath_sz = 0 + regVal_sz // null byte used for path separator + sizeof(L"lib") + sizeof(L"10.0.00000.0") + sizeof(L"ucrt") // longest --kit option + sizeof(L"arm64") + 8; // extra 4 wchars in case or something wchar_t *const SdkPath = HeapAlloc(GetProcessHeap(), 0, SdkPath_sz); if (SdkPath == NULL) { goto BAD_END_WINDOWS; } { LSTATUS const res = RegGetValueW( HKEY_LOCAL_MACHINE, regKey, regVal, RRF_RT_REG_SZ, NULL, SdkPath, &regVal_sz ); if (res != ERROR_SUCCESS) { goto BAD_END_WINDOWS; } } // write head starts at the \0 from the registry value wchar_t *SdkPath_wh = SdkPath + (regVal_sz / sizeof(wchar_t) - 1); switch (type) { case include: QWORD_PTR SdkPath_wh = QWORD_PTR L"incl" ; SdkPath_wh += 4; QWORD_PTR SdkPath_wh = QWORD_PTR L"ude\\"; SdkPath_wh += 4; break; case lib: if (arch == arch_bottom) { goto BAD_END_USAGE; } QWORD_PTR SdkPath_wh = QWORD_PTR L"lib\\"; SdkPath_wh += 4; break; case type_bottom: goto BAD_END_USAGE; }; if (version) { size_t version_len = 0; while (*version) { *SdkPath_wh++ = *version++; version_len++; } if (version_len != SDK_VERSION_LENGTH) { goto BAD_END_USAGE; } } else { DWORD_PTR SdkPath_wh = DWORD_PTR L"*"; WIN32_FIND_DATAW dir; HANDLE hFind = FindFirstFileW(SdkPath, &dir); if (hFind == INVALID_HANDLE_VALUE) { goto BAD_END_WINDOWS; } register QWORD currentVersion0 = 0; register QWORD currentVersion1 = 0; register QWORD currentVersion2 = 0; // find the latest version by "string" comparison while (FindNextFileW(hFind, &dir)) { { BYTE cFileName_len = 0; while (dir.cFileName[cFileName_len]) { cFileName_len++; } if (cFileName_len != SDK_VERSION_LENGTH) { continue; } } QWORD const nextVersion0 = QWORD_PTR (dir.cFileName + 0); QWORD const nextVersion1 = QWORD_PTR (dir.cFileName + 4); QWORD const nextVersion2 = QWORD_PTR (dir.cFileName + 8); if (nextVersion0 < currentVersion0) { continue; } if (nextVersion0 > currentVersion0) { goto select_next_version; } if (nextVersion1 < currentVersion1) { continue; } if (nextVersion1 > currentVersion1) { goto select_next_version; } if (nextVersion2 <= currentVersion2) { continue; } select_next_version: currentVersion0 = nextVersion0; currentVersion1 = nextVersion1; currentVersion2 = nextVersion2; } QWORD_PTR SdkPath_wh = currentVersion0; SdkPath_wh += 4; QWORD_PTR SdkPath_wh = currentVersion1; SdkPath_wh += 4; QWORD_PTR SdkPath_wh = currentVersion2; SdkPath_wh += 4; } *SdkPath_wh++ = L'\\'; switch (kit) { case kit_bottom: goto BAD_END_USAGE; case um: DWORD_PTR SdkPath_wh = DWORD_PTR L"um" ; SdkPath_wh += 2; break; case ucrt: QWORD_PTR SdkPath_wh = QWORD_PTR L"ucrt"; SdkPath_wh += 4; break; } if (type == lib) { switch (arch) { case arch_bottom: goto BAD_END_USAGE; case x86: QWORD_PTR SdkPath_wh = QWORD_PTR L"\\x86"; SdkPath_wh += 4; break; case x64: QWORD_PTR SdkPath_wh = QWORD_PTR L"\\x64"; SdkPath_wh += 4; break; case arm: QWORD_PTR SdkPath_wh = QWORD_PTR L"\\arm"; SdkPath_wh += 4; break; case arm64: QWORD_PTR SdkPath_wh = QWORD_PTR L"\\arm"; SdkPath_wh += 4; DWORD_PTR SdkPath_wh = DWORD_PTR L"64" ; SdkPath_wh += 2; } } DWORD miscDword; if (GetConsoleMode(hStdout, &miscDword)) { WriteConsoleW( hStdout, SdkPath, SdkPath_wh - SdkPath, &regVal_sz, NULL ); } else { // convert from utf16 to ascii char *SdkPath_wh2 = (char *) SdkPath + 1; wchar_t *SdkPath_rh2 = SdkPath + 1; while (SdkPath_rh2 <= SdkPath_wh) { *SdkPath_wh2++ = *SdkPath_rh2++; } WriteFile( hStdout, SdkPath, SdkPath_wh2 - (char *) SdkPath - 1, &miscDword, NULL ); } return 0; BAD_END_USAGE: WriteConsoleW( GetStdHandle(STD_ERROR_HANDLE), usage, sizeof(usage) / sizeof(WCHAR) - 1, (DWORD *) &hStdout, 0 ); return 1; BAD_END_WINDOWS: return GetLastError(); }
iconation/common-lib-cpp
src/common/http/http.h
#pragma once #include <curl/curl.h> #include <string> namespace ICONation::Common::Http { class Client { // Allocators public: Client(void); ~Client(void); // HTTP Methods public: void get(const std::string &url, std::string &out); std::string post(const std::string &url, const std::string &params); // CURL private: void init(void); void cleanup(void); CURL *m_curl; }; } // namespace ICONation::Common::Http
iconation/common-lib-cpp
src/common/jsonrpc/jsonrpc.h
#pragma once #include <nlohmann/json.hpp> #include "common/http/http.h" namespace ICONation::Common::JsonRPC { class Client { // Allocators public: Client(const std::string &endpoint); ~Client(void); // Commands public: nlohmann::json call(const std::string &method, const nlohmann::json &params); // Http Client private: std::string m_endpoint; Http::Client m_http; }; } // namespace ICONation::Common::JsonRPC
iconation/common-lib-cpp
src/common/http/exception.h
<gh_stars>0 #pragma once #include <exception> #include <string> #include <fmt/format.h> #include <curl/curl.h> namespace ICONation::Common::Http::Exception { struct CurlError : public std::runtime_error { CurlError(const std::string &url, CURLcode code) throw() : std::runtime_error(fmt::format("URL={} : Error={}", url, curl_easy_strerror(code))) {} }; } // namespace ICONation::Common::Http::Exception
iconation/common-lib-cpp
src/common/exception/exception.h
#pragma once #include <exception> #include <fmt/format.h> #include <fmt/ostream.h> #include <openssl/err.h> namespace ICONation::Common::Exception { struct Unimplemented : public std::runtime_error { Unimplemented(const std::string &message) throw() : std::runtime_error(message) {} virtual char const *what(void) const throw() { return exception::what(); } }; struct OpenSSLError : public std::runtime_error { OpenSSLError(const std::string &message) throw() : std::runtime_error(fmt::format("{} : {}", message, ERR_error_string(ERR_get_error(), NULL))) {} }; struct InvalidSize : public std::runtime_error { InvalidSize(const std::string &data, size_t expectedSize) throw() : std::runtime_error(fmt::format("'{}' : size is '{}', should be '{}'", data, data.size(), expectedSize)) {} InvalidSize(const std::vector<unsigned char> &data, size_t expectedSize) throw() : std::runtime_error(fmt::format("'{}' : size is '{}', should be '{}'", &data[0], data.size(), expectedSize)) {} InvalidSize(size_t actualSize, size_t expectedSize) throw() : std::runtime_error(fmt::format("Size is '{}', should be '{}'", actualSize, expectedSize)) {} }; struct InternalError : public std::runtime_error { InternalError(const std::string &message) throw() : std::runtime_error(message) {} virtual char const *what(void) const throw() { return exception::what(); } }; } // namespace ICONation::Common::Exception
iconation/common-lib-cpp
src/common/crypto/base64.h
<filename>src/common/crypto/base64.h #pragma once #include <string> #include <vector> namespace ICONation::Common::Crypto { class Base64 { // Allocators public: Base64(void) = default; ~Base64(void) = default; public: std::string encode(const std::vector<unsigned char> &buffer); std::vector<unsigned char> decode(const std::string &str); }; } // namespace ICONation::Common::Crypto
iconation/common-lib-cpp
src/common/application/application.h
<gh_stars>0 #pragma once #include <string> #include <memory> namespace ICONation::Common::Application { class Application { // Allocators public: Application(int argc, char **argv); virtual ~Application(void) = default; // Binary name public: std::string binary_name(void) { return m_binary_name; }; protected: std::string m_binary_name; // Main loop public: int run(void); private: virtual int main(void) = 0; // Usage public: virtual void print_usage(void) = 0; }; } // namespace ICONation::Common::Application
iconation/common-lib-cpp
src/common/dbg/dbg.h
<filename>src/common/dbg/dbg.h #pragma once #include <spdlog/spdlog.h> #include <fmt/format.h> #include <fmt/ostream.h> namespace ICONation::Common::Dbg { template <typename String, typename... Args> inline void info(const String &format_str, const Args &... args) { spdlog::info(fmt::format(format_str, args...)); } template <typename String, typename... Args> inline void error(const String &format_str, const Args &... args) { spdlog::error(fmt::format(format_str, args...)); } template <typename String, typename... Args> inline void warn(const String &format_str, const Args &... args) { spdlog::warn(fmt::format(format_str, args...)); } inline void set_pattern(std::string pattern, spdlog::pattern_time_type time_type = spdlog::pattern_time_type::local) { spdlog::set_pattern(pattern, time_type); } } // namespace ICONation::Common::Dbg
loginsinex/smb2
smb2/h/GUI/Dialogs/Editor/cnewitemdlg.h
class CNewItemDlg: public CDialog { CDialog * m_pDlg[4]; CEntrancePtrDlg m_dlgEntrancePtr; CGroundSetDlg m_dlgGroundSet; CItemSizeDlg m_dlgItemSize; CEntrancePtrDlg m_dlgPointer; BOOL m_fEditMode; BYTE m_bRequestConnectedPtr; struct { CNesEditor *pvEditor; DWORD dwItem; } m_Item; struct { BOOL fEnemy; NES_LEVEL_ITEM nItem; NES_LEVEL_ENEMY nEnemy; BYTE bGroundType; } m_NewItem; VOID OnInit(LPARAM lParam); VOID OnCommand(USHORT uCmd, USHORT uId, HWND hWnd); VOID ShowProp(INT i); VOID OnOK(); VOID OnCancel(); public: CNewItemDlg(HINSTANCE hInstance); CNewItemDlg(HINSTANCE hInstance, CNesEditor * pvEditor, DWORD iItem); BOOL GetData(PNES_LEVEL_ITEM pItem, PNES_LEVEL_ENEMY pEnemy, PBYTE pbGroundType, PBOOL pfEnemy); BYTE GetDataEx(); };
loginsinex/smb2
smb2/h/GUI/Wrapper/Controls/clistview.h
<filename>smb2/h/GUI/Wrapper/Controls/clistview.h class CListView: public CControl { HWND m_hHeader; public: INT AddItem(DWORD pszText, LPARAM lParam); INT AddItem(LPCTSTR pszText, LPARAM lParam); INT InsertItem(INT iAfterItem, LPCTSTR pszText, LPARAM lParam); void SetItem(INT iItem, INT iSubItem, LPCTSTR pszText); void SetItem(INT iItem, INT iSubItem, DWORD dwValue); void DeleteItem(INT iItem); void Param(INT iItem, LPARAM lParam); LPARAM Param(INT iItem); void ResetContent(); void CurSel(INT iItem); INT CurSel(); INT Count(); INT State(INT iItem); void State(INT iItem, INT iState); BOOL Selected(INT iItem); void Selected(INT iItem, BOOL fSelected); BOOL Check(INT iItem); void Check(INT iItem, BOOL fCheck); BOOL ItemRect(INT iItem, INT code, LPRECT lprc); INT ColumnWidth(INT iColumn); void ScrollToVisible(); BOOL GetItemText(INT iItem, INT iSubItem, CString & text); CString GetItemText(INT iItem, INT iSubItem); void AddColumn(LPCTSTR pszText, INT cx = -1); void ExtendedStyle(DWORD dwStyle); DWORD ExtendedStyle(); CListView() : m_hHeader( NULL ) { }; };
loginsinex/smb2
smb2/h/GUI/Wrapper/cdialog.h
#define SPINVAL(x) ( dSendMessage((x), UDM_GETPOS) ) #define SPINSET(x, a) ( dSendMessage((x), UDM_SETPOS, 0, MAKELONG((a), 0)) ) #define SPINRANGE(x, a, b) ( dSendMessage((x), UDM_SETRANGE, 0, MAKELONG((a), (b))) ) #define SPINERR(x) ( 0 != ( HIWORD(SPINVAL(x) ) ) ) class CPropSheet; typedef enum _tagCTLBRUSH { ctlbNone = 0, ctlbBtn = 1, ctlbDlg = 2, ctlbEdit = 3, ctlbList = 4, ctlbScroll = 5, ctlbStatic = 6, ctlbMbox = 7 } CTLBRUSH; void CreateNewDialogClass(HINSTANCE hInstance, LPCTSTR pszNewClass); #define SHELL_FONT L"MS Shell Dlg" #define MAX_FIELD_TEXT 300 #ifndef DS_SHELLFONT #define DS_SHELLFONT (DS_SETFONT | DS_FIXEDSYS) #endif typedef enum _tagDLG_ITEM_PRECLASS { cCustom = 0x0000, cButton = 0x0080, cEdit = 0x0081, cStatic = 0x0082, cListbox = 0x0083, cScrollbar = 0x0084, cCombobox = 0x0085 } DLG_ITEM_PRECLASS, *PDLG_ITEM_PRECLASS; typedef struct _tagDLG_TPL { WORD dlgVer; WORD signature; DWORD helpID; DWORD exStyle; DWORD style; WORD cDlgItems; short x; short y; short cx; short cy; struct { WCHAR pszMenu[MAX_FIELD_TEXT]; USHORT uId; } menuId; struct { WCHAR pszClassName[MAX_FIELD_TEXT]; USHORT atomId; } dlgClass; WCHAR pszTitle[MAX_FIELD_TEXT]; WORD pointsize; WORD weight; BYTE italic; BYTE charset; WCHAR typeface[MAX_FIELD_TEXT]; } DLG_TPL, *PDLG_TPL; typedef struct _tagDLG_ITEM { DWORD helpID; DWORD exStyle; DWORD style; short x; short y; short cx; short cy; DWORD id; struct { WCHAR windowClass[MAX_FIELD_TEXT]; DLG_ITEM_PRECLASS cPreClass; } cls; WCHAR title[MAX_PATH]; WORD extraCount; PBYTE pvExtraData; } DLG_ITEM, *PDLG_ITEM; class CDialogTemplate { PBYTE m_pTemplate; BOOL m_fTemplateChanged; DLG_TPL m_dlgTpl; std::vector<DLG_ITEM> m_vdlgItems; int StrCopy(LPWSTR pszDest, LPCTSTR pszSrc, int len = 0); INT GetDlgItemTemplate(DLG_ITEM & di, PBYTE pBuffer); PBYTE AddData(PVOID pData, int dataLen, PBYTE pBuffer); PBYTE AddDataAligned(PVOID pData, int dataLen, PBYTE pBuffer); PBYTE AddDataAligned4(PVOID pData, int dataLen, PBYTE pBuffer); public: CDialogTemplate(); ~CDialogTemplate(); void SetDlgTitle(LPCTSTR pszTitle); void SetDlgStyle(DWORD style, DWORD styleEx); void SetDlgPos(int x, int y, int cx, int cy); void SetDlgFont(LPCTSTR pszFont, WORD size, WORD weight, BOOL fItalic, BYTE bCharset); void SetDlgMenu(LPCTSTR pszMenu); void SetDlgExtra(DWORD helpId); void SetDlgClass(LPCTSTR pszClass); void SetDlgClass(WORD atomId); void AddStyle(DWORD dwStyle); void AddExStyle(DWORD dwStyle); int AddItem(USHORT uId, DLG_ITEM_PRECLASS cls, LPCTSTR pszCaption, int x, int y, int cx, int cy, DWORD style = 0, DWORD exStyle = 0, DWORD helpId = 0, PVOID pvExtraData = NULL, int extraLen = 0); int AddItem(USHORT uId, LPCTSTR pszClass, LPCTSTR pszCaption, int x, int y, int cx, int cy, DWORD style = 0, DWORD exStyle = 0, DWORD helpId = 0, PVOID pvExtraData = NULL, int extraLen = 0); int AddPreItem(USHORT uId, DLG_ITEM_PRECLASS cls, LPCTSTR pszCaption, int x, int y, int cx, int cy, DWORD style = 0, BOOL fVisible = TRUE, BOOL fEnable = TRUE, BOOL fTabStop = TRUE); int AddPreItem(USHORT uId, LPCTSTR pszClass, LPCTSTR pszCaption, int x, int y, int cx, int cy, DWORD style = 0, BOOL fVisible = TRUE, BOOL fEnable = TRUE, BOOL fTabStop = TRUE); LPCDLGTEMPLATE Template(); }; class CDialog { HINSTANCE m_hInstance; LPTSTR m_lpszResource; HWND m_hWnd; LPARAM m_lUserParam; CDialog *m_pParent; CPropSheet *m_pPropSheet; vector<CSizeAnchor*> m_vAncList; CString m_sResStr; TCHAR m_pszMaxPath[MAX_PATH + 1]; std::map<USHORT, HBRUSH> m_mBrushList; BOOL m_fNeedPostQuit; BOOL m_fDenyCalls; BOOL m_fWindowDestroyed; BOOL m_fShowModeless; CDialogTemplate m_dlgTemplate; struct { HBRUSH hBtnBrush; HBRUSH hDlgBrush; HBRUSH hEditBrush; HBRUSH hListBoxBrush; HBRUSH hScrollBrush; HBRUSH hStaticBrush; HBRUSH hMsgBox; } m_vBrushes; static INT_PTR CALLBACK PropSheetDialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); static INT_PTR CALLBACK DialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); VOID InitAnchors(); VOID InternalOnSize(UINT fwSizeType, SHORT cx, SHORT cy); VOID InternalOnSizing(UINT fwSizeType, LPRECT lprc); INT_PTR InternalOnNotify(LPNMHDR lpnm); INT_PTR InternalOnPSNotify(UINT code, LPPSHNOTIFY lpnm); void InternalOnCommand(USHORT uCmd, USHORT uId, HWND hCtl); HBRUSH InternalOnColorDialog(HDC hDCDialog, HWND hDlg, UINT wmCtl); void InternalOnDestroy(); INT MsgBox(const TCHAR * lpszText, DWORD dwMsgBoxFlags); CDialogTemplate & Dialog(); protected: CDwmApi m_dwm; CDialog(HINSTANCE hInstance, LPTSTR lpszResource); CDialog(HINSTANCE hInstance); virtual ~CDialog(); void MainWindow(); void Close(UINT uRet); void SetCtlFont(USHORT uId, CFont & cFont); void SetCtlText(USHORT uId, LPCTSTR lpszText); CString GetCtlText(USHORT uId); void SetBgBrush(HBRUSH hBrush, CTLBRUSH ctlb); HBRUSH GetBgBrush(CTLBRUSH ctlb); void SetBgSysColor(UINT uSysColor, CTLBRUSH ctlb); void SetBgDialogColor(COLORREF clr); void SetBgCtlColor(COLORREF clr, USHORT uId); BOOL GetRect(USHORT uId, LPRECT lprc, BOOL fPos = FALSE); CString MB_GetString(UINT wButton); virtual void OnPreInit(CDialogTemplate & t); virtual void OnInit(LPARAM lParam); virtual BOOL OnClose(INT & iRetCode); virtual void OnDestroy(); virtual INT_PTR OnNotify(LPNMHDR lpnm); virtual void OnCommand(USHORT uCmd, USHORT uId, HWND hCtl); virtual void OnButton(USHORT uId); virtual void OnOK(); virtual void OnCancel(); virtual void OnPaint(HDC hDC, LPPAINTSTRUCT lpps); virtual void OnSize(UINT fwSizeType, SHORT cx, SHORT cy); virtual void OnSizing(UINT fwSizeType, LPRECT lprc); virtual INT OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL & pHandle); virtual HBRUSH OnColorDialog(HDC hDCDialog, HWND hDlg, CTLBRUSH ctlb); virtual INT PSOnApply(); virtual void PSOnHelp(); virtual BOOL PSOnKillActive(); virtual BOOL PSOnQueryCancel(); virtual void PSOnRest(); virtual INT PSOnSetActive(); virtual void OnThemeChanged(); virtual void OnSysColorChanged(); public: HWND Create(CDialog * pParent = NULL, LPARAM lUserParam = 0); INT Show(CDialog * pParent = NULL, LPARAM lUserParam = 0); HWND GetWindowHandle(); HWND Ctl(USHORT uCtlId); HINSTANCE GetInstance(); CDialog *Parent(); CPropSheet *PS(); INT_PTR dSendMessage(USHORT uCtlId, UINT uMsg, WPARAM wParam = 0, LPARAM lParam = NULL); INT DoLoop(HWND hWndAccel = NULL, HACCEL hAccel = NULL); operator HWND(); virtual HWND GetCustomMenu(); // MessageBoxes void ShowMessageF(const TCHAR * tpl, ...); void ShowMessage(const TCHAR * lpszText); BOOL Confirm(const TCHAR * lpszText, BOOL bDefaultNo = FALSE); void ShowWarning(const TCHAR * lpszText); void ShowError(const TCHAR * lpszText); void ShowErrorF(const TCHAR * lpszText, ...); CString OpenFile(LPCTSTR pszDefault, ...); CString SaveFile(LPCTSTR pszDefault, ...); VOID AddAnchor(UINT uId, UINT uAnchorType); VOID AddCustomAnchor(UINT uId, AnchorType left, AnchorType top, AnchorType right, AnchorType bottom); VOID UpdateAnchor(USHORT uId); LPTSTR GetString(UINT uRes); CString GetStr(UINT uRes); CString Title(); void Title(CString sTitle); VOID Visible(BOOL fVisible); BOOL Visible(); VOID Visible(USHORT uId, BOOL fVisible); BOOL Visible(USHORT uId); VOID Enable(BOOL bEnableWindow); BOOL Enable(); VOID Enable(USHORT uId, BOOL bEnableCtl); BOOL Enable(USHORT uId); VOID EnableAll(BOOL bEnable, ...); VOID ShowAll(BOOL bEnable, ...); VOID CheckAll(BOOL bCheck, ...); UINT Checked(USHORT uId); BOOL IsWindowDestroyed(); friend CPropSheet; };
loginsinex/smb2
smb2/h/GUI/Wrapper/Controls/ctrackbar.h
class CTrackBar: public CControl { public: VOID SetMinMax(UINT min, UINT max); VOID Pos(UINT uPos); UINT Pos(); };
loginsinex/smb2
smb2/h/NES/cnesitemslist.h
<reponame>loginsinex/smb2 template <class T> class CNesItemsList { struct { BOOL fRemoveSelf; std::vector<T*> vList; } ItemsList; VOID AllocItemsList(); VOID DestroyItemsList(); protected: CNesItemsList(BOOL fRemoveSelf = FALSE); virtual ~CNesItemsList(); BOOL AppendItemToList(T * pItem); BOOL InsertItemToList(DWORD i, T * pItem); BOOL DeleteFromItemsList(DWORD i); T* ItemFromList(DWORD i); BOOL Swap(DWORD i1, DWORD i2); public: DWORD SizeOfItemsList(); }; template <class T> CNesItemsList<T>::CNesItemsList(BOOL fRemoveSelf) { ItemsList.fRemoveSelf = fRemoveSelf; AllocItemsList(); } template <class T> CNesItemsList<T>::~CNesItemsList() { DestroyItemsList(); } template <class T> VOID CNesItemsList<T>::AllocItemsList() { ItemsList.vList.reserve(100); } template <class T> VOID CNesItemsList<T>::DestroyItemsList() { if ( ItemsList.fRemoveSelf ) { while(SizeOfItemsList() > 0) { delete ItemsList.vList[ItemsList.vList.size() - 1]; DeleteFromItemsList(ItemsList.vList.size() - 1); } } else ItemsList.vList.clear(); } template <class T> DWORD CNesItemsList<T>::SizeOfItemsList() { return ItemsList.vList.size(); } template <class T> BOOL CNesItemsList<T>::AppendItemToList(T * pItem) { ItemsList.vList.push_back(pItem); return ( ItemsList.vList.size() > 0 ); } template <class T> BOOL CNesItemsList<T>::InsertItemToList(DWORD i, T * pItem) { if ( i < ItemsList.vList.size() ) ItemsList.vList.insert(ItemsList.vList.begin() + i, pItem); else return AppendItemToList(pItem); return ( ItemsList.vList.size() > 0 ); } template <class T> BOOL CNesItemsList<T>::DeleteFromItemsList(DWORD i) { if ( i >= SizeOfItemsList() ) return FALSE; ItemsList.vList.erase(ItemsList.vList.begin() + i); return TRUE; } template <class T> T* CNesItemsList<T>::ItemFromList(DWORD i) { if ( i >= SizeOfItemsList() ) return NULL; return ItemsList.vList[i]; } template <class T> BOOL CNesItemsList<T>::Swap(DWORD i1, DWORD i2) { if ( i1 >= SizeOfItemsList() || i2 >= SizeOfItemsList() ) return FALSE; if ( i1 == i2 ) return TRUE; T * nit = *(ItemsList.vList.begin() + i1); *(ItemsList.vList.begin() + i1) = *(ItemsList.vList.begin() + i2); *(ItemsList.vList.begin() + i2) = nit; return TRUE; }
loginsinex/smb2
smb2/h/NES/cnesenemydata.h
extern const LPTSTR g_pszEnemies[]; typedef struct _tagNES_LEVEL_ENEMY { union { BYTE pData[2]; struct { BYTE id; BYTE y:4; BYTE x:4; } Object; } Enemy; POINT pt; INT iPage; } NES_LEVEL_ENEMY, *PNES_LEVEL_ENEMY; class CNesEnemyData: public CNesItemsList<NES_LEVEL_ENEMY> { DWORD m_dwPages; DWORD m_dwLinkedToLevel; DWORD m_dwSizeOfEnemies; VOID StoreSizeOfEnemies(); BOOL FlushObjects(); BOOL RereadPoints(); DWORD ItemsFromPage(INT iPage, PNES_LEVEL_ENEMY nItems, DWORD dwCount); public: CNesEnemyData(); ~CNesEnemyData(); BOOL LoadData(PBYTE ptr, int size, DWORD dwLinkedLevel = -1); BOOL LoadEnemyData(std::vector<NES_LEVEL_ENEMY> & pItemsList, DWORD dwCount, DWORD dwPagesCount); NES_LEVEL_ENEMY LevelEnemy(DWORD index); DWORD SizeOfEnemies(); DWORD CountPages(); BOOL MakeByteArray(PBYTE * pArray, LPDWORD lpdwCount); BOOL IsLinkedLevel(); DWORD LinkLevel(); DWORD AddRef(); DWORD Release(); };
loginsinex/smb2
smb2/h/GUI/Dialogs/clvloptionsdlg.h
class CLvlOptionsDlg: public CDialog { CFileLoader & m_File; void OnInit(LPARAM lParam); void OnButton(USHORT uId); struct { CComboBox cbGamma1; CComboBox cbGamma2; CComboBox cbGroundType; CComboBox cbGround; CComboBox cbMusic; CTrackBar tbLength; } m_ctl; public: CLvlOptionsDlg(CFileLoader & fl, HINSTANCE hInstance); void CheckData(); };
loginsinex/smb2
smb2/h/GUI/Wrapper/Controls/crebar.h
class CRebarWindow: public CControl { public: INT InsertBand(REBARBANDINFO * lpBand); INT Count(); INT InsertBand(HWND hWnd, LPARAM lParam = 0, BOOL fBreak = FALSE, BOOL fMovable = TRUE, BOOL fTopAlign = FALSE, LPCTSTR pszText = NULL, int cx = -1); INT Width(int idBand); void Width(int idBand, int cx); };
loginsinex/smb2
smb2/h/GUI/Dialogs/clvlobjdlg.h
<gh_stars>1-10 class CLvlObjDlg: public CDialog { CNesEditor & m_Level; CListView m_lv; struct { DWORD dwCount; std::vector<NES_LEVEL_ITEM> pItems; } m_CurrentItems; VOID OnInit(LPARAM lParam); VOID OnOK(); public: CLvlObjDlg(HINSTANCE hInstance, CNesEditor & Level); VOID CurrentList(std::vector<NES_LEVEL_ITEM> & pItems, DWORD dwCount); };