file
stringlengths
18
26
data
stringlengths
3
1.04M
the_stack_data/224241.c
/* Usage: float huber(float x); Returns Huber weight function for scaled residual x = r/d where d is the scale factor (i.e. this routine assumes data are prescaled) Author: Gary Pavlis Written: June 1992 Reference: Chave and Thompson (1989) JGR, 94, p. 14217. */ #define HUBER_PARAMETER_A 1.5 /* Parameter "a" in Huber weight formula */ #include <math.h> float huber(float x) { if(fabs((double)x)<=HUBER_PARAMETER_A) return(1.0); else return((float)(HUBER_PARAMETER_A/fabs((double)x))); } /* $Id$ */
the_stack_data/84319.c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ typedef struct TYPE_10__ TYPE_5__ ; typedef struct TYPE_9__ TYPE_4__ ; typedef struct TYPE_8__ TYPE_3__ ; typedef struct TYPE_7__ TYPE_2__ ; typedef struct TYPE_6__ TYPE_1__ ; /* Type definitions */ typedef scalar_t__ u32 ; typedef void* u16 ; struct TYPE_10__ {scalar_t__ mclk; scalar_t__ sclk; scalar_t__ vddc; scalar_t__ vddci; int /*<<< orphan*/ flags; } ; struct rv7xx_ps {int dc_compatible; TYPE_5__ high; TYPE_5__ medium; TYPE_5__ low; } ; struct radeon_ps {int dummy; } ; struct radeon_clock_and_voltage_limits {scalar_t__ mclk; scalar_t__ sclk; scalar_t__ vddc; scalar_t__ vddci; } ; struct TYPE_7__ {scalar_t__ min_vddc_for_pcie_gen2; struct radeon_clock_and_voltage_limits max_clock_voltage_on_dc; int /*<<< orphan*/ vddc_dependency_on_dispclk; int /*<<< orphan*/ vddc_dependency_on_mclk; int /*<<< orphan*/ vddci_dependency_on_mclk; int /*<<< orphan*/ vddc_dependency_on_sclk; struct radeon_clock_and_voltage_limits max_clock_voltage_on_ac; } ; struct TYPE_8__ {int new_active_crtc_count; int ac_power; TYPE_2__ dyn_state; } ; struct TYPE_9__ {TYPE_3__ dpm; } ; struct TYPE_6__ {scalar_t__ current_dispclk; } ; struct radeon_device {TYPE_4__ pm; TYPE_1__ clock; } ; /* Variables and functions */ int /*<<< orphan*/ ATOM_PPLIB_R600_FLAGS_PCIEGEN2 ; int /*<<< orphan*/ btc_adjust_clock_combinations (struct radeon_device*,struct radeon_clock_and_voltage_limits*,TYPE_5__*) ; int /*<<< orphan*/ btc_apply_voltage_delta_rules (struct radeon_device*,scalar_t__,scalar_t__,scalar_t__*,scalar_t__*) ; int /*<<< orphan*/ btc_apply_voltage_dependency_rules (int /*<<< orphan*/ *,scalar_t__,scalar_t__,scalar_t__*) ; scalar_t__ btc_dpm_vblank_too_short (struct radeon_device*) ; int /*<<< orphan*/ btc_skip_blacklist_clocks (struct radeon_device*,scalar_t__,scalar_t__,scalar_t__*,scalar_t__*) ; struct rv7xx_ps* rv770_get_ps (struct radeon_ps*) ; __attribute__((used)) static void btc_apply_state_adjust_rules(struct radeon_device *rdev, struct radeon_ps *rps) { struct rv7xx_ps *ps = rv770_get_ps(rps); struct radeon_clock_and_voltage_limits *max_limits; bool disable_mclk_switching; u32 mclk, sclk; u16 vddc, vddci; if ((rdev->pm.dpm.new_active_crtc_count > 1) || btc_dpm_vblank_too_short(rdev)) disable_mclk_switching = true; else disable_mclk_switching = false; if (rdev->pm.dpm.ac_power) max_limits = &rdev->pm.dpm.dyn_state.max_clock_voltage_on_ac; else max_limits = &rdev->pm.dpm.dyn_state.max_clock_voltage_on_dc; if (rdev->pm.dpm.ac_power == false) { if (ps->high.mclk > max_limits->mclk) ps->high.mclk = max_limits->mclk; if (ps->high.sclk > max_limits->sclk) ps->high.sclk = max_limits->sclk; if (ps->high.vddc > max_limits->vddc) ps->high.vddc = max_limits->vddc; if (ps->high.vddci > max_limits->vddci) ps->high.vddci = max_limits->vddci; if (ps->medium.mclk > max_limits->mclk) ps->medium.mclk = max_limits->mclk; if (ps->medium.sclk > max_limits->sclk) ps->medium.sclk = max_limits->sclk; if (ps->medium.vddc > max_limits->vddc) ps->medium.vddc = max_limits->vddc; if (ps->medium.vddci > max_limits->vddci) ps->medium.vddci = max_limits->vddci; if (ps->low.mclk > max_limits->mclk) ps->low.mclk = max_limits->mclk; if (ps->low.sclk > max_limits->sclk) ps->low.sclk = max_limits->sclk; if (ps->low.vddc > max_limits->vddc) ps->low.vddc = max_limits->vddc; if (ps->low.vddci > max_limits->vddci) ps->low.vddci = max_limits->vddci; } /* XXX validate the min clocks required for display */ if (disable_mclk_switching) { sclk = ps->low.sclk; mclk = ps->high.mclk; vddc = ps->low.vddc; vddci = ps->high.vddci; } else { sclk = ps->low.sclk; mclk = ps->low.mclk; vddc = ps->low.vddc; vddci = ps->low.vddci; } /* adjusted low state */ ps->low.sclk = sclk; ps->low.mclk = mclk; ps->low.vddc = vddc; ps->low.vddci = vddci; btc_skip_blacklist_clocks(rdev, max_limits->sclk, max_limits->mclk, &ps->low.sclk, &ps->low.mclk); /* adjusted medium, high states */ if (ps->medium.sclk < ps->low.sclk) ps->medium.sclk = ps->low.sclk; if (ps->medium.vddc < ps->low.vddc) ps->medium.vddc = ps->low.vddc; if (ps->high.sclk < ps->medium.sclk) ps->high.sclk = ps->medium.sclk; if (ps->high.vddc < ps->medium.vddc) ps->high.vddc = ps->medium.vddc; if (disable_mclk_switching) { mclk = ps->low.mclk; if (mclk < ps->medium.mclk) mclk = ps->medium.mclk; if (mclk < ps->high.mclk) mclk = ps->high.mclk; ps->low.mclk = mclk; ps->low.vddci = vddci; ps->medium.mclk = mclk; ps->medium.vddci = vddci; ps->high.mclk = mclk; ps->high.vddci = vddci; } else { if (ps->medium.mclk < ps->low.mclk) ps->medium.mclk = ps->low.mclk; if (ps->medium.vddci < ps->low.vddci) ps->medium.vddci = ps->low.vddci; if (ps->high.mclk < ps->medium.mclk) ps->high.mclk = ps->medium.mclk; if (ps->high.vddci < ps->medium.vddci) ps->high.vddci = ps->medium.vddci; } btc_skip_blacklist_clocks(rdev, max_limits->sclk, max_limits->mclk, &ps->medium.sclk, &ps->medium.mclk); btc_skip_blacklist_clocks(rdev, max_limits->sclk, max_limits->mclk, &ps->high.sclk, &ps->high.mclk); btc_adjust_clock_combinations(rdev, max_limits, &ps->low); btc_adjust_clock_combinations(rdev, max_limits, &ps->medium); btc_adjust_clock_combinations(rdev, max_limits, &ps->high); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk, ps->low.sclk, max_limits->vddc, &ps->low.vddc); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddci_dependency_on_mclk, ps->low.mclk, max_limits->vddci, &ps->low.vddci); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddc_dependency_on_mclk, ps->low.mclk, max_limits->vddc, &ps->low.vddc); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddc_dependency_on_dispclk, rdev->clock.current_dispclk, max_limits->vddc, &ps->low.vddc); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk, ps->medium.sclk, max_limits->vddc, &ps->medium.vddc); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddci_dependency_on_mclk, ps->medium.mclk, max_limits->vddci, &ps->medium.vddci); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddc_dependency_on_mclk, ps->medium.mclk, max_limits->vddc, &ps->medium.vddc); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddc_dependency_on_dispclk, rdev->clock.current_dispclk, max_limits->vddc, &ps->medium.vddc); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk, ps->high.sclk, max_limits->vddc, &ps->high.vddc); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddci_dependency_on_mclk, ps->high.mclk, max_limits->vddci, &ps->high.vddci); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddc_dependency_on_mclk, ps->high.mclk, max_limits->vddc, &ps->high.vddc); btc_apply_voltage_dependency_rules(&rdev->pm.dpm.dyn_state.vddc_dependency_on_dispclk, rdev->clock.current_dispclk, max_limits->vddc, &ps->high.vddc); btc_apply_voltage_delta_rules(rdev, max_limits->vddc, max_limits->vddci, &ps->low.vddc, &ps->low.vddci); btc_apply_voltage_delta_rules(rdev, max_limits->vddc, max_limits->vddci, &ps->medium.vddc, &ps->medium.vddci); btc_apply_voltage_delta_rules(rdev, max_limits->vddc, max_limits->vddci, &ps->high.vddc, &ps->high.vddci); if ((ps->high.vddc <= rdev->pm.dpm.dyn_state.max_clock_voltage_on_dc.vddc) && (ps->medium.vddc <= rdev->pm.dpm.dyn_state.max_clock_voltage_on_dc.vddc) && (ps->low.vddc <= rdev->pm.dpm.dyn_state.max_clock_voltage_on_dc.vddc)) ps->dc_compatible = true; else ps->dc_compatible = false; if (ps->low.vddc < rdev->pm.dpm.dyn_state.min_vddc_for_pcie_gen2) ps->low.flags &= ~ATOM_PPLIB_R600_FLAGS_PCIEGEN2; if (ps->medium.vddc < rdev->pm.dpm.dyn_state.min_vddc_for_pcie_gen2) ps->medium.flags &= ~ATOM_PPLIB_R600_FLAGS_PCIEGEN2; if (ps->high.vddc < rdev->pm.dpm.dyn_state.min_vddc_for_pcie_gen2) ps->high.flags &= ~ATOM_PPLIB_R600_FLAGS_PCIEGEN2; }
the_stack_data/1135779.c
/**************************************************************** * * The author of this software is David M. Gay. * * Copyright (c) 1991, 1996 by Lucent Technologies. * * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that this entire notice * is included in all copies of any software which is or includes a copy * or modification of this software and in all copies of the supporting * documentation for such software. * * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED * WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. * ***************************************************************/ /* g_fmt(buf,x) stores the closest decimal approximation to x in buf; * it suffices to declare buf * char buf[32]; */ #ifdef __cplusplus extern "C" { #endif extern char *dtoa(double, int, int, int *, int *, char **); extern char *g_fmt(char *, double); extern void freedtoa(char*); #ifdef __cplusplus } #endif char * g_fmt(register char *b, double x) { register int i, k; register char *s; int decpt, j, sign; char *b0, *s0, *se; b0 = b; #ifdef IGNORE_ZERO_SIGN if (!x) { *b++ = '0'; *b = 0; goto done; } #endif s = s0 = dtoa(x, 0, 0, &decpt, &sign, &se); if (sign) *b++ = '-'; if (decpt == 9999) /* Infinity or Nan */ { while(*b++ = *s++); goto done0; } if (decpt <= -4 || decpt > se - s + 5) { *b++ = *s++; if (*s) { *b++ = '.'; while(*b = *s++) b++; } *b++ = 'e'; /* sprintf(b, "%+.2d", decpt - 1); */ if (--decpt < 0) { *b++ = '-'; decpt = -decpt; } else *b++ = '+'; for(j = 2, k = 10; 10*k <= decpt; j++, k *= 10); for(;;) { i = decpt / k; *b++ = i + '0'; if (--j <= 0) break; decpt -= i*k; decpt *= 10; } *b = 0; } else if (decpt <= 0) { *b++ = '.'; for(; decpt < 0; decpt++) *b++ = '0'; while(*b++ = *s++); } else { while(*b = *s++) { b++; if (--decpt == 0 && *s) *b++ = '.'; } for(; decpt > 0; decpt--) *b++ = '0'; *b = 0; } done0: freedtoa(s0); #ifdef IGNORE_ZERO_SIGN done: #endif return b0; }
the_stack_data/42291.c
/** * @file tokens.c * (Auto-generated) Tokens declaration */ char * token_type_names[] = { "TOKTYPE_SPACE", "TOKTYPE_TAB", "TOKTYPE_NEWLINE", "TOKTYPE_DQUOTE", "TOKTYPE_QUOTE", "TOKTYPE_LCBRACKET", "TOKTYPE_RCBRACKET", "TOKTYPE_LSBRACKET", "TOKTYPE_RSBRACKET", "TOKTYPE_LPAREN", "TOKTYPE_RPAREN", "TOKTYPE_COLON", "TOKTYPE_SEMICOLON", "TOKTYPE_PIPE", "TOKTYPE_CIRCUMFLEX", "TOKTYPE_EQUAL", "TOKTYPE_DOT", "TOKTYPE_UNDERSCORE", "TOKTYPE_DOLLAR", "TOKTYPE_COMMA", "TOKTYPE_AMP", "TOKTYPE_HASH", "TOKTYPE_LOWER", "TOKTYPE_GREATER", "TOKTYPE_PLUS", "TOKTYPE_MINUS", "TOKTYPE_STAR", "TOKTYPE_SLASH", "TOKTYPE_PERCENT", "TOKTYPE_EXCL", "TOKTYPE_EQEQUAL", "TOKTYPE_NOTEQUAL", "TOKTYPE_GEQUAL", "TOKTYPE_LEQUAL", "TOKTYPE_COLEQUAL", "TOKTYPE_PIPEPIPE", "TOKTYPE_AMPAMP", "TOKTYPE_IDENT", "TOKTYPE_STRING", "TOKTYPE_INT", "TOKTYPE_DOUBLE", "TOKTYPE_COMMENT", };
the_stack_data/145454057.c
/* Taxonomy Classification: 0000000100000054000010 */ /* * WRITE/READ 0 write * WHICH BOUND 0 upper * DATA TYPE 0 char * MEMORY LOCATION 0 stack * SCOPE 0 same * CONTAINER 0 no * POINTER 0 no * INDEX COMPLEXITY 1 variable * ADDRESS COMPLEXITY 0 constant * LENGTH COMPLEXITY 0 N/A * ADDRESS ALIAS 0 none * INDEX ALIAS 0 none * LOCAL CONTROL FLOW 0 none * SECONDARY CONTROL FLOW 0 none * LOOP STRUCTURE 5 non-standard do-while * LOOP COMPLEXITY 4 three * ASYNCHRONY 0 no * TAINT 0 no * RUNTIME ENV. DEPENDENCE 0 no * MAGNITUDE 0 no overflow * CONTINUOUS/DISCRETE 1 continuous * SIGNEDNESS 0 no */ /* Copyright 2005 Massachusetts Institute of Technology All rights reserved. Redistribution and use of software 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 set of conditions and the disclaimer below. - Redistributions in binary form must reproduce the copyright notice, this set of conditions, and the disclaimer below in the documentation and/or other materials provided with the distribution. - Neither the name of the Massachusetts Institute of Technology nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS". 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. */ int main(int argc, char *argv[]) { int init_value; int test_value; int inc_value; int loop_counter; char buf[10]; init_value = 0; test_value = 9; inc_value = 9 - (9 - 1); loop_counter = init_value; do { /* OK */ buf[loop_counter] = 'A'; } while((loop_counter += inc_value) && (loop_counter <= test_value)); return 0; }
the_stack_data/173579118.c
#include <stdio.h> #include <malloc.h> #define LEN sizeof(struct student) struct student { long num; int score; struct student *next; }; struct student *create(int n) { struct student *head=NULL,*p1=NULL,*p2=NULL; int i; for(i=1; i<=n; i++) { p1=(struct student *)malloc(LEN); scanf("%ld",&p1->num); scanf("%d",&p1->score); p1->next=NULL; if(i==1) head=p1; else p2->next=p1; p2=p1; } return(head); } struct student *insert(struct student *head, struct student *stud) { struct student *p0,*p1,*p2; p1=head; p0=stud; if(head==NULL) { head=p0; } else { while( (p0->num > p1->num) && (p1->next!=NULL) ) { p2=p1; p1=p1->next; } if( p0->num <= p1->num ) { if( head==p1 ) head=p0; else p2->next=p0; p0->next=p1; } else { p1->next=p0; } } return(head); } struct student *del(struct student *head,long num) { struct student *p1,*p2; p1=head; while(p1!=NULL) { if(p1->num == num) { if(p1 == head) head=p1->next; else p2->next=p1->next; free(p1); break; } p2=p1; p1=p1->next; } return(head); } void print(struct student *head) { struct student *p; p=head; while(p!=NULL) { printf("%8ld%8d",p->num,p->score); p=p->next; printf("\n"); } } struct student *sort(struct student *head) { if (head == NULL) { return NULL; } if (head->next == NULL) { return head; } struct student *p = head; struct student *tmep, *q, *minNode; struct student *newHead = (struct student *)malloc(LEN); newHead->next = NULL; while (p) { q = p; long minVal = q->num; minNode = q; while (q) { if (minVal > q->num) { minVal = q->num; minNode = q; } q = q->next; } struct student *newNode = (struct student *)malloc(LEN); newNode->num = minNode->num; newNode->score = minNode->score; newNode->next = NULL; newHead->next = insert(newHead->next, newNode); p = del(p, minNode->num); } return newHead->next; } int main() { struct student *head,*stu; int n; scanf("%d",&n); head=create(n); print(head); head=sort(head); print(head); return 0; }
the_stack_data/420927.c
int main() { // when people do n * 2 it is semantically equivalent to n << 1 (base 10 vs base 2) int n = 10; int a = n << 1; // int b = n * 2; return 0; }
the_stack_data/29743.c
/*------------------------------------------------------------------------- _modslonglong.c - routine for modulo of 64 bit unsigned long long Copyright (C) 2014, Philipp Klaus Krause . [email protected] This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, if you link this library with other files, some of which are compiled with SDCC, to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. -------------------------------------------------------------------------*/ #pragma std_c99 #include <stdint.h> #include <stdbool.h> #ifdef __SDCC_LONGLONG long long _modslonglong (long long numerator, long long denominator) { bool numeratorneg = (numerator < 0); bool denominatorneg = (denominator < 0); long long r; if (numeratorneg) numerator = -numerator; if (denominatorneg) denominator = -denominator; r = (unsigned long long)numerator % (unsigned long long)denominator; return ((numeratorneg ^ denominatorneg) ? -r : r); } #endif
the_stack_data/1071610.c
#include<stdio.h> #include<stdlib.h> #include<time.h> int main() { int i,a[10],j,p,t; srand((unsigned)time(NULL)); for(i=0;i<10;i++) { a[i]=rand()%100+1; } for(i=0;i<9;i++) { p=i; for(j=i+1;j<10;j++) { if(a[j]<a[p]) { p=j; } } t=a[p]; a[p]=a[i]; a[i]=t; } for(i=0;i<10;i++) printf("a[%d]=%d\t",i,a[i]); printf("\n"); return 0; }//随机数从小到大排列
the_stack_data/32949489.c
// 6 kyu // A String of Sorts #include <stdlib.h> #include <string.h> const char *g = NULL; int get_order(const char *a, const char *b) { size_t ao = (ao = strchr(g, *a)) ? 1 + ao - (long)g : 0; size_t bo = (bo = strchr(g, *b)) ? 1 + bo - (long)g : 0; return (ao * bo) ? ao - bo : ao ? -ao : bo; } char * sort_string(char *string, const char *ordering) { string = strdup(string); g = ordering; qsort(string, strlen(string), 1, &get_order); return string; }
the_stack_data/95449172.c
/** ****************************************************************************** * @file stm32h7xx_ll_spi.c * @author MCD Application Team * @brief SPI LL module driver. ****************************************************************************** * @attention * * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use this file except in compliance with the * License. You may obtain a copy of the License at: * opensource.org/licenses/BSD-3-Clause * ****************************************************************************** */ #if defined(USE_FULL_LL_DRIVER) /* Includes ------------------------------------------------------------------*/ #include "stm32h7xx_ll_spi.h" #include "stm32h7xx_ll_bus.h" #include "stm32h7xx_ll_rcc.h" #ifdef GENERATOR_I2S_PRESENT #include "stm32h7xx_ll_rcc.h" #endif /* GENERATOR_I2S_PRESENT*/ #ifdef USE_FULL_ASSERT #include "stm32_assert.h" #else #define assert_param(expr) ((void)0) #endif /** @addtogroup STM32H7xx_LL_Driver * @{ */ #if defined(SPI1) || defined(SPI2) || defined(SPI3) || defined(SPI4) || defined(SPI5) || defined(SPI6) /** @addtogroup SPI_LL * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /* Private macros ------------------------------------------------------------*/ /** @addtogroup SPI_LL_Private_Macros * @{ */ #define IS_LL_SPI_MODE(__VALUE__) (((__VALUE__) == LL_SPI_MODE_MASTER) \ || ((__VALUE__) == LL_SPI_MODE_SLAVE)) #define IS_LL_SPI_SS_IDLENESS(__VALUE__) (((__VALUE__) == LL_SPI_SS_IDLENESS_00CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_01CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_02CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_03CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_04CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_05CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_06CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_07CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_08CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_09CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_10CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_11CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_12CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_13CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_14CYCLE) \ || ((__VALUE__) == LL_SPI_SS_IDLENESS_15CYCLE)) #define IS_LL_SPI_ID_IDLENESS(__VALUE__) (((__VALUE__) == LL_SPI_ID_IDLENESS_00CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_01CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_02CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_03CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_04CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_05CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_06CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_07CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_08CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_09CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_10CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_11CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_12CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_13CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_14CYCLE) \ || ((__VALUE__) == LL_SPI_ID_IDLENESS_15CYCLE)) #define IS_LL_SPI_TXCRCINIT_PATTERN(__VALUE__) (((__VALUE__) == LL_SPI_TXCRCINIT_ALL_ZERO_PATTERN) \ || ((__VALUE__) == LL_SPI_TXCRCINIT_ALL_ONES_PATTERN)) #define IS_LL_SPI_RXCRCINIT_PATTERN(__VALUE__) (((__VALUE__) == LL_SPI_RXCRCINIT_ALL_ZERO_PATTERN) \ || ((__VALUE__) == LL_SPI_RXCRCINIT_ALL_ONES_PATTERN)) #define IS_LL_SPI_UDR_CONFIG_REGISTER(__VALUE__) (((__VALUE__) == LL_SPI_UDR_CONFIG_REGISTER_PATTERN) \ || ((__VALUE__) == LL_SPI_UDR_CONFIG_LAST_RECEIVED) \ || ((__VALUE__) == LL_SPI_UDR_CONFIG_LAST_TRANSMITTED)) #define IS_LL_SPI_UDR_DETECT_BEGIN_DATA(__VALUE__) (((__VALUE__) == LL_SPI_UDR_DETECT_BEGIN_DATA_FRAME) \ || ((__VALUE__) == LL_SPI_UDR_DETECT_END_DATA_FRAME) \ || ((__VALUE__) == LL_SPI_UDR_DETECT_BEGIN_ACTIVE_NSS)) #define IS_LL_SPI_PROTOCOL(__VALUE__) (((__VALUE__) == LL_SPI_PROTOCOL_MOTOROLA) \ || ((__VALUE__) == LL_SPI_PROTOCOL_TI)) #define IS_LL_SPI_PHASE(__VALUE__) (((__VALUE__) == LL_SPI_PHASE_1EDGE) \ || ((__VALUE__) == LL_SPI_PHASE_2EDGE)) #define IS_LL_SPI_POLARITY(__VALUE__) (((__VALUE__) == LL_SPI_POLARITY_LOW) \ || ((__VALUE__) == LL_SPI_POLARITY_HIGH)) #define IS_LL_SPI_BAUDRATEPRESCALER(__VALUE__) (((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV2) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV4) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV8) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV16) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV32) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV64) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV128) \ || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV256)) #define IS_LL_SPI_BITORDER(__VALUE__) (((__VALUE__) == LL_SPI_LSB_FIRST) \ || ((__VALUE__) == LL_SPI_MSB_FIRST)) #define IS_LL_SPI_TRANSFER_DIRECTION(__VALUE__) (((__VALUE__) == LL_SPI_FULL_DUPLEX) \ || ((__VALUE__) == LL_SPI_SIMPLEX_TX) \ || ((__VALUE__) == LL_SPI_SIMPLEX_RX) \ || ((__VALUE__) == LL_SPI_HALF_DUPLEX_RX) \ || ((__VALUE__) == LL_SPI_HALF_DUPLEX_TX)) #define IS_LL_SPI_DATAWIDTH(__VALUE__) (((__VALUE__) == LL_SPI_DATAWIDTH_4BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_5BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_6BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_7BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_8BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_9BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_10BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_11BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_12BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_13BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_14BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_15BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_16BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_17BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_18BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_19BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_20BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_21BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_22BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_23BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_24BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_25BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_26BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_27BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_28BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_29BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_30BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_31BIT) \ || ((__VALUE__) == LL_SPI_DATAWIDTH_32BIT)) #define IS_LL_SPI_FIFO_TH(__VALUE__) (((__VALUE__) == LL_SPI_FIFO_TH_01DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_02DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_03DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_04DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_05DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_06DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_07DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_08DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_09DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_10DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_11DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_12DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_13DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_14DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_15DATA) \ || ((__VALUE__) == LL_SPI_FIFO_TH_16DATA)) #define IS_LL_SPI_CRC(__VALUE__) (((__VALUE__) == LL_SPI_CRC_4BIT) \ || ((__VALUE__) == LL_SPI_CRC_5BIT) \ || ((__VALUE__) == LL_SPI_CRC_6BIT) \ || ((__VALUE__) == LL_SPI_CRC_7BIT) \ || ((__VALUE__) == LL_SPI_CRC_8BIT) \ || ((__VALUE__) == LL_SPI_CRC_9BIT) \ || ((__VALUE__) == LL_SPI_CRC_10BIT) \ || ((__VALUE__) == LL_SPI_CRC_11BIT) \ || ((__VALUE__) == LL_SPI_CRC_12BIT) \ || ((__VALUE__) == LL_SPI_CRC_13BIT) \ || ((__VALUE__) == LL_SPI_CRC_14BIT) \ || ((__VALUE__) == LL_SPI_CRC_15BIT) \ || ((__VALUE__) == LL_SPI_CRC_16BIT) \ || ((__VALUE__) == LL_SPI_CRC_17BIT) \ || ((__VALUE__) == LL_SPI_CRC_18BIT) \ || ((__VALUE__) == LL_SPI_CRC_19BIT) \ || ((__VALUE__) == LL_SPI_CRC_20BIT) \ || ((__VALUE__) == LL_SPI_CRC_21BIT) \ || ((__VALUE__) == LL_SPI_CRC_22BIT) \ || ((__VALUE__) == LL_SPI_CRC_23BIT) \ || ((__VALUE__) == LL_SPI_CRC_24BIT) \ || ((__VALUE__) == LL_SPI_CRC_25BIT) \ || ((__VALUE__) == LL_SPI_CRC_26BIT) \ || ((__VALUE__) == LL_SPI_CRC_27BIT) \ || ((__VALUE__) == LL_SPI_CRC_28BIT) \ || ((__VALUE__) == LL_SPI_CRC_29BIT) \ || ((__VALUE__) == LL_SPI_CRC_30BIT) \ || ((__VALUE__) == LL_SPI_CRC_31BIT) \ || ((__VALUE__) == LL_SPI_CRC_32BIT)) #define IS_LL_SPI_NSS(__VALUE__) (((__VALUE__) == LL_SPI_NSS_SOFT) \ || ((__VALUE__) == LL_SPI_NSS_HARD_INPUT) \ || ((__VALUE__) == LL_SPI_NSS_HARD_OUTPUT)) #define IS_LL_SPI_RX_FIFO(__VALUE__) (((__VALUE__) == LL_SPI_RX_FIFO_0PACKET) \ || ((__VALUE__) == LL_SPI_RX_FIFO_1PACKET) \ || ((__VALUE__) == LL_SPI_RX_FIFO_2PACKET) \ || ((__VALUE__) == LL_SPI_RX_FIFO_3PACKET)) #define IS_LL_SPI_CRCCALCULATION(__VALUE__) (((__VALUE__) == LL_SPI_CRCCALCULATION_ENABLE) \ || ((__VALUE__) == LL_SPI_CRCCALCULATION_DISABLE)) #define IS_LL_SPI_CRC_POLYNOMIAL(__VALUE__) ((__VALUE__) >= 0x1UL) /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup SPI_LL_Exported_Functions * @{ */ /** @addtogroup SPI_LL_EF_Init * @{ */ /** * @brief De-initialize the SPI registers to their default reset values. * @param SPIx SPI Instance * @retval An ErrorStatus enumeration value: * - SUCCESS: SPI registers are de-initialized * - ERROR: SPI registers are not de-initialized */ ErrorStatus LL_SPI_DeInit(SPI_TypeDef *SPIx) { ErrorStatus status = ERROR; /* Check the parameters */ assert_param(IS_SPI_ALL_INSTANCE(SPIx)); #if defined(SPI1) if (SPIx == SPI1) { /* Force reset of SPI clock */ LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI1); /* Release reset of SPI clock */ LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI1); status = SUCCESS; } #endif /* SPI1 */ #if defined(SPI2) if (SPIx == SPI2) { /* Force reset of SPI clock */ LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_SPI2); /* Release reset of SPI clock */ LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_SPI2); status = SUCCESS; } #endif /* SPI2 */ #if defined(SPI3) if (SPIx == SPI3) { /* Force reset of SPI clock */ LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_SPI3); /* Release reset of SPI clock */ LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_SPI3); status = SUCCESS; } #endif /* SPI3 */ #if defined(SPI4) if (SPIx == SPI4) { /* Force reset of SPI clock */ LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI4); /* Release reset of SPI clock */ LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI4); status = SUCCESS; } #endif /* SPI4 */ #if defined(SPI5) if (SPIx == SPI5) { /* Force reset of SPI clock */ LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI5); /* Release reset of SPI clock */ LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI5); status = SUCCESS; } #endif /* SPI5 */ #if defined(SPI6) if (SPIx == SPI6) { /* Force reset of SPI clock */ LL_APB4_GRP1_ForceReset(LL_APB4_GRP1_PERIPH_SPI6); /* Release reset of SPI clock */ LL_APB4_GRP1_ReleaseReset(LL_APB4_GRP1_PERIPH_SPI6); status = SUCCESS; } #endif /* SPI6 */ return status; } /** * @brief Initialize the SPI registers according to the specified parameters in SPI_InitStruct. * @note As some bits in SPI configuration registers can only be written when the SPI is disabled (SPI_CR1_SPE bit =0), * SPI IP should be in disabled state prior calling this function. Otherwise, ERROR result will be returned. * @param SPIx SPI Instance * @param SPI_InitStruct pointer to a @ref LL_SPI_InitTypeDef structure * @retval An ErrorStatus enumeration value. (Return always SUCCESS) */ ErrorStatus LL_SPI_Init(SPI_TypeDef *SPIx, LL_SPI_InitTypeDef *SPI_InitStruct) { ErrorStatus status = ERROR; uint32_t tmp_nss; uint32_t tmp_mode; /* Check the SPI Instance SPIx*/ assert_param(IS_SPI_ALL_INSTANCE(SPIx)); /* Check the SPI parameters from SPI_InitStruct*/ assert_param(IS_LL_SPI_TRANSFER_DIRECTION(SPI_InitStruct->TransferDirection)); assert_param(IS_LL_SPI_MODE(SPI_InitStruct->Mode)); assert_param(IS_LL_SPI_DATAWIDTH(SPI_InitStruct->DataWidth)); assert_param(IS_LL_SPI_POLARITY(SPI_InitStruct->ClockPolarity)); assert_param(IS_LL_SPI_PHASE(SPI_InitStruct->ClockPhase)); assert_param(IS_LL_SPI_NSS(SPI_InitStruct->NSS)); assert_param(IS_LL_SPI_BAUDRATEPRESCALER(SPI_InitStruct->BaudRate)); assert_param(IS_LL_SPI_BITORDER(SPI_InitStruct->BitOrder)); assert_param(IS_LL_SPI_CRCCALCULATION(SPI_InitStruct->CRCCalculation)); if (LL_SPI_IsEnabled(SPIx) == 0x00000000UL) { /*---------------------------- SPIx CFG1 Configuration ------------------------ * Configure SPIx CFG1 with parameters: * - Master Baud Rate : SPI_CFG1_MBR[2:0] bits * - CRC Computation Enable : SPI_CFG1_CRCEN bit * - Length of data frame : SPI_CFG1_DSIZE[4:0] bits */ MODIFY_REG(SPIx->CFG1, SPI_CFG1_MBR | SPI_CFG1_CRCEN | SPI_CFG1_DSIZE, SPI_InitStruct->BaudRate | SPI_InitStruct->CRCCalculation | SPI_InitStruct->DataWidth); tmp_nss = SPI_InitStruct->NSS; tmp_mode = SPI_InitStruct->Mode; /* Checks to setup Internal SS signal level and avoid a MODF Error */ if ((LL_SPI_GetNSSPolarity(SPIx) == LL_SPI_NSS_POLARITY_LOW) && (tmp_nss == LL_SPI_NSS_SOFT) && (tmp_mode == LL_SPI_MODE_MASTER)) { LL_SPI_SetInternalSSLevel(SPIx, LL_SPI_SS_LEVEL_HIGH); } /*---------------------------- SPIx CFG2 Configuration ------------------------ * Configure SPIx CFG2 with parameters: * - NSS management : SPI_CFG2_SSM, SPI_CFG2_SSOE bits * - ClockPolarity : SPI_CFG2_CPOL bit * - ClockPhase : SPI_CFG2_CPHA bit * - BitOrder : SPI_CFG2_LSBFRST bit * - Master/Slave Mode : SPI_CFG2_MASTER bit * - SPI Mode : SPI_CFG2_COMM[1:0] bits */ MODIFY_REG(SPIx->CFG2, SPI_CFG2_SSM | SPI_CFG2_SSOE | SPI_CFG2_CPOL | SPI_CFG2_CPHA | SPI_CFG2_LSBFRST | SPI_CFG2_MASTER | SPI_CFG2_COMM, SPI_InitStruct->NSS | SPI_InitStruct->ClockPolarity | SPI_InitStruct->ClockPhase | SPI_InitStruct->BitOrder | SPI_InitStruct->Mode | (SPI_InitStruct->TransferDirection & SPI_CFG2_COMM)); /*---------------------------- SPIx CR1 Configuration ------------------------ * Configure SPIx CR1 with parameter: * - Half Duplex Direction : SPI_CR1_HDDIR bit */ MODIFY_REG(SPIx->CR1, SPI_CR1_HDDIR, SPI_InitStruct->TransferDirection & SPI_CR1_HDDIR); /*---------------------------- SPIx CRCPOLY Configuration ---------------------- * Configure SPIx CRCPOLY with parameter: * - CRCPoly : CRCPOLY[31:0] bits */ if (SPI_InitStruct->CRCCalculation == LL_SPI_CRCCALCULATION_ENABLE) { assert_param(IS_LL_SPI_CRC_POLYNOMIAL(SPI_InitStruct->CRCPoly)); LL_SPI_SetCRCPolynomial(SPIx, SPI_InitStruct->CRCPoly); } /* Activate the SPI mode (Reset I2SMOD bit in I2SCFGR register) */ CLEAR_BIT(SPIx->I2SCFGR, SPI_I2SCFGR_I2SMOD); status = SUCCESS; } return status; } /** * @brief Set each @ref LL_SPI_InitTypeDef field to default value. * @param SPI_InitStruct pointer to a @ref LL_SPI_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_SPI_StructInit(LL_SPI_InitTypeDef *SPI_InitStruct) { /* Set SPI_InitStruct fields to default values */ SPI_InitStruct->TransferDirection = LL_SPI_FULL_DUPLEX; SPI_InitStruct->Mode = LL_SPI_MODE_SLAVE; SPI_InitStruct->DataWidth = LL_SPI_DATAWIDTH_8BIT; SPI_InitStruct->ClockPolarity = LL_SPI_POLARITY_LOW; SPI_InitStruct->ClockPhase = LL_SPI_PHASE_1EDGE; SPI_InitStruct->NSS = LL_SPI_NSS_HARD_INPUT; SPI_InitStruct->BaudRate = LL_SPI_BAUDRATEPRESCALER_DIV2; SPI_InitStruct->BitOrder = LL_SPI_MSB_FIRST; SPI_InitStruct->CRCCalculation = LL_SPI_CRCCALCULATION_DISABLE; SPI_InitStruct->CRCPoly = 7UL; } /** @addtogroup I2S_LL * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /** @defgroup I2S_LL_Private_Constants I2S Private Constants * @{ */ /* I2S registers Masks */ #define I2S_I2SCFGR_CLEAR_MASK (SPI_I2SCFGR_CHLEN | SPI_I2SCFGR_DATLEN | \ SPI_I2SCFGR_DATFMT | SPI_I2SCFGR_CKPOL | \ SPI_I2SCFGR_I2SSTD | SPI_I2SCFGR_MCKOE | \ SPI_I2SCFGR_I2SCFG | SPI_I2SCFGR_I2SMOD ) /** * @} */ /* Private macros ------------------------------------------------------------*/ /** @defgroup I2S_LL_Private_Macros I2S Private Macros * @{ */ #define IS_LL_I2S_DATAFORMAT(__VALUE__) (((__VALUE__) == LL_I2S_DATAFORMAT_16B) \ || ((__VALUE__) == LL_I2S_DATAFORMAT_16B_EXTENDED) \ || ((__VALUE__) == LL_I2S_DATAFORMAT_24B) \ || ((__VALUE__) == LL_I2S_DATAFORMAT_24B_LEFT_ALIGNED) \ || ((__VALUE__) == LL_I2S_DATAFORMAT_32B)) #define IS_LL_I2S_CHANNEL_LENGTH_TYPE (__VALUE__) (((__VALUE__) == LL_I2S_SLAVE_VARIABLE_CH_LENGTH) \ || ((__VALUE__) == LL_I2S_SLAVE_FIXED_CH_LENGTH)) #define IS_LL_I2S_CKPOL(__VALUE__) (((__VALUE__) == LL_I2S_POLARITY_LOW) \ || ((__VALUE__) == LL_I2S_POLARITY_HIGH)) #define IS_LL_I2S_STANDARD(__VALUE__) (((__VALUE__) == LL_I2S_STANDARD_PHILIPS) \ || ((__VALUE__) == LL_I2S_STANDARD_MSB) \ || ((__VALUE__) == LL_I2S_STANDARD_LSB) \ || ((__VALUE__) == LL_I2S_STANDARD_PCM_SHORT) \ || ((__VALUE__) == LL_I2S_STANDARD_PCM_LONG)) #define IS_LL_I2S_MODE(__VALUE__) (((__VALUE__) == LL_I2S_MODE_SLAVE_TX) \ || ((__VALUE__) == LL_I2S_MODE_SLAVE_RX) \ || ((__VALUE__) == LL_I2S_MODE_SLAVE_FULL_DUPLEX) \ || ((__VALUE__) == LL_I2S_MODE_MASTER_TX) \ || ((__VALUE__) == LL_I2S_MODE_MASTER_RX) \ || ((__VALUE__) == LL_I2S_MODE_MASTER_FULL_DUPLEX)) #define IS_LL_I2S_MCLK_OUTPUT(__VALUE__) (((__VALUE__) == LL_I2S_MCLK_OUTPUT_ENABLE) \ || ((__VALUE__) == LL_I2S_MCLK_OUTPUT_DISABLE)) #define IS_LL_I2S_AUDIO_FREQ(__VALUE__) ((((__VALUE__) >= LL_I2S_AUDIOFREQ_8K) \ && ((__VALUE__) <= LL_I2S_AUDIOFREQ_192K)) \ || ((__VALUE__) == LL_I2S_AUDIOFREQ_DEFAULT)) #define IS_LL_I2S_PRESCALER_LINEAR(__VALUE__) ((__VALUE__) <= 0xFFUL) #define IS_LL_I2S_PRESCALER_PARITY(__VALUE__) (((__VALUE__) == LL_I2S_PRESCALER_PARITY_EVEN) \ || ((__VALUE__) == LL_I2S_PRESCALER_PARITY_ODD)) #define IS_LL_I2S_FIFO_TH (__VALUE__) (((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_01DATA) \ || ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_02DATA) \ || ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_03DATA) \ || ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_04DATA) \ || ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_05DATA) \ || ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_06DATA) \ || ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_07DATA) \ || ((__VALUE__) == LL_I2S_LL_I2S_FIFO_TH_08DATA)) #define IS_LL_I2S_BIT_ORDER(__VALUE__) (((__VALUE__) == LL_I2S_LSB_FIRST) \ || ((__VALUE__) == LL_I2S_MSB_FIRST)) /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup I2S_LL_Exported_Functions * @{ */ /** @addtogroup I2S_LL_EF_Init * @{ */ /** * @brief De-initialize the SPI/I2S registers to their default reset values. * @param SPIx SPI Instance * @retval An ErrorStatus enumeration value: * - SUCCESS: SPI registers are de-initialized * - ERROR: SPI registers are not de-initialized */ ErrorStatus LL_I2S_DeInit(SPI_TypeDef *SPIx) { return LL_SPI_DeInit(SPIx); } /** * @brief Initializes the SPI/I2S registers according to the specified parameters in I2S_InitStruct. * @note As some bits in I2S configuration registers can only be written when the SPI is disabled (SPI_CR1_SPE bit =0), * SPI IP should be in disabled state prior calling this function. Otherwise, ERROR result will be returned. * @note I2S (SPI) source clock must be ready before calling this function. Otherwise will results in wrong programming. * @param SPIx SPI Instance * @param I2S_InitStruct pointer to a @ref LL_I2S_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: SPI registers are Initialized * - ERROR: SPI registers are not Initialized */ ErrorStatus LL_I2S_Init(SPI_TypeDef *SPIx, LL_I2S_InitTypeDef *I2S_InitStruct) { uint32_t i2sdiv = 0UL, i2sodd = 0UL, packetlength = 1UL, ispcm = 0UL; uint32_t tmp; uint32_t sourceclock; ErrorStatus status = ERROR; /* Check the I2S parameters */ assert_param(IS_I2S_ALL_INSTANCE(SPIx)); assert_param(IS_LL_I2S_MODE(I2S_InitStruct->Mode)); assert_param(IS_LL_I2S_STANDARD(I2S_InitStruct->Standard)); assert_param(IS_LL_I2S_DATAFORMAT(I2S_InitStruct->DataFormat)); assert_param(IS_LL_I2S_MCLK_OUTPUT(I2S_InitStruct->MCLKOutput)); assert_param(IS_LL_I2S_AUDIO_FREQ(I2S_InitStruct->AudioFreq)); assert_param(IS_LL_I2S_CKPOL(I2S_InitStruct->ClockPolarity)); /* Check that SPE bit is set to 0 in order to be sure that SPI/I2S block is disabled. * In this case, it is useless to check if the I2SMOD bit is set to 0 because * this bit I2SMOD only serves to select the desired mode. */ if (LL_SPI_IsEnabled(SPIx) == 0x00000000UL) { /*---------------------------- SPIx I2SCFGR Configuration -------------------- * Configure SPIx I2SCFGR with parameters: * - Mode : SPI_I2SCFGR_I2SCFG[2:0] bits * - Standard : SPI_I2SCFGR_I2SSTD[1:0] and SPI_I2SCFGR_PCMSYNC bits * - DataFormat : SPI_I2SCFGR_CHLEN, SPI_I2SCFGR_DATFMT and SPI_I2SCFGR_DATLEN[1:0] bits * - ClockPolarity : SPI_I2SCFGR_CKPOL bit * - MCLKOutput : SPI_I2SPR_MCKOE bit * - I2S mode : SPI_I2SCFGR_I2SMOD bit */ /* Write to SPIx I2SCFGR */ MODIFY_REG(SPIx->I2SCFGR, I2S_I2SCFGR_CLEAR_MASK, I2S_InitStruct->Mode | I2S_InitStruct->Standard | I2S_InitStruct->DataFormat | I2S_InitStruct->ClockPolarity | I2S_InitStruct->MCLKOutput | SPI_I2SCFGR_I2SMOD); /*---------------------------- SPIx I2SCFGR Configuration ---------------------- * Configure SPIx I2SCFGR with parameters: * - AudioFreq : SPI_I2SCFGR_I2SDIV[7:0] and SPI_I2SCFGR_ODD bits */ /* If the requested audio frequency is not the default, compute the prescaler (i2sodd, i2sdiv) * else, default values are used: i2sodd = 0U, i2sdiv = 0U. */ if (I2S_InitStruct->AudioFreq != LL_I2S_AUDIOFREQ_DEFAULT) { /* Check the frame length (For the Prescaler computing) * Default value: LL_I2S_DATAFORMAT_16B (packetlength = 1U). */ if (I2S_InitStruct->DataFormat != LL_I2S_DATAFORMAT_16B) { /* Packet length is 32 bits */ packetlength = 2UL; } /* Check if PCM standard is used */ if ((I2S_InitStruct->Standard == LL_I2S_STANDARD_PCM_SHORT) || (I2S_InitStruct->Standard == LL_I2S_STANDARD_PCM_LONG)) { ispcm = 1UL; } /* Get the I2S (SPI) source clock value */ sourceclock = LL_RCC_GetSPIClockFreq(LL_RCC_SPI123_CLKSOURCE); /* Compute the Real divider depending on the MCLK output state with a fixed point */ if (I2S_InitStruct->MCLKOutput == LL_I2S_MCLK_OUTPUT_ENABLE) { /* MCLK output is enabled */ tmp = (((sourceclock / (256UL >> ispcm)) * 16UL) / I2S_InitStruct->AudioFreq) + 8UL; } else { /* MCLK output is disabled */ tmp = (((sourceclock / ((32UL >> ispcm) * packetlength)) * 16UL) / I2S_InitStruct->AudioFreq) + 8UL; } /* Remove the fixed point */ tmp = tmp / 16UL; /* Check the parity of the divider */ i2sodd = tmp & 0x1UL; /* Compute the i2sdiv prescaler */ i2sdiv = tmp / 2UL; } /* Test if the obtain values are forbiden or out of range */ if (((i2sodd == 1UL) && (i2sdiv == 1UL)) || (i2sdiv > 0xFFUL)) { /* Set the default values */ i2sdiv = 0UL; i2sodd = 0UL; } /* Write to SPIx I2SCFGR register the computed value */ MODIFY_REG(SPIx->I2SCFGR, SPI_I2SCFGR_ODD | SPI_I2SCFGR_I2SDIV, (i2sodd << SPI_I2SCFGR_ODD_Pos) | (i2sdiv << SPI_I2SCFGR_I2SDIV_Pos)); status = SUCCESS; } return status; } /** * @brief Set each @ref LL_I2S_InitTypeDef field to default value. * @param I2S_InitStruct pointer to a @ref LL_I2S_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_I2S_StructInit(LL_I2S_InitTypeDef *I2S_InitStruct) { /*--------------- Reset I2S init structure parameters values -----------------*/ I2S_InitStruct->Mode = LL_I2S_MODE_SLAVE_TX; I2S_InitStruct->Standard = LL_I2S_STANDARD_PHILIPS; I2S_InitStruct->DataFormat = LL_I2S_DATAFORMAT_16B; I2S_InitStruct->MCLKOutput = LL_I2S_MCLK_OUTPUT_DISABLE; I2S_InitStruct->AudioFreq = LL_I2S_AUDIOFREQ_DEFAULT; I2S_InitStruct->ClockPolarity = LL_I2S_POLARITY_LOW; } /** * @brief Set linear and parity prescaler. * @note To calculate value of PrescalerLinear(I2SDIV[7:0] bits) and PrescalerParity(ODD bit)\n * Check Audio frequency table and formulas inside Reference Manual (SPI/I2S). * @param SPIx SPI Instance * @param PrescalerLinear Value between Min_Data=0x00 and Max_Data=0xFF * @note PrescalerLinear '1' is not authorized with parity LL_I2S_PRESCALER_PARITY_ODD * @param PrescalerParity This parameter can be one of the following values: * @arg @ref LL_I2S_PRESCALER_PARITY_EVEN * @arg @ref LL_I2S_PRESCALER_PARITY_ODD * @retval None */ void LL_I2S_ConfigPrescaler(SPI_TypeDef *SPIx, uint32_t PrescalerLinear, uint32_t PrescalerParity) { /* Check the I2S parameters */ assert_param(IS_I2S_ALL_INSTANCE(SPIx)); assert_param(IS_LL_I2S_PRESCALER_LINEAR(PrescalerLinear)); assert_param(IS_LL_I2S_PRESCALER_PARITY(PrescalerParity)); /* Write to SPIx I2SPR */ MODIFY_REG(SPIx->I2SCFGR, SPI_I2SCFGR_I2SDIV | SPI_I2SCFGR_ODD, (PrescalerLinear << SPI_I2SCFGR_I2SDIV_Pos) | (PrescalerParity << SPI_I2SCFGR_ODD_Pos)); } /** * @} */ /** * @} */ /** * @} */ /** * @} */ /** * @} */ #endif /* defined(SPI1) || defined(SPI2) || defined(SPI3) || defined(SPI4) || defined(SPI5) || defined(SPI6) */ /** * @} */ /** * @} */ #endif /* USE_FULL_LL_DRIVER */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
the_stack_data/184519546.c
/* ** 2019-02-19 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This SQLite extension implements the delta functions used by the RBU ** extension. Three scalar functions and one table-valued function are ** implemented here: ** ** delta_apply(X,D) -- apply delta D to file X and return the result ** delta_create(X,Y) -- compute and return a delta that carries X into Y ** delta_output_size(D) -- blob size in bytes output from applying delta D ** delta_parse(D) -- returns rows describing delta D ** ** The delta format is the Fossil delta format, described in a comment ** on the delete_create() function implementation below, and also at ** ** https://www.fossil-scm.org/fossil/doc/trunk/www/delta_format.wiki ** ** This delta format is used by the RBU extension, which is the main ** reason that these routines are included in the extension library. ** RBU does not use this extension directly. Rather, this extension is ** provided as a convenience to developers who want to analyze RBU files ** that contain deltas. */ #include <string.h> #include <assert.h> #include <stdlib.h> #include "sqlite3ext.h" SQLITE_EXTENSION_INIT1 #ifndef SQLITE_AMALGAMATION /* ** The "u32" type must be an unsigned 32-bit integer. Adjust this */ typedef unsigned int u32; /* ** Must be a 16-bit value */ typedef short int s16; typedef unsigned short int u16; #endif /* SQLITE_AMALGAMATION */ /* ** The width of a hash window in bytes. The algorithm only works if this ** is a power of 2. */ #define NHASH 16 /* ** The current state of the rolling hash. ** ** z[] holds the values that have been hashed. z[] is a circular buffer. ** z[i] is the first entry and z[(i+NHASH-1)%NHASH] is the last entry of ** the window. ** ** Hash.a is the sum of all elements of hash.z[]. Hash.b is a weighted ** sum. Hash.b is z[i]*NHASH + z[i+1]*(NHASH-1) + ... + z[i+NHASH-1]*1. ** (Each index for z[] should be module NHASH, of course. The %NHASH operator ** is omitted in the prior expression for brevity.) */ typedef struct hash hash; struct hash { u16 a, b; /* Hash values */ u16 i; /* Start of the hash window */ char z[NHASH]; /* The values that have been hashed */ }; /* ** Initialize the rolling hash using the first NHASH characters of z[] */ static void hash_init(hash *pHash, const char *z){ u16 a, b, i; a = b = z[0]; for(i=1; i<NHASH; i++){ a += z[i]; b += a; } memcpy(pHash->z, z, NHASH); pHash->a = a & 0xffff; pHash->b = b & 0xffff; pHash->i = 0; } /* ** Advance the rolling hash by a single character "c" */ static void hash_next(hash *pHash, int c){ u16 old = pHash->z[pHash->i]; pHash->z[pHash->i] = c; pHash->i = (pHash->i+1)&(NHASH-1); pHash->a = pHash->a - old + c; pHash->b = pHash->b - NHASH*old + pHash->a; } /* ** Return a 32-bit hash value */ static u32 hash_32bit(hash *pHash){ return (pHash->a & 0xffff) | (((u32)(pHash->b & 0xffff))<<16); } /* ** Compute a hash on NHASH bytes. ** ** This routine is intended to be equivalent to: ** hash h; ** hash_init(&h, zInput); ** return hash_32bit(&h); */ static u32 hash_once(const char *z){ u16 a, b, i; a = b = z[0]; for(i=1; i<NHASH; i++){ a += z[i]; b += a; } return a | (((u32)b)<<16); } /* ** Write an base-64 integer into the given buffer. */ static void putInt(unsigned int v, char **pz){ static const char zDigits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~"; /* 123456789 123456789 123456789 123456789 123456789 123456789 123 */ int i, j; char zBuf[20]; if( v==0 ){ *(*pz)++ = '0'; return; } for(i=0; v>0; i++, v>>=6){ zBuf[i] = zDigits[v&0x3f]; } for(j=i-1; j>=0; j--){ *(*pz)++ = zBuf[j]; } } /* ** Read bytes from *pz and convert them into a positive integer. When ** finished, leave *pz pointing to the first character past the end of ** the integer. The *pLen parameter holds the length of the string ** in *pz and is decremented once for each character in the integer. */ static unsigned int deltaGetInt(const char **pz, int *pLen){ static const signed char zValue[] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, 36, -1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, -1, -1, -1, 63, -1, }; unsigned int v = 0; int c; unsigned char *z = (unsigned char*)*pz; unsigned char *zStart = z; while( (c = zValue[0x7f&*(z++)])>=0 ){ v = (v<<6) + c; } z--; *pLen -= z - zStart; *pz = (char*)z; return v; } /* ** Return the number digits in the base-64 representation of a positive integer */ static int digit_count(int v){ unsigned int i, x; for(i=1, x=64; v>=x; i++, x <<= 6){} return i; } #ifdef __GNUC__ # define GCC_VERSION (__GNUC__*1000000+__GNUC_MINOR__*1000+__GNUC_PATCHLEVEL__) #else # define GCC_VERSION 0 #endif /* ** Compute a 32-bit big-endian checksum on the N-byte buffer. If the ** buffer is not a multiple of 4 bytes length, compute the sum that would ** have occurred if the buffer was padded with zeros to the next multiple ** of four bytes. */ static unsigned int checksum(const char *zIn, size_t N){ static const int byteOrderTest = 1; const unsigned char *z = (const unsigned char *)zIn; const unsigned char *zEnd = (const unsigned char*)&zIn[N&~3]; unsigned sum = 0; assert( (z - (const unsigned char*)0)%4==0 ); /* Four-byte alignment */ if( 0==*(char*)&byteOrderTest ){ /* This is a big-endian machine */ while( z<zEnd ){ sum += *(unsigned*)z; z += 4; } }else{ /* A little-endian machine */ #if GCC_VERSION>=4003000 while( z<zEnd ){ sum += __builtin_bswap32(*(unsigned*)z); z += 4; } #elif defined(_MSC_VER) && _MSC_VER>=1300 while( z<zEnd ){ sum += _byteswap_ulong(*(unsigned*)z); z += 4; } #else unsigned sum0 = 0; unsigned sum1 = 0; unsigned sum2 = 0; while(N >= 16){ sum0 += ((unsigned)z[0] + z[4] + z[8] + z[12]); sum1 += ((unsigned)z[1] + z[5] + z[9] + z[13]); sum2 += ((unsigned)z[2] + z[6] + z[10]+ z[14]); sum += ((unsigned)z[3] + z[7] + z[11]+ z[15]); z += 16; N -= 16; } while(N >= 4){ sum0 += z[0]; sum1 += z[1]; sum2 += z[2]; sum += z[3]; z += 4; N -= 4; } sum += (sum2 << 8) + (sum1 << 16) + (sum0 << 24); #endif } switch(N&3){ case 3: sum += (z[2] << 8); case 2: sum += (z[1] << 16); case 1: sum += (z[0] << 24); default: ; } return sum; } /* ** Create a new delta. ** ** The delta is written into a preallocated buffer, zDelta, which ** should be at least 60 bytes longer than the target file, zOut. ** The delta string will be NUL-terminated, but it might also contain ** embedded NUL characters if either the zSrc or zOut files are ** binary. This function returns the length of the delta string ** in bytes, excluding the final NUL terminator character. ** ** Output Format: ** ** The delta begins with a base64 number followed by a newline. This ** number is the number of bytes in the TARGET file. Thus, given a ** delta file z, a program can compute the size of the output file ** simply by reading the first line and decoding the base-64 number ** found there. The delta_output_size() routine does exactly this. ** ** After the initial size number, the delta consists of a series of ** literal text segments and commands to copy from the SOURCE file. ** A copy command looks like this: ** ** NNN@MMM, ** ** where NNN is the number of bytes to be copied and MMM is the offset ** into the source file of the first byte (both base-64). If NNN is 0 ** it means copy the rest of the input file. Literal text is like this: ** ** NNN:TTTTT ** ** where NNN is the number of bytes of text (base-64) and TTTTT is the text. ** ** The last term is of the form ** ** NNN; ** ** In this case, NNN is a 32-bit bigendian checksum of the output file ** that can be used to verify that the delta applied correctly. All ** numbers are in base-64. ** ** Pure text files generate a pure text delta. Binary files generate a ** delta that may contain some binary data. ** ** Algorithm: ** ** The encoder first builds a hash table to help it find matching ** patterns in the source file. 16-byte chunks of the source file ** sampled at evenly spaced intervals are used to populate the hash ** table. ** ** Next we begin scanning the target file using a sliding 16-byte ** window. The hash of the 16-byte window in the target is used to ** search for a matching section in the source file. When a match ** is found, a copy command is added to the delta. An effort is ** made to extend the matching section to regions that come before ** and after the 16-byte hash window. A copy command is only issued ** if the result would use less space that just quoting the text ** literally. Literal text is added to the delta for sections that ** do not match or which can not be encoded efficiently using copy ** commands. */ static int delta_create( const char *zSrc, /* The source or pattern file */ unsigned int lenSrc, /* Length of the source file */ const char *zOut, /* The target file */ unsigned int lenOut, /* Length of the target file */ char *zDelta /* Write the delta into this buffer */ ){ int i, base; char *zOrigDelta = zDelta; hash h; int nHash; /* Number of hash table entries */ int *landmark; /* Primary hash table */ int *collide; /* Collision chain */ int lastRead = -1; /* Last byte of zSrc read by a COPY command */ /* Add the target file size to the beginning of the delta */ putInt(lenOut, &zDelta); *(zDelta++) = '\n'; /* If the source file is very small, it means that we have no ** chance of ever doing a copy command. Just output a single ** literal segment for the entire target and exit. */ if( lenSrc<=NHASH ){ putInt(lenOut, &zDelta); *(zDelta++) = ':'; memcpy(zDelta, zOut, lenOut); zDelta += lenOut; putInt(checksum(zOut, lenOut), &zDelta); *(zDelta++) = ';'; return zDelta - zOrigDelta; } /* Compute the hash table used to locate matching sections in the ** source file. */ nHash = lenSrc/NHASH; collide = sqlite3_malloc64( (sqlite3_int64)nHash*2*sizeof(int) ); memset(collide, -1, nHash*2*sizeof(int)); landmark = &collide[nHash]; for(i=0; i<lenSrc-NHASH; i+=NHASH){ int hv = hash_once(&zSrc[i]) % nHash; collide[i/NHASH] = landmark[hv]; landmark[hv] = i/NHASH; } /* Begin scanning the target file and generating copy commands and ** literal sections of the delta. */ base = 0; /* We have already generated everything before zOut[base] */ while( base+NHASH<lenOut ){ int iSrc, iBlock; unsigned int bestCnt, bestOfst=0, bestLitsz=0; hash_init(&h, &zOut[base]); i = 0; /* Trying to match a landmark against zOut[base+i] */ bestCnt = 0; while( 1 ){ int hv; int limit = 250; hv = hash_32bit(&h) % nHash; iBlock = landmark[hv]; while( iBlock>=0 && (limit--)>0 ){ /* ** The hash window has identified a potential match against ** landmark block iBlock. But we need to investigate further. ** ** Look for a region in zOut that matches zSrc. Anchor the search ** at zSrc[iSrc] and zOut[base+i]. Do not include anything prior to ** zOut[base] or after zOut[outLen] nor anything after zSrc[srcLen]. ** ** Set cnt equal to the length of the match and set ofst so that ** zSrc[ofst] is the first element of the match. litsz is the number ** of characters between zOut[base] and the beginning of the match. ** sz will be the overhead (in bytes) needed to encode the copy ** command. Only generate copy command if the overhead of the ** copy command is less than the amount of literal text to be copied. */ int cnt, ofst, litsz; int j, k, x, y; int sz; int limitX; /* Beginning at iSrc, match forwards as far as we can. j counts ** the number of characters that match */ iSrc = iBlock*NHASH; y = base+i; limitX = ( lenSrc-iSrc <= lenOut-y ) ? lenSrc : iSrc + lenOut - y; for(x=iSrc; x<limitX; x++, y++){ if( zSrc[x]!=zOut[y] ) break; } j = x - iSrc - 1; /* Beginning at iSrc-1, match backwards as far as we can. k counts ** the number of characters that match */ for(k=1; k<iSrc && k<=i; k++){ if( zSrc[iSrc-k]!=zOut[base+i-k] ) break; } k--; /* Compute the offset and size of the matching region */ ofst = iSrc-k; cnt = j+k+1; litsz = i-k; /* Number of bytes of literal text before the copy */ /* sz will hold the number of bytes needed to encode the "insert" ** command and the copy command, not counting the "insert" text */ sz = digit_count(i-k)+digit_count(cnt)+digit_count(ofst)+3; if( cnt>=sz && cnt>bestCnt ){ /* Remember this match only if it is the best so far and it ** does not increase the file size */ bestCnt = cnt; bestOfst = iSrc-k; bestLitsz = litsz; } /* Check the next matching block */ iBlock = collide[iBlock]; } /* We have a copy command that does not cause the delta to be larger ** than a literal insert. So add the copy command to the delta. */ if( bestCnt>0 ){ if( bestLitsz>0 ){ /* Add an insert command before the copy */ putInt(bestLitsz,&zDelta); *(zDelta++) = ':'; memcpy(zDelta, &zOut[base], bestLitsz); zDelta += bestLitsz; base += bestLitsz; } base += bestCnt; putInt(bestCnt, &zDelta); *(zDelta++) = '@'; putInt(bestOfst, &zDelta); *(zDelta++) = ','; if( bestOfst + bestCnt -1 > lastRead ){ lastRead = bestOfst + bestCnt - 1; } bestCnt = 0; break; } /* If we reach this point, it means no match is found so far */ if( base+i+NHASH>=lenOut ){ /* We have reached the end of the file and have not found any ** matches. Do an "insert" for everything that does not match */ putInt(lenOut-base, &zDelta); *(zDelta++) = ':'; memcpy(zDelta, &zOut[base], lenOut-base); zDelta += lenOut-base; base = lenOut; break; } /* Advance the hash by one character. Keep looking for a match */ hash_next(&h, zOut[base+i+NHASH]); i++; } } /* Output a final "insert" record to get all the text at the end of ** the file that does not match anything in the source file. */ if( base<lenOut ){ putInt(lenOut-base, &zDelta); *(zDelta++) = ':'; memcpy(zDelta, &zOut[base], lenOut-base); zDelta += lenOut-base; } /* Output the final checksum record. */ putInt(checksum(zOut, lenOut), &zDelta); *(zDelta++) = ';'; sqlite3_free(collide); return zDelta - zOrigDelta; } /* ** Return the size (in bytes) of the output from applying ** a delta. ** ** This routine is provided so that an procedure that is able ** to call delta_apply() can learn how much space is required ** for the output and hence allocate nor more space that is really ** needed. */ static int delta_output_size(const char *zDelta, int lenDelta){ int size; size = deltaGetInt(&zDelta, &lenDelta); if( *zDelta!='\n' ){ /* ERROR: size integer not terminated by "\n" */ return -1; } return size; } /* ** Apply a delta. ** ** The output buffer should be big enough to hold the whole output ** file and a NUL terminator at the end. The delta_output_size() ** routine will determine this size for you. ** ** The delta string should be null-terminated. But the delta string ** may contain embedded NUL characters (if the input and output are ** binary files) so we also have to pass in the length of the delta in ** the lenDelta parameter. ** ** This function returns the size of the output file in bytes (excluding ** the final NUL terminator character). Except, if the delta string is ** malformed or intended for use with a source file other than zSrc, ** then this routine returns -1. ** ** Refer to the delta_create() documentation above for a description ** of the delta file format. */ static int delta_apply( const char *zSrc, /* The source or pattern file */ int lenSrc, /* Length of the source file */ const char *zDelta, /* Delta to apply to the pattern */ int lenDelta, /* Length of the delta */ char *zOut /* Write the output into this preallocated buffer */ ){ unsigned int limit; unsigned int total = 0; #ifdef FOSSIL_ENABLE_DELTA_CKSUM_TEST char *zOrigOut = zOut; #endif limit = deltaGetInt(&zDelta, &lenDelta); if( *zDelta!='\n' ){ /* ERROR: size integer not terminated by "\n" */ return -1; } zDelta++; lenDelta--; while( *zDelta && lenDelta>0 ){ unsigned int cnt, ofst; cnt = deltaGetInt(&zDelta, &lenDelta); switch( zDelta[0] ){ case '@': { zDelta++; lenDelta--; ofst = deltaGetInt(&zDelta, &lenDelta); if( lenDelta>0 && zDelta[0]!=',' ){ /* ERROR: copy command not terminated by ',' */ return -1; } zDelta++; lenDelta--; total += cnt; if( total>limit ){ /* ERROR: copy exceeds output file size */ return -1; } if( ofst+cnt > lenSrc ){ /* ERROR: copy extends past end of input */ return -1; } memcpy(zOut, &zSrc[ofst], cnt); zOut += cnt; break; } case ':': { zDelta++; lenDelta--; total += cnt; if( total>limit ){ /* ERROR: insert command gives an output larger than predicted */ return -1; } if( cnt>lenDelta ){ /* ERROR: insert count exceeds size of delta */ return -1; } memcpy(zOut, zDelta, cnt); zOut += cnt; zDelta += cnt; lenDelta -= cnt; break; } case ';': { zDelta++; lenDelta--; zOut[0] = 0; #ifdef FOSSIL_ENABLE_DELTA_CKSUM_TEST if( cnt!=checksum(zOrigOut, total) ){ /* ERROR: bad checksum */ return -1; } #endif if( total!=limit ){ /* ERROR: generated size does not match predicted size */ return -1; } return total; } default: { /* ERROR: unknown delta operator */ return -1; } } } /* ERROR: unterminated delta */ return -1; } /* ** SQL functions: delta_create(X,Y) ** ** Return a delta for carrying X into Y. */ static void deltaCreateFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const char *aOrig; int nOrig; /* old blob */ const char *aNew; int nNew; /* new blob */ char *aOut; int nOut; /* output delta */ assert( argc==2 ); if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; if( sqlite3_value_type(argv[1])==SQLITE_NULL ) return; nOrig = sqlite3_value_bytes(argv[0]); aOrig = (const char*)sqlite3_value_blob(argv[0]); nNew = sqlite3_value_bytes(argv[1]); aNew = (const char*)sqlite3_value_blob(argv[1]); aOut = sqlite3_malloc64(nNew+70); if( aOut==0 ){ sqlite3_result_error_nomem(context); }else{ nOut = delta_create(aOrig, nOrig, aNew, nNew, aOut); if( nOut<0 ){ sqlite3_free(aOut); sqlite3_result_error(context, "cannot create fossil delta", -1); }else{ sqlite3_result_blob(context, aOut, nOut, sqlite3_free); } } } /* ** SQL functions: delta_apply(X,D) ** ** Return the result of applying delta D to input X. */ static void deltaApplyFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const char *aOrig; int nOrig; /* The X input */ const char *aDelta; int nDelta; /* The input delta (D) */ char *aOut; int nOut, nOut2; /* The output */ assert( argc==2 ); if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; if( sqlite3_value_type(argv[1])==SQLITE_NULL ) return; nOrig = sqlite3_value_bytes(argv[0]); aOrig = (const char*)sqlite3_value_blob(argv[0]); nDelta = sqlite3_value_bytes(argv[1]); aDelta = (const char*)sqlite3_value_blob(argv[1]); /* Figure out the size of the output */ nOut = delta_output_size(aDelta, nDelta); if( nOut<0 ){ sqlite3_result_error(context, "corrupt fossil delta", -1); return; } aOut = sqlite3_malloc64((sqlite3_int64)nOut+1); if( aOut==0 ){ sqlite3_result_error_nomem(context); }else{ nOut2 = delta_apply(aOrig, nOrig, aDelta, nDelta, aOut); if( nOut2!=nOut ){ sqlite3_free(aOut); sqlite3_result_error(context, "corrupt fossil delta", -1); }else{ sqlite3_result_blob(context, aOut, nOut, sqlite3_free); } } } /* ** SQL functions: delta_output_size(D) ** ** Return the size of the output that results from applying delta D. */ static void deltaOutputSizeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const char *aDelta; int nDelta; /* The input delta (D) */ int nOut; /* Size of output */ assert( argc==1 ); if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; nDelta = sqlite3_value_bytes(argv[0]); aDelta = (const char*)sqlite3_value_blob(argv[0]); /* Figure out the size of the output */ nOut = delta_output_size(aDelta, nDelta); if( nOut<0 ){ sqlite3_result_error(context, "corrupt fossil delta", -1); return; }else{ sqlite3_result_int(context, nOut); } } /***************************************************************************** ** Table-valued SQL function: delta_parse(DELTA) ** ** Schema: ** ** CREATE TABLE delta_parse( ** op TEXT, ** a1 INT, ** a2 ANY, ** delta HIDDEN BLOB ** ); ** ** Given an input DELTA, this function parses the delta and returns ** rows for each entry in the delta. The op column has one of the ** values SIZE, COPY, INSERT, CHECKSUM, ERROR. ** ** Assuming no errors, the first row has op='SIZE'. a1 is the size of ** the output in bytes and a2 is NULL. ** ** After the initial SIZE row, there are zero or more 'COPY' and/or 'INSERT' ** rows. A COPY row means content is copied from the source into the ** output. Column a1 is the number of bytes to copy and a2 is the offset ** into source from which to begin copying. An INSERT row means to ** insert text into the output stream. Column a1 is the number of bytes ** to insert and column is a BLOB that contains the text to be inserted. ** ** The last row of a well-formed delta will have an op value of 'CHECKSUM'. ** The a1 column will be the value of the checksum and a2 will be NULL. ** ** If the input delta is not well-formed, then a row with an op value ** of 'ERROR' is returned. The a1 value of the ERROR row is the offset ** into the delta where the error was encountered and a2 is NULL. */ typedef struct deltaparsevtab_vtab deltaparsevtab_vtab; typedef struct deltaparsevtab_cursor deltaparsevtab_cursor; struct deltaparsevtab_vtab { sqlite3_vtab base; /* Base class - must be first */ /* No additional information needed */ }; struct deltaparsevtab_cursor { sqlite3_vtab_cursor base; /* Base class - must be first */ char *aDelta; /* The delta being parsed */ int nDelta; /* Number of bytes in the delta */ int iCursor; /* Current cursor location */ int eOp; /* Name of current operator */ unsigned int a1, a2; /* Arguments to current operator */ int iNext; /* Next cursor value */ }; /* Operator names: */ static const char *azOp[] = { "SIZE", "COPY", "INSERT", "CHECKSUM", "ERROR", "EOF" }; #define DELTAPARSE_OP_SIZE 0 #define DELTAPARSE_OP_COPY 1 #define DELTAPARSE_OP_INSERT 2 #define DELTAPARSE_OP_CHECKSUM 3 #define DELTAPARSE_OP_ERROR 4 #define DELTAPARSE_OP_EOF 5 /* ** The deltaparsevtabConnect() method is invoked to create a new ** deltaparse virtual table. ** ** Think of this routine as the constructor for deltaparsevtab_vtab objects. ** ** All this routine needs to do is: ** ** (1) Allocate the deltaparsevtab_vtab object and initialize all fields. ** ** (2) Tell SQLite (via the sqlite3_declare_vtab() interface) what the ** result set of queries against the virtual table will look like. */ static int deltaparsevtabConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ deltaparsevtab_vtab *pNew; int rc; rc = sqlite3_declare_vtab(db, "CREATE TABLE x(op,a1,a2,delta HIDDEN)" ); /* For convenience, define symbolic names for the index to each column. */ #define DELTAPARSEVTAB_OP 0 #define DELTAPARSEVTAB_A1 1 #define DELTAPARSEVTAB_A2 2 #define DELTAPARSEVTAB_DELTA 3 if( rc==SQLITE_OK ){ pNew = sqlite3_malloc64( sizeof(*pNew) ); *ppVtab = (sqlite3_vtab*)pNew; if( pNew==0 ) return SQLITE_NOMEM; memset(pNew, 0, sizeof(*pNew)); } return rc; } /* ** This method is the destructor for deltaparsevtab_vtab objects. */ static int deltaparsevtabDisconnect(sqlite3_vtab *pVtab){ deltaparsevtab_vtab *p = (deltaparsevtab_vtab*)pVtab; sqlite3_free(p); return SQLITE_OK; } /* ** Constructor for a new deltaparsevtab_cursor object. */ static int deltaparsevtabOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ deltaparsevtab_cursor *pCur; pCur = sqlite3_malloc( sizeof(*pCur) ); if( pCur==0 ) return SQLITE_NOMEM; memset(pCur, 0, sizeof(*pCur)); *ppCursor = &pCur->base; return SQLITE_OK; } /* ** Destructor for a deltaparsevtab_cursor. */ static int deltaparsevtabClose(sqlite3_vtab_cursor *cur){ deltaparsevtab_cursor *pCur = (deltaparsevtab_cursor*)cur; sqlite3_free(pCur->aDelta); sqlite3_free(pCur); return SQLITE_OK; } /* ** Advance a deltaparsevtab_cursor to its next row of output. */ static int deltaparsevtabNext(sqlite3_vtab_cursor *cur){ deltaparsevtab_cursor *pCur = (deltaparsevtab_cursor*)cur; const char *z; int i = 0; pCur->iCursor = pCur->iNext; z = pCur->aDelta + pCur->iCursor; pCur->a1 = deltaGetInt(&z, &i); switch( z[0] ){ case '@': { z++; pCur->a2 = deltaGetInt(&z, &i); pCur->eOp = DELTAPARSE_OP_COPY; pCur->iNext = (int)(&z[1] - pCur->aDelta); break; } case ':': { z++; pCur->a2 = (unsigned int)(z - pCur->aDelta); pCur->eOp = DELTAPARSE_OP_INSERT; pCur->iNext = (int)(&z[pCur->a1] - pCur->aDelta); break; } case ';': { pCur->eOp = DELTAPARSE_OP_CHECKSUM; pCur->iNext = pCur->nDelta; break; } default: { if( pCur->iNext==pCur->nDelta ){ pCur->eOp = DELTAPARSE_OP_EOF; }else{ pCur->eOp = DELTAPARSE_OP_ERROR; pCur->iNext = pCur->nDelta; } break; } } return SQLITE_OK; } /* ** Return values of columns for the row at which the deltaparsevtab_cursor ** is currently pointing. */ static int deltaparsevtabColumn( sqlite3_vtab_cursor *cur, /* The cursor */ sqlite3_context *ctx, /* First argument to sqlite3_result_...() */ int i /* Which column to return */ ){ deltaparsevtab_cursor *pCur = (deltaparsevtab_cursor*)cur; switch( i ){ case DELTAPARSEVTAB_OP: { sqlite3_result_text(ctx, azOp[pCur->eOp], -1, SQLITE_STATIC); break; } case DELTAPARSEVTAB_A1: { sqlite3_result_int(ctx, pCur->a1); break; } case DELTAPARSEVTAB_A2: { if( pCur->eOp==DELTAPARSE_OP_COPY ){ sqlite3_result_int(ctx, pCur->a2); }else if( pCur->eOp==DELTAPARSE_OP_INSERT ){ sqlite3_result_blob(ctx, pCur->aDelta+pCur->a2, pCur->a1, SQLITE_TRANSIENT); } break; } case DELTAPARSEVTAB_DELTA: { sqlite3_result_blob(ctx, pCur->aDelta, pCur->nDelta, SQLITE_TRANSIENT); break; } } return SQLITE_OK; } /* ** Return the rowid for the current row. In this implementation, the ** rowid is the same as the output value. */ static int deltaparsevtabRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ deltaparsevtab_cursor *pCur = (deltaparsevtab_cursor*)cur; *pRowid = pCur->iCursor; return SQLITE_OK; } /* ** Return TRUE if the cursor has been moved off of the last ** row of output. */ static int deltaparsevtabEof(sqlite3_vtab_cursor *cur){ deltaparsevtab_cursor *pCur = (deltaparsevtab_cursor*)cur; return pCur->eOp==DELTAPARSE_OP_EOF; } /* ** This method is called to "rewind" the deltaparsevtab_cursor object back ** to the first row of output. This method is always called at least ** once prior to any call to deltaparsevtabColumn() or deltaparsevtabRowid() or ** deltaparsevtabEof(). */ static int deltaparsevtabFilter( sqlite3_vtab_cursor *pVtabCursor, int idxNum, const char *idxStr, int argc, sqlite3_value **argv ){ deltaparsevtab_cursor *pCur = (deltaparsevtab_cursor *)pVtabCursor; const char *a; int i = 0; pCur->eOp = DELTAPARSE_OP_ERROR; if( idxNum!=1 ){ return SQLITE_OK; } pCur->nDelta = sqlite3_value_bytes(argv[0]); a = (const char*)sqlite3_value_blob(argv[0]); if( pCur->nDelta==0 || a==0 ){ return SQLITE_OK; } pCur->aDelta = sqlite3_malloc64( pCur->nDelta+1 ); if( pCur->aDelta==0 ){ pCur->nDelta = 0; return SQLITE_NOMEM; } memcpy(pCur->aDelta, a, pCur->nDelta); pCur->aDelta[pCur->nDelta] = 0; a = pCur->aDelta; pCur->eOp = DELTAPARSE_OP_SIZE; pCur->a1 = deltaGetInt(&a, &i); if( a[0]!='\n' ){ pCur->eOp = DELTAPARSE_OP_ERROR; pCur->a1 = pCur->a2 = 0; pCur->iNext = pCur->nDelta; return SQLITE_OK; } a++; pCur->iNext = (unsigned int)(a - pCur->aDelta); return SQLITE_OK; } /* ** SQLite will invoke this method one or more times while planning a query ** that uses the virtual table. This routine needs to create ** a query plan for each invocation and compute an estimated cost for that ** plan. */ static int deltaparsevtabBestIndex( sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo ){ int i; for(i=0; i<pIdxInfo->nConstraint; i++){ if( pIdxInfo->aConstraint[i].iColumn != DELTAPARSEVTAB_DELTA ) continue; if( pIdxInfo->aConstraint[i].usable==0 ) continue; if( pIdxInfo->aConstraint[i].op!=SQLITE_INDEX_CONSTRAINT_EQ ) continue; pIdxInfo->aConstraintUsage[i].argvIndex = 1; pIdxInfo->aConstraintUsage[i].omit = 1; pIdxInfo->estimatedCost = (double)1; pIdxInfo->estimatedRows = 10; pIdxInfo->idxNum = 1; return SQLITE_OK; } pIdxInfo->idxNum = 0; pIdxInfo->estimatedCost = (double)0x7fffffff; pIdxInfo->estimatedRows = 0x7fffffff; return SQLITE_CONSTRAINT; } /* ** This following structure defines all the methods for the ** virtual table. */ static sqlite3_module deltaparsevtabModule = { /* iVersion */ 0, /* xCreate */ 0, /* xConnect */ deltaparsevtabConnect, /* xBestIndex */ deltaparsevtabBestIndex, /* xDisconnect */ deltaparsevtabDisconnect, /* xDestroy */ 0, /* xOpen */ deltaparsevtabOpen, /* xClose */ deltaparsevtabClose, /* xFilter */ deltaparsevtabFilter, /* xNext */ deltaparsevtabNext, /* xEof */ deltaparsevtabEof, /* xColumn */ deltaparsevtabColumn, /* xRowid */ deltaparsevtabRowid, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindMethod */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0, /* xShadowName */ 0 }; #ifdef _WIN32 __declspec(dllexport) #endif int sqlite3_fossildelta_init( sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi ){ int rc = SQLITE_OK; SQLITE_EXTENSION_INIT2(pApi); (void)pzErrMsg; /* Unused parameter */ rc = sqlite3_create_function(db, "delta_create", 2, SQLITE_UTF8, 0, deltaCreateFunc, 0, 0); if( rc==SQLITE_OK ){ rc = sqlite3_create_function(db, "delta_apply", 2, SQLITE_UTF8, 0, deltaApplyFunc, 0, 0); } if( rc==SQLITE_OK ){ rc = sqlite3_create_function(db, "delta_output_size", 1, SQLITE_UTF8, 0, deltaOutputSizeFunc, 0, 0); } if( rc==SQLITE_OK ){ rc = sqlite3_create_module(db, "delta_parse", &deltaparsevtabModule, 0); } return rc; }
the_stack_data/25138451.c
/********************************/ /* Programmer: Daniel Murdock */ /* Project: C Project #5 */ /* Large Small */ /* MoWe CSCI 112 */ /********************************/ #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> FILE *csis; //Prototype for the compare function void compare(); int main() { csis = fopen("csis.txt", "w"); for (int i = 1; i <= 4; ++i) { compare(); } fclose(csis); return 0; } void compare() { //Initializes the variables int num1 = 0, num2 = 0, num3 = 0, num4 = 0, max = 0, min = 0; //Asks the user to enter four numbers printf("Please enter four numbers:\n"); scanf("%d%d%d%d", &num1, &num2, &num3, &num4); //Checks to see which number is the smallest if (num1 < num2 && num1 < num3 && num1 < num4) { min = num1; //Checks to see which number is the largest //Since this is a nested if statement within the check for the smallest number, we know the //minimum number and can therefore exclude it from consideration for the largest if (num4 > num3 && num4 > num2) { max = num4; } else if (num3 > num4 && num3 > num2) { max = num3; } else max = num2; } //Repeats the above if statement and compound statement for each of the remaining numbers else if (num2 < num1 && num2 < num3 && num2 < num4) { min = num2; if (num4 > num3 && num4 > num1) { max = num4; } else if (num3 > num4 && num3 > num1) { max = num3; } else max = num1; }else if (num3 < num2 && num3 < num1 && num3 < num4) { min = num3; if (num4 > num1 && num4 > num2) { max = num4; } else if (num1 > num4 && num1 > num2) { max = num1; } else max = num2; } else { min = num4; if (num1 > num3 && num1 > num2) { max = num1; } else if (num3 > num1 && num3 > num2) { max = num3; } else max = num2; } //Displays the results on the console and saves them to the file printf("Maximum: %d\nMinimum: %d\n", max, min); fprintf(csis, "Maximum: %d\nMinimum: %d\n", max, min); }
the_stack_data/173578290.c
#include <stdio.h> int sum(int x, int y) { return x + y; }
the_stack_data/955819.c
// // Created by lucas on 02/04/2021. // #include <stdio.h> int main() { int ano; double preco, valor = 0; printf("Digite o ano e o preço:"); scanf("%i %lf", &ano, &preco); if (ano < 1990) { valor = preco + (preco * 0.1); } else if (ano > 1990) { valor = preco + (preco * 0.15); } printf("O valor do carro e de %.3f\n", valor); }
the_stack_data/360328.c
/* * Build into bitcode * RUN: clang -O0 %s -emit-llvm -c -o %t.bc * RUN: adsaopt -internalize -mem2reg -typechecks %t.bc -o %t.tc.bc * RUN: tc-link %t.tc.bc -o %t.tc1.bc * RUN: llc %t.tc1.bc -o %t.tc1.s * RUN: clang++ %t.tc1.s -o %t.tc2 * Execute * RUN: %t.tc2 >& %t.tc.out * RUN: grep "Type.*mismatch" %t.tc.out */ #include<stdlib.h> void **alloc_matrix (int nrmin, int nrmax, int ncmin, int ncmax, size_t elsize) { int i; char **cptr; cptr = (char **) malloc ((nrmax - nrmin + 1) * sizeof (char *)); cptr -= nrmin; for (i=nrmin;i<=nrmax;i++) { cptr[i] = (char *) malloc ((ncmax - ncmin + 1) * elsize); cptr[i] -= ncmin * elsize / sizeof(char); /* sizeof(char) = 1 */ } return ((void **) cptr); } int main() { int i; int j; int pins_per_clb = 5; int ** pinloc = (int **) alloc_matrix (0, 3, 0, pins_per_clb-1, sizeof (int)); for (i=0;i<=3;i++) for (j=0;j<pins_per_clb;j++) { pinloc[i][j] = 0; } return 0; }
the_stack_data/78883.c
/*********************************************************** hamming.c -- Hamming (ハミング) の問題 ***********************************************************/ #define N 100 int q[N]; void hamming(void) { int i, j2, j3, j5, min, x2, x3, x5; j2 = j3 = j5 = 0; x2 = x3 = x5 = 1; for (i = 0; i < N; i++) { min = x2; if (x3 < min) min = x3; if (x5 < min) min = x5; q[i] = min; while (x2 <= min) x2 = 2 * q[j2++]; while (x3 <= min) x3 = 3 * q[j3++]; while (x5 <= min) x5 = 5 * q[j5++]; } } #include <stdio.h> #include <stdlib.h> int main(void) { int i; hamming(); for (i = 0; i < N; i++) printf("%5d", q[i]); printf("\n"); return 0; }
the_stack_data/97013542.c
#include <stdio.h> int main() { char name[15]; /* room for 14 characters */ printf("Your name? "); scanf("%s",name); printf("You are %s.\n",name); return(0); }
the_stack_data/11149.c
#include <stdio.h> /* 预处理 #include 头文件 在gcc第一个阶段预处理时展开 -E 第二个阶段编译 -S .c 翻译成汇编代码 第三个阶段汇编 -c 将汇编代码汇编成机器码 第四个阶段链接 -o 链接动态库 */ /* c基本类型: 计算机按位存储,用户是按字节申请空间 1byte == 8bit 整型:short(2) int(4) long(8) (long long) 浮点:float double 字符:char(1) 'a' man ascii 空类型:void 地址类型: xxx * 复合类型: struct union 标识符: 变量名,函数名,类型名 命名规范:字母、数字、下划线组成,数字不开头,避开c关键字 c关键字: c语法中预留的名字 int short ..... if else switch for while do break continue ..... 变量: 定义: type name; 分配空间 赋值: 左值 (变量) = 右值; 声明: 不分配空间 初始化: 定义的同时赋值 type name = value; 常量: 不能改 1 'a' "hello" 宏 #define N 10 运算符: man operator 算术运算符 * / %(模) + - 位运算 << >> ~ & | ^ 思考:如何将一个整型数的第三位置0 num & ~(1u << 2) 如何将一个整型数的第四位置1 num | (1u << 3) 逻辑运算 && || ! 自增自减 ++ -- a+++b ++a+b 赋值运算符 = += -= *= /= %= <<= >>= &= ^= |= a += b a = a + b 关系运算符 == != > < >= <= 特殊运算符 &变量 *地址 sizeof() (type) , 三目运算符: a == 0 ? 1:2 */ int main(void) { #if 0 printf("%ld\n", sizeof(short)); printf("%ld\n", sizeof(int)); printf("%ld\n", sizeof(long)); printf("%ld\n", sizeof(long long)); printf("welcome to our class\n"); #endif #if 0 int num; // 读用户的输入 scanf("%d", &num); // 打印读到的数值 printf("啊!你输入的是:%d\n", num); #endif int a, b, c; a = 10, b = 100; c = a +++ b; printf("a:%d, b:%d, c:%d\n", a, b, c); // a 11 b 100 c = ++a + b++; printf("a:%d, b:%d, c:%d\n", a, b, c); printf("%ld\n", sizeof(a)); printf("%ld\n", sizeof(int)); printf("%ld\n", sizeof a); int m = 10; float n = 1.5; a = (int)(m + n); printf("%d\n", a); a > 10 ? printf("哈哈\n") : printf("嘿嘿\n"); // a==11 b==101 c = (a++, a+b, b++, a-b); printf("a:%d, b:%d, c:%d\n", a, b, c); return 0; }
the_stack_data/154829857.c
int main() { return sizeof(unsigned short int); }
the_stack_data/243892979.c
#include <stdio.h> int getline2(char s[]) { static int c; int i = 0; if (c == EOF) { return 0; } while((c = getchar()) != '\n' && c != EOF) { s[i++] = c; } if (c == '\n') { s[i++] = c; } s[i] = '\0'; return 1; }
the_stack_data/140764785.c
#include <stdio.h> int main() { printf("Hello!\n"); printf("Name : karthik\n"); printf("Age : 19\n"); printf("Username : karthik77\n"); return(0); }
the_stack_data/37587.c
// RUN: %clang_cc1 -DMRTD -mrtd -triple i386-unknown-unknown -verify %s // RUN: %clang_cc1 -triple i386-unknown-unknown -verify %s #ifndef MRTD // expected-note@+5 {{previous declaration is here}} // expected-error@+5 {{function declared 'stdcall' here was previously declared without calling convention}} // expected-note@+5 {{previous declaration is here}} // expected-error@+5 {{function declared 'stdcall' here was previously declared without calling convention}} #endif void nonvariadic1(int a, int b, int c); void __attribute__((stdcall)) nonvariadic1(int a, int b, int c); void nonvariadic2(int a, int b, int c); void __attribute__((stdcall)) nonvariadic2(int a, int b, int c) { } // expected-warning@+2 {{stdcall calling convention ignored on variadic function}} void variadic(int a, ...); void __attribute__((stdcall)) variadic(int a, ...); #ifdef MRTD // expected-note@+3 {{previous definition is here}} // expected-error@+3 {{redefinition of 'a' with a different type: 'void ((*))(int, int) __attribute__((cdecl))' vs 'void (*)(int, int) __attribute__((stdcall))'}} #endif extern void (*a)(int, int); __attribute__((cdecl)) extern void (*a)(int, int); extern void (*b)(int, ...); __attribute__((cdecl)) extern void (*b)(int, ...); #ifndef MRTD // expected-note@+3 {{previous definition is here}} // expected-error@+3 {{redefinition of 'c' with a different type: 'void ((*))(int, int) __attribute__((stdcall))' vs 'void (*)(int, int)'}} #endif extern void (*c)(int, int); __attribute__((stdcall)) extern void (*c)(int, int); // expected-warning@+2 {{stdcall calling convention ignored on variadic function}} extern void (*d)(int, ...); __attribute__((stdcall)) extern void (*d)(int, ...);
the_stack_data/118770.c
#include <stdio.h> int main(void) { int bph2o = 212; int rv; rv = printf("%d F is water's boiling point.\n", bph2o); printf("The printf() function printed %d characters.\n", rv); return 0; }
the_stack_data/190874.c
/*** * This code is a part of EvoApproxLib library (ehw.fit.vutbr.cz/approxlib) distributed under The MIT License. * When used, please cite the following article(s): V. Mrazek, R. Hrbacek, Z. Vasicek and L. Sekanina, "EvoApprox8b: Library of approximate adders and multipliers for circuit design and benchmarking of approximation methods". Design, Automation & Test in Europe Conference & Exhibition (DATE), 2017, Lausanne, 2017, pp. 258-261. doi: 10.23919/DATE.2017.7926993 * This file contains a circuit from evoapprox8b dataset. Note that a new version of library was already published. ***/ #include <stdint.h> #include <stdlib.h> /// Approximate function mul8_178 /// Library = EvoApprox8b /// Circuit = mul8_178 /// Area (180) = 5522 /// Delay (180) = 2.330 /// Power (180) = 1918.50 /// Area (45) = 409 /// Delay (45) = 0.880 /// Power (45) = 161.30 /// Nodes = 117 /// HD = 376460 /// MAE = 576.52927 /// MSE = 637359.72656 /// MRE = 8.11 % /// WCE = 2898 /// WCRE = 300 % /// EP = 99.0 % uint16_t mul8_178(uint8_t a, uint8_t b) { uint16_t c = 0; uint8_t n0 = (a >> 0) & 0x1; uint8_t n2 = (a >> 1) & 0x1; uint8_t n4 = (a >> 2) & 0x1; uint8_t n6 = (a >> 3) & 0x1; uint8_t n8 = (a >> 4) & 0x1; uint8_t n10 = (a >> 5) & 0x1; uint8_t n12 = (a >> 6) & 0x1; uint8_t n14 = (a >> 7) & 0x1; uint8_t n16 = (b >> 0) & 0x1; uint8_t n18 = (b >> 1) & 0x1; uint8_t n20 = (b >> 2) & 0x1; uint8_t n22 = (b >> 3) & 0x1; uint8_t n24 = (b >> 4) & 0x1; uint8_t n26 = (b >> 5) & 0x1; uint8_t n28 = (b >> 6) & 0x1; uint8_t n30 = (b >> 7) & 0x1; uint8_t n32; uint8_t n35; uint8_t n37; uint8_t n39; uint8_t n40; uint8_t n41; uint8_t n42; uint8_t n46; uint8_t n49; uint8_t n51; uint8_t n53; uint8_t n54; uint8_t n57; uint8_t n61; uint8_t n65; uint8_t n67; uint8_t n68; uint8_t n69; uint8_t n70; uint8_t n71; uint8_t n73; uint8_t n76; uint8_t n82; uint8_t n85; uint8_t n86; uint8_t n87; uint8_t n91; uint8_t n97; uint8_t n102; uint8_t n105; uint8_t n118; uint8_t n120; uint8_t n121; uint8_t n134; uint8_t n157; uint8_t n167; uint8_t n190; uint8_t n193; uint8_t n201; uint8_t n203; uint8_t n258; uint8_t n261; uint8_t n301; uint8_t n306; uint8_t n325; uint8_t n382; uint8_t n386; uint8_t n420; uint8_t n460; uint8_t n476; uint8_t n481; uint8_t n482; uint8_t n484; uint8_t n491; uint8_t n532; uint8_t n564; uint8_t n580; uint8_t n595; uint8_t n608; uint8_t n682; uint8_t n698; uint8_t n712; uint8_t n728; uint8_t n802; uint8_t n816; uint8_t n817; uint8_t n832; uint8_t n846; uint8_t n854; uint8_t n891; uint8_t n906; uint8_t n920; uint8_t n921; uint8_t n934; uint8_t n950; uint8_t n965; uint8_t n1041; uint8_t n1054; uint8_t n1069; uint8_t n1107; uint8_t n1142; uint8_t n1143; uint8_t n1172; uint8_t n1186; uint8_t n1187; uint8_t n1202; uint8_t n1203; uint8_t n1216; uint8_t n1232; uint8_t n1307; uint8_t n1321; uint8_t n1334; uint8_t n1335; uint8_t n1350; uint8_t n1351; uint8_t n1424; uint8_t n1425; uint8_t n1438; uint8_t n1439; uint8_t n1454; uint8_t n1455; uint8_t n1468; uint8_t n1482; uint8_t n1483; uint8_t n1572; uint8_t n1586; uint8_t n1587; uint8_t n1602; uint8_t n1603; uint8_t n1616; uint8_t n1632; uint8_t n1646; uint8_t n1660; uint8_t n1678; uint8_t n1706; uint8_t n1712; uint8_t n1720; uint8_t n1734; uint8_t n1750; uint8_t n1764; uint8_t n1765; uint8_t n1780; uint8_t n1781; uint8_t n1794; uint8_t n1795; uint8_t n1808; uint8_t n1809; uint8_t n1824; uint8_t n1838; uint8_t n1869; uint8_t n1882; uint8_t n1898; uint8_t n1912; uint8_t n1928; uint8_t n1942; uint8_t n1943; uint8_t n1956; uint8_t n1957; uint8_t n1972; uint8_t n1973; uint8_t n1986; uint8_t n1987; uint8_t n2016; n32 = n18 & n12; n35 = (n14 & n16) | (n16 & n26) | (n14 & n26); n37 = n18 & n4; n39 = n22 & n0; n40 = ~(n12 ^ n12); n41 = ~(n12 ^ n12); n42 = ~(n6 & n28); n46 = n26 & n8; n49 = ~((n18 & n14) | n32); n51 = (n41 & n0) | (n0 & n2) | (n41 & n2); n53 = ~((n12 | n51) & n30); n54 = n41 | n0; n57 = (n0 & n54) | (~n0 & n2); n61 = ~(n12 & n28 & n14); n65 = n41; n67 = n65; n68 = ~(n65 | n54 | n67); n69 = ~(n65 | n54 | n67); n70 = ~n69; n71 = ~n69; n73 = ~(n65 | n46 | n22); n76 = ~(n57 & n70); n82 = ~(n6 | n4 | n14); n85 = (n39 & n12) | (~n39 & n53); n86 = n30 | n24; n87 = n30 | n24; n91 = ~(n87 | n28 | n35); n97 = n57; n102 = ~n85; n105 = n97 & n86; n118 = n71 & n20; n120 = n12 & n118; n121 = n12 & n118; n134 = n37 | n120; n157 = ~((n53 & n82) | n91); n167 = ~(n67 & n82); n190 = ~((n69 | n76) & n30); n193 = n105 | n102; n201 = ~(n193 | n134); n203 = (n167 & n40) | (~n167 & n2); n258 = n203 & n28; n261 = ~n61; n301 = n69; n306 = n22 | n20; n325 = n301 | n42; n382 = ~n201; n386 = n6 | n8; n420 = n26 & n386; n460 = n10 & n306; n476 = n12 & n22; n481 = n41; n482 = ~n53; n484 = ~n49; n491 = n14 & n22; n532 = ~n325; n564 = n8 & n24; n580 = n10 & n24; n595 = n12 & n24; n608 = n14 & n24; n682 = n8 & n306; n698 = n10 & n26; n712 = n12 & n26; n728 = n14 & n26; n802 = n8 & n28; n816 = n10 & n28; n817 = n10 & n28; n832 = n12 & n28; n846 = n14 & n28; n854 = n595; n891 = n4 & n30; n906 = n6 & n30; n920 = n8 & n30; n921 = n8 & n30; n934 = n10 & n30; n950 = n12 & n30; n965 = n14 & n30; n1041 = n121; n1054 = n120; n1069 = n481 & n682; n1107 = n491; n1142 = n157; n1143 = n157; n1172 = n460 | n564; n1186 = n476 ^ n580; n1187 = n476 & n580; n1202 = (n1107 ^ n854) ^ n698; n1203 = (n1107 & n854) | (n854 & n698) | (n1107 & n698); n1216 = n608 & n712; n1232 = n608 ^ n712; n1307 = n157 | n1054; n1321 = n1041; n1334 = (n817 ^ n1069) ^ n1172; n1335 = (n817 & n1069) | (n1069 & n1172) | (n817 & n1172); n1350 = (n891 ^ n420) ^ n1186; n1351 = (n891 & n420) | (n420 & n1186) | (n891 & n1186); n1424 = (n1187 ^ n802) ^ n906; n1425 = (n1187 & n802) | (n802 & n906) | (n1187 & n906); n1438 = (n1203 ^ n816) ^ n920; n1439 = (n1203 & n816) | (n816 & n920) | (n1203 & n920); n1454 = (n1216 ^ n832) ^ n934; n1455 = (n1216 & n832) | (n832 & n934) | (n1216 & n934); n1468 = n261 & n482; n1482 = n846 ^ n950; n1483 = n846 & n950; n1572 = n1334; n1586 = n1350 ^ n1335; n1587 = n1350 & n1335; n1602 = (n1202 ^ n1216) ^ n1424; n1603 = (n1202 & n1216) | (n1216 & n1424) | (n1202 & n1424); n1616 = n1232 & n1438; n1632 = n1232 | n1438; n1646 = n728 & n1454; n1660 = n728 ^ n1454; n1678 = n1483; n1706 = (n921 ^ n68) ^ n1321; n1712 = n921; n1720 = (n1307 & n190) | (~n1307 & n1425); n1734 = n1572 | n484; n1750 = n1586 | n532; n1764 = (n1602 ^ n1587) ^ n1351; n1765 = (n1602 & n1587) | (n1587 & n1351) | (n1602 & n1351); n1780 = (n1632 ^ n1603) ^ n1425; n1781 = (n1632 & n1603) | (n1603 & n1425) | (n1632 & n1425); n1794 = (n1660 ^ n1616) ^ n1439; n1795 = (n1660 & n1616) | (n1616 & n1439) | (n1660 & n1439); n1808 = (n1482 ^ n1646) ^ n1455; n1809 = (n1482 & n1646) | (n1646 & n1455) | (n1482 & n1455); n1824 = n41 & n1468; n1838 = n965 ^ n1678; n1869 = n1706 | n382; n1882 = n1720; n1898 = n1734 | n258; n1912 = n1750; n1928 = n1764; n1942 = n1780 ^ n1765; n1943 = n1780 & n1765; n1956 = (n1794 ^ n1781) ^ n1943; n1957 = (n1794 & n1781) | (n1781 & n1943) | (n1794 & n1943); n1972 = (n1808 ^ n1795) ^ n1957; n1973 = (n1808 & n1795) | (n1795 & n1957) | (n1808 & n1957); n1986 = (n1838 ^ n1809) ^ n1973; n1987 = (n1838 & n1809) | (n1809 & n1973) | (n1838 & n1973); n2016 = n1824 | n1987; c |= (n73 & 0x1) << 0; c |= (n1142 & 0x1) << 1; c |= (n1603 & 0x1) << 2; c |= (n1712 & 0x1) << 3; c |= (n1869 & 0x1) << 4; c |= (n1882 & 0x1) << 5; c |= (n1143 & 0x1) << 6; c |= (n1882 & 0x1) << 7; c |= (n1898 & 0x1) << 8; c |= (n1912 & 0x1) << 9; c |= (n1928 & 0x1) << 10; c |= (n1942 & 0x1) << 11; c |= (n1956 & 0x1) << 12; c |= (n1972 & 0x1) << 13; c |= (n1986 & 0x1) << 14; c |= (n2016 & 0x1) << 15; return c; }
the_stack_data/97011811.c
#include <string.h> #include <ctype.h> #include <sys/types.h> int stricmp(char const *s1, char const *s2) { unsigned char c1 = '\0'; unsigned char c2 = '\0'; while (1) { c1 = *s1; c2 = *s2; s1++; s2++; if (!c1) break; if (!c2) break; if (c1 == c2) continue; c1 = tolower(c1); c2 = tolower(c2); if (c1 != c2) break; } return (int)c1 - (int)c2; } #pragma weak strcasecmp=stricmp
the_stack_data/3261681.c
/*BEGIN_LEGAL Intel Open Source License Copyright (c) 2002-2013 Intel Corporation. All rights reserved. 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. Neither the name of the Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 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 INTEL OR ITS 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. END_LEGAL */ // This little application is used to test calling application functions. // #include <stdio.h> #if defined (TARGET_WINDOWS) #define EXPORT_SYM __declspec( dllexport ) #else #define EXPORT_SYM extern #endif EXPORT_SYM int Bar2( int one, int two ); int main() { int res; res = Bar2(6, 8); printf("main: res = %d\n", res); return 0; }
the_stack_data/5391.c
// RUN: %clang_cc1 -no-opaque-pointers -triple x86_64-unknown-unknown -ffreestanding -target-feature +adx -emit-llvm -o - %s | FileCheck %s #include <immintrin.h> unsigned char test_addcarryx_u32(unsigned char __cf, unsigned int __x, unsigned int __y, unsigned int *__p) { // CHECK-LABEL: test_addcarryx_u32 // CHECK: [[ADC:%.*]] = call { i8, i32 } @llvm.x86.addcarry.32 // CHECK: [[DATA:%.*]] = extractvalue { i8, i32 } [[ADC]], 1 // CHECK: store i32 [[DATA]], i32* %{{.*}} // CHECK: [[CF:%.*]] = extractvalue { i8, i32 } [[ADC]], 0 return _addcarryx_u32(__cf, __x, __y, __p); } unsigned char test_addcarryx_u64(unsigned char __cf, unsigned long long __x, unsigned long long __y, unsigned long long *__p) { // CHECK-LABEL: test_addcarryx_u64 // CHECK: [[ADC:%.*]] = call { i8, i64 } @llvm.x86.addcarry.64 // CHECK: [[DATA:%.*]] = extractvalue { i8, i64 } [[ADC]], 1 // CHECK: store i64 [[DATA]], i64* %{{.*}} // CHECK: [[CF:%.*]] = extractvalue { i8, i64 } [[ADC]], 0 return _addcarryx_u64(__cf, __x, __y, __p); }
the_stack_data/4019.c
/* * $Id$ * * This program uses the PortAudio Portable Audio Library. * For more information see: http://www.portaudio.com * Copyright (c) 1999-2000 Ross Bencina and Phil Burk * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files * (the "Software"), to deal in the Software without restriction, * including without limitation the rights to use, copy, modify, merge, * publish, distribute, sublicense, and/or sell copies of the Software, * and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* * The text above constitutes the entire PortAudio license; however, * the PortAudio community also makes the following non-binding requests: * * Any person wishing to distribute modifications to the Software is * requested to send the modifications to the original developer so that * they can be incorporated into the canonical version. It is also * requested that these non-binding requests be included along with the * license above. */ #include <stdio.h> #include <math.h> #include "portaudio.h" #ifdef WIN32 #include <windows.h> #if PA_USE_ASIO #include "pa_asio.h" #endif #endif /*******************************************************************/ static void PrintSupportedStandardSampleRates( const PaStreamParameters *inputParameters, const PaStreamParameters *outputParameters ) { static double standardSampleRates[] = { 8000.0, 9600.0, 11025.0, 12000.0, 16000.0, 22050.0, 24000.0, 32000.0, 44100.0, 48000.0, 88200.0, 96000.0, 192000.0, -1 /* negative terminated list */ }; int i, printCount; PaError err; printCount = 0; for( i=0; standardSampleRates[i] > 0; i++ ) { err = Pa_IsFormatSupported( inputParameters, outputParameters, standardSampleRates[i] ); if( err == paFormatIsSupported ) { if( printCount == 0 ) { printf( "\t%8.2f", standardSampleRates[i] ); printCount = 1; } else if( printCount == 4 ) { printf( ",\n\t%8.2f", standardSampleRates[i] ); printCount = 1; } else { printf( ", %8.2f", standardSampleRates[i] ); ++printCount; } } } if( !printCount ) printf( "None\n" ); else printf( "\n" ); } /*******************************************************************/ int main(void); int main(void) { int i, numDevices, defaultDisplayed; const PaDeviceInfo *deviceInfo; PaStreamParameters inputParameters, outputParameters; PaError err; err = Pa_Initialize(); if( err != paNoError ) { printf( "ERROR: Pa_Initialize returned 0x%x\n", err ); goto error; } printf( "PortAudio version: 0x%08X\n", Pa_GetVersion()); printf( "Version text: '%s'\n", Pa_GetVersionInfo()->versionText ); numDevices = Pa_GetDeviceCount(); if( numDevices < 0 ) { printf( "ERROR: Pa_GetDeviceCount returned 0x%x\n", numDevices ); err = numDevices; goto error; } printf( "Number of devices = %d\n", numDevices ); for( i=0; i<numDevices; i++ ) { deviceInfo = Pa_GetDeviceInfo( i ); printf( "--------------------------------------- device #%d\n", i ); /* Mark global and API specific default devices */ defaultDisplayed = 0; if( i == Pa_GetDefaultInputDevice() ) { printf( "[ Default Input" ); defaultDisplayed = 1; } else if( i == Pa_GetHostApiInfo( deviceInfo->hostApi )->defaultInputDevice ) { const PaHostApiInfo *hostInfo = Pa_GetHostApiInfo( deviceInfo->hostApi ); printf( "[ Default %s Input", hostInfo->name ); defaultDisplayed = 1; } if( i == Pa_GetDefaultOutputDevice() ) { printf( (defaultDisplayed ? "," : "[") ); printf( " Default Output" ); defaultDisplayed = 1; } else if( i == Pa_GetHostApiInfo( deviceInfo->hostApi )->defaultOutputDevice ) { const PaHostApiInfo *hostInfo = Pa_GetHostApiInfo( deviceInfo->hostApi ); printf( (defaultDisplayed ? "," : "[") ); printf( " Default %s Output", hostInfo->name ); defaultDisplayed = 1; } if( defaultDisplayed ) printf( " ]\n" ); /* print device info fields */ #ifdef WIN32 { /* Use wide char on windows, so we can show UTF-8 encoded device names */ wchar_t wideName[MAX_PATH]; MultiByteToWideChar(CP_UTF8, 0, deviceInfo->name, -1, wideName, MAX_PATH-1); wprintf( L"Name = %s\n", wideName ); } #else printf( "Name = %s\n", deviceInfo->name ); #endif printf( "Host API = %s\n", Pa_GetHostApiInfo( deviceInfo->hostApi )->name ); printf( "Max inputs = %d", deviceInfo->maxInputChannels ); printf( ", Max outputs = %d\n", deviceInfo->maxOutputChannels ); printf( "Default low input latency = %8.4f\n", deviceInfo->defaultLowInputLatency ); printf( "Default low output latency = %8.4f\n", deviceInfo->defaultLowOutputLatency ); printf( "Default high input latency = %8.4f\n", deviceInfo->defaultHighInputLatency ); printf( "Default high output latency = %8.4f\n", deviceInfo->defaultHighOutputLatency ); #ifdef WIN32 #if PA_USE_ASIO /* ASIO specific latency information */ if( Pa_GetHostApiInfo( deviceInfo->hostApi )->type == paASIO ){ long minLatency, maxLatency, preferredLatency, granularity; err = PaAsio_GetAvailableLatencyValues( i, &minLatency, &maxLatency, &preferredLatency, &granularity ); printf( "ASIO minimum buffer size = %ld\n", minLatency ); printf( "ASIO maximum buffer size = %ld\n", maxLatency ); printf( "ASIO preferred buffer size = %ld\n", preferredLatency ); if( granularity == -1 ) printf( "ASIO buffer granularity = power of 2\n" ); else printf( "ASIO buffer granularity = %ld\n", granularity ); } #endif /* PA_USE_ASIO */ #endif /* WIN32 */ printf( "Default sample rate = %8.2f\n", deviceInfo->defaultSampleRate ); /* poll for standard sample rates */ inputParameters.device = i; inputParameters.channelCount = deviceInfo->maxInputChannels; inputParameters.sampleFormat = paInt16; inputParameters.suggestedLatency = 0; /* ignored by Pa_IsFormatSupported() */ inputParameters.hostApiSpecificStreamInfo = NULL; outputParameters.device = i; outputParameters.channelCount = deviceInfo->maxOutputChannels; outputParameters.sampleFormat = paInt16; outputParameters.suggestedLatency = 0; /* ignored by Pa_IsFormatSupported() */ outputParameters.hostApiSpecificStreamInfo = NULL; if( inputParameters.channelCount > 0 ) { printf("Supported standard sample rates\n for half-duplex 16 bit %d channel input = \n", inputParameters.channelCount ); PrintSupportedStandardSampleRates( &inputParameters, NULL ); } if( outputParameters.channelCount > 0 ) { printf("Supported standard sample rates\n for half-duplex 16 bit %d channel output = \n", outputParameters.channelCount ); PrintSupportedStandardSampleRates( NULL, &outputParameters ); } if( inputParameters.channelCount > 0 && outputParameters.channelCount > 0 ) { printf("Supported standard sample rates\n for full-duplex 16 bit %d channel input, %d channel output = \n", inputParameters.channelCount, outputParameters.channelCount ); PrintSupportedStandardSampleRates( &inputParameters, &outputParameters ); } } Pa_Terminate(); printf("----------------------------------------------\n"); return 0; error: Pa_Terminate(); fprintf( stderr, "Error number: %d\n", err ); fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) ); return err; }
the_stack_data/1022483.c
// KASAN: use-after-free Read in get_work_pool // https://syzkaller.appspot.com/bug?id=91c1d9055bb9b067ec4997507dc7518acc731b69 // status:open // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <arpa/inet.h> #include <dirent.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include <net/if.h> #include <netinet/in.h> #include <signal.h> #include <stdarg.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/prctl.h> #include <sys/socket.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/types.h> #include <sys/wait.h> #include <time.h> #include <unistd.h> #include <sched.h> #include <linux/genetlink.h> #include <linux/if_addr.h> #include <linux/if_link.h> #include <linux/in6.h> #include <linux/neighbour.h> #include <linux/net.h> #include <linux/netlink.h> #include <linux/rtnetlink.h> #include <linux/veth.h> unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[1024]; }; static struct nlmsg nlmsg; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; unsigned n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != hdr->nlmsg_len) exit(1); n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (hdr->nlmsg_type == NLMSG_DONE) { *reply_len = 0; return 0; } if (n < sizeof(struct nlmsghdr)) exit(1); if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr)) exit(1); if (hdr->nlmsg_type != NLMSG_ERROR) exit(1); return -((struct nlmsgerr*)(hdr + 1))->error; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL); } static int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); (void)err; } const int kInitNetNsFd = 239; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_CMD_RELOAD 37 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 #define DEVLINK_ATTR_NETNS_FD 138 static int netlink_devlink_id_get(struct nlmsg* nlmsg, int sock) { struct genlmsghdr genlhdr; struct nlattr* attr; int err, n; uint16_t id = 0; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, DEVLINK_FAMILY_NAME, strlen(DEVLINK_FAMILY_NAME) + 1); err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n); if (err) { return -1; } attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); /* recv ack */ return id; } static void netlink_devlink_netns_move(const char* bus_name, const char* dev_name, int netns_fd) { struct genlmsghdr genlhdr; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); id = netlink_devlink_id_get(&nlmsg, sock); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_RELOAD; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_NETNS_FD, &netns_fd, sizeof(netns_fd)); err = netlink_send(&nlmsg, sock); if (err) { } error: close(sock); } static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_devlink_id_get(&nlmsg, sock); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len); if (err) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } static void initialize_devlink_pci(void) { int netns = open("/proc/self/ns/net", O_RDONLY); if (netns == -1) exit(1); int ret = setns(kInitNetNsFd, 0); if (ret == -1) exit(1); netlink_devlink_netns_move("pci", "0000:00:10.0", netns); ret = setns(netns, 0); if (ret == -1) exit(1); close(netns); initialize_devlink_ports("pci", "0000:00:10.0", "netpci"); } static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(a1 % 10); a1 /= 10; } return open(buf, a2, 0); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); int i; for (i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter; for (iter = 0;; iter++) { int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5 * 1000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; res = syz_open_dev(0xc, 4, 1); if (res != -1) r[0] = res; syscall(__NR_ioctl, r[0], 0x5608ul, 0ul); syz_open_dev(0xc, 4, 0x14 + procid * 2); } int main(void) { syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }
the_stack_data/68887592.c
/********************************************************* * From C PROGRAMMING: A MODERN APPROACH, Second Edition * * By K. N. King * * Copyright (c) 2008, 1996 W. W. Norton & Company, Inc. * * All rights reserved. * * This program may be freely distributed for class use, * * provided that this copyright notice is retained. * *********************************************************/ /* numdigits.c (Chapter 6, page 105) */ /* Calculates the number of digits in an integer */ #include <stdio.h> int main() { int digits = 0, n; printf("Enter a nonnegative integer: "); scanf("%d", &n); // Enter a nonnegative integer: 12627 do { n /= 10; digits++; } while (n > 0); printf("The number has %d digit(s).\n", digits); // The number has 5 digit(s). return 0; }
the_stack_data/775497.c
void elfin3_dynamics_guard_surfaces_info(const char** baseName, unsigned long* m, unsigned long* n, unsigned int* indCount, unsigned int* depCount) { *baseName = "double d"; *m = 1; *n = 13; *depCount = 1; // number of dependent array variables *indCount = 1; // number of independent array variables }
the_stack_data/84252.c
// BUG: bad host security descriptor; not enough data (4 vs 5 left) // https://syzkaller.appspot.com/bug?id=ec8eb16c595fed3f6c3a7b201e447c80b32d1e69 // status:open // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <arpa/inet.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include <net/if.h> #include <netinet/in.h> #include <stdarg.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/mount.h> #include <sys/socket.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/types.h> #include <unistd.h> #include <sched.h> #include <linux/genetlink.h> #include <linux/if_addr.h> #include <linux/if_link.h> #include <linux/in6.h> #include <linux/neighbour.h> #include <linux/net.h> #include <linux/netlink.h> #include <linux/rtnetlink.h> #include <linux/usb/ch9.h> #include <linux/veth.h> unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static struct { char* pos; int nesting; struct nlattr* nested[8]; char buf[1024]; } nlmsg; static void netlink_init(int typ, int flags, const void* data, int size) { memset(&nlmsg, 0, sizeof(nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg.buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg.pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg.pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; memcpy(attr + 1, data, size); nlmsg.pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(int sock, uint16_t reply_type, int* reply_len) { if (nlmsg.pos > nlmsg.buf + sizeof(nlmsg.buf) || nlmsg.nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg.buf; hdr->nlmsg_len = nlmsg.pos - nlmsg.buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; unsigned n = sendto(sock, nlmsg.buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != hdr->nlmsg_len) exit(1); n = recv(sock, nlmsg.buf, sizeof(nlmsg.buf), 0); if (n < sizeof(struct nlmsghdr)) exit(1); if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr)) exit(1); if (hdr->nlmsg_type != NLMSG_ERROR) exit(1); return -((struct nlmsgerr*)(hdr + 1))->error; } static int netlink_send(int sock) { return netlink_send_ext(sock, 0, NULL); } const int kInitNetNsFd = 239; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_RELOAD 37 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETNS_FD 137 static void netlink_devlink_netns_move(const char* bus_name, const char* dev_name, int netns_fd) { struct genlmsghdr genlhdr; struct nlattr* attr; int sock, err, n; uint16_t id = 0; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(CTRL_ATTR_FAMILY_NAME, DEVLINK_FAMILY_NAME, strlen(DEVLINK_FAMILY_NAME) + 1); err = netlink_send_ext(sock, GENL_ID_CTRL, &n); if (err) { goto error; } attr = (struct nlattr*)(nlmsg.buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { goto error; } recv(sock, nlmsg.buf, sizeof(nlmsg.buf), 0); /* recv ack */ memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_RELOAD; netlink_init(id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); netlink_attr(DEVLINK_ATTR_NETNS_FD, &netns_fd, sizeof(netns_fd)); netlink_send(sock); error: close(sock); } static void initialize_devlink_pci(void) { int netns = open("/proc/self/ns/net", O_RDONLY); if (netns == -1) exit(1); int ret = setns(kInitNetNsFd, 0); if (ret == -1) exit(1); netlink_devlink_netns_move("pci", "0000:00:10.0", netns); ret = setns(netns, 0); if (ret == -1) exit(1); close(netns); } #define MAX_FDS 30 #define USB_DEBUG 0 #define USB_MAX_IFACE_NUM 4 #define USB_MAX_EP_NUM 32 struct usb_iface_index { struct usb_interface_descriptor* iface; uint8_t bInterfaceNumber; uint8_t bAlternateSetting; struct usb_endpoint_descriptor eps[USB_MAX_EP_NUM]; int eps_num; }; struct usb_device_index { struct usb_device_descriptor* dev; struct usb_config_descriptor* config; uint8_t bMaxPower; int config_length; struct usb_iface_index ifaces[USB_MAX_IFACE_NUM]; int ifaces_num; int iface_cur; }; static bool parse_usb_descriptor(char* buffer, size_t length, struct usb_device_index* index) { if (length < sizeof(*index->dev) + sizeof(*index->config)) return false; memset(index, 0, sizeof(*index)); index->dev = (struct usb_device_descriptor*)buffer; index->config = (struct usb_config_descriptor*)(buffer + sizeof(*index->dev)); index->bMaxPower = index->config->bMaxPower; index->config_length = length - sizeof(*index->dev); index->iface_cur = -1; size_t offset = 0; while (true) { if (offset + 1 >= length) break; uint8_t desc_length = buffer[offset]; uint8_t desc_type = buffer[offset + 1]; if (desc_length <= 2) break; if (offset + desc_length > length) break; if (desc_type == USB_DT_INTERFACE && index->ifaces_num < USB_MAX_IFACE_NUM) { struct usb_interface_descriptor* iface = (struct usb_interface_descriptor*)(buffer + offset); index->ifaces[index->ifaces_num].iface = iface; index->ifaces[index->ifaces_num].bInterfaceNumber = iface->bInterfaceNumber; index->ifaces[index->ifaces_num].bAlternateSetting = iface->bAlternateSetting; index->ifaces_num++; } if (desc_type == USB_DT_ENDPOINT && index->ifaces_num > 0) { struct usb_iface_index* iface = &index->ifaces[index->ifaces_num - 1]; if (iface->eps_num < USB_MAX_EP_NUM) { memcpy(&iface->eps[iface->eps_num], buffer + offset, sizeof(iface->eps[iface->eps_num])); iface->eps_num++; } } offset += desc_length; } return true; } enum usb_raw_event_type { USB_RAW_EVENT_INVALID, USB_RAW_EVENT_CONNECT, USB_RAW_EVENT_CONTROL, }; struct usb_raw_event { uint32_t type; uint32_t length; char data[0]; }; struct usb_raw_init { uint64_t speed; const char* driver_name; const char* device_name; }; struct usb_raw_ep_io { uint16_t ep; uint16_t flags; uint32_t length; char data[0]; }; #define USB_RAW_IOCTL_INIT _IOW('U', 0, struct usb_raw_init) #define USB_RAW_IOCTL_RUN _IO('U', 1) #define USB_RAW_IOCTL_EVENT_FETCH _IOR('U', 2, struct usb_raw_event) #define USB_RAW_IOCTL_EP0_WRITE _IOW('U', 3, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP0_READ _IOWR('U', 4, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_ENABLE _IOW('U', 5, struct usb_endpoint_descriptor) #define USB_RAW_IOCTL_EP_DISABLE _IOW('U', 6, int) #define USB_RAW_IOCTL_EP_WRITE _IOW('U', 7, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_READ _IOWR('U', 8, struct usb_raw_ep_io) #define USB_RAW_IOCTL_CONFIGURE _IO('U', 9) #define USB_RAW_IOCTL_VBUS_DRAW _IOW('U', 10, uint32_t) static int usb_raw_open() { return open("/sys/kernel/debug/usb/raw-gadget", O_RDWR); } static int usb_raw_init(int fd, uint32_t speed, const char* driver, const char* device) { struct usb_raw_init arg; arg.speed = speed; arg.driver_name = driver; arg.device_name = device; return ioctl(fd, USB_RAW_IOCTL_INIT, &arg); } static int usb_raw_run(int fd) { return ioctl(fd, USB_RAW_IOCTL_RUN, 0); } static int usb_raw_event_fetch(int fd, struct usb_raw_event* event) { return ioctl(fd, USB_RAW_IOCTL_EVENT_FETCH, event); } static int usb_raw_ep0_write(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_WRITE, io); } static int usb_raw_ep0_read(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_READ, io); } static int usb_raw_ep_enable(int fd, struct usb_endpoint_descriptor* desc) { return ioctl(fd, USB_RAW_IOCTL_EP_ENABLE, desc); } static int usb_raw_ep_disable(int fd, int ep) { return ioctl(fd, USB_RAW_IOCTL_EP_DISABLE, ep); } static int usb_raw_configure(int fd) { return ioctl(fd, USB_RAW_IOCTL_CONFIGURE, 0); } static int usb_raw_vbus_draw(int fd, uint32_t power) { return ioctl(fd, USB_RAW_IOCTL_VBUS_DRAW, power); } #define MAX_USB_FDS 6 struct usb_info { int fd; struct usb_device_index index; }; static struct usb_info usb_devices[MAX_USB_FDS]; static int usb_devices_num; static struct usb_device_index* add_usb_index(int fd, char* dev, size_t dev_len) { int i = __atomic_fetch_add(&usb_devices_num, 1, __ATOMIC_RELAXED); if (i >= MAX_USB_FDS) return NULL; int rv = 0; rv = parse_usb_descriptor(dev, dev_len, &usb_devices[i].index); if (!rv) return NULL; __atomic_store_n(&usb_devices[i].fd, fd, __ATOMIC_RELEASE); return &usb_devices[i].index; } static struct usb_device_index* lookup_usb_index(int fd) { int i; for (i = 0; i < MAX_USB_FDS; i++) { if (__atomic_load_n(&usb_devices[i].fd, __ATOMIC_ACQUIRE) == fd) { return &usb_devices[i].index; } } return NULL; } static void set_interface(int fd, int n) { struct usb_device_index* index = lookup_usb_index(fd); int ep; if (!index) return; if (index->iface_cur >= 0 && index->iface_cur < index->ifaces_num) { for (ep = 0; ep < index->ifaces[index->iface_cur].eps_num; ep++) { int rv = usb_raw_ep_disable(fd, ep); if (rv < 0) { } else { } } } if (n >= 0 && n < index->ifaces_num) { for (ep = 0; ep < index->ifaces[n].eps_num; ep++) { int rv = usb_raw_ep_enable(fd, &index->ifaces[n].eps[ep]); if (rv < 0) { } else { } } index->iface_cur = n; } } static int configure_device(int fd) { struct usb_device_index* index = lookup_usb_index(fd); if (!index) return -1; int rv = usb_raw_vbus_draw(fd, index->bMaxPower); if (rv < 0) { return rv; } rv = usb_raw_configure(fd); if (rv < 0) { return rv; } set_interface(fd, 0); return 0; } #define USB_MAX_PACKET_SIZE 1024 struct usb_raw_control_event { struct usb_raw_event inner; struct usb_ctrlrequest ctrl; char data[USB_MAX_PACKET_SIZE]; }; struct usb_raw_ep_io_data { struct usb_raw_ep_io inner; char data[USB_MAX_PACKET_SIZE]; }; struct vusb_connect_string_descriptor { uint32_t len; char* str; } __attribute__((packed)); struct vusb_connect_descriptors { uint32_t qual_len; char* qual; uint32_t bos_len; char* bos; uint32_t strs_len; struct vusb_connect_string_descriptor strs[0]; } __attribute__((packed)); static const char default_string[] = {8, USB_DT_STRING, 's', 0, 'y', 0, 'z', 0}; static const char default_lang_id[] = {4, USB_DT_STRING, 0x09, 0x04}; static bool lookup_connect_response(int fd, struct vusb_connect_descriptors* descs, struct usb_ctrlrequest* ctrl, char** response_data, uint32_t* response_length) { struct usb_device_index* index = lookup_usb_index(fd); uint8_t str_idx; if (!index) return false; switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_GET_DESCRIPTOR: switch (ctrl->wValue >> 8) { case USB_DT_DEVICE: *response_data = (char*)index->dev; *response_length = sizeof(*index->dev); return true; case USB_DT_CONFIG: *response_data = (char*)index->config; *response_length = index->config_length; return true; case USB_DT_STRING: str_idx = (uint8_t)ctrl->wValue; if (descs && str_idx < descs->strs_len) { *response_data = descs->strs[str_idx].str; *response_length = descs->strs[str_idx].len; return true; } if (str_idx == 0) { *response_data = (char*)&default_lang_id[0]; *response_length = default_lang_id[0]; return true; } *response_data = (char*)&default_string[0]; *response_length = default_string[0]; return true; case USB_DT_BOS: *response_data = descs->bos; *response_length = descs->bos_len; return true; case USB_DT_DEVICE_QUALIFIER: if (!descs->qual) { struct usb_qualifier_descriptor* qual = (struct usb_qualifier_descriptor*)response_data; qual->bLength = sizeof(*qual); qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER; qual->bcdUSB = index->dev->bcdUSB; qual->bDeviceClass = index->dev->bDeviceClass; qual->bDeviceSubClass = index->dev->bDeviceSubClass; qual->bDeviceProtocol = index->dev->bDeviceProtocol; qual->bMaxPacketSize0 = index->dev->bMaxPacketSize0; qual->bNumConfigurations = index->dev->bNumConfigurations; qual->bRESERVED = 0; *response_length = sizeof(*qual); return true; } *response_data = descs->qual; *response_length = descs->qual_len; return true; default: exit(1); return false; } break; default: exit(1); return false; } break; default: exit(1); return false; } return false; } static volatile long syz_usb_connect(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { uint64_t speed = a0; uint64_t dev_len = a1; char* dev = (char*)a2; struct vusb_connect_descriptors* descs = (struct vusb_connect_descriptors*)a3; if (!dev) { return -1; } int fd = usb_raw_open(); if (fd < 0) { return fd; } if (fd >= MAX_FDS) { close(fd); return -1; } struct usb_device_index* index = add_usb_index(fd, dev, dev_len); if (!index) { return -1; } char device[32]; sprintf(&device[0], "dummy_udc.%llu", procid); int rv = usb_raw_init(fd, speed, "dummy_udc", &device[0]); if (rv < 0) { return rv; } rv = usb_raw_run(fd); if (rv < 0) { return rv; } bool done = false; while (!done) { struct usb_raw_control_event event; event.inner.type = 0; event.inner.length = sizeof(event.ctrl); rv = usb_raw_event_fetch(fd, (struct usb_raw_event*)&event); if (rv < 0) { return rv; } if (event.inner.type != USB_RAW_EVENT_CONTROL) continue; bool response_found = false; char* response_data = NULL; uint32_t response_length = 0; if (event.ctrl.bRequestType & USB_DIR_IN) { response_found = lookup_connect_response( fd, descs, &event.ctrl, &response_data, &response_length); if (!response_found) { return -1; } } else { if ((event.ctrl.bRequestType & USB_TYPE_MASK) != USB_TYPE_STANDARD || event.ctrl.bRequest != USB_REQ_SET_CONFIGURATION) { exit(1); return -1; } done = true; } if (done) { rv = configure_device(fd); if (rv < 0) { return rv; } } struct usb_raw_ep_io_data response; response.inner.ep = 0; response.inner.flags = 0; if (response_length > sizeof(response.data)) response_length = 0; if (event.ctrl.wLength < response_length) response_length = event.ctrl.wLength; response.inner.length = response_length; if (response_data) memcpy(&response.data[0], response_data, response_length); else memset(&response.data[0], 0, response_length); if (event.ctrl.bRequestType & USB_DIR_IN) { rv = usb_raw_ep0_write(fd, (struct usb_raw_ep_io*)&response); } else { rv = usb_raw_ep0_read(fd, (struct usb_raw_ep_io*)&response); } if (rv < 0) { return rv; } } sleep_ms(200); return fd; } int main(void) { syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0); memcpy((void*)0x20000000, "\x12\x01\x00\x00\x52\x63\x8f\x40\xdc\x13\x11\x56\x15\x2f\x00\x00\x00" "\x01\x09\x02\x44\x00\x01\x00\x00\x00\x00\x09\x04\x00\x00\x04\xe0\x02" "\x01\x00\x09\x05\x84\x03\x3e\x33\x00\x00\x00\x09\x05\x0f\x00\x00\x00" "\x00\x00\x00\x09\x05\x07\x00\x00\x00\x00\x00\x00\x09\x0c\x09\x00\x00" "\x00\x00\x00\x00\x0e\x21\x34\x6a\xc2\x92\x0d\xbf\x07\x7d\x35\x4a\x2f" "\x72", 86); syz_usb_connect(0, 0x56, 0x20000000, 0); return 0; }
the_stack_data/645160.c
/* Linux epoll(2) based ae.c module * * Copyright (c) 2009-2012, Salvatore Sanfilippo <antirez at gmail dot com> * All rights reserved. * * 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. * * Neither the name of Redis nor the names of its contributors may be used * to endorse or promote products derived from this software without * specific prior written permission. * * 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. */ #ifdef HAVE_EPOLL #include <sys/epoll.h> typedef int (*epoll_wait_t)(int epfd, struct epoll_event *events, int maxevents, int timeout); extern epoll_wait_t epoll_wait_f; typedef struct aeApiState { int epfd; struct epoll_event *events; } aeApiState; static int aeApiCreate(aeEventLoop *eventLoop) { aeApiState *state = malloc(sizeof(aeApiState)); if (!state) return -1; state->events = malloc(sizeof(struct epoll_event)*eventLoop->setsize); if (!state->events) { free(state); return -1; } state->epfd = epoll_create(1024); /* 1024 is just an hint for the kernel */ if (state->epfd == -1) { free(state->events); free(state); return -1; } eventLoop->apidata = state; return 0; } static int aeApiResize(aeEventLoop *eventLoop, int setsize) { aeApiState *state = eventLoop->apidata; state->events = realloc(state->events, sizeof(struct epoll_event)*setsize); return 0; } static void aeApiFree(aeEventLoop *eventLoop) { aeApiState *state = eventLoop->apidata; close(state->epfd); free(state->events); free(state); } static int aeApiAddEvent(aeEventLoop *eventLoop, int fd, int mask) { aeApiState *state = eventLoop->apidata; struct epoll_event ee; /* If the fd was already monitored for some event, we need a MOD * operation. Otherwise we need an ADD operation. */ int op = eventLoop->events[fd].mask == ECO_POLL_NONE ? EPOLL_CTL_ADD : EPOLL_CTL_MOD; ee.events = 0; mask |= eventLoop->events[fd].mask; /* Merge old events */ if (mask & ECO_POLL_READABLE) ee.events |= EPOLLIN; if (mask & ECO_POLL_WRITABLE) ee.events |= EPOLLOUT; ee.data.u64 = 0; /* avoid valgrind warning */ ee.data.fd = fd; if (epoll_ctl(state->epfd,op,fd,&ee) == -1) return -1; return 0; } static int aeApiUpdEvent(aeEventLoop *eventLoop, int fd, int mask) { aeApiState *state = eventLoop->apidata; struct epoll_event ee; /* If the fd was already monitored for some event, we need a MOD * operation. Otherwise we need an ADD operation. */ int op = eventLoop->events[fd].mask == ECO_POLL_NONE ? EPOLL_CTL_ADD : EPOLL_CTL_MOD; ee.events = 0; if (mask & ECO_POLL_READABLE) ee.events |= EPOLLIN; if (mask & ECO_POLL_WRITABLE) ee.events |= EPOLLOUT; ee.data.u64 = 0; /* avoid valgrind warning */ ee.data.fd = fd; if (epoll_ctl(state->epfd,op,fd,&ee) == -1) return -1; return 0; } static void aeApiDelEvent(aeEventLoop *eventLoop, int fd, int delmask) { aeApiState *state = eventLoop->apidata; struct epoll_event ee; int mask = eventLoop->events[fd].mask & (~delmask); ee.events = 0; if (mask & ECO_POLL_READABLE) ee.events |= EPOLLIN; if (mask & ECO_POLL_WRITABLE) ee.events |= EPOLLOUT; ee.data.u64 = 0; /* avoid valgrind warning */ ee.data.fd = fd; if (mask != ECO_POLL_NONE) { epoll_ctl(state->epfd,EPOLL_CTL_MOD,fd,&ee); } else { /* Note, Kernel < 2.6.9 requires a non null event pointer even for * EPOLL_CTL_DEL. */ epoll_ctl(state->epfd,EPOLL_CTL_DEL,fd,&ee); } } static int aeApiPoll(aeEventLoop *eventLoop, struct timeval *tvp) { aeApiState *state = eventLoop->apidata; int retval, numevents = 0; retval = epoll_wait_f(state->epfd,state->events,eventLoop->setsize, tvp ? (tvp->tv_sec*1000 + tvp->tv_usec/1000) : -1); if (retval > 0) { int j; numevents = retval; for (j = 0; j < numevents; j++) { int mask = 0; struct epoll_event *e = state->events+j; if (e->events & EPOLLIN) mask |= ECO_POLL_READABLE; if (e->events & EPOLLOUT) mask |= ECO_POLL_WRITABLE; if (e->events & EPOLLERR) mask |= ECO_POLL_WRITABLE; if (e->events & EPOLLHUP) mask |= ECO_POLL_WRITABLE; eventLoop->fired[j].fd = e->data.fd; eventLoop->fired[j].mask = mask; } } return numevents; } static char *aeApiName(void) { return "epoll"; } static int aeApiHandle(aeEventLoop* eventLoop) { aeApiState *state = (aeApiState*)eventLoop->apidata; return state->epfd; } #endif //!HAVE_EPOLL
the_stack_data/117327086.c
/* * Copyright (C) 2020-2021 Intel Corporation. * SPDX-License-Identifier: MIT */ /*! @file * This test made to tests these cases: * • Instruction in the middle of a trace is not executable * o Instruction in the beginning of the page - test_num = 1 * o Instruction is in the middle of a cross page * • First executable, second not executable - test_num = 2 * • First instruction of a trace is not executable * o Instruction in the beginning of the page - test_num = 3 * o Instruction in the middle of the page - test_num = 4 * o Instruction is in the middle of a cross page * • First executable, second not executable - test_num = 5 * • First page not executable, second executable - test_num = 6 */ #define _GNU_SOURCE #include <errno.h> #include <stdio.h> #include <string.h> #include <signal.h> #include <stdlib.h> #include <assert.h> #if defined(TARGET_WINDOWS) #include <windows.h> #include <malloc.h> #else #include <sys/mman.h> #include <unistd.h> #define EXPORT_SYM extern "C" #endif #if !defined(TARGET_WINDOWS) #if defined(TARGET_MAC) #include <sys/ucontext.h> #else #include <ucontext.h> #endif #endif //this test should make Segmentation fault after iteration 2 out of 4 // this global variable save the address of the instruction that make the exception char* crashAddr; #if !defined(TARGET_WINDOWS) /*! * an exception handler for the segmentation fault. and check if the crash address is correct. */ void handler(int nSignum, siginfo_t* si, void* vcontext) { ucontext_t* context = (ucontext_t*)vcontext; // Print the IP that is stored in RIP (64bit) or EIP (32bit). // and check if we got the signal on the correct IP #if defined(TARGET_MAC) #ifdef TARGET_IA32 printf("Address from where crash happen is %x \n", context->uc_mcontext->__ss.__eip); assert(crashAddr == (char*)(context->uc_mcontext->__ss.__eip)); #else printf("Address from where crash happen is %x \n", context->uc_mcontext->__ss.__rip); assert(crashAddr == (char*)(context->uc_mcontext->__ss.__rip)); #endif #else #ifdef TARGET_IA32 printf("Address from where crash happen is %x \n", context->uc_mcontext.gregs[REG_EIP]); assert(crashAddr == (char*)(context->uc_mcontext.gregs[REG_EIP])); #else printf("Address from where crash happen is %x \n", context->uc_mcontext.gregs[REG_RIP]); assert(crashAddr == (char*)(context->uc_mcontext.gregs[REG_RIP])); #endif #endif printf("Segmentation fault\n"); exit(0); } #endif /*! * Allocate 1/2 pages and initializing memory space, then change protections. * @param[in] content char pointer to the code that it is intended to fill the requested page * @param[in] iContentSize size of the code buffer. * @param[in] test_num test number to decide which test to run. * @return a pointer to the base of the requested +rwx page(Size iSize). */ void* AllocAndFillExecutbalePage(const char* content, int iContentSize, int test_num) { void *vptrAlloc = NULL, *vptrAlloc2 = NULL; //get the page size #if defined(TARGET_WINDOWS) SYSTEM_INFO si; GetSystemInfo(&si); unsigned int iPageSize = si.dwPageSize; #else unsigned int iPageSize = sysconf(_SC_PAGE_SIZE); #endif unsigned int size; if (test_num == 3 || test_num == 4) { size = iPageSize; } else { size = iPageSize * 2; } printf("Requesting a page of %d \n", size); //This needs to be page aligned in order to be able to change the execution rights //Ask for two pages #if defined(TARGET_WINDOWS) vptrAlloc = _aligned_malloc(size, iPageSize); #else vptrAlloc = mmap(NULL, /*addr*/ size, /*length*/ PROT_READ | PROT_WRITE | PROT_EXEC, /*prot*/ MAP_PRIVATE | MAP_ANONYMOUS, /*flags*/ -1 /*fd*/, 0 /*offset*/ ); #endif vptrAlloc2 = vptrAlloc; if (vptrAlloc != NULL) { printf("Succesfully requested the writable page\n"); } else { printf("Failed to request a writable page\n"); exit(-1); } //Initializing memory space memset(vptrAlloc, 0x0, size); int i = 0; char* cWriter = vptrAlloc; if (test_num == 1) { cWriter += iPageSize - 4; } if (test_num == 2) { cWriter += iPageSize - 6; } if (test_num == 4) { cWriter += iPageSize - iPageSize / 2; } if (test_num == 5 || test_num == 6) { cWriter += iPageSize - 2; } vptrAlloc = cWriter; memcpy((void*)cWriter, (void*)content, iContentSize); cWriter += iContentSize; //Change protections #if defined(TARGET_WINDOWS) DWORD orig_protection = 0; if (test_num == 1 || test_num == 2 || test_num == 5) { //1st page is executable if (VirtualProtect(vptrAlloc2, iPageSize, PAGE_EXECUTE_READ, &orig_protection)) { printf("1st page: Execution protection enabled\n"); } else { printf("errno: %d:%s\n", errno, strerror(errno)); printf("Could not set protections\n"); exit(-1); } // 2nd page has read protection. orig_protection = 0; if (VirtualProtect((void*)((char*)vptrAlloc2 + iPageSize), iPageSize, PAGE_READONLY, &orig_protection)) { printf("2nd page: Execution protection disabled\n"); } else { printf("errno: %d:%s\n", errno, strerror(errno)); printf("Could not set protections\n"); exit(-1); } } else { //tests: 3 4 6 //1st page has read protection if (VirtualProtect(vptrAlloc2, iPageSize, PAGE_READONLY, &orig_protection)) { printf("1st page: Execution protection disabled\n"); } else { printf("errno: %d:%s\n", errno, strerror(errno)); printf("Could not set protections \n"); exit(-1); } orig_protection = 0; if (test_num == 6) { if (VirtualProtect((void*)((char*)vptrAlloc2 + iPageSize), iPageSize, PAGE_READONLY, &orig_protection)) { printf("2nd page: Execution protection disabled disabled\n"); } else { printf("errno: %d:%s\n", errno, strerror(errno)); printf("Could not set protections\n"); exit(-1); } } } #else if (test_num == 1 || test_num == 2 || test_num == 5) { //1st page is executable if (mprotect(vptrAlloc2, iPageSize, PROT_EXEC | PROT_READ) == 0) { printf("1st page: Execution protection disabled enabled\n"); } else { printf("errno: %d:%s\n", errno, strerror(errno)); printf("Could not set protections\n"); } // 2nd page has read protection. if (mprotect(vptrAlloc2 + iPageSize, iPageSize, PROT_READ) == 0) { printf("2nd page: Execution protection disabled disabled\n"); } else { printf("errno: %d:%s\n", errno, strerror(errno)); printf("Could not set protections\n"); exit(-1); } } else { //tests: 3 4 6 //1st page has read protection. if (mprotect(vptrAlloc2, iPageSize, PROT_READ) == 0) { printf("1st page: Execution protection disabled disabled\n"); } else { printf("errno: %d:%s\n", errno, strerror(errno)); printf("Could not set protections\n"); exit(-1); } if (test_num == 6) { //2nd page is executable if (mprotect(vptrAlloc2 + iPageSize, iPageSize, PROT_EXEC | PROT_READ) == 0) { printf("2nd page: Execution protection disabled disabled\n"); } else { printf("errno: %d:%s\n", errno, strerror(errno)); printf("Could not set protections\n"); exit(-1); } } } #endif return vptrAlloc; } void test(int test_num) { //this is what the char Code[] represent: //nopl 0x0(%rax) 0x0F 0x1F 0x40 0x00 //nopl 0x0(%rax) 0x0F 0x1F 0x40 0x00 //retq 0xc3 volatile char Code[] = {0x0F, 0x1F, 0x40, 0x00, 0x0F, 0x1F, 0x40, 0x00, 0xc3}; void* vPtrRequest; //This test made to tests these cases: //• Instruction in the middle of a trace is not executable // o Instruction in the beginning of the page - test_num = 1 // o Instruction is in the middle of a cross page // • First executable, second not executable - test_num = 2 //• First instruction of a trace is not executable // o Instruction in the beginning of the page - test_num = 3 // o Instruction in the middle of the page - test_num = 4 // o Instruction is in the middle of a cross page // • First executable, second not executable - test_num = 5 // • First page not executable, second executable - test_num = 6 vPtrRequest = AllocAndFillExecutbalePage((char*)Code, 9, test_num); unsigned int i = 0; char* jump = (char*)vPtrRequest; if (test_num == 1 || test_num == 2) { crashAddr = jump + 4; } else { crashAddr = jump; } ((void (*)(void))jump)(); } #if defined(TARGET_WINDOWS) static int MyFilter(unsigned long code, struct _EXCEPTION_POINTERS* ep) { PEXCEPTION_RECORD pExceptRecord = ep->ExceptionRecord; printf("Exception %08X\n", code); printf("Exception address %08X\n", (ULONG_PTR)(pExceptRecord->ExceptionAddress)); assert(crashAddr == (char*)(pExceptRecord->ExceptionAddress)); return EXCEPTION_EXECUTE_HANDLER; } #endif void runTest(int argc, char* argv[]) { if (atoi(argv[1]) <= 6) { test(atoi(argv[1])); } else { exit(-1); } } int main(int argc, char* argv[]) { if (argc != 2) { printf("Invalid number of arguments<%d>, expecting only one\n", argc); exit(-1); } //catch exception on Windows. #if defined(TARGET_WINDOWS) __try { runTest(argc, argv); } __except (MyFilter(GetExceptionCode(), GetExceptionInformation())) { printf("Segmentation fault\n"); return 0; } #else //set an exception handler struct sigaction action; memset(&action, 0, sizeof(struct sigaction)); action.sa_flags = SA_SIGINFO; action.sa_sigaction = handler; #if defined(TARGET_MAC) sigaction(SIGBUS, &action, NULL); #else sigaction(SIGSEGV, &action, NULL); #endif runTest(argc, argv); #endif printf("App ended\n"); return 1; }
the_stack_data/43052.c
#include <stdio.h> #include <stdlib.h> #include <stdint.h> void init_image(uint8_t *X, int n, uint32_t seed); void write_image(uint8_t *X, int n, int Xmax); void rand_clk(); void organize(uint8_t *X, int n); uint32_t sr; uint32_t ntap; uint32_t mtap; int Dx[8] = {-1, 0, 1, -1, 1, -1, 0, 1}; int Dy[8] = {1, 1, 1, 0, 0, -1, -1, -1}; int main(int argc, char *argv[]) { int n = atoi(argv[1]); // image size int K = atoi(argv[2]); // # iterations int seed = atoi(argv[3]); // random seed ntap = 1 << atoi(argv[4]); mtap = 1 << atoi(argv[5]); // taps for random number generator uint8_t *X = malloc(n * n); init_image(X, n, seed); for (int i = 0; i < K; i++){ organize(X, n); } write_image(X, n, 1); return 0; } void rand_clk() { int t = ((sr & mtap) > 0) ^ ((sr & ntap) > 0); sr = sr << 1; sr += t; } void init_image(uint8_t *X, int n, uint32_t seed) { sr = seed; for (int i = 0; i < n; i++){ for (int j = 0; j < n; j++){ X[n*i + j] = sr % 2; rand_clk(); } } } void write_image(uint8_t *X, int n, int Xmax) { printf("P2 %d %d %d\n", n, n, Xmax); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { printf("%d ", X[n*i + j]); } printf("\n"); } } void organize(uint8_t *X, int n) { int k, m, dx, dy, a, b, t; for (int i = 2; i < n - 2; i++){ rand_clk(); k = sr % 8; dx = Dx[k]; dy = Dy[k]; for (int j = 2; j < n - 2; j++){ m = n*i + j; a = m + n*dx + dy; b = m + 2*n*dx + 2*dy; if(X[a] != X[m] && X[b] == X[m]) { t = X[a]; X[a] = X[b]; X[b] = t; } } } }
the_stack_data/64714.c
#include<stdio.h> int main() { printf("Hello, World!!!!!!\n"); }
the_stack_data/90765937.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <CL/cl.h> unsigned char *read_buffer(char *file_name, size_t *size_ptr) { FILE *f; unsigned char *buf; size_t size; /* Open file */ f = fopen(file_name, "rb"); if (!f) return NULL; /* Obtain file size */ fseek(f, 0, SEEK_END); size = ftell(f); fseek(f, 0, SEEK_SET); /* Allocate and read buffer */ buf = malloc(size + 1); fread(buf, 1, size, f); buf[size] = '\0'; /* Return size of buffer */ if (size_ptr) *size_ptr = size; /* Return buffer */ return buf; } void write_buffer(char *file_name, const char *buffer, size_t buffer_size) { FILE *f; /* Open file */ f = fopen(file_name, "w+"); /* Write buffer */ if(buffer) fwrite(buffer, 1, buffer_size, f); /* Close file */ fclose(f); } int main(int argc, char const *argv[]) { /* Get platform */ cl_platform_id platform; cl_uint num_platforms; cl_int ret = clGetPlatformIDs(1, &platform, &num_platforms); if (ret != CL_SUCCESS) { printf("error: call to 'clGetPlatformIDs' failed\n"); exit(1); } printf("Number of platforms: %d\n", num_platforms); printf("platform=%p\n", platform); /* Get platform name */ char platform_name[100]; ret = clGetPlatformInfo(platform, CL_PLATFORM_NAME, sizeof(platform_name), platform_name, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clGetPlatformInfo' failed\n"); exit(1); } printf("platform.name='%s'\n\n", platform_name); /* Get device */ cl_device_id device; cl_uint num_devices; ret = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &device, &num_devices); if (ret != CL_SUCCESS) { printf("error: call to 'clGetDeviceIDs' failed\n"); exit(1); } printf("Number of devices: %d\n", num_devices); printf("device=%p\n", device); /* Get device name */ char device_name[100]; ret = clGetDeviceInfo(device, CL_DEVICE_NAME, sizeof(device_name), device_name, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clGetDeviceInfo' failed\n"); exit(1); } printf("device.name='%s'\n", device_name); printf("\n"); /* Create a Context Object */ cl_context context; context = clCreateContext(NULL, 1, &device, NULL, NULL, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateContext' failed\n"); exit(1); } printf("context=%p\n", context); /* Create a Command Queue Object*/ cl_command_queue command_queue; command_queue = clCreateCommandQueue(context, device, 0, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateCommandQueue' failed\n"); exit(1); } printf("command_queue=%p\n", command_queue); printf("\n"); /* Program source */ unsigned char *source_code; size_t source_length; /* Read program from 'native_tan_float.cl' */ source_code = read_buffer("native_tan_float.cl", &source_length); /* Create a program */ cl_program program; program = clCreateProgramWithSource(context, 1, (const char **)&source_code, &source_length, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateProgramWithSource' failed\n"); exit(1); } printf("program=%p\n", program); /* Build program */ ret = clBuildProgram(program, 1, &device, NULL, NULL, NULL); if (ret != CL_SUCCESS ) { size_t size; char *log; /* Get log size */ clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,0, NULL, &size); /* Allocate log and print */ log = malloc(size); clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,size, log, NULL); printf("error: call to 'clBuildProgram' failed:\n%s\n", log); /* Free log and exit */ free(log); exit(1); } printf("program built\n"); printf("\n"); /* Create a Kernel Object */ cl_kernel kernel; kernel = clCreateKernel(program, "native_tan_float", &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateKernel' failed\n"); exit(1); } /* Create and allocate host buffers */ size_t num_elem = 10; /* Create and init host side src buffer 0 */ cl_float *src_0_host_buffer; src_0_host_buffer = malloc(num_elem * sizeof(cl_float)); for (int i = 0; i < num_elem; i++) src_0_host_buffer[i] = (cl_float)(2.0); /* Create and init device side src buffer 0 */ cl_mem src_0_device_buffer; src_0_device_buffer = clCreateBuffer(context, CL_MEM_READ_ONLY, num_elem * sizeof(cl_float), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create source buffer\n"); exit(1); } ret = clEnqueueWriteBuffer(command_queue, src_0_device_buffer, CL_TRUE, 0, num_elem * sizeof(cl_float), src_0_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueWriteBuffer' failed\n"); exit(1); } /* Create host dst buffer */ cl_float *dst_host_buffer; dst_host_buffer = malloc(num_elem * sizeof(cl_float)); memset((void *)dst_host_buffer, 1, num_elem * sizeof(cl_float)); /* Create device dst buffer */ cl_mem dst_device_buffer; dst_device_buffer = clCreateBuffer(context, CL_MEM_WRITE_ONLY, num_elem *sizeof(cl_float), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create dst buffer\n"); exit(1); } /* Set kernel arguments */ ret = CL_SUCCESS; ret |= clSetKernelArg(kernel, 0, sizeof(cl_mem), &src_0_device_buffer); ret |= clSetKernelArg(kernel, 1, sizeof(cl_mem), &dst_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clSetKernelArg' failed\n"); exit(1); } /* Launch the kernel */ size_t global_work_size = num_elem; size_t local_work_size = num_elem; ret = clEnqueueNDRangeKernel(command_queue, kernel, 1, NULL, &global_work_size, &local_work_size, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueNDRangeKernel' failed\n"); exit(1); } /* Wait for it to finish */ clFinish(command_queue); /* Read results from GPU */ ret = clEnqueueReadBuffer(command_queue, dst_device_buffer, CL_TRUE,0, num_elem * sizeof(cl_float), dst_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueReadBuffer' failed\n"); exit(1); } /* Dump dst buffer to file */ char dump_file[100]; sprintf((char *)&dump_file, "%s.result", argv[0]); write_buffer(dump_file, (const char *)dst_host_buffer, num_elem * sizeof(cl_float)); printf("Result dumped to %s\n", dump_file); /* Free host dst buffer */ free(dst_host_buffer); /* Free device dst buffer */ ret = clReleaseMemObject(dst_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Free host side src buffer 0 */ free(src_0_host_buffer); /* Free device side src buffer 0 */ ret = clReleaseMemObject(src_0_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Release kernel */ ret = clReleaseKernel(kernel); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseKernel' failed\n"); exit(1); } /* Release program */ ret = clReleaseProgram(program); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseProgram' failed\n"); exit(1); } /* Release command queue */ ret = clReleaseCommandQueue(command_queue); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseCommandQueue' failed\n"); exit(1); } /* Release context */ ret = clReleaseContext(context); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseContext' failed\n"); exit(1); } return 0; }
the_stack_data/165766639.c
/*Exercise 4 - Functions Implement the three functions minimum(), maximum() and multiply() below the main() function. Do not change the code given in the main() function when you are implementing your solution.*/ #include <stdio.h> int minimum(int a, int b); int maximum(int c, int d); int multiply(int e, int f); int main() { int no1, no2; printf("Enter a value for no 1 : "); scanf("%d", &no1); printf("Enter a value for no 2 : "); scanf("%d", &no2); printf("%d ", minimum(no1, no2)); printf("%d ", maximum(no1, no2)); printf("%d ", multiply(no1, no2)); return 0; } int minimum(int a,int b) { if(a>b) { return b; } else { return a; } } int maximum(int c, int d) { if(c>d) { return c; } else { return d; } } int multiply(int e, int f) { return e * f ; }
the_stack_data/178265823.c
typedef struct AVCodecContext { int flags; void *priv_data; char codec_name[32]; } AVCodecContext; typedef struct ScanTable { int obmc; int umvplus; int h263_aic; } MpegEncContext; MPV_encode_init (AVCodecContext *avctx) { MpegEncContext *s = avctx->priv_data; s->umvplus = (avctx->flags & 0x02000000) ? 1 : 0; s->h263_aic = (avctx->flags & 0x01000000) ? 1 : 0; s->h263_aic = s->obmc || s->umvplus; }
the_stack_data/67324211.c
/*** * This code is a part of EvoApproxLib library (ehw.fit.vutbr.cz/approxlib) distributed under The MIT License. * When used, please cite the following article(s): V. Mrazek, R. Hrbacek, Z. Vasicek and L. Sekanina, "EvoApprox8b: Library of approximate adders and multipliers for circuit design and benchmarking of approximation methods". Design, Automation & Test in Europe Conference & Exhibition (DATE), 2017, Lausanne, 2017, pp. 258-261. doi: 10.23919/DATE.2017.7926993 * This file contains a circuit from evoapprox8b dataset. Note that a new version of library was already published. ***/ #include <stdint.h> #include <stdlib.h> /// Approximate function mul8_069 /// Library = EvoApprox8b /// Circuit = mul8_069 /// Area (180) = 4712 /// Delay (180) = 3.450 /// Power (180) = 2079.30 /// Area (45) = 340 /// Delay (45) = 1.280 /// Power (45) = 179.40 /// Nodes = 79 /// HD = 325570 /// MAE = 270.83136 /// MSE = 131407.23242 /// MRE = 6.29 % /// WCE = 1648 /// WCRE = 600 % /// EP = 98.2 % uint16_t mul8_069(uint8_t a, uint8_t b) { uint16_t c = 0; uint8_t n0 = (a >> 0) & 0x1; uint8_t n2 = (a >> 1) & 0x1; uint8_t n4 = (a >> 2) & 0x1; uint8_t n6 = (a >> 3) & 0x1; uint8_t n8 = (a >> 4) & 0x1; uint8_t n10 = (a >> 5) & 0x1; uint8_t n12 = (a >> 6) & 0x1; uint8_t n14 = (a >> 7) & 0x1; uint8_t n18 = (b >> 1) & 0x1; uint8_t n20 = (b >> 2) & 0x1; uint8_t n22 = (b >> 3) & 0x1; uint8_t n24 = (b >> 4) & 0x1; uint8_t n26 = (b >> 5) & 0x1; uint8_t n28 = (b >> 6) & 0x1; uint8_t n30 = (b >> 7) & 0x1; uint8_t n32; uint8_t n36; uint8_t n37; uint8_t n41; uint8_t n57; uint8_t n67; uint8_t n79; uint8_t n83; uint8_t n145; uint8_t n173; uint8_t n174; uint8_t n249; uint8_t n398; uint8_t n399; uint8_t n415; uint8_t n514; uint8_t n532; uint8_t n548; uint8_t n598; uint8_t n648; uint8_t n664; uint8_t n682; uint8_t n683; uint8_t n764; uint8_t n782; uint8_t n798; uint8_t n814; uint8_t n898; uint8_t n914; uint8_t n932; uint8_t n933; uint8_t n948; uint8_t n949; uint8_t n1014; uint8_t n1032; uint8_t n1048; uint8_t n1064; uint8_t n1065; uint8_t n1082; uint8_t n1148; uint8_t n1149; uint8_t n1164; uint8_t n1165; uint8_t n1182; uint8_t n1183; uint8_t n1198; uint8_t n1199; uint8_t n1214; uint8_t n1215; uint8_t n1264; uint8_t n1282; uint8_t n1298; uint8_t n1314; uint8_t n1332; uint8_t n1348; uint8_t n1399; uint8_t n1414; uint8_t n1415; uint8_t n1432; uint8_t n1433; uint8_t n1448; uint8_t n1449; uint8_t n1464; uint8_t n1465; uint8_t n1482; uint8_t n1483; uint8_t n1532; uint8_t n1548; uint8_t n1564; uint8_t n1582; uint8_t n1598; uint8_t n1614; uint8_t n1632; uint8_t n1664; uint8_t n1665; uint8_t n1682; uint8_t n1683; uint8_t n1698; uint8_t n1699; uint8_t n1714; uint8_t n1715; uint8_t n1732; uint8_t n1733; uint8_t n1748; uint8_t n1749; uint8_t n1764; uint8_t n1782; uint8_t n1798; uint8_t n1814; uint8_t n1832; uint8_t n1848; uint8_t n1864; uint8_t n1882; uint8_t n1898; uint8_t n1914; uint8_t n1915; uint8_t n1932; uint8_t n1933; uint8_t n1948; uint8_t n1949; uint8_t n1964; uint8_t n1965; uint8_t n1982; uint8_t n1983; uint8_t n1998; uint8_t n1999; uint8_t n2014; uint8_t n2015; n32 = n18 & n12; n36 = ~(n12 | n4 | n30); n37 = ~(n12 | n4 | n30); n41 = n2 & n28; n57 = ~n41; n67 = ~n37; n79 = (n18 & n32) | (~n18 & n30); n83 = n79 & n36; n145 = n57 & n12; n173 = ~(n145 & n28); n174 = ~(n67 | n0); n249 = ~n57; n398 = ~n173; n399 = ~n173; n415 = n249 & n174; n514 = n10 & n20; n532 = n12 & n20; n548 = n14 & n20; n598 = n399; n648 = n398 ^ n514; n664 = n249 | n532; n682 = n415 ^ n548; n683 = n415 & n548; n764 = n8 & n22; n782 = n10 & n22; n798 = n12 & n22; n814 = n14 & n22; n898 = n648 | n764; n914 = n664 | n782; n932 = n682 ^ n798; n933 = n682 & n798; n948 = (n683 ^ n814) ^ n933; n949 = (n683 & n814) | (n814 & n933) | (n683 & n933); n1014 = n6 & n24; n1032 = n8 & n24; n1048 = n10 & n24; n1064 = n12 & n24; n1065 = n12 & n24; n1082 = n14 & n24; n1148 = n898 ^ n1014; n1149 = n898 & n1014; n1164 = (n914 ^ n1032) ^ n1149; n1165 = (n914 & n1032) | (n1032 & n1149) | (n914 & n1149); n1182 = (n932 ^ n1048) ^ n1165; n1183 = (n932 & n1048) | (n1048 & n1165) | (n932 & n1165); n1198 = (n948 ^ n1064) ^ n1183; n1199 = (n948 & n1064) | (n1064 & n1183) | (n948 & n1183); n1214 = (n949 ^ n1082) ^ n1199; n1215 = (n949 & n1082) | (n1082 & n1199) | (n949 & n1199); n1264 = n4 & n26; n1282 = n6 & n26; n1298 = n8 & n26; n1314 = n10 & n26; n1332 = n12 & n26; n1348 = n14 & n26; n1399 = n1148 | n1264; n1414 = (n1164 ^ n1282) ^ n1399; n1415 = (n1164 & n1282) | (n1282 & n1399) | (n1164 & n1399); n1432 = (n1182 ^ n1298) ^ n1415; n1433 = (n1182 & n1298) | (n1298 & n1415) | (n1182 & n1415); n1448 = (n1198 ^ n1314) ^ n1433; n1449 = (n1198 & n1314) | (n1314 & n1433) | (n1198 & n1433); n1464 = (n1214 ^ n1332) ^ n1449; n1465 = (n1214 & n1332) | (n1332 & n1449) | (n1214 & n1449); n1482 = (n1215 ^ n1348) ^ n1465; n1483 = (n1215 & n1348) | (n1348 & n1465) | (n1215 & n1465); n1532 = n4 & n28; n1548 = n6 & n28; n1564 = n8 & n28; n1582 = n10 & n28; n1598 = n12 & n28; n1614 = n14 & n28; n1632 = n1433; n1664 = n1414 ^ n1532; n1665 = n1414 & n1532; n1682 = (n1432 ^ n1548) ^ n1665; n1683 = (n1432 & n1548) | (n1548 & n1665) | (n1432 & n1665); n1698 = (n1448 ^ n1564) ^ n1683; n1699 = (n1448 & n1564) | (n1564 & n1683) | (n1448 & n1683); n1714 = (n1464 ^ n1582) ^ n1699; n1715 = (n1464 & n1582) | (n1582 & n1699) | (n1464 & n1699); n1732 = (n1482 ^ n1598) ^ n1715; n1733 = (n1482 & n1598) | (n1598 & n1715) | (n1482 & n1715); n1748 = (n1483 ^ n1614) ^ n1733; n1749 = (n1483 & n1614) | (n1614 & n1733) | (n1483 & n1733); n1764 = n0 & n30; n1782 = n2 & n30; n1798 = n4 & n30; n1814 = n6 & n30; n1832 = n8 & n30; n1848 = n10 & n30; n1864 = n12 & n30; n1882 = n14 & n30; n1898 = n415 ^ n1764; n1914 = n1664 ^ n1782; n1915 = n1664 & n1782; n1932 = (n1682 ^ n1798) ^ n1915; n1933 = (n1682 & n1798) | (n1798 & n1915) | (n1682 & n1915); n1948 = (n1698 ^ n1814) ^ n1933; n1949 = (n1698 & n1814) | (n1814 & n1933) | (n1698 & n1933); n1964 = (n1714 ^ n1832) ^ n1949; n1965 = (n1714 & n1832) | (n1832 & n1949) | (n1714 & n1949); n1982 = (n1732 ^ n1848) ^ n1965; n1983 = (n1732 & n1848) | (n1848 & n1965) | (n1732 & n1965); n1998 = (n1748 ^ n1864) ^ n1983; n1999 = (n1748 & n1864) | (n1864 & n1983) | (n1748 & n1983); n2014 = (n1749 ^ n1882) ^ n1999; n2015 = (n1749 & n1882) | (n1882 & n1999) | (n1749 & n1999); c |= (n1065 & 0x1) << 0; c |= (n598 & 0x1) << 1; c |= (n83 & 0x1) << 2; c |= (n1632 & 0x1) << 3; c |= (n1165 & 0x1) << 4; c |= (n1082 & 0x1) << 5; c |= (n1632 & 0x1) << 6; c |= (n1898 & 0x1) << 7; c |= (n1914 & 0x1) << 8; c |= (n1932 & 0x1) << 9; c |= (n1948 & 0x1) << 10; c |= (n1964 & 0x1) << 11; c |= (n1982 & 0x1) << 12; c |= (n1998 & 0x1) << 13; c |= (n2014 & 0x1) << 14; c |= (n2015 & 0x1) << 15; return c; }
the_stack_data/117329318.c
#include<stdio.h> int a[5]={0}; void divide(int x) { a[4]=x%10; x/=10; a[3]=x%10; x/=10; a[2]=x%10; x/=10; a[1]=x%10; x/=10; a[0]=x%10; int i; for(i=0;i<5;i++) { if(a[i]==0) a[i]=-1; else break; } return; } int judge() { int i,j; for(i=0;i<4;i++) { for(j=i+1;j<5;j++) { if(a[i]!=-1&&a[i]==a[j]) return 1; } } return 0; } int main() { int m,n,i,j,count=0; scanf("%d%d",&m,&n); for(i=m;i<=n;i++) { divide(i); j=judge(); if(j) { count++; if(count==1) printf("%d",i); else printf(",%d",i); } } if(count) printf("\n"); else printf("No output\n"); return 0; }
the_stack_data/61076202.c
#include <string.h> #include <stdlib.h> #include <stdint.h> unsigned int array1_size = 16; uint8_t array1[16] = { 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 }; uint8_t array2[256 * 512]; uint8_t temp = 0; /* Used so compiler won't optimize out victim_function() */ void victim_function_v04(size_t x) { if (x < array1_size) temp &= array2[array1[x << 1] * 512]; }
the_stack_data/1014117.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_div_mod.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cado-car <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/06/14 23:10:11 by cado-car #+# #+# */ /* Updated: 2021/06/14 23:10:12 by cado-car ### ########.fr */ /* */ /* ************************************************************************** */ void ft_div_mod(int a, int b, int *div, int *mod) { if (b != 0) { *div = a / b; *mod = a % b; } }
the_stack_data/117328090.c
//Write a function to swap contents of two variables using functions and pointer variables. #include<stdio.h> void swap(int*, int*); int main() { int a, b; printf("\nEnter the first number a = "); scanf("%d", &a); printf("Enter the second number b = "); scanf("%d", &b); printf("\nBefore swapping the values of a = %d and b = %d", a, b); swap(&a, &b); printf("\nAfter swapping the values of a = %d and b = %d\n", a, b); return 0; } void swap(int *a, int *b) { int temp=0; temp = *a; *a = *b; *b = temp; }
the_stack_data/67325199.c
/* * strtod.c -- * * Source code for the "strtod" library procedure. * * Copyright (c) 1988-1993 The Regents of the University of California. * Copyright (c) 1994 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * RCS: @(#) $Id: strtod.c,v 1.1.1.4 2003/03/06 00:09:04 landonf Exp $ */ #include <ctype.h> #include <stdbool.h> #include <stddef.h> // clang-format off static int maxExponent = 511; /* Largest possible base 10 exponent. Any * exponent larger than this will already * produce underflow or overflow, so there's * no need to worry about additional digits. */ static double powersOf10[] = { /* Table giving binary powers of 10. Entry */ 10., /* is 10^2^i. Used to convert decimal */ 100., /* exponents into floating-point numbers. */ 1.0e4, 1.0e8, 1.0e16, 1.0e32, 1.0e64, 1.0e128, 1.0e256 }; // clang-format on /* *---------------------------------------------------------------------- * * strtod -- * * This procedure converts a floating-point number from an ASCII * decimal representation to internal double-precision format. * * Results: * The return value is the double-precision floating-point * representation of the characters in string. If endPtr isn't * NULL, then *endPtr is filled in with the address of the * next character after the last one that was part of the * floating-point number. * * Side effects: * None. * *---------------------------------------------------------------------- */ // clang-format off double strtod(string, endPtr) const char *string; /* A decimal ASCII floating-point number, * optionally preceded by white space. * Must have form "-I.FE-X", where I is the * integer part of the mantissa, F is the * fractional part of the mantissa, and X * is the exponent. Either of the signs * may be "+", "-", or omitted. Either I * or F may be omitted, or both. The decimal * point isn't necessary unless F is present. * The "E" may actually be an "e". E and X * may both be omitted (but not just one). */ char **endPtr; /* If non-NULL, store terminating character's * address here. */ // clang-format on { int sign, expSign = false; double fraction, dblExp, *d; register const char* p; register int c; int exp = 0; /* Exponent read from "EX" field. */ int fracExp = 0; /* Exponent that derives from the fractional * part. Under normal circumstatnces, it is * the negative of the number of digits in F. * However, if I is very long, the last digits * of I get dropped (otherwise a long I with a * large negative exponent could cause an * unnecessary overflow on I alone). In this * case, fracExp is incremented one for each * dropped digit. */ int mantSize; /* Number of digits in mantissa. */ int decPt; /* Number of mantissa digits BEFORE decimal * point. */ const char* pExp; /* Temporarily holds location of exponent * in string. */ /* * Strip off leading blanks and check for a sign. */ p = string; while(isspace((unsigned char)(*p))) { p += 1; } if(*p == '-') { sign = true; p += 1; } else { if(*p == '+') { p += 1; } sign = false; } /* * Count the number of digits in the mantissa (including the decimal * point), and also locate the decimal point. */ decPt = -1; for(mantSize = 0;; mantSize += 1) { c = *p; if(!isdigit(c)) { if((c != '.') || (decPt >= 0)) { break; } decPt = mantSize; } p += 1; } /* * Now suck up the digits in the mantissa. Use two integers to * collect 9 digits each (this is faster than using floating-point). * If the mantissa has more than 18 digits, ignore the extras, since * they can't affect the value anyway. */ pExp = p; p -= mantSize; if(decPt < 0) { decPt = mantSize; } else { mantSize -= 1; /* One of the digits was the point. */ } if(mantSize > 18) { fracExp = decPt - 18; mantSize = 18; } else { fracExp = decPt - mantSize; } if(mantSize == 0) { fraction = 0.0; p = string; goto done; } else { int frac1, frac2; frac1 = 0; for(; mantSize > 9; mantSize -= 1) { c = *p; p += 1; if(c == '.') { c = *p; p += 1; } frac1 = 10 * frac1 + (c - '0'); } frac2 = 0; for(; mantSize > 0; mantSize -= 1) { c = *p; p += 1; if(c == '.') { c = *p; p += 1; } frac2 = 10 * frac2 + (c - '0'); } fraction = (1.0e9 * frac1) + frac2; } /* * Skim off the exponent. */ p = pExp; if((*p == 'E') || (*p == 'e')) { p += 1; if(*p == '-') { expSign = true; p += 1; } else { if(*p == '+') { p += 1; } expSign = false; } if(!isdigit((unsigned char)(*p))) { p = pExp; goto done; } while(isdigit((unsigned char)(*p))) { exp = exp * 10 + (*p - '0'); p += 1; } } if(expSign) { exp = fracExp - exp; } else { exp = fracExp + exp; } /* * Generate a floating-point number that represents the exponent. * Do this by processing the exponent one bit at a time to combine * many powers of 2 of 10. Then combine the exponent with the * fraction. */ if(exp < 0) { expSign = true; exp = -exp; } else { expSign = false; } if(exp > maxExponent) { exp = maxExponent; // errno = ERANGE; } dblExp = 1.0; for(d = powersOf10; exp != 0; exp >>= 1, d += 1) { if(exp & 01) { dblExp *= *d; } } if(expSign) { fraction /= dblExp; } else { fraction *= dblExp; } done: if(endPtr != NULL) { *endPtr = (char*)p; } if(sign) { return -fraction; } return fraction; }
the_stack_data/95080.c
int duff_device03(char *from, char *to, int count) { { int n = (count + 7) / 8; switch(count % 8) { case 0: again: *to++ = *from++; case 7: *to++ = *from++; case 6: *to++ = *from++; case 5: *to++ = *from++; case 4: *to++ = *from++; case 3: *to++ = *from++; case 2: *to++ = *from++; case 1: *to++ = *from++; if(--n > 0) goto again; } } return count; }
the_stack_data/53108.c
int main () { int qtdAlunos, qtdAprov; float percRepr; printf("insira a quantidade de alunos: "); scanf("%d", &qtdAlunos); printf("insira a quantidade de aprovados: "); scanf("%d", &qtdAprov); percRepr = (float)(qtdAlunos - qtdAprov) * 100.0 / qtdAlunos; printf("Porcentagem de %d e %d é = %.2f% reprovados",qtdAlunos,qtdAprov, percRepr); return 0; }
the_stack_data/43886621.c
int main() { int a = 1; double b = 0.34; short c = 123; char d = 'd'; float e = 1.23; return 0; }
the_stack_data/869323.c
/* Sine Wave by R. Alan Monroe * It's "Sine Wave" from _BASIC Computer Games_: * http://www.atariarchives.org/basicgames/showpage.php?page=146 * by David H. Ahl */ #include <stdio.h> #include <math.h> int main() { float t, a; int s, b; b=0; for (t=0; t<40; t+=.25) { a = 26 + 25 * sin(t); for (s=0; s < a; s++) printf(" "); if (b==0) { printf( "Hello\n" ); b=1; } else { printf( "World\n" ); b=0; } } return 0; }
the_stack_data/68888584.c
/* crypto/des/read2pwd.c */ /* ==================================================================== * Copyright (c) 2001-2002 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. 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. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * [email protected]. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED 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 OpenSSL PROJECT OR * ITS 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. * ==================================================================== * * This product includes cryptographic software written by Eric Young * ([email protected]). This product includes software written by Tim * Hudson ([email protected]). * */ /* Copyright (C) 1995-1998 Eric Young ([email protected]) * All rights reserved. * * This package is an SSL implementation written * by Eric Young ([email protected]). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson ([email protected]). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young ([email protected])" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson ([email protected])" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``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 AUTHOR 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. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #include <stdio.h> #include <string.h> #include <openssl/des.h> #include <openssl/ui.h> #include <openssl/crypto.h> #if defined(OPENSSL_SYS_WINCE) #define BUFSIZ (512) #endif int DES_read_password(DES_cblock *key, const char *prompt, int verify) { int ok; char buf[BUFSIZ],buff[BUFSIZ]; if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0) DES_string_to_key(buf,key); OPENSSL_cleanse(buf,BUFSIZ); OPENSSL_cleanse(buff,BUFSIZ); return(ok); } int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt, int verify) { int ok; char buf[BUFSIZ],buff[BUFSIZ]; if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0) DES_string_to_2keys(buf,key1,key2); OPENSSL_cleanse(buf,BUFSIZ); OPENSSL_cleanse(buff,BUFSIZ); return(ok); }
the_stack_data/52280.c
extern void abort (void); typedef signed short int16_t; typedef unsigned short uint16_t; int16_t logadd (int16_t *a, int16_t *b); void ba_compute_psd (int16_t start); int16_t masktab[6] = { 1, 2, 3, 4, 5}; int16_t psd[6] = { 50, 40, 30, 20, 10}; int16_t bndpsd[6] = { 1, 2, 3, 4, 5}; void ba_compute_psd (int16_t start) { int i,j,k; int16_t lastbin = 4; j = start; k = masktab[start]; bndpsd[k] = psd[j]; j++; for (i = j; i < lastbin; i++) { bndpsd[k] = logadd(&bndpsd[k], &psd[j]); j++; } } int16_t logadd (int16_t *a, int16_t *b) { return *a + *b; } int main (void) { int i; ba_compute_psd (0); if (bndpsd[1] != 140) abort (); return 0; }
the_stack_data/220454529.c
#include <stdio.h> #include <limits.h> #include <stdint.h> int main(void) { printf("%d%d%d%d%d%d", ((int32_t)0 << 0) < 0, ((int32_t)0 << 0) == 0, ((int32_t)0 << 0) > 0, ((int32_t)0 << 0) < 0, ((int32_t)0 << 0) == 0, ((int32_t)0 << 0) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 0) < 0, ((int32_t)1 << 0) == 0, ((int32_t)1 << 0) > 0, ((int32_t)1 << 0) < 1, ((int32_t)1 << 0) == 1, ((int32_t)1 << 0) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 0) < 0, ((int32_t)-1 << 0) == 0, ((int32_t)-1 << 0) > 0, ((int32_t)-1 << 0) < -1, ((int32_t)-1 << 0) == -1, ((int32_t)-1 << 0) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 0) < 0, ((int32_t)INT_MAX << 0) == 0, ((int32_t)INT_MAX << 0) > 0, ((int32_t)INT_MAX << 0) < INT_MAX, ((int32_t)INT_MAX << 0) == INT_MAX, ((int32_t)INT_MAX << 0) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 0) < 0, ((int32_t)INT_MIN << 0) == 0, ((int32_t)INT_MIN << 0) > 0, ((int32_t)INT_MIN << 0) < INT_MIN, ((int32_t)INT_MIN << 0) == INT_MIN, ((int32_t)INT_MIN << 0) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 0) < 0, ((int32_t)0x000f << 0) == 0, ((int32_t)0x000f << 0) > 0, ((int32_t)0x000f << 0) < 0x000f, ((int32_t)0x000f << 0) == 0x000f, ((int32_t)0x000f << 0) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 0) < 0, ((int32_t)0xf000 << 0) == 0, ((int32_t)0xf000 << 0) > 0, ((int32_t)0xf000 << 0) < 0xf000, ((int32_t)0xf000 << 0) == 0xf000, ((int32_t)0xf000 << 0) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 0) < 0, ((int32_t)0xdeadbeef << 0) == 0, ((int32_t)0xdeadbeef << 0) > 0, ((int32_t)0xdeadbeef << 0) < 0xdeadbeef, ((int32_t)0xdeadbeef << 0) == 0xdeadbeef, ((int32_t)0xdeadbeef << 0) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 1) < 0, ((int32_t)0 << 1) == 0, ((int32_t)0 << 1) > 0, ((int32_t)0 << 1) < 0, ((int32_t)0 << 1) == 0, ((int32_t)0 << 1) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 1) < 0, ((int32_t)1 << 1) == 0, ((int32_t)1 << 1) > 0, ((int32_t)1 << 1) < 1, ((int32_t)1 << 1) == 1, ((int32_t)1 << 1) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 1) < 0, ((int32_t)-1 << 1) == 0, ((int32_t)-1 << 1) > 0, ((int32_t)-1 << 1) < -1, ((int32_t)-1 << 1) == -1, ((int32_t)-1 << 1) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 1) < 0, ((int32_t)INT_MAX << 1) == 0, ((int32_t)INT_MAX << 1) > 0, ((int32_t)INT_MAX << 1) < INT_MAX, ((int32_t)INT_MAX << 1) == INT_MAX, ((int32_t)INT_MAX << 1) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 1) < 0, ((int32_t)INT_MIN << 1) == 0, ((int32_t)INT_MIN << 1) > 0, ((int32_t)INT_MIN << 1) < INT_MIN, ((int32_t)INT_MIN << 1) == INT_MIN, ((int32_t)INT_MIN << 1) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 1) < 0, ((int32_t)0x000f << 1) == 0, ((int32_t)0x000f << 1) > 0, ((int32_t)0x000f << 1) < 0x000f, ((int32_t)0x000f << 1) == 0x000f, ((int32_t)0x000f << 1) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 1) < 0, ((int32_t)0xf000 << 1) == 0, ((int32_t)0xf000 << 1) > 0, ((int32_t)0xf000 << 1) < 0xf000, ((int32_t)0xf000 << 1) == 0xf000, ((int32_t)0xf000 << 1) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 1) < 0, ((int32_t)0xdeadbeef << 1) == 0, ((int32_t)0xdeadbeef << 1) > 0, ((int32_t)0xdeadbeef << 1) < 0xdeadbeef, ((int32_t)0xdeadbeef << 1) == 0xdeadbeef, ((int32_t)0xdeadbeef << 1) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 2) < 0, ((int32_t)0 << 2) == 0, ((int32_t)0 << 2) > 0, ((int32_t)0 << 2) < 0, ((int32_t)0 << 2) == 0, ((int32_t)0 << 2) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 2) < 0, ((int32_t)1 << 2) == 0, ((int32_t)1 << 2) > 0, ((int32_t)1 << 2) < 1, ((int32_t)1 << 2) == 1, ((int32_t)1 << 2) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 2) < 0, ((int32_t)-1 << 2) == 0, ((int32_t)-1 << 2) > 0, ((int32_t)-1 << 2) < -1, ((int32_t)-1 << 2) == -1, ((int32_t)-1 << 2) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 2) < 0, ((int32_t)INT_MAX << 2) == 0, ((int32_t)INT_MAX << 2) > 0, ((int32_t)INT_MAX << 2) < INT_MAX, ((int32_t)INT_MAX << 2) == INT_MAX, ((int32_t)INT_MAX << 2) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 2) < 0, ((int32_t)INT_MIN << 2) == 0, ((int32_t)INT_MIN << 2) > 0, ((int32_t)INT_MIN << 2) < INT_MIN, ((int32_t)INT_MIN << 2) == INT_MIN, ((int32_t)INT_MIN << 2) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 2) < 0, ((int32_t)0x000f << 2) == 0, ((int32_t)0x000f << 2) > 0, ((int32_t)0x000f << 2) < 0x000f, ((int32_t)0x000f << 2) == 0x000f, ((int32_t)0x000f << 2) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 2) < 0, ((int32_t)0xf000 << 2) == 0, ((int32_t)0xf000 << 2) > 0, ((int32_t)0xf000 << 2) < 0xf000, ((int32_t)0xf000 << 2) == 0xf000, ((int32_t)0xf000 << 2) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 2) < 0, ((int32_t)0xdeadbeef << 2) == 0, ((int32_t)0xdeadbeef << 2) > 0, ((int32_t)0xdeadbeef << 2) < 0xdeadbeef, ((int32_t)0xdeadbeef << 2) == 0xdeadbeef, ((int32_t)0xdeadbeef << 2) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 3) < 0, ((int32_t)0 << 3) == 0, ((int32_t)0 << 3) > 0, ((int32_t)0 << 3) < 0, ((int32_t)0 << 3) == 0, ((int32_t)0 << 3) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 3) < 0, ((int32_t)1 << 3) == 0, ((int32_t)1 << 3) > 0, ((int32_t)1 << 3) < 1, ((int32_t)1 << 3) == 1, ((int32_t)1 << 3) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 3) < 0, ((int32_t)-1 << 3) == 0, ((int32_t)-1 << 3) > 0, ((int32_t)-1 << 3) < -1, ((int32_t)-1 << 3) == -1, ((int32_t)-1 << 3) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 3) < 0, ((int32_t)INT_MAX << 3) == 0, ((int32_t)INT_MAX << 3) > 0, ((int32_t)INT_MAX << 3) < INT_MAX, ((int32_t)INT_MAX << 3) == INT_MAX, ((int32_t)INT_MAX << 3) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 3) < 0, ((int32_t)INT_MIN << 3) == 0, ((int32_t)INT_MIN << 3) > 0, ((int32_t)INT_MIN << 3) < INT_MIN, ((int32_t)INT_MIN << 3) == INT_MIN, ((int32_t)INT_MIN << 3) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 3) < 0, ((int32_t)0x000f << 3) == 0, ((int32_t)0x000f << 3) > 0, ((int32_t)0x000f << 3) < 0x000f, ((int32_t)0x000f << 3) == 0x000f, ((int32_t)0x000f << 3) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 3) < 0, ((int32_t)0xf000 << 3) == 0, ((int32_t)0xf000 << 3) > 0, ((int32_t)0xf000 << 3) < 0xf000, ((int32_t)0xf000 << 3) == 0xf000, ((int32_t)0xf000 << 3) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 3) < 0, ((int32_t)0xdeadbeef << 3) == 0, ((int32_t)0xdeadbeef << 3) > 0, ((int32_t)0xdeadbeef << 3) < 0xdeadbeef, ((int32_t)0xdeadbeef << 3) == 0xdeadbeef, ((int32_t)0xdeadbeef << 3) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 4) < 0, ((int32_t)0 << 4) == 0, ((int32_t)0 << 4) > 0, ((int32_t)0 << 4) < 0, ((int32_t)0 << 4) == 0, ((int32_t)0 << 4) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 4) < 0, ((int32_t)1 << 4) == 0, ((int32_t)1 << 4) > 0, ((int32_t)1 << 4) < 1, ((int32_t)1 << 4) == 1, ((int32_t)1 << 4) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 4) < 0, ((int32_t)-1 << 4) == 0, ((int32_t)-1 << 4) > 0, ((int32_t)-1 << 4) < -1, ((int32_t)-1 << 4) == -1, ((int32_t)-1 << 4) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 4) < 0, ((int32_t)INT_MAX << 4) == 0, ((int32_t)INT_MAX << 4) > 0, ((int32_t)INT_MAX << 4) < INT_MAX, ((int32_t)INT_MAX << 4) == INT_MAX, ((int32_t)INT_MAX << 4) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 4) < 0, ((int32_t)INT_MIN << 4) == 0, ((int32_t)INT_MIN << 4) > 0, ((int32_t)INT_MIN << 4) < INT_MIN, ((int32_t)INT_MIN << 4) == INT_MIN, ((int32_t)INT_MIN << 4) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 4) < 0, ((int32_t)0x000f << 4) == 0, ((int32_t)0x000f << 4) > 0, ((int32_t)0x000f << 4) < 0x000f, ((int32_t)0x000f << 4) == 0x000f, ((int32_t)0x000f << 4) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 4) < 0, ((int32_t)0xf000 << 4) == 0, ((int32_t)0xf000 << 4) > 0, ((int32_t)0xf000 << 4) < 0xf000, ((int32_t)0xf000 << 4) == 0xf000, ((int32_t)0xf000 << 4) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 4) < 0, ((int32_t)0xdeadbeef << 4) == 0, ((int32_t)0xdeadbeef << 4) > 0, ((int32_t)0xdeadbeef << 4) < 0xdeadbeef, ((int32_t)0xdeadbeef << 4) == 0xdeadbeef, ((int32_t)0xdeadbeef << 4) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 5) < 0, ((int32_t)0 << 5) == 0, ((int32_t)0 << 5) > 0, ((int32_t)0 << 5) < 0, ((int32_t)0 << 5) == 0, ((int32_t)0 << 5) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 5) < 0, ((int32_t)1 << 5) == 0, ((int32_t)1 << 5) > 0, ((int32_t)1 << 5) < 1, ((int32_t)1 << 5) == 1, ((int32_t)1 << 5) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 5) < 0, ((int32_t)-1 << 5) == 0, ((int32_t)-1 << 5) > 0, ((int32_t)-1 << 5) < -1, ((int32_t)-1 << 5) == -1, ((int32_t)-1 << 5) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 5) < 0, ((int32_t)INT_MAX << 5) == 0, ((int32_t)INT_MAX << 5) > 0, ((int32_t)INT_MAX << 5) < INT_MAX, ((int32_t)INT_MAX << 5) == INT_MAX, ((int32_t)INT_MAX << 5) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 5) < 0, ((int32_t)INT_MIN << 5) == 0, ((int32_t)INT_MIN << 5) > 0, ((int32_t)INT_MIN << 5) < INT_MIN, ((int32_t)INT_MIN << 5) == INT_MIN, ((int32_t)INT_MIN << 5) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 5) < 0, ((int32_t)0x000f << 5) == 0, ((int32_t)0x000f << 5) > 0, ((int32_t)0x000f << 5) < 0x000f, ((int32_t)0x000f << 5) == 0x000f, ((int32_t)0x000f << 5) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 5) < 0, ((int32_t)0xf000 << 5) == 0, ((int32_t)0xf000 << 5) > 0, ((int32_t)0xf000 << 5) < 0xf000, ((int32_t)0xf000 << 5) == 0xf000, ((int32_t)0xf000 << 5) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 5) < 0, ((int32_t)0xdeadbeef << 5) == 0, ((int32_t)0xdeadbeef << 5) > 0, ((int32_t)0xdeadbeef << 5) < 0xdeadbeef, ((int32_t)0xdeadbeef << 5) == 0xdeadbeef, ((int32_t)0xdeadbeef << 5) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 6) < 0, ((int32_t)0 << 6) == 0, ((int32_t)0 << 6) > 0, ((int32_t)0 << 6) < 0, ((int32_t)0 << 6) == 0, ((int32_t)0 << 6) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 6) < 0, ((int32_t)1 << 6) == 0, ((int32_t)1 << 6) > 0, ((int32_t)1 << 6) < 1, ((int32_t)1 << 6) == 1, ((int32_t)1 << 6) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 6) < 0, ((int32_t)-1 << 6) == 0, ((int32_t)-1 << 6) > 0, ((int32_t)-1 << 6) < -1, ((int32_t)-1 << 6) == -1, ((int32_t)-1 << 6) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 6) < 0, ((int32_t)INT_MAX << 6) == 0, ((int32_t)INT_MAX << 6) > 0, ((int32_t)INT_MAX << 6) < INT_MAX, ((int32_t)INT_MAX << 6) == INT_MAX, ((int32_t)INT_MAX << 6) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 6) < 0, ((int32_t)INT_MIN << 6) == 0, ((int32_t)INT_MIN << 6) > 0, ((int32_t)INT_MIN << 6) < INT_MIN, ((int32_t)INT_MIN << 6) == INT_MIN, ((int32_t)INT_MIN << 6) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 6) < 0, ((int32_t)0x000f << 6) == 0, ((int32_t)0x000f << 6) > 0, ((int32_t)0x000f << 6) < 0x000f, ((int32_t)0x000f << 6) == 0x000f, ((int32_t)0x000f << 6) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 6) < 0, ((int32_t)0xf000 << 6) == 0, ((int32_t)0xf000 << 6) > 0, ((int32_t)0xf000 << 6) < 0xf000, ((int32_t)0xf000 << 6) == 0xf000, ((int32_t)0xf000 << 6) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 6) < 0, ((int32_t)0xdeadbeef << 6) == 0, ((int32_t)0xdeadbeef << 6) > 0, ((int32_t)0xdeadbeef << 6) < 0xdeadbeef, ((int32_t)0xdeadbeef << 6) == 0xdeadbeef, ((int32_t)0xdeadbeef << 6) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 7) < 0, ((int32_t)0 << 7) == 0, ((int32_t)0 << 7) > 0, ((int32_t)0 << 7) < 0, ((int32_t)0 << 7) == 0, ((int32_t)0 << 7) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 7) < 0, ((int32_t)1 << 7) == 0, ((int32_t)1 << 7) > 0, ((int32_t)1 << 7) < 1, ((int32_t)1 << 7) == 1, ((int32_t)1 << 7) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 7) < 0, ((int32_t)-1 << 7) == 0, ((int32_t)-1 << 7) > 0, ((int32_t)-1 << 7) < -1, ((int32_t)-1 << 7) == -1, ((int32_t)-1 << 7) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 7) < 0, ((int32_t)INT_MAX << 7) == 0, ((int32_t)INT_MAX << 7) > 0, ((int32_t)INT_MAX << 7) < INT_MAX, ((int32_t)INT_MAX << 7) == INT_MAX, ((int32_t)INT_MAX << 7) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 7) < 0, ((int32_t)INT_MIN << 7) == 0, ((int32_t)INT_MIN << 7) > 0, ((int32_t)INT_MIN << 7) < INT_MIN, ((int32_t)INT_MIN << 7) == INT_MIN, ((int32_t)INT_MIN << 7) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 7) < 0, ((int32_t)0x000f << 7) == 0, ((int32_t)0x000f << 7) > 0, ((int32_t)0x000f << 7) < 0x000f, ((int32_t)0x000f << 7) == 0x000f, ((int32_t)0x000f << 7) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 7) < 0, ((int32_t)0xf000 << 7) == 0, ((int32_t)0xf000 << 7) > 0, ((int32_t)0xf000 << 7) < 0xf000, ((int32_t)0xf000 << 7) == 0xf000, ((int32_t)0xf000 << 7) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 7) < 0, ((int32_t)0xdeadbeef << 7) == 0, ((int32_t)0xdeadbeef << 7) > 0, ((int32_t)0xdeadbeef << 7) < 0xdeadbeef, ((int32_t)0xdeadbeef << 7) == 0xdeadbeef, ((int32_t)0xdeadbeef << 7) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 8) < 0, ((int32_t)0 << 8) == 0, ((int32_t)0 << 8) > 0, ((int32_t)0 << 8) < 0, ((int32_t)0 << 8) == 0, ((int32_t)0 << 8) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 8) < 0, ((int32_t)1 << 8) == 0, ((int32_t)1 << 8) > 0, ((int32_t)1 << 8) < 1, ((int32_t)1 << 8) == 1, ((int32_t)1 << 8) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 8) < 0, ((int32_t)-1 << 8) == 0, ((int32_t)-1 << 8) > 0, ((int32_t)-1 << 8) < -1, ((int32_t)-1 << 8) == -1, ((int32_t)-1 << 8) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 8) < 0, ((int32_t)INT_MAX << 8) == 0, ((int32_t)INT_MAX << 8) > 0, ((int32_t)INT_MAX << 8) < INT_MAX, ((int32_t)INT_MAX << 8) == INT_MAX, ((int32_t)INT_MAX << 8) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 8) < 0, ((int32_t)INT_MIN << 8) == 0, ((int32_t)INT_MIN << 8) > 0, ((int32_t)INT_MIN << 8) < INT_MIN, ((int32_t)INT_MIN << 8) == INT_MIN, ((int32_t)INT_MIN << 8) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 8) < 0, ((int32_t)0x000f << 8) == 0, ((int32_t)0x000f << 8) > 0, ((int32_t)0x000f << 8) < 0x000f, ((int32_t)0x000f << 8) == 0x000f, ((int32_t)0x000f << 8) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 8) < 0, ((int32_t)0xf000 << 8) == 0, ((int32_t)0xf000 << 8) > 0, ((int32_t)0xf000 << 8) < 0xf000, ((int32_t)0xf000 << 8) == 0xf000, ((int32_t)0xf000 << 8) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 8) < 0, ((int32_t)0xdeadbeef << 8) == 0, ((int32_t)0xdeadbeef << 8) > 0, ((int32_t)0xdeadbeef << 8) < 0xdeadbeef, ((int32_t)0xdeadbeef << 8) == 0xdeadbeef, ((int32_t)0xdeadbeef << 8) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 9) < 0, ((int32_t)0 << 9) == 0, ((int32_t)0 << 9) > 0, ((int32_t)0 << 9) < 0, ((int32_t)0 << 9) == 0, ((int32_t)0 << 9) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 9) < 0, ((int32_t)1 << 9) == 0, ((int32_t)1 << 9) > 0, ((int32_t)1 << 9) < 1, ((int32_t)1 << 9) == 1, ((int32_t)1 << 9) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 9) < 0, ((int32_t)-1 << 9) == 0, ((int32_t)-1 << 9) > 0, ((int32_t)-1 << 9) < -1, ((int32_t)-1 << 9) == -1, ((int32_t)-1 << 9) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 9) < 0, ((int32_t)INT_MAX << 9) == 0, ((int32_t)INT_MAX << 9) > 0, ((int32_t)INT_MAX << 9) < INT_MAX, ((int32_t)INT_MAX << 9) == INT_MAX, ((int32_t)INT_MAX << 9) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 9) < 0, ((int32_t)INT_MIN << 9) == 0, ((int32_t)INT_MIN << 9) > 0, ((int32_t)INT_MIN << 9) < INT_MIN, ((int32_t)INT_MIN << 9) == INT_MIN, ((int32_t)INT_MIN << 9) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 9) < 0, ((int32_t)0x000f << 9) == 0, ((int32_t)0x000f << 9) > 0, ((int32_t)0x000f << 9) < 0x000f, ((int32_t)0x000f << 9) == 0x000f, ((int32_t)0x000f << 9) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 9) < 0, ((int32_t)0xf000 << 9) == 0, ((int32_t)0xf000 << 9) > 0, ((int32_t)0xf000 << 9) < 0xf000, ((int32_t)0xf000 << 9) == 0xf000, ((int32_t)0xf000 << 9) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 9) < 0, ((int32_t)0xdeadbeef << 9) == 0, ((int32_t)0xdeadbeef << 9) > 0, ((int32_t)0xdeadbeef << 9) < 0xdeadbeef, ((int32_t)0xdeadbeef << 9) == 0xdeadbeef, ((int32_t)0xdeadbeef << 9) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 10) < 0, ((int32_t)0 << 10) == 0, ((int32_t)0 << 10) > 0, ((int32_t)0 << 10) < 0, ((int32_t)0 << 10) == 0, ((int32_t)0 << 10) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 10) < 0, ((int32_t)1 << 10) == 0, ((int32_t)1 << 10) > 0, ((int32_t)1 << 10) < 1, ((int32_t)1 << 10) == 1, ((int32_t)1 << 10) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 10) < 0, ((int32_t)-1 << 10) == 0, ((int32_t)-1 << 10) > 0, ((int32_t)-1 << 10) < -1, ((int32_t)-1 << 10) == -1, ((int32_t)-1 << 10) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 10) < 0, ((int32_t)INT_MAX << 10) == 0, ((int32_t)INT_MAX << 10) > 0, ((int32_t)INT_MAX << 10) < INT_MAX, ((int32_t)INT_MAX << 10) == INT_MAX, ((int32_t)INT_MAX << 10) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 10) < 0, ((int32_t)INT_MIN << 10) == 0, ((int32_t)INT_MIN << 10) > 0, ((int32_t)INT_MIN << 10) < INT_MIN, ((int32_t)INT_MIN << 10) == INT_MIN, ((int32_t)INT_MIN << 10) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 10) < 0, ((int32_t)0x000f << 10) == 0, ((int32_t)0x000f << 10) > 0, ((int32_t)0x000f << 10) < 0x000f, ((int32_t)0x000f << 10) == 0x000f, ((int32_t)0x000f << 10) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 10) < 0, ((int32_t)0xf000 << 10) == 0, ((int32_t)0xf000 << 10) > 0, ((int32_t)0xf000 << 10) < 0xf000, ((int32_t)0xf000 << 10) == 0xf000, ((int32_t)0xf000 << 10) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 10) < 0, ((int32_t)0xdeadbeef << 10) == 0, ((int32_t)0xdeadbeef << 10) > 0, ((int32_t)0xdeadbeef << 10) < 0xdeadbeef, ((int32_t)0xdeadbeef << 10) == 0xdeadbeef, ((int32_t)0xdeadbeef << 10) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 11) < 0, ((int32_t)0 << 11) == 0, ((int32_t)0 << 11) > 0, ((int32_t)0 << 11) < 0, ((int32_t)0 << 11) == 0, ((int32_t)0 << 11) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 11) < 0, ((int32_t)1 << 11) == 0, ((int32_t)1 << 11) > 0, ((int32_t)1 << 11) < 1, ((int32_t)1 << 11) == 1, ((int32_t)1 << 11) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 11) < 0, ((int32_t)-1 << 11) == 0, ((int32_t)-1 << 11) > 0, ((int32_t)-1 << 11) < -1, ((int32_t)-1 << 11) == -1, ((int32_t)-1 << 11) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 11) < 0, ((int32_t)INT_MAX << 11) == 0, ((int32_t)INT_MAX << 11) > 0, ((int32_t)INT_MAX << 11) < INT_MAX, ((int32_t)INT_MAX << 11) == INT_MAX, ((int32_t)INT_MAX << 11) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 11) < 0, ((int32_t)INT_MIN << 11) == 0, ((int32_t)INT_MIN << 11) > 0, ((int32_t)INT_MIN << 11) < INT_MIN, ((int32_t)INT_MIN << 11) == INT_MIN, ((int32_t)INT_MIN << 11) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 11) < 0, ((int32_t)0x000f << 11) == 0, ((int32_t)0x000f << 11) > 0, ((int32_t)0x000f << 11) < 0x000f, ((int32_t)0x000f << 11) == 0x000f, ((int32_t)0x000f << 11) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 11) < 0, ((int32_t)0xf000 << 11) == 0, ((int32_t)0xf000 << 11) > 0, ((int32_t)0xf000 << 11) < 0xf000, ((int32_t)0xf000 << 11) == 0xf000, ((int32_t)0xf000 << 11) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 11) < 0, ((int32_t)0xdeadbeef << 11) == 0, ((int32_t)0xdeadbeef << 11) > 0, ((int32_t)0xdeadbeef << 11) < 0xdeadbeef, ((int32_t)0xdeadbeef << 11) == 0xdeadbeef, ((int32_t)0xdeadbeef << 11) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 12) < 0, ((int32_t)0 << 12) == 0, ((int32_t)0 << 12) > 0, ((int32_t)0 << 12) < 0, ((int32_t)0 << 12) == 0, ((int32_t)0 << 12) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 12) < 0, ((int32_t)1 << 12) == 0, ((int32_t)1 << 12) > 0, ((int32_t)1 << 12) < 1, ((int32_t)1 << 12) == 1, ((int32_t)1 << 12) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 12) < 0, ((int32_t)-1 << 12) == 0, ((int32_t)-1 << 12) > 0, ((int32_t)-1 << 12) < -1, ((int32_t)-1 << 12) == -1, ((int32_t)-1 << 12) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 12) < 0, ((int32_t)INT_MAX << 12) == 0, ((int32_t)INT_MAX << 12) > 0, ((int32_t)INT_MAX << 12) < INT_MAX, ((int32_t)INT_MAX << 12) == INT_MAX, ((int32_t)INT_MAX << 12) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 12) < 0, ((int32_t)INT_MIN << 12) == 0, ((int32_t)INT_MIN << 12) > 0, ((int32_t)INT_MIN << 12) < INT_MIN, ((int32_t)INT_MIN << 12) == INT_MIN, ((int32_t)INT_MIN << 12) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 12) < 0, ((int32_t)0x000f << 12) == 0, ((int32_t)0x000f << 12) > 0, ((int32_t)0x000f << 12) < 0x000f, ((int32_t)0x000f << 12) == 0x000f, ((int32_t)0x000f << 12) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 12) < 0, ((int32_t)0xf000 << 12) == 0, ((int32_t)0xf000 << 12) > 0, ((int32_t)0xf000 << 12) < 0xf000, ((int32_t)0xf000 << 12) == 0xf000, ((int32_t)0xf000 << 12) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 12) < 0, ((int32_t)0xdeadbeef << 12) == 0, ((int32_t)0xdeadbeef << 12) > 0, ((int32_t)0xdeadbeef << 12) < 0xdeadbeef, ((int32_t)0xdeadbeef << 12) == 0xdeadbeef, ((int32_t)0xdeadbeef << 12) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 13) < 0, ((int32_t)0 << 13) == 0, ((int32_t)0 << 13) > 0, ((int32_t)0 << 13) < 0, ((int32_t)0 << 13) == 0, ((int32_t)0 << 13) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 13) < 0, ((int32_t)1 << 13) == 0, ((int32_t)1 << 13) > 0, ((int32_t)1 << 13) < 1, ((int32_t)1 << 13) == 1, ((int32_t)1 << 13) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 13) < 0, ((int32_t)-1 << 13) == 0, ((int32_t)-1 << 13) > 0, ((int32_t)-1 << 13) < -1, ((int32_t)-1 << 13) == -1, ((int32_t)-1 << 13) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 13) < 0, ((int32_t)INT_MAX << 13) == 0, ((int32_t)INT_MAX << 13) > 0, ((int32_t)INT_MAX << 13) < INT_MAX, ((int32_t)INT_MAX << 13) == INT_MAX, ((int32_t)INT_MAX << 13) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 13) < 0, ((int32_t)INT_MIN << 13) == 0, ((int32_t)INT_MIN << 13) > 0, ((int32_t)INT_MIN << 13) < INT_MIN, ((int32_t)INT_MIN << 13) == INT_MIN, ((int32_t)INT_MIN << 13) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 13) < 0, ((int32_t)0x000f << 13) == 0, ((int32_t)0x000f << 13) > 0, ((int32_t)0x000f << 13) < 0x000f, ((int32_t)0x000f << 13) == 0x000f, ((int32_t)0x000f << 13) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 13) < 0, ((int32_t)0xf000 << 13) == 0, ((int32_t)0xf000 << 13) > 0, ((int32_t)0xf000 << 13) < 0xf000, ((int32_t)0xf000 << 13) == 0xf000, ((int32_t)0xf000 << 13) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 13) < 0, ((int32_t)0xdeadbeef << 13) == 0, ((int32_t)0xdeadbeef << 13) > 0, ((int32_t)0xdeadbeef << 13) < 0xdeadbeef, ((int32_t)0xdeadbeef << 13) == 0xdeadbeef, ((int32_t)0xdeadbeef << 13) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 14) < 0, ((int32_t)0 << 14) == 0, ((int32_t)0 << 14) > 0, ((int32_t)0 << 14) < 0, ((int32_t)0 << 14) == 0, ((int32_t)0 << 14) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 14) < 0, ((int32_t)1 << 14) == 0, ((int32_t)1 << 14) > 0, ((int32_t)1 << 14) < 1, ((int32_t)1 << 14) == 1, ((int32_t)1 << 14) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 14) < 0, ((int32_t)-1 << 14) == 0, ((int32_t)-1 << 14) > 0, ((int32_t)-1 << 14) < -1, ((int32_t)-1 << 14) == -1, ((int32_t)-1 << 14) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 14) < 0, ((int32_t)INT_MAX << 14) == 0, ((int32_t)INT_MAX << 14) > 0, ((int32_t)INT_MAX << 14) < INT_MAX, ((int32_t)INT_MAX << 14) == INT_MAX, ((int32_t)INT_MAX << 14) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 14) < 0, ((int32_t)INT_MIN << 14) == 0, ((int32_t)INT_MIN << 14) > 0, ((int32_t)INT_MIN << 14) < INT_MIN, ((int32_t)INT_MIN << 14) == INT_MIN, ((int32_t)INT_MIN << 14) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 14) < 0, ((int32_t)0x000f << 14) == 0, ((int32_t)0x000f << 14) > 0, ((int32_t)0x000f << 14) < 0x000f, ((int32_t)0x000f << 14) == 0x000f, ((int32_t)0x000f << 14) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 14) < 0, ((int32_t)0xf000 << 14) == 0, ((int32_t)0xf000 << 14) > 0, ((int32_t)0xf000 << 14) < 0xf000, ((int32_t)0xf000 << 14) == 0xf000, ((int32_t)0xf000 << 14) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 14) < 0, ((int32_t)0xdeadbeef << 14) == 0, ((int32_t)0xdeadbeef << 14) > 0, ((int32_t)0xdeadbeef << 14) < 0xdeadbeef, ((int32_t)0xdeadbeef << 14) == 0xdeadbeef, ((int32_t)0xdeadbeef << 14) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 15) < 0, ((int32_t)0 << 15) == 0, ((int32_t)0 << 15) > 0, ((int32_t)0 << 15) < 0, ((int32_t)0 << 15) == 0, ((int32_t)0 << 15) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 15) < 0, ((int32_t)1 << 15) == 0, ((int32_t)1 << 15) > 0, ((int32_t)1 << 15) < 1, ((int32_t)1 << 15) == 1, ((int32_t)1 << 15) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 15) < 0, ((int32_t)-1 << 15) == 0, ((int32_t)-1 << 15) > 0, ((int32_t)-1 << 15) < -1, ((int32_t)-1 << 15) == -1, ((int32_t)-1 << 15) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 15) < 0, ((int32_t)INT_MAX << 15) == 0, ((int32_t)INT_MAX << 15) > 0, ((int32_t)INT_MAX << 15) < INT_MAX, ((int32_t)INT_MAX << 15) == INT_MAX, ((int32_t)INT_MAX << 15) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 15) < 0, ((int32_t)INT_MIN << 15) == 0, ((int32_t)INT_MIN << 15) > 0, ((int32_t)INT_MIN << 15) < INT_MIN, ((int32_t)INT_MIN << 15) == INT_MIN, ((int32_t)INT_MIN << 15) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 15) < 0, ((int32_t)0x000f << 15) == 0, ((int32_t)0x000f << 15) > 0, ((int32_t)0x000f << 15) < 0x000f, ((int32_t)0x000f << 15) == 0x000f, ((int32_t)0x000f << 15) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 15) < 0, ((int32_t)0xf000 << 15) == 0, ((int32_t)0xf000 << 15) > 0, ((int32_t)0xf000 << 15) < 0xf000, ((int32_t)0xf000 << 15) == 0xf000, ((int32_t)0xf000 << 15) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 15) < 0, ((int32_t)0xdeadbeef << 15) == 0, ((int32_t)0xdeadbeef << 15) > 0, ((int32_t)0xdeadbeef << 15) < 0xdeadbeef, ((int32_t)0xdeadbeef << 15) == 0xdeadbeef, ((int32_t)0xdeadbeef << 15) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 16) < 0, ((int32_t)0 << 16) == 0, ((int32_t)0 << 16) > 0, ((int32_t)0 << 16) < 0, ((int32_t)0 << 16) == 0, ((int32_t)0 << 16) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 16) < 0, ((int32_t)1 << 16) == 0, ((int32_t)1 << 16) > 0, ((int32_t)1 << 16) < 1, ((int32_t)1 << 16) == 1, ((int32_t)1 << 16) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 16) < 0, ((int32_t)-1 << 16) == 0, ((int32_t)-1 << 16) > 0, ((int32_t)-1 << 16) < -1, ((int32_t)-1 << 16) == -1, ((int32_t)-1 << 16) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 16) < 0, ((int32_t)INT_MAX << 16) == 0, ((int32_t)INT_MAX << 16) > 0, ((int32_t)INT_MAX << 16) < INT_MAX, ((int32_t)INT_MAX << 16) == INT_MAX, ((int32_t)INT_MAX << 16) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 16) < 0, ((int32_t)INT_MIN << 16) == 0, ((int32_t)INT_MIN << 16) > 0, ((int32_t)INT_MIN << 16) < INT_MIN, ((int32_t)INT_MIN << 16) == INT_MIN, ((int32_t)INT_MIN << 16) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 16) < 0, ((int32_t)0x000f << 16) == 0, ((int32_t)0x000f << 16) > 0, ((int32_t)0x000f << 16) < 0x000f, ((int32_t)0x000f << 16) == 0x000f, ((int32_t)0x000f << 16) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 16) < 0, ((int32_t)0xf000 << 16) == 0, ((int32_t)0xf000 << 16) > 0, ((int32_t)0xf000 << 16) < 0xf000, ((int32_t)0xf000 << 16) == 0xf000, ((int32_t)0xf000 << 16) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 16) < 0, ((int32_t)0xdeadbeef << 16) == 0, ((int32_t)0xdeadbeef << 16) > 0, ((int32_t)0xdeadbeef << 16) < 0xdeadbeef, ((int32_t)0xdeadbeef << 16) == 0xdeadbeef, ((int32_t)0xdeadbeef << 16) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 17) < 0, ((int32_t)0 << 17) == 0, ((int32_t)0 << 17) > 0, ((int32_t)0 << 17) < 0, ((int32_t)0 << 17) == 0, ((int32_t)0 << 17) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 17) < 0, ((int32_t)1 << 17) == 0, ((int32_t)1 << 17) > 0, ((int32_t)1 << 17) < 1, ((int32_t)1 << 17) == 1, ((int32_t)1 << 17) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 17) < 0, ((int32_t)-1 << 17) == 0, ((int32_t)-1 << 17) > 0, ((int32_t)-1 << 17) < -1, ((int32_t)-1 << 17) == -1, ((int32_t)-1 << 17) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 17) < 0, ((int32_t)INT_MAX << 17) == 0, ((int32_t)INT_MAX << 17) > 0, ((int32_t)INT_MAX << 17) < INT_MAX, ((int32_t)INT_MAX << 17) == INT_MAX, ((int32_t)INT_MAX << 17) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 17) < 0, ((int32_t)INT_MIN << 17) == 0, ((int32_t)INT_MIN << 17) > 0, ((int32_t)INT_MIN << 17) < INT_MIN, ((int32_t)INT_MIN << 17) == INT_MIN, ((int32_t)INT_MIN << 17) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 17) < 0, ((int32_t)0x000f << 17) == 0, ((int32_t)0x000f << 17) > 0, ((int32_t)0x000f << 17) < 0x000f, ((int32_t)0x000f << 17) == 0x000f, ((int32_t)0x000f << 17) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 17) < 0, ((int32_t)0xf000 << 17) == 0, ((int32_t)0xf000 << 17) > 0, ((int32_t)0xf000 << 17) < 0xf000, ((int32_t)0xf000 << 17) == 0xf000, ((int32_t)0xf000 << 17) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 17) < 0, ((int32_t)0xdeadbeef << 17) == 0, ((int32_t)0xdeadbeef << 17) > 0, ((int32_t)0xdeadbeef << 17) < 0xdeadbeef, ((int32_t)0xdeadbeef << 17) == 0xdeadbeef, ((int32_t)0xdeadbeef << 17) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 18) < 0, ((int32_t)0 << 18) == 0, ((int32_t)0 << 18) > 0, ((int32_t)0 << 18) < 0, ((int32_t)0 << 18) == 0, ((int32_t)0 << 18) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 18) < 0, ((int32_t)1 << 18) == 0, ((int32_t)1 << 18) > 0, ((int32_t)1 << 18) < 1, ((int32_t)1 << 18) == 1, ((int32_t)1 << 18) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 18) < 0, ((int32_t)-1 << 18) == 0, ((int32_t)-1 << 18) > 0, ((int32_t)-1 << 18) < -1, ((int32_t)-1 << 18) == -1, ((int32_t)-1 << 18) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 18) < 0, ((int32_t)INT_MAX << 18) == 0, ((int32_t)INT_MAX << 18) > 0, ((int32_t)INT_MAX << 18) < INT_MAX, ((int32_t)INT_MAX << 18) == INT_MAX, ((int32_t)INT_MAX << 18) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 18) < 0, ((int32_t)INT_MIN << 18) == 0, ((int32_t)INT_MIN << 18) > 0, ((int32_t)INT_MIN << 18) < INT_MIN, ((int32_t)INT_MIN << 18) == INT_MIN, ((int32_t)INT_MIN << 18) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 18) < 0, ((int32_t)0x000f << 18) == 0, ((int32_t)0x000f << 18) > 0, ((int32_t)0x000f << 18) < 0x000f, ((int32_t)0x000f << 18) == 0x000f, ((int32_t)0x000f << 18) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 18) < 0, ((int32_t)0xf000 << 18) == 0, ((int32_t)0xf000 << 18) > 0, ((int32_t)0xf000 << 18) < 0xf000, ((int32_t)0xf000 << 18) == 0xf000, ((int32_t)0xf000 << 18) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 18) < 0, ((int32_t)0xdeadbeef << 18) == 0, ((int32_t)0xdeadbeef << 18) > 0, ((int32_t)0xdeadbeef << 18) < 0xdeadbeef, ((int32_t)0xdeadbeef << 18) == 0xdeadbeef, ((int32_t)0xdeadbeef << 18) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 19) < 0, ((int32_t)0 << 19) == 0, ((int32_t)0 << 19) > 0, ((int32_t)0 << 19) < 0, ((int32_t)0 << 19) == 0, ((int32_t)0 << 19) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 19) < 0, ((int32_t)1 << 19) == 0, ((int32_t)1 << 19) > 0, ((int32_t)1 << 19) < 1, ((int32_t)1 << 19) == 1, ((int32_t)1 << 19) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 19) < 0, ((int32_t)-1 << 19) == 0, ((int32_t)-1 << 19) > 0, ((int32_t)-1 << 19) < -1, ((int32_t)-1 << 19) == -1, ((int32_t)-1 << 19) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 19) < 0, ((int32_t)INT_MAX << 19) == 0, ((int32_t)INT_MAX << 19) > 0, ((int32_t)INT_MAX << 19) < INT_MAX, ((int32_t)INT_MAX << 19) == INT_MAX, ((int32_t)INT_MAX << 19) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 19) < 0, ((int32_t)INT_MIN << 19) == 0, ((int32_t)INT_MIN << 19) > 0, ((int32_t)INT_MIN << 19) < INT_MIN, ((int32_t)INT_MIN << 19) == INT_MIN, ((int32_t)INT_MIN << 19) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 19) < 0, ((int32_t)0x000f << 19) == 0, ((int32_t)0x000f << 19) > 0, ((int32_t)0x000f << 19) < 0x000f, ((int32_t)0x000f << 19) == 0x000f, ((int32_t)0x000f << 19) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 19) < 0, ((int32_t)0xf000 << 19) == 0, ((int32_t)0xf000 << 19) > 0, ((int32_t)0xf000 << 19) < 0xf000, ((int32_t)0xf000 << 19) == 0xf000, ((int32_t)0xf000 << 19) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 19) < 0, ((int32_t)0xdeadbeef << 19) == 0, ((int32_t)0xdeadbeef << 19) > 0, ((int32_t)0xdeadbeef << 19) < 0xdeadbeef, ((int32_t)0xdeadbeef << 19) == 0xdeadbeef, ((int32_t)0xdeadbeef << 19) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 20) < 0, ((int32_t)0 << 20) == 0, ((int32_t)0 << 20) > 0, ((int32_t)0 << 20) < 0, ((int32_t)0 << 20) == 0, ((int32_t)0 << 20) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 20) < 0, ((int32_t)1 << 20) == 0, ((int32_t)1 << 20) > 0, ((int32_t)1 << 20) < 1, ((int32_t)1 << 20) == 1, ((int32_t)1 << 20) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 20) < 0, ((int32_t)-1 << 20) == 0, ((int32_t)-1 << 20) > 0, ((int32_t)-1 << 20) < -1, ((int32_t)-1 << 20) == -1, ((int32_t)-1 << 20) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 20) < 0, ((int32_t)INT_MAX << 20) == 0, ((int32_t)INT_MAX << 20) > 0, ((int32_t)INT_MAX << 20) < INT_MAX, ((int32_t)INT_MAX << 20) == INT_MAX, ((int32_t)INT_MAX << 20) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 20) < 0, ((int32_t)INT_MIN << 20) == 0, ((int32_t)INT_MIN << 20) > 0, ((int32_t)INT_MIN << 20) < INT_MIN, ((int32_t)INT_MIN << 20) == INT_MIN, ((int32_t)INT_MIN << 20) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 20) < 0, ((int32_t)0x000f << 20) == 0, ((int32_t)0x000f << 20) > 0, ((int32_t)0x000f << 20) < 0x000f, ((int32_t)0x000f << 20) == 0x000f, ((int32_t)0x000f << 20) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 20) < 0, ((int32_t)0xf000 << 20) == 0, ((int32_t)0xf000 << 20) > 0, ((int32_t)0xf000 << 20) < 0xf000, ((int32_t)0xf000 << 20) == 0xf000, ((int32_t)0xf000 << 20) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 20) < 0, ((int32_t)0xdeadbeef << 20) == 0, ((int32_t)0xdeadbeef << 20) > 0, ((int32_t)0xdeadbeef << 20) < 0xdeadbeef, ((int32_t)0xdeadbeef << 20) == 0xdeadbeef, ((int32_t)0xdeadbeef << 20) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 21) < 0, ((int32_t)0 << 21) == 0, ((int32_t)0 << 21) > 0, ((int32_t)0 << 21) < 0, ((int32_t)0 << 21) == 0, ((int32_t)0 << 21) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 21) < 0, ((int32_t)1 << 21) == 0, ((int32_t)1 << 21) > 0, ((int32_t)1 << 21) < 1, ((int32_t)1 << 21) == 1, ((int32_t)1 << 21) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 21) < 0, ((int32_t)-1 << 21) == 0, ((int32_t)-1 << 21) > 0, ((int32_t)-1 << 21) < -1, ((int32_t)-1 << 21) == -1, ((int32_t)-1 << 21) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 21) < 0, ((int32_t)INT_MAX << 21) == 0, ((int32_t)INT_MAX << 21) > 0, ((int32_t)INT_MAX << 21) < INT_MAX, ((int32_t)INT_MAX << 21) == INT_MAX, ((int32_t)INT_MAX << 21) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 21) < 0, ((int32_t)INT_MIN << 21) == 0, ((int32_t)INT_MIN << 21) > 0, ((int32_t)INT_MIN << 21) < INT_MIN, ((int32_t)INT_MIN << 21) == INT_MIN, ((int32_t)INT_MIN << 21) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 21) < 0, ((int32_t)0x000f << 21) == 0, ((int32_t)0x000f << 21) > 0, ((int32_t)0x000f << 21) < 0x000f, ((int32_t)0x000f << 21) == 0x000f, ((int32_t)0x000f << 21) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 21) < 0, ((int32_t)0xf000 << 21) == 0, ((int32_t)0xf000 << 21) > 0, ((int32_t)0xf000 << 21) < 0xf000, ((int32_t)0xf000 << 21) == 0xf000, ((int32_t)0xf000 << 21) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 21) < 0, ((int32_t)0xdeadbeef << 21) == 0, ((int32_t)0xdeadbeef << 21) > 0, ((int32_t)0xdeadbeef << 21) < 0xdeadbeef, ((int32_t)0xdeadbeef << 21) == 0xdeadbeef, ((int32_t)0xdeadbeef << 21) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 22) < 0, ((int32_t)0 << 22) == 0, ((int32_t)0 << 22) > 0, ((int32_t)0 << 22) < 0, ((int32_t)0 << 22) == 0, ((int32_t)0 << 22) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 22) < 0, ((int32_t)1 << 22) == 0, ((int32_t)1 << 22) > 0, ((int32_t)1 << 22) < 1, ((int32_t)1 << 22) == 1, ((int32_t)1 << 22) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 22) < 0, ((int32_t)-1 << 22) == 0, ((int32_t)-1 << 22) > 0, ((int32_t)-1 << 22) < -1, ((int32_t)-1 << 22) == -1, ((int32_t)-1 << 22) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 22) < 0, ((int32_t)INT_MAX << 22) == 0, ((int32_t)INT_MAX << 22) > 0, ((int32_t)INT_MAX << 22) < INT_MAX, ((int32_t)INT_MAX << 22) == INT_MAX, ((int32_t)INT_MAX << 22) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 22) < 0, ((int32_t)INT_MIN << 22) == 0, ((int32_t)INT_MIN << 22) > 0, ((int32_t)INT_MIN << 22) < INT_MIN, ((int32_t)INT_MIN << 22) == INT_MIN, ((int32_t)INT_MIN << 22) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 22) < 0, ((int32_t)0x000f << 22) == 0, ((int32_t)0x000f << 22) > 0, ((int32_t)0x000f << 22) < 0x000f, ((int32_t)0x000f << 22) == 0x000f, ((int32_t)0x000f << 22) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 22) < 0, ((int32_t)0xf000 << 22) == 0, ((int32_t)0xf000 << 22) > 0, ((int32_t)0xf000 << 22) < 0xf000, ((int32_t)0xf000 << 22) == 0xf000, ((int32_t)0xf000 << 22) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 22) < 0, ((int32_t)0xdeadbeef << 22) == 0, ((int32_t)0xdeadbeef << 22) > 0, ((int32_t)0xdeadbeef << 22) < 0xdeadbeef, ((int32_t)0xdeadbeef << 22) == 0xdeadbeef, ((int32_t)0xdeadbeef << 22) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 23) < 0, ((int32_t)0 << 23) == 0, ((int32_t)0 << 23) > 0, ((int32_t)0 << 23) < 0, ((int32_t)0 << 23) == 0, ((int32_t)0 << 23) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 23) < 0, ((int32_t)1 << 23) == 0, ((int32_t)1 << 23) > 0, ((int32_t)1 << 23) < 1, ((int32_t)1 << 23) == 1, ((int32_t)1 << 23) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 23) < 0, ((int32_t)-1 << 23) == 0, ((int32_t)-1 << 23) > 0, ((int32_t)-1 << 23) < -1, ((int32_t)-1 << 23) == -1, ((int32_t)-1 << 23) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 23) < 0, ((int32_t)INT_MAX << 23) == 0, ((int32_t)INT_MAX << 23) > 0, ((int32_t)INT_MAX << 23) < INT_MAX, ((int32_t)INT_MAX << 23) == INT_MAX, ((int32_t)INT_MAX << 23) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 23) < 0, ((int32_t)INT_MIN << 23) == 0, ((int32_t)INT_MIN << 23) > 0, ((int32_t)INT_MIN << 23) < INT_MIN, ((int32_t)INT_MIN << 23) == INT_MIN, ((int32_t)INT_MIN << 23) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 23) < 0, ((int32_t)0x000f << 23) == 0, ((int32_t)0x000f << 23) > 0, ((int32_t)0x000f << 23) < 0x000f, ((int32_t)0x000f << 23) == 0x000f, ((int32_t)0x000f << 23) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 23) < 0, ((int32_t)0xf000 << 23) == 0, ((int32_t)0xf000 << 23) > 0, ((int32_t)0xf000 << 23) < 0xf000, ((int32_t)0xf000 << 23) == 0xf000, ((int32_t)0xf000 << 23) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 23) < 0, ((int32_t)0xdeadbeef << 23) == 0, ((int32_t)0xdeadbeef << 23) > 0, ((int32_t)0xdeadbeef << 23) < 0xdeadbeef, ((int32_t)0xdeadbeef << 23) == 0xdeadbeef, ((int32_t)0xdeadbeef << 23) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 24) < 0, ((int32_t)0 << 24) == 0, ((int32_t)0 << 24) > 0, ((int32_t)0 << 24) < 0, ((int32_t)0 << 24) == 0, ((int32_t)0 << 24) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 24) < 0, ((int32_t)1 << 24) == 0, ((int32_t)1 << 24) > 0, ((int32_t)1 << 24) < 1, ((int32_t)1 << 24) == 1, ((int32_t)1 << 24) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 24) < 0, ((int32_t)-1 << 24) == 0, ((int32_t)-1 << 24) > 0, ((int32_t)-1 << 24) < -1, ((int32_t)-1 << 24) == -1, ((int32_t)-1 << 24) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 24) < 0, ((int32_t)INT_MAX << 24) == 0, ((int32_t)INT_MAX << 24) > 0, ((int32_t)INT_MAX << 24) < INT_MAX, ((int32_t)INT_MAX << 24) == INT_MAX, ((int32_t)INT_MAX << 24) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 24) < 0, ((int32_t)INT_MIN << 24) == 0, ((int32_t)INT_MIN << 24) > 0, ((int32_t)INT_MIN << 24) < INT_MIN, ((int32_t)INT_MIN << 24) == INT_MIN, ((int32_t)INT_MIN << 24) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 24) < 0, ((int32_t)0x000f << 24) == 0, ((int32_t)0x000f << 24) > 0, ((int32_t)0x000f << 24) < 0x000f, ((int32_t)0x000f << 24) == 0x000f, ((int32_t)0x000f << 24) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 24) < 0, ((int32_t)0xf000 << 24) == 0, ((int32_t)0xf000 << 24) > 0, ((int32_t)0xf000 << 24) < 0xf000, ((int32_t)0xf000 << 24) == 0xf000, ((int32_t)0xf000 << 24) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 24) < 0, ((int32_t)0xdeadbeef << 24) == 0, ((int32_t)0xdeadbeef << 24) > 0, ((int32_t)0xdeadbeef << 24) < 0xdeadbeef, ((int32_t)0xdeadbeef << 24) == 0xdeadbeef, ((int32_t)0xdeadbeef << 24) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 25) < 0, ((int32_t)0 << 25) == 0, ((int32_t)0 << 25) > 0, ((int32_t)0 << 25) < 0, ((int32_t)0 << 25) == 0, ((int32_t)0 << 25) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 25) < 0, ((int32_t)1 << 25) == 0, ((int32_t)1 << 25) > 0, ((int32_t)1 << 25) < 1, ((int32_t)1 << 25) == 1, ((int32_t)1 << 25) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 25) < 0, ((int32_t)-1 << 25) == 0, ((int32_t)-1 << 25) > 0, ((int32_t)-1 << 25) < -1, ((int32_t)-1 << 25) == -1, ((int32_t)-1 << 25) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 25) < 0, ((int32_t)INT_MAX << 25) == 0, ((int32_t)INT_MAX << 25) > 0, ((int32_t)INT_MAX << 25) < INT_MAX, ((int32_t)INT_MAX << 25) == INT_MAX, ((int32_t)INT_MAX << 25) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 25) < 0, ((int32_t)INT_MIN << 25) == 0, ((int32_t)INT_MIN << 25) > 0, ((int32_t)INT_MIN << 25) < INT_MIN, ((int32_t)INT_MIN << 25) == INT_MIN, ((int32_t)INT_MIN << 25) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 25) < 0, ((int32_t)0x000f << 25) == 0, ((int32_t)0x000f << 25) > 0, ((int32_t)0x000f << 25) < 0x000f, ((int32_t)0x000f << 25) == 0x000f, ((int32_t)0x000f << 25) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 25) < 0, ((int32_t)0xf000 << 25) == 0, ((int32_t)0xf000 << 25) > 0, ((int32_t)0xf000 << 25) < 0xf000, ((int32_t)0xf000 << 25) == 0xf000, ((int32_t)0xf000 << 25) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 25) < 0, ((int32_t)0xdeadbeef << 25) == 0, ((int32_t)0xdeadbeef << 25) > 0, ((int32_t)0xdeadbeef << 25) < 0xdeadbeef, ((int32_t)0xdeadbeef << 25) == 0xdeadbeef, ((int32_t)0xdeadbeef << 25) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 26) < 0, ((int32_t)0 << 26) == 0, ((int32_t)0 << 26) > 0, ((int32_t)0 << 26) < 0, ((int32_t)0 << 26) == 0, ((int32_t)0 << 26) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 26) < 0, ((int32_t)1 << 26) == 0, ((int32_t)1 << 26) > 0, ((int32_t)1 << 26) < 1, ((int32_t)1 << 26) == 1, ((int32_t)1 << 26) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 26) < 0, ((int32_t)-1 << 26) == 0, ((int32_t)-1 << 26) > 0, ((int32_t)-1 << 26) < -1, ((int32_t)-1 << 26) == -1, ((int32_t)-1 << 26) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 26) < 0, ((int32_t)INT_MAX << 26) == 0, ((int32_t)INT_MAX << 26) > 0, ((int32_t)INT_MAX << 26) < INT_MAX, ((int32_t)INT_MAX << 26) == INT_MAX, ((int32_t)INT_MAX << 26) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 26) < 0, ((int32_t)INT_MIN << 26) == 0, ((int32_t)INT_MIN << 26) > 0, ((int32_t)INT_MIN << 26) < INT_MIN, ((int32_t)INT_MIN << 26) == INT_MIN, ((int32_t)INT_MIN << 26) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 26) < 0, ((int32_t)0x000f << 26) == 0, ((int32_t)0x000f << 26) > 0, ((int32_t)0x000f << 26) < 0x000f, ((int32_t)0x000f << 26) == 0x000f, ((int32_t)0x000f << 26) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 26) < 0, ((int32_t)0xf000 << 26) == 0, ((int32_t)0xf000 << 26) > 0, ((int32_t)0xf000 << 26) < 0xf000, ((int32_t)0xf000 << 26) == 0xf000, ((int32_t)0xf000 << 26) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 26) < 0, ((int32_t)0xdeadbeef << 26) == 0, ((int32_t)0xdeadbeef << 26) > 0, ((int32_t)0xdeadbeef << 26) < 0xdeadbeef, ((int32_t)0xdeadbeef << 26) == 0xdeadbeef, ((int32_t)0xdeadbeef << 26) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 27) < 0, ((int32_t)0 << 27) == 0, ((int32_t)0 << 27) > 0, ((int32_t)0 << 27) < 0, ((int32_t)0 << 27) == 0, ((int32_t)0 << 27) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 27) < 0, ((int32_t)1 << 27) == 0, ((int32_t)1 << 27) > 0, ((int32_t)1 << 27) < 1, ((int32_t)1 << 27) == 1, ((int32_t)1 << 27) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 27) < 0, ((int32_t)-1 << 27) == 0, ((int32_t)-1 << 27) > 0, ((int32_t)-1 << 27) < -1, ((int32_t)-1 << 27) == -1, ((int32_t)-1 << 27) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 27) < 0, ((int32_t)INT_MAX << 27) == 0, ((int32_t)INT_MAX << 27) > 0, ((int32_t)INT_MAX << 27) < INT_MAX, ((int32_t)INT_MAX << 27) == INT_MAX, ((int32_t)INT_MAX << 27) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 27) < 0, ((int32_t)INT_MIN << 27) == 0, ((int32_t)INT_MIN << 27) > 0, ((int32_t)INT_MIN << 27) < INT_MIN, ((int32_t)INT_MIN << 27) == INT_MIN, ((int32_t)INT_MIN << 27) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 27) < 0, ((int32_t)0x000f << 27) == 0, ((int32_t)0x000f << 27) > 0, ((int32_t)0x000f << 27) < 0x000f, ((int32_t)0x000f << 27) == 0x000f, ((int32_t)0x000f << 27) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 27) < 0, ((int32_t)0xf000 << 27) == 0, ((int32_t)0xf000 << 27) > 0, ((int32_t)0xf000 << 27) < 0xf000, ((int32_t)0xf000 << 27) == 0xf000, ((int32_t)0xf000 << 27) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 27) < 0, ((int32_t)0xdeadbeef << 27) == 0, ((int32_t)0xdeadbeef << 27) > 0, ((int32_t)0xdeadbeef << 27) < 0xdeadbeef, ((int32_t)0xdeadbeef << 27) == 0xdeadbeef, ((int32_t)0xdeadbeef << 27) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 28) < 0, ((int32_t)0 << 28) == 0, ((int32_t)0 << 28) > 0, ((int32_t)0 << 28) < 0, ((int32_t)0 << 28) == 0, ((int32_t)0 << 28) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 28) < 0, ((int32_t)1 << 28) == 0, ((int32_t)1 << 28) > 0, ((int32_t)1 << 28) < 1, ((int32_t)1 << 28) == 1, ((int32_t)1 << 28) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 28) < 0, ((int32_t)-1 << 28) == 0, ((int32_t)-1 << 28) > 0, ((int32_t)-1 << 28) < -1, ((int32_t)-1 << 28) == -1, ((int32_t)-1 << 28) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 28) < 0, ((int32_t)INT_MAX << 28) == 0, ((int32_t)INT_MAX << 28) > 0, ((int32_t)INT_MAX << 28) < INT_MAX, ((int32_t)INT_MAX << 28) == INT_MAX, ((int32_t)INT_MAX << 28) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 28) < 0, ((int32_t)INT_MIN << 28) == 0, ((int32_t)INT_MIN << 28) > 0, ((int32_t)INT_MIN << 28) < INT_MIN, ((int32_t)INT_MIN << 28) == INT_MIN, ((int32_t)INT_MIN << 28) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 28) < 0, ((int32_t)0x000f << 28) == 0, ((int32_t)0x000f << 28) > 0, ((int32_t)0x000f << 28) < 0x000f, ((int32_t)0x000f << 28) == 0x000f, ((int32_t)0x000f << 28) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 28) < 0, ((int32_t)0xf000 << 28) == 0, ((int32_t)0xf000 << 28) > 0, ((int32_t)0xf000 << 28) < 0xf000, ((int32_t)0xf000 << 28) == 0xf000, ((int32_t)0xf000 << 28) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 28) < 0, ((int32_t)0xdeadbeef << 28) == 0, ((int32_t)0xdeadbeef << 28) > 0, ((int32_t)0xdeadbeef << 28) < 0xdeadbeef, ((int32_t)0xdeadbeef << 28) == 0xdeadbeef, ((int32_t)0xdeadbeef << 28) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 29) < 0, ((int32_t)0 << 29) == 0, ((int32_t)0 << 29) > 0, ((int32_t)0 << 29) < 0, ((int32_t)0 << 29) == 0, ((int32_t)0 << 29) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 29) < 0, ((int32_t)1 << 29) == 0, ((int32_t)1 << 29) > 0, ((int32_t)1 << 29) < 1, ((int32_t)1 << 29) == 1, ((int32_t)1 << 29) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 29) < 0, ((int32_t)-1 << 29) == 0, ((int32_t)-1 << 29) > 0, ((int32_t)-1 << 29) < -1, ((int32_t)-1 << 29) == -1, ((int32_t)-1 << 29) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 29) < 0, ((int32_t)INT_MAX << 29) == 0, ((int32_t)INT_MAX << 29) > 0, ((int32_t)INT_MAX << 29) < INT_MAX, ((int32_t)INT_MAX << 29) == INT_MAX, ((int32_t)INT_MAX << 29) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 29) < 0, ((int32_t)INT_MIN << 29) == 0, ((int32_t)INT_MIN << 29) > 0, ((int32_t)INT_MIN << 29) < INT_MIN, ((int32_t)INT_MIN << 29) == INT_MIN, ((int32_t)INT_MIN << 29) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 29) < 0, ((int32_t)0x000f << 29) == 0, ((int32_t)0x000f << 29) > 0, ((int32_t)0x000f << 29) < 0x000f, ((int32_t)0x000f << 29) == 0x000f, ((int32_t)0x000f << 29) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 29) < 0, ((int32_t)0xf000 << 29) == 0, ((int32_t)0xf000 << 29) > 0, ((int32_t)0xf000 << 29) < 0xf000, ((int32_t)0xf000 << 29) == 0xf000, ((int32_t)0xf000 << 29) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 29) < 0, ((int32_t)0xdeadbeef << 29) == 0, ((int32_t)0xdeadbeef << 29) > 0, ((int32_t)0xdeadbeef << 29) < 0xdeadbeef, ((int32_t)0xdeadbeef << 29) == 0xdeadbeef, ((int32_t)0xdeadbeef << 29) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 30) < 0, ((int32_t)0 << 30) == 0, ((int32_t)0 << 30) > 0, ((int32_t)0 << 30) < 0, ((int32_t)0 << 30) == 0, ((int32_t)0 << 30) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 30) < 0, ((int32_t)1 << 30) == 0, ((int32_t)1 << 30) > 0, ((int32_t)1 << 30) < 1, ((int32_t)1 << 30) == 1, ((int32_t)1 << 30) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 30) < 0, ((int32_t)-1 << 30) == 0, ((int32_t)-1 << 30) > 0, ((int32_t)-1 << 30) < -1, ((int32_t)-1 << 30) == -1, ((int32_t)-1 << 30) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 30) < 0, ((int32_t)INT_MAX << 30) == 0, ((int32_t)INT_MAX << 30) > 0, ((int32_t)INT_MAX << 30) < INT_MAX, ((int32_t)INT_MAX << 30) == INT_MAX, ((int32_t)INT_MAX << 30) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 30) < 0, ((int32_t)INT_MIN << 30) == 0, ((int32_t)INT_MIN << 30) > 0, ((int32_t)INT_MIN << 30) < INT_MIN, ((int32_t)INT_MIN << 30) == INT_MIN, ((int32_t)INT_MIN << 30) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 30) < 0, ((int32_t)0x000f << 30) == 0, ((int32_t)0x000f << 30) > 0, ((int32_t)0x000f << 30) < 0x000f, ((int32_t)0x000f << 30) == 0x000f, ((int32_t)0x000f << 30) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 30) < 0, ((int32_t)0xf000 << 30) == 0, ((int32_t)0xf000 << 30) > 0, ((int32_t)0xf000 << 30) < 0xf000, ((int32_t)0xf000 << 30) == 0xf000, ((int32_t)0xf000 << 30) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 30) < 0, ((int32_t)0xdeadbeef << 30) == 0, ((int32_t)0xdeadbeef << 30) > 0, ((int32_t)0xdeadbeef << 30) < 0xdeadbeef, ((int32_t)0xdeadbeef << 30) == 0xdeadbeef, ((int32_t)0xdeadbeef << 30) > 0xdeadbeef); printf("\n"); printf("%d%d%d%d%d%d", ((int32_t)0 << 31) < 0, ((int32_t)0 << 31) == 0, ((int32_t)0 << 31) > 0, ((int32_t)0 << 31) < 0, ((int32_t)0 << 31) == 0, ((int32_t)0 << 31) > 0); printf("%d%d%d%d%d%d", ((int32_t)1 << 31) < 0, ((int32_t)1 << 31) == 0, ((int32_t)1 << 31) > 0, ((int32_t)1 << 31) < 1, ((int32_t)1 << 31) == 1, ((int32_t)1 << 31) > 1); printf("%d%d%d%d%d%d", ((int32_t)-1 << 31) < 0, ((int32_t)-1 << 31) == 0, ((int32_t)-1 << 31) > 0, ((int32_t)-1 << 31) < -1, ((int32_t)-1 << 31) == -1, ((int32_t)-1 << 31) > -1); printf("%d%d%d%d%d%d", ((int32_t)INT_MAX << 31) < 0, ((int32_t)INT_MAX << 31) == 0, ((int32_t)INT_MAX << 31) > 0, ((int32_t)INT_MAX << 31) < INT_MAX, ((int32_t)INT_MAX << 31) == INT_MAX, ((int32_t)INT_MAX << 31) > INT_MAX); printf("%d%d%d%d%d%d", ((int32_t)INT_MIN << 31) < 0, ((int32_t)INT_MIN << 31) == 0, ((int32_t)INT_MIN << 31) > 0, ((int32_t)INT_MIN << 31) < INT_MIN, ((int32_t)INT_MIN << 31) == INT_MIN, ((int32_t)INT_MIN << 31) > INT_MIN); printf("%d%d%d%d%d%d", ((int32_t)0x000f << 31) < 0, ((int32_t)0x000f << 31) == 0, ((int32_t)0x000f << 31) > 0, ((int32_t)0x000f << 31) < 0x000f, ((int32_t)0x000f << 31) == 0x000f, ((int32_t)0x000f << 31) > 0x000f); printf("%d%d%d%d%d%d", ((int32_t)0xf000 << 31) < 0, ((int32_t)0xf000 << 31) == 0, ((int32_t)0xf000 << 31) > 0, ((int32_t)0xf000 << 31) < 0xf000, ((int32_t)0xf000 << 31) == 0xf000, ((int32_t)0xf000 << 31) > 0xf000); printf("%d%d%d%d%d%d", ((int32_t)0xdeadbeef << 31) < 0, ((int32_t)0xdeadbeef << 31) == 0, ((int32_t)0xdeadbeef << 31) > 0, ((int32_t)0xdeadbeef << 31) < 0xdeadbeef, ((int32_t)0xdeadbeef << 31) == 0xdeadbeef, ((int32_t)0xdeadbeef << 31) > 0xdeadbeef); printf("\n"); return 0; }
the_stack_data/179831483.c
#include<stdio.h> int main(void) { int i=0; repeat_it: switch (i) { case 1: printf("%d ", i); case 2: printf("%d ", i); default : printf("%d ", i); } i++; if( i <3 )goto repeat_it; return 0; }
the_stack_data/94308.c
/** * @file memory.h * * Memory mangament system: memory in Foenix/MCP is handled very simply. * The system will keep track of the top of available system RAM. * User programs can do whatever they want with system RAM from $400 to * the top of system RAM. Memory above top of system RAM is reserved for * the kernel and any terminate-stay-resident code the user cares to install. * * NOTE: this code does not manage video RAM or DRAM (on the A2560K)... only * system RAM, where code may be executed. * */ #include "memory.h" unsigned long mem_top_of_ram = 0; /* * Initialize the memory management system * * @param top_of_ram initial value for the top of system RAM */ void mem_init(unsigned long top_of_ram) { mem_top_of_ram = top_of_ram; } /** * Return the top of system RAM... the user program must not use any * system memory from this address and above. * * @return the address of the first byte of reserved system RAM (one above the last byte the user program can use) */ unsigned long mem_get_ramtop() { return mem_top_of_ram; } /** * Reserve a block of memory at the top of system RAM. * * @param bytes the number of bytes to reserve * @return address of the first byte of the reserved block */ unsigned long mem_reserve(unsigned long bytes) { mem_top_of_ram -= bytes; return mem_top_of_ram; }
the_stack_data/156393102.c
#include <stdio.h> /* count digits, white space, others */ int main(void) { int c, i, nwhite, nother, ndigit[10]; nwhite = nother = 0; for (i = 0; i < 10; ++i) { ndigit[i] = 0; } while ((c = getchar()) != EOF) { switch (c) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': ++ndigit[c-'0']; break; case ' ': case '\n': case '\t': ++nwhite; break; default: ++nother; break; } } printf("digits ="); for (i = 0; i < 10; ++i) { printf(" %d", ndigit[i]); } printf(", white space = %d, other = %d\n", nwhite, nother); return 0; }
the_stack_data/150142333.c
struct s { char p[2]; }; static struct s v; const int o0 = (int) ((void *) &v.p[0] - (void *) &v) + 0; const int o1 = (int) ((void *) &v.p[0] - (void *) &v) + 1;
the_stack_data/154826841.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_scrambler.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: skuntoji <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/06/29 15:15:30 by skuntoji #+# #+# */ /* Updated: 2018/06/29 15:15:38 by skuntoji ### ########.fr */ /* */ /* ************************************************************************** */ void ft_scrambler(int ***a, int *b, int *******c, int ****d) { int temp; temp = ***a; ***a = *b; *b = ****d; ****d = *******c; *******c = temp; }
the_stack_data/40762559.c
#include<stdio.h> int main() { // test add int t,i=1,j,n,array_num[1000],c,sum; double avg,total; scanf("%d",&t); while(t--) { c=0; sum=0; scanf("%d",&n); for(i=0;i<n;i++) { scanf("%d",&array_num[i]); sum=sum+array_num[i]; } avg=sum*1.00/n; for(i=0;i<n;i++) { if(array_num[i]>avg) { c++; } } total=(c*100.00)/n; printf("%.3lf%%\n",total); } return 0; }
the_stack_data/212642334.c
/* { dg-do run } */ #include <pthread.h> #include <stdio.h> #include <stdlib.h> #include <errno.h> #include <ctype.h> #include <openacc.h> unsigned char **x; void **d_x; const int N = 32; const int NTHREADS = 32; static void * test (void *arg) { int i; int tid; unsigned char *p; int devnum; tid = (int) (long) arg; devnum = acc_get_device_num (acc_device_nvidia); acc_set_device_num (devnum, acc_device_nvidia); if (acc_get_current_cuda_context () == NULL) abort (); acc_copyout (x[tid], N); p = x[tid]; for (i = 0; i < N; i++) { if (p[i] != i) abort (); } return 0; } int main (int argc, char **argv) { int i; pthread_attr_t attr; pthread_t *tid; unsigned char *p; if (acc_get_num_devices (acc_device_nvidia) == 0) return 0; acc_init (acc_device_nvidia); x = (unsigned char **) malloc (NTHREADS * N); d_x = (void **) malloc (NTHREADS * N); for (i = 0; i < N; i++) { int j; p = (unsigned char *) malloc (N); x[i] = p; for (j = 0; j < N; j++) { p[j] = j; } d_x[i] = acc_copyin (p, N); } if (pthread_attr_init (&attr) != 0) perror ("pthread_attr_init failed"); tid = (pthread_t *) malloc (NTHREADS * sizeof (pthread_t)); acc_get_cuda_stream (1); for (i = 0; i < NTHREADS; i++) { if (pthread_create (&tid[i], &attr, &test, (void *) (unsigned long) (i)) != 0) perror ("pthread_create failed"); } if (pthread_attr_destroy (&attr) != 0) perror ("pthread_attr_destroy failed"); for (i = 0; i < NTHREADS; i++) { void *res; if (pthread_join (tid[i], &res) != 0) perror ("pthread join failed"); } for (i = 0; i < NTHREADS; i++) { if (acc_is_present (x[i], N) != 0) abort (); } acc_shutdown (acc_device_nvidia); return 0; } /* { dg-output "" } */
the_stack_data/370272.c
#include <pthread.h> #include <stdlib.h> #include <stdio.h> #define NUM 4 pthread_attr_t attr; void *hello(void *tid ){ long id = (long)tid; printf("hello from thred #%ld \n",id); pthread_exit(NULL); } int main(){ long ID[NUM]; pthread_t pthread[NUM]; size_t stack_size; pthread_attr_init(&attr); pthread_attr_getstacksize(&attr, &stack_size); printf("default stack size is %li \n", stack_size); stack_size = 10000; printf("memory set for each thread is %li \n", stack_size); pthread_attr_setstacksize(&attr, stack_size); printf("creating threads with stack size of %li bytes \n", stack_size); for (int i = 0; i < NUM; i++){ ID[i] = i; int rc = pthread_create(&pthread[i], NULL, hello, (void *)ID[i]); if(rc){ printf("return from creating thread #%ld, code is %d \n", ID[i], rc); exit(-1); // exit from program and report error code -1 } } printf("Main: program completed. Exiting.\n"); system("pause"); pthread_exit(NULL); return 0; }
the_stack_data/130020.c
// // main.c // Mat4 // // A Method for Generating Security Assessment Criteria - Coverage calculus // // Created by Ferrucio de Franco Rosa on 01/12/2016. // Copyright (c) 2016 Ferrucio de Franco Rosa. All rights reserved. // // Last modified: 01/12/2016. // #include <stdio.h> #include <stdlib.h> #include <string.h> /* General Sequence: read_Arq_In(arq.txt); receive ID, listaDM, listaPP; cov_calc(CovDM, CovPP, CovLOC); write_Arq_Out(CovDM+CovPP+CovLOC); Simulation - Knowledge Source 1 (KS1) ID ListDM ListPP CovDM CovPP CovLOC 5.1.1 000100 11010010101 ? ? ? 5.1.2 110100 11010001010 ? ? ? 6.1.1 010010 10110010100 ? ? ? 6.1.2 100100 01001010101 ? ? ? 6.1.3 100100 11010001010 ? ? ? */ float cov_calc(float A,int B) { float coverage=0.0; if (A == 0.0) return 0.0; // Min. Coverage = 0.0; else if ((coverage=A/B) >= 1.0) return 1.0; // Max. Coverage = 1.0; else return coverage; } // Dimension Matrix float MatDM[6][6] = { {0.0, 0.5, 0.2, 0.6, 0.7, 0.9}, {0.0, 0.0, 0.9, 0.7, 0.6, 0.8}, {0.0, 0.0, 0.0, 0.4, 0.2, 0.6}, {0.0, 0.0, 0.0, 0.0, 0.5, 0.2}, {0.0, 0.0, 0.0, 0.0, 0.0, 0.8}, {0.0, 0.0, 0.0, 0.0, 0.0, 0.0}, }; // Property Matrix float MatPP[11][11] = { {0.0, 0.9, 0.9, 0.9, 0.8, 0.8, 0.8, 0.8, 0.5, 0.2, 0.8}, {0.0, 0.0, 0.9, 0.9, 0.8, 0.8, 0.8, 0.8, 0.5, 0.2, 0.2}, {0.0, 0.0, 0.0, 0.9, 0.8, 0.8, 0.2, 0.8, 0.5, 0.8, 0.8}, {0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.8, 0.6, 0.5, 0.8, 0.4}, {0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.4, 0.6, 0.5, 0.8, 0.2}, {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.2, 0.5, 0.8, 0.2}, {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.5, 0.2, 0.8}, {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.2, 0.2}, {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5}, {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2}, {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0}, }; // SumDist DM & PP float sumDist(char *list) { int i, j; long len = strlen(list); float SumDist=0.0; for (i=0;i<len;i++){//printf("List[%d]: %c \n", i+1, list[i]); if(list[i] == '1'){ //printf("List[%d]: %c \n", i+1, list[i]); for (j=0;j<len;j++){ if(len==6){ if (MatDM[i][j]>0.0 && list[j] == '1') {//printf(" DistanceDM(%d,%d): %.2f \n", i+1, j+1, MatDM[i][j]); SumDist = SumDist + MatDM[i][j]; } } else{ if (MatPP[i][j]>0.0 && list[j] == '1') {//printf(" DistancePP(%d,%d): %.2f \n", i+1, j+1, MatPP[i][j]); SumDist = SumDist + MatPP[i][j]; } } } } } return SumDist; } int main(int argc, char * argv[]) { int MAX_DM = 6, MAX_PP = 11; float SumDistDM = 0.0, SumDistPP = 0.0; float CovDM=0.0, CovPP=0.0, CovLOC=0.0; /* Coverages */ char coverage[19]; char urlin[]="/Users/ferruciof/Desktop/2015/Doutorado/RESULTADOS/Software/Mat4/Mat4/in.txt"; char urlout[]="/Users/ferruciof/Desktop/2015/Doutorado/RESULTADOS/Software/Mat4/Mat4/out.txt"; char line[20]=""; char listDM[20]=""; char listPP[20]=""; FILE *FIn,*FOut; FIn = fopen(urlin, "r"); FOut = fopen(urlout, "w"); if(FIn == NULL) printf("Error, FIn access. \n"); else if(FOut == NULL) printf("Error, FOut access. \n"); else while( (fscanf(FIn,"%s\n", line))!=EOF ) { strncpy ( listDM, line, 6 ); //Select Dimensions strncpy ( listPP, &line[6], 11 ); // Select Properties // Calculate sum of distances DM & PP SumDistDM = sumDist(listDM); SumDistPP = sumDist(listPP); // Calculate converage DM & PP CovDM = cov_calc(SumDistDM, MAX_DM); CovPP = cov_calc(SumDistPP, MAX_PP); // Calculate converage LOC CovLOC = cov_calc((CovDM+CovPP), 2); sprintf(coverage, "%.3f;%.3f;%.3f;", CovDM, CovPP, CovLOC); printf("\n%s;%s;%s\n", listDM, listPP, coverage); fprintf(FOut,"%s\n", coverage); // Write FOut } fclose(FIn); fclose(FOut); return 0; }
the_stack_data/117766.c
#include <stdio.h> main() { printf("hello, world\n"); getchar(); }
the_stack_data/38591.c
/* // Copyright (c) 2017 Intel Corporation // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. */ #ifdef OC_SECURITY #include "oc_store.h" #include "oc_acl.h" #include "oc_core_res.h" #include "oc_cred.h" #include "oc_doxm.h" #include "oc_keypair.h" #include "oc_pstat.h" #include "oc_sp.h" #include "oc_tls.h" #include "port/oc_storage.h" #include <oc_config.h> #ifdef OC_DYNAMIC_ALLOCATION #include <stdlib.h> #endif /* OC_DYNAMIC_ALLOCATION */ #define SVR_TAG_MAX (32) static void gen_svr_tag(const char *name, size_t device_index, char *svr_tag) { int svr_tag_len = snprintf(svr_tag, SVR_TAG_MAX, "%s_%zd", name, device_index); svr_tag_len = (svr_tag_len < SVR_TAG_MAX - 1) ? svr_tag_len + 1 : SVR_TAG_MAX - 1; svr_tag[svr_tag_len] = '\0'; } void oc_sec_load_doxm(size_t device) { long ret = 0; oc_rep_t *rep; #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) { oc_sec_doxm_default(device); return; } #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ char svr_tag[SVR_TAG_MAX]; gen_svr_tag("doxm", device, svr_tag); ret = oc_storage_read(svr_tag, buf, OC_MAX_APP_DATA_SIZE); if (ret > 0) { #ifndef OC_DYNAMIC_ALLOCATION char rep_objects_alloc[OC_MAX_NUM_REP_OBJECTS]; oc_rep_t rep_objects_pool[OC_MAX_NUM_REP_OBJECTS]; memset(rep_objects_alloc, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(char)); memset(rep_objects_pool, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(oc_rep_t)); struct oc_memb rep_objects = { sizeof(oc_rep_t), OC_MAX_NUM_REP_OBJECTS, rep_objects_alloc, (void *)rep_objects_pool, 0 }; #else /* !OC_DYNAMIC_ALLOCATION */ struct oc_memb rep_objects = { sizeof(oc_rep_t), 0, 0, 0, 0 }; #endif /* OC_DYNAMIC_ALLOCATION */ oc_rep_set_pool(&rep_objects); oc_parse_rep(buf, (uint16_t)ret, &rep); oc_sec_decode_doxm(rep, true, device); oc_free_rep(rep); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ oc_uuid_t *deviceuuid = oc_core_get_device_id(device); oc_sec_doxm_t *doxm = oc_sec_get_doxm(device); memcpy(deviceuuid, &doxm->deviceuuid, sizeof(oc_uuid_t)); } void oc_sec_load_pstat(size_t device) { long ret = 0; oc_rep_t *rep = 0; #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) { oc_sec_pstat_default(device); return; } #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ char svr_tag[SVR_TAG_MAX]; gen_svr_tag("pstat", device, svr_tag); ret = oc_storage_read(svr_tag, buf, OC_MAX_APP_DATA_SIZE); if (ret > 0) { #ifndef OC_DYNAMIC_ALLOCATION char rep_objects_alloc[OC_MAX_NUM_REP_OBJECTS]; oc_rep_t rep_objects_pool[OC_MAX_NUM_REP_OBJECTS]; memset(rep_objects_alloc, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(char)); memset(rep_objects_pool, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(oc_rep_t)); struct oc_memb rep_objects = { sizeof(oc_rep_t), OC_MAX_NUM_REP_OBJECTS, rep_objects_alloc, (void *)rep_objects_pool, 0 }; #else /* !OC_DYNAMIC_ALLOCATION */ struct oc_memb rep_objects = { sizeof(oc_rep_t), 0, 0, 0, 0 }; #endif /* OC_DYNAMIC_ALLOCATION */ oc_rep_set_pool(&rep_objects); oc_parse_rep(buf, (uint16_t)ret, &rep); oc_sec_decode_pstat(rep, true, device); oc_free_rep(rep); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ if (ret <= 0) { oc_sec_pstat_default(device); } } #ifdef OC_PKI void oc_sec_load_sp(size_t device) { long ret = 0; oc_rep_t *rep = 0; #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) { oc_sec_sp_default(device); return; } #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ char svr_tag[SVR_TAG_MAX]; gen_svr_tag("sp", device, svr_tag); ret = oc_storage_read(svr_tag, buf, OC_MAX_APP_DATA_SIZE); if (ret > 0) { #ifndef OC_DYNAMIC_ALLOCATION char rep_objects_alloc[OC_MAX_NUM_REP_OBJECTS]; oc_rep_t rep_objects_pool[OC_MAX_NUM_REP_OBJECTS]; memset(rep_objects_alloc, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(char)); memset(rep_objects_pool, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(oc_rep_t)); struct oc_memb rep_objects = { sizeof(oc_rep_t), OC_MAX_NUM_REP_OBJECTS, rep_objects_alloc, (void *)rep_objects_pool, 0 }; #else /* !OC_DYNAMIC_ALLOCATION */ struct oc_memb rep_objects = { sizeof(oc_rep_t), 0, 0, 0, 0 }; #endif /* OC_DYNAMIC_ALLOCATION */ oc_rep_set_pool(&rep_objects); oc_parse_rep(buf, (uint16_t)ret, &rep); oc_sec_decode_sp(rep, device); oc_free_rep(rep); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ if (ret <= 0) { oc_sec_sp_default(device); } } void oc_sec_dump_sp(size_t device) { #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) return; #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ oc_rep_new(buf, OC_MAX_APP_DATA_SIZE); oc_sec_encode_sp(device); int size = oc_rep_get_encoded_payload_size(); if (size > 0) { OC_DBG("oc_store: encoded sp size %d", size); char svr_tag[SVR_TAG_MAX]; gen_svr_tag("sp", device, svr_tag); oc_storage_write(svr_tag, buf, size); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ } void oc_sec_load_ecdsa_keypair(size_t device) { long ret = 0; oc_rep_t *rep = 0; #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) { oc_sec_sp_default(device); return; } #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ char svr_tag[SVR_TAG_MAX]; gen_svr_tag("keypair", device, svr_tag); ret = oc_storage_read(svr_tag, buf, OC_MAX_APP_DATA_SIZE); if (ret > 0) { #ifndef OC_DYNAMIC_ALLOCATION char rep_objects_alloc[OC_MAX_NUM_REP_OBJECTS]; oc_rep_t rep_objects_pool[OC_MAX_NUM_REP_OBJECTS]; memset(rep_objects_alloc, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(char)); memset(rep_objects_pool, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(oc_rep_t)); struct oc_memb rep_objects = { sizeof(oc_rep_t), OC_MAX_NUM_REP_OBJECTS, rep_objects_alloc, (void *)rep_objects_pool, 0 }; #else /* !OC_DYNAMIC_ALLOCATION */ struct oc_memb rep_objects = { sizeof(oc_rep_t), 0, 0, 0, 0 }; #endif /* OC_DYNAMIC_ALLOCATION */ oc_rep_set_pool(&rep_objects); oc_parse_rep(buf, (uint16_t)ret, &rep); if (oc_sec_decode_ecdsa_keypair(rep, device)) { OC_DBG("successfully read ECDSA keypair for device %zd", device); } oc_free_rep(rep); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ if (ret <= 0) { if (oc_generate_ecdsa_keypair(device) < 0) { OC_ERR("error generating ECDSA keypair for device %zd", device); } oc_sec_dump_ecdsa_keypair(device); } } void oc_sec_dump_ecdsa_keypair(size_t device) { #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) return; #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ oc_rep_new(buf, OC_MAX_APP_DATA_SIZE); oc_sec_encode_ecdsa_keypair(device); int size = oc_rep_get_encoded_payload_size(); if (size > 0) { OC_DBG("oc_store: encoded sp size %d", size); char svr_tag[SVR_TAG_MAX]; gen_svr_tag("keypair", device, svr_tag); oc_storage_write(svr_tag, buf, size); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ } #endif /* OC_PKI */ void oc_sec_load_cred(size_t device) { long ret = 0; oc_rep_t *rep; #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) return; #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ char svr_tag[SVR_TAG_MAX]; gen_svr_tag("cred", device, svr_tag); ret = oc_storage_read(svr_tag, buf, OC_MAX_APP_DATA_SIZE); if (ret > 0) { #ifndef OC_DYNAMIC_ALLOCATION char rep_objects_alloc[OC_MAX_NUM_REP_OBJECTS]; oc_rep_t rep_objects_pool[OC_MAX_NUM_REP_OBJECTS]; memset(rep_objects_alloc, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(char)); memset(rep_objects_pool, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(oc_rep_t)); struct oc_memb rep_objects = { sizeof(oc_rep_t), OC_MAX_NUM_REP_OBJECTS, rep_objects_alloc, (void *)rep_objects_pool, 0 }; #else /* !OC_DYNAMIC_ALLOCATION */ struct oc_memb rep_objects = { sizeof(oc_rep_t), 0, 0, 0, 0 }; #endif /* OC_DYNAMIC_ALLOCATION */ oc_rep_set_pool(&rep_objects); oc_parse_rep(buf, (uint16_t)ret, &rep); oc_sec_decode_cred(rep, NULL, true, false, NULL, device); oc_free_rep(rep); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ } void oc_sec_load_acl(size_t device) { long ret = 0; oc_rep_t *rep; #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) { oc_sec_acl_default(device); return; } #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ char svr_tag[SVR_TAG_MAX]; gen_svr_tag("acl", device, svr_tag); ret = oc_storage_read(svr_tag, buf, OC_MAX_APP_DATA_SIZE); if (ret > 0) { #ifndef OC_DYNAMIC_ALLOCATION char rep_objects_alloc[OC_MAX_NUM_REP_OBJECTS]; oc_rep_t rep_objects_pool[OC_MAX_NUM_REP_OBJECTS]; memset(rep_objects_alloc, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(char)); memset(rep_objects_pool, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(oc_rep_t)); struct oc_memb rep_objects = { sizeof(oc_rep_t), OC_MAX_NUM_REP_OBJECTS, rep_objects_alloc, (void *)rep_objects_pool, 0 }; #else /* !OC_DYNAMIC_ALLOCATION */ struct oc_memb rep_objects = { sizeof(oc_rep_t), 0, 0, 0, 0 }; #endif /* OC_DYNAMIC_ALLOCATION */ oc_rep_set_pool(&rep_objects); oc_parse_rep(buf, (uint16_t)ret, &rep); oc_sec_decode_acl(rep, true, device); oc_free_rep(rep); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ } void oc_sec_dump_pstat(size_t device) { #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) return; #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ oc_rep_new(buf, OC_MAX_APP_DATA_SIZE); oc_sec_encode_pstat(device); int size = oc_rep_get_encoded_payload_size(); if (size > 0) { OC_DBG("oc_store: encoded pstat size %d", size); char svr_tag[SVR_TAG_MAX]; gen_svr_tag("pstat", device, svr_tag); oc_storage_write(svr_tag, buf, size); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ } void oc_sec_dump_cred(size_t device) { #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) return; #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ oc_rep_new(buf, OC_MAX_APP_DATA_SIZE); oc_sec_encode_cred(true, device); int size = oc_rep_get_encoded_payload_size(); if (size > 0) { OC_DBG("oc_store: encoded cred size %d", size); char svr_tag[SVR_TAG_MAX]; gen_svr_tag("cred", device, svr_tag); oc_storage_write(svr_tag, buf, size); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ } void oc_sec_dump_doxm(size_t device) { #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) return; #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ /* doxm */ oc_rep_new(buf, OC_MAX_APP_DATA_SIZE); oc_sec_encode_doxm(device); int size = oc_rep_get_encoded_payload_size(); if (size > 0) { OC_DBG("oc_store: encoded doxm size %d", size); char svr_tag[SVR_TAG_MAX]; gen_svr_tag("doxm", device, svr_tag); oc_storage_write(svr_tag, buf, size); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ } void oc_sec_dump_acl(size_t device) { #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) return; #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ oc_rep_new(buf, OC_MAX_APP_DATA_SIZE); oc_sec_encode_acl(device); int size = oc_rep_get_encoded_payload_size(); if (size > 0) { OC_DBG("oc_store: encoded ACL size %d", size); char svr_tag[SVR_TAG_MAX]; gen_svr_tag("acl", device, svr_tag); oc_storage_write(svr_tag, buf, size); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ } void oc_sec_load_unique_ids(size_t device) { long ret = 0; oc_rep_t *rep; oc_platform_info_t *platform_info = oc_core_get_platform_info(); oc_device_info_t *device_info = oc_core_get_device_info(device); #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) { return; } #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ char svr_tag[SVR_TAG_MAX]; gen_svr_tag("u_ids", device, svr_tag); ret = oc_storage_read(svr_tag, buf, OC_MAX_APP_DATA_SIZE); if (ret > 0) { #ifndef OC_DYNAMIC_ALLOCATION char rep_objects_alloc[OC_MAX_NUM_REP_OBJECTS]; oc_rep_t rep_objects_pool[OC_MAX_NUM_REP_OBJECTS]; memset(rep_objects_alloc, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(char)); memset(rep_objects_pool, 0, OC_MAX_NUM_REP_OBJECTS * sizeof(oc_rep_t)); struct oc_memb rep_objects = { sizeof(oc_rep_t), OC_MAX_NUM_REP_OBJECTS, rep_objects_alloc, (void *)rep_objects_pool, 0 }; #else /* !OC_DYNAMIC_ALLOCATION */ struct oc_memb rep_objects = { sizeof(oc_rep_t), 0, 0, 0, 0 }; #endif /* OC_DYNAMIC_ALLOCATION */ oc_rep_set_pool(&rep_objects); int err = oc_parse_rep(buf, ret, &rep); oc_rep_t *p = rep; if (err == 0) { while (rep != NULL) { switch (rep->type) { case OC_REP_STRING: if (oc_string_len(rep->name) == 2 && memcmp(oc_string(rep->name), "pi", 2) == 0) { oc_str_to_uuid(oc_string(rep->value.string), &platform_info->pi); } else if (oc_string_len(rep->name) == 4 && memcmp(oc_string(rep->name), "piid", 4) == 0) { oc_str_to_uuid(oc_string(rep->value.string), &device_info->piid); } break; default: break; } rep = rep->next; } } oc_free_rep(p); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ } void oc_sec_dump_unique_ids(size_t device) { #ifdef OC_DYNAMIC_ALLOCATION uint8_t *buf = malloc(OC_MAX_APP_DATA_SIZE); if (!buf) return; #else /* OC_DYNAMIC_ALLOCATION */ uint8_t buf[OC_MAX_APP_DATA_SIZE]; #endif /* !OC_DYNAMIC_ALLOCATION */ oc_device_info_t *device_info = oc_core_get_device_info(device); oc_platform_info_t *platform_info = oc_core_get_platform_info(); char pi[OC_UUID_LEN], piid[OC_UUID_LEN]; oc_uuid_to_str(&device_info->piid, piid, OC_UUID_LEN); oc_uuid_to_str(&platform_info->pi, pi, OC_UUID_LEN); oc_rep_new(buf, OC_MAX_APP_DATA_SIZE); oc_rep_start_root_object(); oc_rep_set_text_string(root, pi, pi); oc_rep_set_text_string(root, piid, piid); oc_rep_end_root_object(); int size = oc_rep_get_encoded_payload_size(); if (size > 0) { OC_DBG("oc_store: encoded unique identifiers: size %d", size); char svr_tag[SVR_TAG_MAX]; gen_svr_tag("u_ids", device, svr_tag); oc_storage_write(svr_tag, buf, size); } #ifdef OC_DYNAMIC_ALLOCATION free(buf); #endif /* OC_DYNAMIC_ALLOCATION */ } #endif /* OC_SECURITY */
the_stack_data/211845.c
#include <assert.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <string.h> typedef struct { size_t width; const char* data; } Word; static void dumpWords(const Word* const words, const size_t wordCount, const size_t spaceCount, size_t padding, FILE* const outputStream) { assert(words && wordCount && outputStream && !ferror(outputStream)); static char lineBuffer[512] = ""; char* cursor = lineBuffer; #define INJECT_WORD(Index) do { \ memcpy(cursor, words[(Index)].data, words[(Index)].width); \ cursor += words[(Index)].width; \ *cursor = '\0'; \ } while(false) #define INJECT_PADDING(Size) do { \ memset(cursor, ' ', (Size)); \ cursor += (Size); \ } while(false) INJECT_WORD(0); for(size_t i = 1; i < wordCount; ++i) { const bool shouldInjectPadding = !!(padding ? padding-- : false); const size_t totalWidth = (spaceCount + shouldInjectPadding); INJECT_PADDING(totalWidth); INJECT_WORD(i); } fputs(lineBuffer, outputStream); fputc('\n', outputStream); #undef INJECT_PADDING #undef INJECT_WORD } int main(const int argc, const char* const argv[]) { // Getting away with no error checking throughout because CodeEval makes some // strong guarantees about our runtime environment. No need to pay when we're // being benchmarked. Don't forget to define NDEBUG prior to submitting! assert(argc >= 2 && "Expecting at least one command-line argument."); static char stdoutBuffer[32768] = ""; // Turn on full output buffering for stdout. setvbuf(stdout, stdoutBuffer, _IOFBF, sizeof stdoutBuffer); FILE* inputStream = fopen(argv[1], "r"); assert(inputStream && "Failed to open input stream."); static const size_t rulerColumn = 80; Word words[256] = {{0}}; for(char lineBuffer[2048] = ""; fgets(lineBuffer, sizeof lineBuffer, inputStream);) { size_t wordCount = 0, lineWidth = 0; for(const char* word = strtok(lineBuffer, " \n"); word; word = strtok(NULL, " \n"), ++wordCount) { assert(wordCount < (sizeof words / sizeof *words)); const size_t wordWidth = strlen(word); /* |foo bar baz bax | |foo bar baz bax| ^^^ ^^^ ^^ */ if((wordWidth + lineWidth) > rulerColumn) { const size_t margin = (rulerColumn + 1 - lineWidth), padding = (margin % (wordCount - 1)), spaceCount = (margin / (wordCount - 1) + 1); dumpWords(words, wordCount, spaceCount, padding, stdout); wordCount = lineWidth = 0; } words[wordCount].width = wordWidth; words[wordCount].data = word; lineWidth += (wordWidth + 1); } dumpWords(words, wordCount, 1, 0, stdout); } // The CRT takes care of cleanup. }
the_stack_data/23575213.c
#include <stdio.h> #include <math.h> double a=-0.375,b=1./3.,T=0.333333; double F(double N1,double V1){ double V2=1-V1; double N2=1-N1; double F1; if ((N1*b>=1)||(N1<=0)||(V1<0)) F1=1e10; else F1= N1*T*log(N1/(V1-N1*b))+a*N1*N1/V1; double F2; if ((N2*b>=1)||(N2<=0)||(V2<0)) F2=1e10; else F2=N2*T*log(N2/(V2-N2*b))+a*N2*N2/V2; return F1+F2; } void Minimize(double *N1,double *V1){ double FF[3][3]; double D=0.1; while (D>0.000001){ for (int i=0;i<3;i++) for (int j=0;j<3;j++){ FF[i][j]=F(*N1+D*(i-1),*V1+D*(j-1)); } int mini=1,minj=1; double minF=FF[1][1]; for (int i=0;i<3;i++) for (int j=0;j<3;j++){ if (FF[i][j]<minF){ mini=i; minj=j; minF=FF[i][j]; } } /* printf("D=%g",D); printf(" %i,%i \n",mini,minj); for (int i=0; i<3; i++){ for (int j=0;j<3; j++) printf("%g",FF[i][j]); printf("\n"); } */ if ((mini==1)&&(minj==1)) D/=2; else { *N1+=(mini-1)*D; *V1+=(minj-1)*D; } } } void minimize(){ double N1=0.5,V1=0.5; FILE *phaseDiagram_rhoVsTemp_theoretical; phaseDiagram_rhoVsTemp_theoretical = fopen("/home/clark/school/Lattice Boltzmann/Maxwell construction/phaseDiagram_rhoVsTemp_theoretical.dat","w"); for (T=1./3.;T>0;T-=0.00001){ Minimize(&N1,&V1); printf("%e %e %e\n",T,N1/V1,(1-N1)/(1-V1)); fprintf(phaseDiagram_rhoVsTemp_theoretical,"%.15f %.15f\n%.15f %.15f\n", N1/V1, T/(1./3.), (1-N1)/(1-V1), T/(1./3.)); } fclose(phaseDiagram_rhoVsTemp_theoretical); }
the_stack_data/59511478.c
#include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc, char *argv[]) { char nome[30], endereco[60]; int idade; printf("Exemplo de leitura de string:\n"); printf("Informe a idade: "); scanf("%d", &idade); printf("Informe o nome: "); fflush(stdin); // limpa o buffer de entrada; necessário para ler strings depois de qualquer input gets(nome); //leitura própria e exclusiva para strings printf("\n-------\n"); printf("Exemplo de atribuição de valor para string:\n"); strcpy(endereco, "Rua da Paz, 123"); printf("Seu endereco: %s", endereco); return 0; }
the_stack_data/803432.c
#include <stdlib.h> #include <math.h> #if defined(_WIN32) || defined(__WIN32__) #define EXPORTIT __declspec(dllexport) #else #define EXPORTIT #endif EXPORTIT double integral_fxixifxixi_12(double xi1, double xi2, int i, int j, double x1t, double x1r, double x2t, double x2r, double y1t, double y1r, double y2t, double y2r) { switch(i) { case 0: switch(j) { case 0: return -0.75*x1t*pow(xi1, 3)*y1t + 0.75*x1t*pow(xi2, 3)*y1t; case 1: return -0.375*x1t*pow(xi1, 3)*y1r + 0.1875*x1t*pow(xi1, 2)*y1r + 0.375*x1t*pow(xi2, 3)*y1r - 0.1875*x1t*pow(xi2, 2)*y1r; case 2: return 0.75*x1t*pow(xi1, 3)*y2t - 0.75*x1t*pow(xi2, 3)*y2t; case 3: return -0.375*x1t*pow(xi1, 3)*y2r - 0.1875*x1t*pow(xi1, 2)*y2r + 0.375*x1t*pow(xi2, 3)*y2r + 0.1875*x1t*pow(xi2, 2)*y2r; case 4: return -0.5625*x1t*pow(xi1, 4) + 0.375*x1t*pow(xi1, 2) + 0.5625*x1t*pow(xi2, 4) - 0.375*x1t*pow(xi2, 2); case 5: return -0.75*x1t*pow(xi1, 5) + 0.75*x1t*pow(xi1, 3) + 0.75*x1t*pow(xi2, 5) - 0.75*x1t*pow(xi2, 3); case 6: return -1.09375*x1t*pow(xi1, 6) + 1.40625*x1t*pow(xi1, 4) - 0.28125*x1t*pow(xi1, 2) + 1.09375*x1t*pow(xi2, 6) - 1.40625*x1t*pow(xi2, 4) + 0.28125*x1t*pow(xi2, 2); case 7: return -1.6875*x1t*pow(xi1, 7) + 2.625*x1t*pow(xi1, 5) - 0.9375*x1t*pow(xi1, 3) + 1.6875*x1t*pow(xi2, 7) - 2.625*x1t*pow(xi2, 5) + 0.9375*x1t*pow(xi2, 3); case 8: return -2.70703125*x1t*pow(xi1, 8) + 4.921875*x1t*pow(xi1, 6) - 2.4609375*x1t*pow(xi1, 4) + 0.234375*x1t*pow(xi1, 2) + 2.70703125*x1t*pow(xi2, 8) - 4.921875*x1t*pow(xi2, 6) + 2.4609375*x1t*pow(xi2, 4) - 0.234375*x1t*pow(xi2, 2); case 9: return -4.46875*x1t*pow(xi1, 9) + 9.28125*x1t*pow(xi1, 7) - 5.90625*x1t*pow(xi1, 5) + 1.09375*x1t*pow(xi1, 3) + 4.46875*x1t*pow(xi2, 9) - 9.28125*x1t*pow(xi2, 7) + 5.90625*x1t*pow(xi2, 5) - 1.09375*x1t*pow(xi2, 3); case 10: return -7.541015625*x1t*pow(xi1, 10) + 17.595703125*x1t*pow(xi1, 8) - 13.53515625*x1t*pow(xi1, 6) + 3.69140625*x1t*pow(xi1, 4) - 0.205078125*x1t*pow(xi1, 2) + 7.541015625*x1t*pow(xi2, 10) - 17.595703125*x1t*pow(xi2, 8) + 13.53515625*x1t*pow(xi2, 6) - 3.69140625*x1t*pow(xi2, 4) + 0.205078125*x1t*pow(xi2, 2); case 11: return -12.94921875*x1t*pow(xi1, 11) + 33.515625*x1t*pow(xi1, 9) - 30.1640625*x1t*pow(xi1, 7) + 10.828125*x1t*pow(xi1, 5) - 1.23046875*x1t*pow(xi1, 3) + 12.94921875*x1t*pow(xi2, 11) - 33.515625*x1t*pow(xi2, 9) + 30.1640625*x1t*pow(xi2, 7) - 10.828125*x1t*pow(xi2, 5) + 1.23046875*x1t*pow(xi2, 3); case 12: return -22.55322265625*x1t*pow(xi1, 12) + 64.0986328125*x1t*pow(xi1, 10) - 65.98388671875*x1t*pow(xi1, 8) + 29.326171875*x1t*pow(xi1, 6) - 5.07568359375*x1t*pow(xi1, 4) + 0.1845703125*x1t*pow(xi1, 2) + 22.55322265625*x1t*pow(xi2, 12) - 64.0986328125*x1t*pow(xi2, 10) + 65.98388671875*x1t*pow(xi2, 8) - 29.326171875*x1t*pow(xi2, 6) + 5.07568359375*x1t*pow(xi2, 4) - 0.1845703125*x1t*pow(xi2, 2); case 13: return -39.744140625*x1t*pow(xi1, 13) + 123.017578125*x1t*pow(xi1, 11) - 142.44140625*x1t*pow(xi1, 9) + 75.41015625*x1t*pow(xi1, 7) - 17.595703125*x1t*pow(xi1, 5) + 1.353515625*x1t*pow(xi1, 3) + 39.744140625*x1t*pow(xi2, 13) - 123.017578125*x1t*pow(xi2, 11) + 142.44140625*x1t*pow(xi2, 9) - 75.41015625*x1t*pow(xi2, 7) + 17.595703125*x1t*pow(xi2, 5) - 1.353515625*x1t*pow(xi2, 3); case 14: return -70.735107421875*x1t*pow(xi1, 14) + 236.808837890625*x1t*pow(xi1, 12) - 304.468505859375*x1t*pow(xi1, 10) + 186.954345703125*x1t*pow(xi1, 8) - 54.986572265625*x1t*pow(xi1, 6) + 6.598388671875*x1t*pow(xi1, 4) - 0.169189453125*x1t*pow(xi1, 2) + 70.735107421875*x1t*pow(xi2, 14) - 236.808837890625*x1t*pow(xi2, 12) + 304.468505859375*x1t*pow(xi2, 10) - 186.954345703125*x1t*pow(xi2, 8) + 54.986572265625*x1t*pow(xi2, 6) - 6.598388671875*x1t*pow(xi2, 4) + 0.169189453125*x1t*pow(xi2, 2); case 15: return -126.96044921875*x1t*pow(xi1, 15) + 457.0576171875*x1t*pow(xi1, 13) - 645.84228515625*x1t*pow(xi1, 11) + 451.064453125*x1t*pow(xi1, 9) - 160.24658203125*x1t*pow(xi1, 7) + 26.3935546875*x1t*pow(xi1, 5) - 1.46630859375*x1t*pow(xi1, 3) + 126.96044921875*x1t*pow(xi2, 15) - 457.0576171875*x1t*pow(xi2, 13) + 645.84228515625*x1t*pow(xi2, 11) - 451.064453125*x1t*pow(xi2, 9) + 160.24658203125*x1t*pow(xi2, 7) - 26.3935546875*x1t*pow(xi2, 5) + 1.46630859375*x1t*pow(xi2, 3); case 16: return -229.549026489258*x1t*pow(xi1, 16) + 884.188842773438*x1t*pow(xi1, 14) - 1361.65081787109*x1t*pow(xi1, 12) + 1065.63977050781*x1t*pow(xi1, 10) - 444.016571044922*x1t*pow(xi1, 8) + 93.4771728515625*x1t*pow(xi1, 6) - 8.24798583984375*x1t*pow(xi1, 4) + 0.1571044921875*x1t*pow(xi1, 2) + 229.549026489258*x1t*pow(xi2, 16) - 884.188842773438*x1t*pow(xi2, 14) + 1361.65081787109*x1t*pow(xi2, 12) - 1065.63977050781*x1t*pow(xi2, 10) + 444.016571044922*x1t*pow(xi2, 8) - 93.4771728515625*x1t*pow(xi2, 6) + 8.24798583984375*x1t*pow(xi2, 4) - 0.1571044921875*x1t*pow(xi2, 2); case 17: return -417.689208984375*x1t*pow(xi1, 17) + 1713.96606445313*x1t*pow(xi1, 15) - 2856.61010742188*x1t*pow(xi1, 13) + 2475.72875976563*x1t*pow(xi1, 11) - 1184.04418945313*x1t*pow(xi1, 9) + 304.468505859375*x1t*pow(xi1, 7) - 37.390869140625*x1t*pow(xi1, 5) + 1.571044921875*x1t*pow(xi1, 3) + 417.689208984375*x1t*pow(xi2, 17) - 1713.96606445313*x1t*pow(xi2, 15) + 2856.61010742188*x1t*pow(xi2, 13) - 2475.72875976563*x1t*pow(xi2, 11) + 1184.04418945313*x1t*pow(xi2, 9) - 304.468505859375*x1t*pow(xi2, 7) + 37.390869140625*x1t*pow(xi2, 5) - 1.571044921875*x1t*pow(xi2, 3); case 18: return -764.31324005127*x1t*pow(xi1, 18) + 3328.46088409424*x1t*pow(xi1, 16) - 5968.2746887207*x1t*pow(xi1, 14) + 5673.54507446289*x1t*pow(xi1, 12) - 3063.71434020996*x1t*pow(xi1, 10) + 932.434799194336*x1t*pow(xi1, 8) - 148.005523681641*x1t*pow(xi1, 6) + 10.0154113769531*x1t*pow(xi1, 4) - 0.147285461425781*x1t*pow(xi1, 2) + 764.31324005127*x1t*pow(xi2, 18) - 3328.46088409424*x1t*pow(xi2, 16) + 5968.2746887207*x1t*pow(xi2, 14) - 5673.54507446289*x1t*pow(xi2, 12) + 3063.71434020996*x1t*pow(xi2, 10) - 932.434799194336*x1t*pow(xi2, 8) + 148.005523681641*x1t*pow(xi2, 6) - 10.0154113769531*x1t*pow(xi2, 4) + 0.147285461425781*x1t*pow(xi2, 2); case 19: return -1405.57914733887*x1t*pow(xi1, 19) + 6474.18273925781*x1t*pow(xi1, 17) - 12426.2539672852*x1t*pow(xi1, 15) + 12854.7454833984*x1t*pow(xi1, 13) - 7736.65237426758*x1t*pow(xi1, 11) + 2723.30163574219*x1t*pow(xi1, 9) - 532.819885253906*x1t*pow(xi1, 7) + 50.7447509765625*x1t*pow(xi1, 5) - 1.66923522949219*x1t*pow(xi1, 3) + 1405.57914733887*x1t*pow(xi2, 19) - 6474.18273925781*x1t*pow(xi2, 17) + 12426.2539672852*x1t*pow(xi2, 15) - 12854.7454833984*x1t*pow(xi2, 13) + 7736.65237426758*x1t*pow(xi2, 11) - 2723.30163574219*x1t*pow(xi2, 9) + 532.819885253906*x1t*pow(xi2, 7) - 50.7447509765625*x1t*pow(xi2, 5) + 1.66923522949219*x1t*pow(xi2, 3); case 20: return -2596.41703605652*x1t*pow(xi1, 20) + 12611.1684608459*x1t*pow(xi1, 18) - 25795.5718517303*x1t*pow(xi1, 16) + 28846.6609954834*x1t*pow(xi1, 14) - 19148.2146263123*x1t*pow(xi1, 12) + 7659.2858505249*x1t*pow(xi1, 10) - 1787.16669845581*x1t*pow(xi1, 8) + 222.008285522461*x1t*pow(xi1, 6) - 11.8933010101318*x1t*pow(xi1, 4) + 0.139102935791016*x1t*pow(xi1, 2) + 2596.41703605652*x1t*pow(xi2, 20) - 12611.1684608459*x1t*pow(xi2, 18) + 25795.5718517303*x1t*pow(xi2, 16) - 28846.6609954834*x1t*pow(xi2, 14) + 19148.2146263123*x1t*pow(xi2, 12) - 7659.2858505249*x1t*pow(xi2, 10) + 1787.16669845581*x1t*pow(xi2, 8) - 222.008285522461*x1t*pow(xi2, 6) + 11.8933010101318*x1t*pow(xi2, 4) - 0.139102935791016*x1t*pow(xi2, 2); case 21: return -4815.41004180908*x1t*pow(xi1, 21) + 24597.6350784302*x1t*pow(xi1, 19) - 53412.007598877*x1t*pow(xi1, 17) + 64202.3121643066*x1t*pow(xi1, 15) - 46598.4523773193*x1t*pow(xi1, 13) + 20888.9614105225*x1t*pow(xi1, 11) - 5673.54507446289*x1t*pow(xi1, 9) + 875.346954345703*x1t*pow(xi1, 7) - 66.6024856567383*x1t*pow(xi1, 5) + 1.76197052001953*x1t*pow(xi1, 3) + 4815.41004180908*x1t*pow(xi2, 21) - 24597.6350784302*x1t*pow(xi2, 19) + 53412.007598877*x1t*pow(xi2, 17) - 64202.3121643066*x1t*pow(xi2, 15) + 46598.4523773193*x1t*pow(xi2, 13) - 20888.9614105225*x1t*pow(xi2, 11) + 5673.54507446289*x1t*pow(xi2, 9) - 875.346954345703*x1t*pow(xi2, 7) + 66.6024856567383*x1t*pow(xi2, 5) - 1.76197052001953*x1t*pow(xi2, 3); case 22: return -8963.22914600372*x1t*pow(xi1, 22) + 48033.7151670456*x1t*pow(xi1, 20) - 110347.724032402*x1t*pow(xi1, 18) + 141875.645184517*x1t*pow(xi1, 16) - 111780.811357498*x1t*pow(xi1, 14) + 55529.8224163055*x1t*pow(xi1, 12) - 17233.393163681*x1t*pow(xi1, 10) + 3191.36910438538*x1t*pow(xi1, 8) - 319.136910438538*x1t*pow(xi1, 6) + 13.8755178451538*x1t*pow(xi1, 4) - 0.132147789001465*x1t*pow(xi1, 2) + 8963.22914600372*x1t*pow(xi2, 22) - 48033.7151670456*x1t*pow(xi2, 20) + 110347.724032402*x1t*pow(xi2, 18) - 141875.645184517*x1t*pow(xi2, 16) + 111780.811357498*x1t*pow(xi2, 14) - 55529.8224163055*x1t*pow(xi2, 12) + 17233.393163681*x1t*pow(xi2, 10) - 3191.36910438538*x1t*pow(xi2, 8) + 319.136910438538*x1t*pow(xi2, 6) - 13.8755178451538*x1t*pow(xi2, 4) + 0.132147789001465*x1t*pow(xi2, 2); case 23: return -16738.7840366364*x1t*pow(xi1, 23) + 93900.4958152771*x1t*pow(xi1, 21) - 227528.124475479*x1t*pow(xi1, 19) + 311570.044326782*x1t*pow(xi1, 17) - 264834.537677765*x1t*pow(xi1, 15) + 144455.20236969*x1t*pow(xi1, 13) - 50481.6567420959*x1t*pow(xi1, 11) + 10941.8369293213*x1t*pow(xi1, 9) - 1367.72961616516*x1t*pow(xi1, 7) + 85.1031761169434*x1t*pow(xi1, 5) - 1.85006904602051*x1t*pow(xi1, 3) + 16738.7840366364*x1t*pow(xi2, 23) - 93900.4958152771*x1t*pow(xi2, 21) + 227528.124475479*x1t*pow(xi2, 19) - 311570.044326782*x1t*pow(xi2, 17) + 264834.537677765*x1t*pow(xi2, 15) - 144455.20236969*x1t*pow(xi2, 13) + 50481.6567420959*x1t*pow(xi2, 11) - 10941.8369293213*x1t*pow(xi2, 9) + 1367.72961616516*x1t*pow(xi2, 7) - 85.1031761169434*x1t*pow(xi2, 5) + 1.85006904602051*x1t*pow(xi2, 3); case 24: return -31353.5178261995*x1t*pow(xi1, 24) + 183746.197493076*x1t*pow(xi1, 22) - 468328.722878695*x1t*pow(xi1, 20) + 680477.631533146*x1t*pow(xi1, 18) - 620705.947682261*x1t*pow(xi1, 16) + 368876.677479744*x1t*pow(xi1, 14) - 143452.041242123*x1t*pow(xi1, 12) + 35697.7429819107*x1t*pow(xi1, 10) - 5385.43536365032*x1t*pow(xi1, 8) + 443.245708942413*x1t*pow(xi1, 6) - 15.9568455219269*x1t*pow(xi1, 4) + 0.12614107131958*x1t*pow(xi1, 2) + 31353.5178261995*x1t*pow(xi2, 24) - 183746.197493076*x1t*pow(xi2, 22) + 468328.722878695*x1t*pow(xi2, 20) - 680477.631533146*x1t*pow(xi2, 18) + 620705.947682261*x1t*pow(xi2, 16) - 368876.677479744*x1t*pow(xi2, 14) + 143452.041242123*x1t*pow(xi2, 12) - 35697.7429819107*x1t*pow(xi2, 10) + 5385.43536365032*x1t*pow(xi2, 8) - 443.245708942413*x1t*pow(xi2, 6) + 15.9568455219269*x1t*pow(xi2, 4) - 0.12614107131958*x1t*pow(xi2, 2); case 25: return -58890.0856561661*x1t*pow(xi1, 25) + 359883.856787682*x1t*pow(xi1, 23) - 962480.08210659*x1t*pow(xi1, 21) + 1478932.80909061*x1t*pow(xi1, 19) - 1441011.45501137*x1t*pow(xi1, 17) + 926920.881872177*x1t*pow(xi1, 15) - 397251.806516647*x1t*pow(xi1, 13) + 111780.811357498*x1t*pow(xi1, 11) - 19832.0794343948*x1t*pow(xi1, 9) + 2051.59442424774*x1t*pow(xi1, 7) - 106.378970146179*x1t*pow(xi1, 5) + 1.93416309356689*x1t*pow(xi1, 3) + 58890.0856561661*x1t*pow(xi2, 25) - 359883.856787682*x1t*pow(xi2, 23) + 962480.08210659*x1t*pow(xi2, 21) - 1478932.80909061*x1t*pow(xi2, 19) + 1441011.45501137*x1t*pow(xi2, 17) - 926920.881872177*x1t*pow(xi2, 15) + 397251.806516647*x1t*pow(xi2, 13) - 111780.811357498*x1t*pow(xi2, 11) + 19832.0794343948*x1t*pow(xi2, 9) - 2051.59442424774*x1t*pow(xi2, 7) + 106.378970146179*x1t*pow(xi2, 5) - 1.93416309356689*x1t*pow(xi2, 3); case 26: return -110890.786291659*x1t*pow(xi1, 26) + 705454.151089489*x1t*pow(xi1, 24) - 1975271.62305057*x1t*pow(xi1, 22) + 3200246.27300441*x1t*pow(xi1, 20) - 3317328.45372409*x1t*pow(xi1, 18) + 2296612.00642437*x1t*pow(xi1, 16) - 1075890.30931592*x1t*pow(xi1, 14) + 338136.954356432*x1t*pow(xi1, 12) - 69164.377027452*x1t*pow(xi1, 10) + 8676.53475254774*x1t*pow(xi1, 8) - 598.381707072258*x1t*pow(xi1, 6) + 18.1327790021896*x1t*pow(xi1, 4) - 0.120885193347931*x1t*pow(xi1, 2) + 110890.786291659*x1t*pow(xi2, 26) - 705454.151089489*x1t*pow(xi2, 24) + 1975271.62305057*x1t*pow(xi2, 22) - 3200246.27300441*x1t*pow(xi2, 20) + 3317328.45372409*x1t*pow(xi2, 18) - 2296612.00642437*x1t*pow(xi2, 16) + 1075890.30931592*x1t*pow(xi2, 14) - 338136.954356432*x1t*pow(xi2, 12) + 69164.377027452*x1t*pow(xi2, 10) - 8676.53475254774*x1t*pow(xi2, 8) + 598.381707072258*x1t*pow(xi2, 6) - 18.1327790021896*x1t*pow(xi2, 4) + 0.120885193347931*x1t*pow(xi2, 2); case 27: return -209296.091460109*x1t*pow(xi1, 27) + 1383917.0129199*x1t*pow(xi1, 25) - 4048693.38886142*x1t*pow(xi1, 23) + 6897773.9217639*x1t*pow(xi1, 21) - 7579530.6465894*x1t*pow(xi1, 19) + 5619944.67454433*x1t*pow(xi1, 17) - 2858006.05243921*x1t*pow(xi1, 15) + 993129.516291618*x1t*pow(xi1, 13) - 230547.92342484*x1t*pow(xi1, 11) + 34155.2479147911*x1t*pow(xi1, 9) - 2974.81191515923*x1t*pow(xi1, 7) + 130.556008815765*x1t*pow(xi1, 5) - 2.01475322246552*x1t*pow(xi1, 3) + 209296.091460109*x1t*pow(xi2, 27) - 1383917.0129199*x1t*pow(xi2, 25) + 4048693.38886142*x1t*pow(xi2, 23) - 6897773.9217639*x1t*pow(xi2, 21) + 7579530.6465894*x1t*pow(xi2, 19) - 5619944.67454433*x1t*pow(xi2, 17) + 2858006.05243921*x1t*pow(xi2, 15) - 993129.516291618*x1t*pow(xi2, 13) + 230547.92342484*x1t*pow(xi2, 11) - 34155.2479147911*x1t*pow(xi2, 9) + 2974.81191515923*x1t*pow(xi2, 7) - 130.556008815765*x1t*pow(xi2, 5) + 2.01475322246552*x1t*pow(xi2, 3); case 28: return -395880.107061222*x1t*pow(xi1, 28) + 2716824.26414564*x1t*pow(xi1, 26) - 8289086.2753015*x1t*pow(xi1, 24) + 14814537.1728793*x1t*pow(xi1, 22) - 17201323.7173987*x1t*pow(xi1, 20) + 13601046.6602688*x1t*pow(xi1, 18) - 7463989.02087919*x1t*pow(xi1, 16) + 2843424.38890636*x1t*pow(xi1, 14) - 739674.587654695*x1t*pow(xi1, 12) + 126801.357883662*x1t*pow(xi1, 10) - 13448.628866449*x1t*pow(xi1, 8) + 788.775886595249*x1t*pow(xi1, 6) - 20.3993763774633*x1t*pow(xi1, 4) + 0.116235762834549*x1t*pow(xi1, 2) + 395880.107061222*x1t*pow(xi2, 28) - 2716824.26414564*x1t*pow(xi2, 26) + 8289086.2753015*x1t*pow(xi2, 24) - 14814537.1728793*x1t*pow(xi2, 22) + 17201323.7173987*x1t*pow(xi2, 20) - 13601046.6602688*x1t*pow(xi2, 18) + 7463989.02087919*x1t*pow(xi2, 16) - 2843424.38890636*x1t*pow(xi2, 14) + 739674.587654695*x1t*pow(xi2, 12) - 126801.357883662*x1t*pow(xi2, 10) + 13448.628866449*x1t*pow(xi2, 8) - 788.775886595249*x1t*pow(xi2, 6) + 20.3993763774633*x1t*pow(xi2, 4) - 0.116235762834549*x1t*pow(xi2, 2); case 29: return -750301.505592406*x1t*pow(xi1, 29) + 5337050.33223277*x1t*pow(xi1, 27) - 16952983.4082688*x1t*pow(xi1, 25) + 31714764.8794144*x1t*pow(xi1, 23) - 38799978.3099219*x1t*pow(xi1, 21) + 32591981.7803344*x1t*pow(xi1, 19) - 19201477.6380265*x1t*pow(xi1, 17) + 7961588.28893781*x1t*pow(xi1, 15) - 2296612.00642437*x1t*pow(xi1, 13) + 448287.628881633*x1t*pow(xi1, 11) - 56356.1590594053*x1t*pow(xi1, 9) + 4191.78042590618*x1t*pow(xi1, 7) - 157.75517731905*x1t*pow(xi1, 5) + 2.09224373102188*x1t*pow(xi1, 3) + 750301.505592406*x1t*pow(xi2, 29) - 5337050.33223277*x1t*pow(xi2, 27) + 16952983.4082688*x1t*pow(xi2, 25) - 31714764.8794144*x1t*pow(xi2, 23) + 38799978.3099219*x1t*pow(xi2, 21) - 32591981.7803344*x1t*pow(xi2, 19) + 19201477.6380265*x1t*pow(xi2, 17) - 7961588.28893781*x1t*pow(xi2, 15) + 2296612.00642437*x1t*pow(xi2, 13) - 448287.628881633*x1t*pow(xi2, 11) + 56356.1590594053*x1t*pow(xi2, 9) - 4191.78042590618*x1t*pow(xi2, 7) + 157.75517731905*x1t*pow(xi2, 5) - 2.09224373102188*x1t*pow(xi2, 3); default: return 0.; } case 1: switch(j) { case 0: return -0.375*x1r*pow(xi1, 3)*y1t + 0.1875*x1r*pow(xi1, 2)*y1t + 0.375*x1r*pow(xi2, 3)*y1t - 0.1875*x1r*pow(xi2, 2)*y1t; case 1: return -0.1875*x1r*pow(xi1, 3)*y1r + 0.1875*x1r*pow(xi1, 2)*y1r - 0.0625*x1r*xi1*y1r + 0.1875*x1r*pow(xi2, 3)*y1r - 0.1875*x1r*pow(xi2, 2)*y1r + 0.0625*x1r*xi2*y1r; case 2: return 0.375*x1r*pow(xi1, 3)*y2t - 0.1875*x1r*pow(xi1, 2)*y2t - 0.375*x1r*pow(xi2, 3)*y2t + 0.1875*x1r*pow(xi2, 2)*y2t; case 3: return -0.1875*x1r*pow(xi1, 3)*y2r + 0.0625*x1r*xi1*y2r + 0.1875*x1r*pow(xi2, 3)*y2r - 0.0625*x1r*xi2*y2r; case 4: return -0.28125*x1r*pow(xi1, 4) + 0.125*x1r*pow(xi1, 3) + 0.1875*x1r*pow(xi1, 2) - 0.125*x1r*xi1 + 0.28125*x1r*pow(xi2, 4) - 0.125*x1r*pow(xi2, 3) - 0.1875*x1r*pow(xi2, 2) + 0.125*x1r*xi2; case 5: return -0.375*x1r*pow(xi1, 5) + 0.15625*x1r*pow(xi1, 4) + 0.375*x1r*pow(xi1, 3) - 0.1875*x1r*pow(xi1, 2) + 0.375*x1r*pow(xi2, 5) - 0.15625*x1r*pow(xi2, 4) - 0.375*x1r*pow(xi2, 3) + 0.1875*x1r*pow(xi2, 2); case 6: return -0.546875*x1r*pow(xi1, 6) + 0.21875*x1r*pow(xi1, 5) + 0.703125*x1r*pow(xi1, 4) - 0.3125*x1r*pow(xi1, 3) - 0.140625*x1r*pow(xi1, 2) + 0.09375*x1r*xi1 + 0.546875*x1r*pow(xi2, 6) - 0.21875*x1r*pow(xi2, 5) - 0.703125*x1r*pow(xi2, 4) + 0.3125*x1r*pow(xi2, 3) + 0.140625*x1r*pow(xi2, 2) - 0.09375*x1r*xi2; case 7: return -0.84375*x1r*pow(xi1, 7) + 0.328125*x1r*pow(xi1, 6) + 1.3125*x1r*pow(xi1, 5) - 0.546875*x1r*pow(xi1, 4) - 0.46875*x1r*pow(xi1, 3) + 0.234375*x1r*pow(xi1, 2) + 0.84375*x1r*pow(xi2, 7) - 0.328125*x1r*pow(xi2, 6) - 1.3125*x1r*pow(xi2, 5) + 0.546875*x1r*pow(xi2, 4) + 0.46875*x1r*pow(xi2, 3) - 0.234375*x1r*pow(xi2, 2); case 8: return -1.353515625*x1r*pow(xi1, 8) + 0.515625*x1r*pow(xi1, 7) + 2.4609375*x1r*pow(xi1, 6) - 0.984375*x1r*pow(xi1, 5) - 1.23046875*x1r*pow(xi1, 4) + 0.546875*x1r*pow(xi1, 3) + 0.1171875*x1r*pow(xi1, 2) - 0.078125*x1r*xi1 + 1.353515625*x1r*pow(xi2, 8) - 0.515625*x1r*pow(xi2, 7) - 2.4609375*x1r*pow(xi2, 6) + 0.984375*x1r*pow(xi2, 5) + 1.23046875*x1r*pow(xi2, 4) - 0.546875*x1r*pow(xi2, 3) - 0.1171875*x1r*pow(xi2, 2) + 0.078125*x1r*xi2; case 9: return -2.234375*x1r*pow(xi1, 9) + 0.837890625*x1r*pow(xi1, 8) + 4.640625*x1r*pow(xi1, 7) - 1.8046875*x1r*pow(xi1, 6) - 2.953125*x1r*pow(xi1, 5) + 1.23046875*x1r*pow(xi1, 4) + 0.546875*x1r*pow(xi1, 3) - 0.2734375*x1r*pow(xi1, 2) + 2.234375*x1r*pow(xi2, 9) - 0.837890625*x1r*pow(xi2, 8) - 4.640625*x1r*pow(xi2, 7) + 1.8046875*x1r*pow(xi2, 6) + 2.953125*x1r*pow(xi2, 5) - 1.23046875*x1r*pow(xi2, 4) - 0.546875*x1r*pow(xi2, 3) + 0.2734375*x1r*pow(xi2, 2); case 10: return -3.7705078125*x1r*pow(xi1, 10) + 1.396484375*x1r*pow(xi1, 9) + 8.7978515625*x1r*pow(xi1, 8) - 3.3515625*x1r*pow(xi1, 7) - 6.767578125*x1r*pow(xi1, 6) + 2.70703125*x1r*pow(xi1, 5) + 1.845703125*x1r*pow(xi1, 4) - 0.8203125*x1r*pow(xi1, 3) - 0.1025390625*x1r*pow(xi1, 2) + 0.068359375*x1r*xi1 + 3.7705078125*x1r*pow(xi2, 10) - 1.396484375*x1r*pow(xi2, 9) - 8.7978515625*x1r*pow(xi2, 8) + 3.3515625*x1r*pow(xi2, 7) + 6.767578125*x1r*pow(xi2, 6) - 2.70703125*x1r*pow(xi2, 5) - 1.845703125*x1r*pow(xi2, 4) + 0.8203125*x1r*pow(xi2, 3) + 0.1025390625*x1r*pow(xi2, 2) - 0.068359375*x1r*xi2; case 11: return -6.474609375*x1r*pow(xi1, 11) + 2.3740234375*x1r*pow(xi1, 10) + 16.7578125*x1r*pow(xi1, 9) - 6.2841796875*x1r*pow(xi1, 8) - 15.08203125*x1r*pow(xi1, 7) + 5.865234375*x1r*pow(xi1, 6) + 5.4140625*x1r*pow(xi1, 5) - 2.255859375*x1r*pow(xi1, 4) - 0.615234375*x1r*pow(xi1, 3) + 0.3076171875*x1r*pow(xi1, 2) + 6.474609375*x1r*pow(xi2, 11) - 2.3740234375*x1r*pow(xi2, 10) - 16.7578125*x1r*pow(xi2, 9) + 6.2841796875*x1r*pow(xi2, 8) + 15.08203125*x1r*pow(xi2, 7) - 5.865234375*x1r*pow(xi2, 6) - 5.4140625*x1r*pow(xi2, 5) + 2.255859375*x1r*pow(xi2, 4) + 0.615234375*x1r*pow(xi2, 3) - 0.3076171875*x1r*pow(xi2, 2); case 12: return -11.276611328125*x1r*pow(xi1, 12) + 4.1005859375*x1r*pow(xi1, 11) + 32.04931640625*x1r*pow(xi1, 10) - 11.8701171875*x1r*pow(xi1, 9) - 32.991943359375*x1r*pow(xi1, 8) + 12.568359375*x1r*pow(xi1, 7) + 14.6630859375*x1r*pow(xi1, 6) - 5.865234375*x1r*pow(xi1, 5) - 2.537841796875*x1r*pow(xi1, 4) + 1.1279296875*x1r*pow(xi1, 3) + 0.09228515625*x1r*pow(xi1, 2) - 0.0615234375*x1r*xi1 + 11.276611328125*x1r*pow(xi2, 12) - 4.1005859375*x1r*pow(xi2, 11) - 32.04931640625*x1r*pow(xi2, 10) + 11.8701171875*x1r*pow(xi2, 9) + 32.991943359375*x1r*pow(xi2, 8) - 12.568359375*x1r*pow(xi2, 7) - 14.6630859375*x1r*pow(xi2, 6) + 5.865234375*x1r*pow(xi2, 5) + 2.537841796875*x1r*pow(xi2, 4) - 1.1279296875*x1r*pow(xi2, 3) - 0.09228515625*x1r*pow(xi2, 2) + 0.0615234375*x1r*xi2; case 13: return -19.8720703125*x1r*pow(xi1, 13) + 7.176025390625*x1r*pow(xi1, 12) + 61.5087890625*x1r*pow(xi1, 11) - 22.55322265625*x1r*pow(xi1, 10) - 71.220703125*x1r*pow(xi1, 9) + 26.707763671875*x1r*pow(xi1, 8) + 37.705078125*x1r*pow(xi1, 7) - 14.6630859375*x1r*pow(xi1, 6) - 8.7978515625*x1r*pow(xi1, 5) + 3.665771484375*x1r*pow(xi1, 4) + 0.6767578125*x1r*pow(xi1, 3) - 0.33837890625*x1r*pow(xi1, 2) + 19.8720703125*x1r*pow(xi2, 13) - 7.176025390625*x1r*pow(xi2, 12) - 61.5087890625*x1r*pow(xi2, 11) + 22.55322265625*x1r*pow(xi2, 10) + 71.220703125*x1r*pow(xi2, 9) - 26.707763671875*x1r*pow(xi2, 8) - 37.705078125*x1r*pow(xi2, 7) + 14.6630859375*x1r*pow(xi2, 6) + 8.7978515625*x1r*pow(xi2, 5) - 3.665771484375*x1r*pow(xi2, 4) - 0.6767578125*x1r*pow(xi2, 3) + 0.33837890625*x1r*pow(xi2, 2); case 14: return -35.3675537109375*x1r*pow(xi1, 14) + 12.696044921875*x1r*pow(xi1, 13) + 118.404418945313*x1r*pow(xi1, 12) - 43.05615234375*x1r*pow(xi1, 11) - 152.234252929688*x1r*pow(xi1, 10) + 56.383056640625*x1r*pow(xi1, 9) + 93.4771728515625*x1r*pow(xi1, 8) - 35.6103515625*x1r*pow(xi1, 7) - 27.4932861328125*x1r*pow(xi1, 6) + 10.997314453125*x1r*pow(xi1, 5) + 3.2991943359375*x1r*pow(xi1, 4) - 1.46630859375*x1r*pow(xi1, 3) - 0.0845947265625*x1r*pow(xi1, 2) + 0.056396484375*x1r*xi1 + 35.3675537109375*x1r*pow(xi2, 14) - 12.696044921875*x1r*pow(xi2, 13) - 118.404418945313*x1r*pow(xi2, 12) + 43.05615234375*x1r*pow(xi2, 11) + 152.234252929688*x1r*pow(xi2, 10) - 56.383056640625*x1r*pow(xi2, 9) - 93.4771728515625*x1r*pow(xi2, 8) + 35.6103515625*x1r*pow(xi2, 7) + 27.4932861328125*x1r*pow(xi2, 6) - 10.997314453125*x1r*pow(xi2, 5) - 3.2991943359375*x1r*pow(xi2, 4) + 1.46630859375*x1r*pow(xi2, 3) + 0.0845947265625*x1r*pow(xi2, 2) - 0.056396484375*x1r*xi2; case 15: return -63.480224609375*x1r*pow(xi1, 15) + 22.6715087890625*x1r*pow(xi1, 14) + 228.52880859375*x1r*pow(xi1, 13) - 82.5242919921875*x1r*pow(xi1, 12) - 322.921142578125*x1r*pow(xi1, 11) + 118.404418945313*x1r*pow(xi1, 10) + 225.5322265625*x1r*pow(xi1, 9) - 84.5745849609375*x1r*pow(xi1, 8) - 80.123291015625*x1r*pow(xi1, 7) + 31.1590576171875*x1r*pow(xi1, 6) + 13.19677734375*x1r*pow(xi1, 5) - 5.4986572265625*x1r*pow(xi1, 4) - 0.733154296875*x1r*pow(xi1, 3) + 0.3665771484375*x1r*pow(xi1, 2) + 63.480224609375*x1r*pow(xi2, 15) - 22.6715087890625*x1r*pow(xi2, 14) - 228.52880859375*x1r*pow(xi2, 13) + 82.5242919921875*x1r*pow(xi2, 12) + 322.921142578125*x1r*pow(xi2, 11) - 118.404418945313*x1r*pow(xi2, 10) - 225.5322265625*x1r*pow(xi2, 9) + 84.5745849609375*x1r*pow(xi2, 8) + 80.123291015625*x1r*pow(xi2, 7) - 31.1590576171875*x1r*pow(xi2, 6) - 13.19677734375*x1r*pow(xi2, 5) + 5.4986572265625*x1r*pow(xi2, 4) + 0.733154296875*x1r*pow(xi2, 3) - 0.3665771484375*x1r*pow(xi2, 2); case 16: return -114.774513244629*x1r*pow(xi1, 16) + 40.8087158203125*x1r*pow(xi1, 15) + 442.094421386719*x1r*pow(xi1, 14) - 158.700561523438*x1r*pow(xi1, 13) - 680.825408935547*x1r*pow(xi1, 12) + 247.572875976563*x1r*pow(xi1, 11) + 532.819885253906*x1r*pow(xi1, 10) - 197.340698242188*x1r*pow(xi1, 9) - 222.008285522461*x1r*pow(xi1, 8) + 84.5745849609375*x1r*pow(xi1, 7) + 46.7385864257813*x1r*pow(xi1, 6) - 18.6954345703125*x1r*pow(xi1, 5) - 4.12399291992188*x1r*pow(xi1, 4) + 1.8328857421875*x1r*pow(xi1, 3) + 0.07855224609375*x1r*pow(xi1, 2) - 0.0523681640625*x1r*xi1 + 114.774513244629*x1r*pow(xi2, 16) - 40.8087158203125*x1r*pow(xi2, 15) - 442.094421386719*x1r*pow(xi2, 14) + 158.700561523438*x1r*pow(xi2, 13) + 680.825408935547*x1r*pow(xi2, 12) - 247.572875976563*x1r*pow(xi2, 11) - 532.819885253906*x1r*pow(xi2, 10) + 197.340698242188*x1r*pow(xi2, 9) + 222.008285522461*x1r*pow(xi2, 8) - 84.5745849609375*x1r*pow(xi2, 7) - 46.7385864257813*x1r*pow(xi2, 6) + 18.6954345703125*x1r*pow(xi2, 5) + 4.12399291992188*x1r*pow(xi2, 4) - 1.8328857421875*x1r*pow(xi2, 3) - 0.07855224609375*x1r*pow(xi2, 2) + 0.0523681640625*x1r*xi2; case 17: return -208.844604492188*x1r*pow(xi1, 17) + 73.9657974243164*x1r*pow(xi1, 16) + 856.983032226563*x1r*pow(xi1, 15) - 306.065368652344*x1r*pow(xi1, 14) - 1428.30505371094*x1r*pow(xi1, 13) + 515.776824951172*x1r*pow(xi1, 12) + 1237.86437988281*x1r*pow(xi1, 11) - 453.883605957031*x1r*pow(xi1, 10) - 592.022094726563*x1r*pow(xi1, 9) + 222.008285522461*x1r*pow(xi1, 8) + 152.234252929688*x1r*pow(xi1, 7) - 59.2022094726563*x1r*pow(xi1, 6) - 18.6954345703125*x1r*pow(xi1, 5) + 7.78976440429688*x1r*pow(xi1, 4) + 0.7855224609375*x1r*pow(xi1, 3) - 0.39276123046875*x1r*pow(xi1, 2) + 208.844604492188*x1r*pow(xi2, 17) - 73.9657974243164*x1r*pow(xi2, 16) - 856.983032226563*x1r*pow(xi2, 15) + 306.065368652344*x1r*pow(xi2, 14) + 1428.30505371094*x1r*pow(xi2, 13) - 515.776824951172*x1r*pow(xi2, 12) - 1237.86437988281*x1r*pow(xi2, 11) + 453.883605957031*x1r*pow(xi2, 10) + 592.022094726563*x1r*pow(xi2, 9) - 222.008285522461*x1r*pow(xi2, 8) - 152.234252929688*x1r*pow(xi2, 7) + 59.2022094726563*x1r*pow(xi2, 6) + 18.6954345703125*x1r*pow(xi2, 5) - 7.78976440429688*x1r*pow(xi2, 4) - 0.7855224609375*x1r*pow(xi2, 3) + 0.39276123046875*x1r*pow(xi2, 2); case 18: return -382.156620025635*x1r*pow(xi1, 18) + 134.878807067871*x1r*pow(xi1, 17) + 1664.23044204712*x1r*pow(xi1, 16) - 591.726379394531*x1r*pow(xi1, 15) - 2984.13734436035*x1r*pow(xi1, 14) + 1071.2287902832*x1r*pow(xi1, 13) + 2836.77253723145*x1r*pow(xi1, 12) - 1031.55364990234*x1r*pow(xi1, 11) - 1531.85717010498*x1r*pow(xi1, 10) + 567.354507446289*x1r*pow(xi1, 9) + 466.217399597168*x1r*pow(xi1, 8) - 177.606628417969*x1r*pow(xi1, 7) - 74.0027618408203*x1r*pow(xi1, 6) + 29.6011047363281*x1r*pow(xi1, 5) + 5.00770568847656*x1r*pow(xi1, 4) - 2.22564697265625*x1r*pow(xi1, 3) - 0.0736427307128906*x1r*pow(xi1, 2) + 0.0490951538085938*x1r*xi1 + 382.156620025635*x1r*pow(xi2, 18) - 134.878807067871*x1r*pow(xi2, 17) - 1664.23044204712*x1r*pow(xi2, 16) + 591.726379394531*x1r*pow(xi2, 15) + 2984.13734436035*x1r*pow(xi2, 14) - 1071.2287902832*x1r*pow(xi2, 13) - 2836.77253723145*x1r*pow(xi2, 12) + 1031.55364990234*x1r*pow(xi2, 11) + 1531.85717010498*x1r*pow(xi2, 10) - 567.354507446289*x1r*pow(xi2, 9) - 466.217399597168*x1r*pow(xi2, 8) + 177.606628417969*x1r*pow(xi2, 7) + 74.0027618408203*x1r*pow(xi2, 6) - 29.6011047363281*x1r*pow(xi2, 5) - 5.00770568847656*x1r*pow(xi2, 4) + 2.22564697265625*x1r*pow(xi2, 3) + 0.0736427307128906*x1r*pow(xi2, 2) - 0.0490951538085938*x1r*xi2; case 19: return -702.789573669434*x1r*pow(xi1, 19) + 247.277812957764*x1r*pow(xi1, 18) + 3237.09136962891*x1r*pow(xi1, 17) - 1146.4698600769*x1r*pow(xi1, 16) - 6213.12698364258*x1r*pow(xi1, 15) + 2218.97392272949*x1r*pow(xi1, 14) + 6427.37274169922*x1r*pow(xi1, 13) - 2320.99571228027*x1r*pow(xi1, 12) - 3868.32618713379*x1r*pow(xi1, 11) + 1418.38626861572*x1r*pow(xi1, 10) + 1361.65081787109*x1r*pow(xi1, 9) - 510.61905670166*x1r*pow(xi1, 8) - 266.409942626953*x1r*pow(xi1, 7) + 103.603866577148*x1r*pow(xi1, 6) + 25.3723754882813*x1r*pow(xi1, 5) - 10.5718231201172*x1r*pow(xi1, 4) - 0.834617614746094*x1r*pow(xi1, 3) + 0.417308807373047*x1r*pow(xi1, 2) + 702.789573669434*x1r*pow(xi2, 19) - 247.277812957764*x1r*pow(xi2, 18) - 3237.09136962891*x1r*pow(xi2, 17) + 1146.4698600769*x1r*pow(xi2, 16) + 6213.12698364258*x1r*pow(xi2, 15) - 2218.97392272949*x1r*pow(xi2, 14) - 6427.37274169922*x1r*pow(xi2, 13) + 2320.99571228027*x1r*pow(xi2, 12) + 3868.32618713379*x1r*pow(xi2, 11) - 1418.38626861572*x1r*pow(xi2, 10) - 1361.65081787109*x1r*pow(xi2, 9) + 510.61905670166*x1r*pow(xi2, 8) + 266.409942626953*x1r*pow(xi2, 7) - 103.603866577148*x1r*pow(xi2, 6) - 25.3723754882813*x1r*pow(xi2, 5) + 10.5718231201172*x1r*pow(xi2, 4) + 0.834617614746094*x1r*pow(xi2, 3) - 0.417308807373047*x1r*pow(xi2, 2); case 20: return -1298.20851802826*x1r*pow(xi1, 20) + 455.51176071167*x1r*pow(xi1, 19) + 6305.58423042297*x1r*pow(xi1, 18) - 2225.50031661987*x1r*pow(xi1, 17) - 12897.7859258652*x1r*pow(xi1, 16) + 4585.87944030762*x1r*pow(xi1, 15) + 14423.3304977417*x1r*pow(xi1, 14) - 5177.60581970215*x1r*pow(xi1, 13) - 9574.10731315613*x1r*pow(xi1, 12) + 3481.49356842041*x1r*pow(xi1, 11) + 3829.64292526245*x1r*pow(xi1, 10) - 1418.38626861572*x1r*pow(xi1, 9) - 893.583349227905*x1r*pow(xi1, 8) + 340.412704467773*x1r*pow(xi1, 7) + 111.00414276123*x1r*pow(xi1, 6) - 44.4016571044922*x1r*pow(xi1, 5) - 5.94665050506592*x1r*pow(xi1, 4) + 2.6429557800293*x1r*pow(xi1, 3) + 0.0695514678955078*x1r*pow(xi1, 2) - 0.0463676452636719*x1r*xi1 + 1298.20851802826*x1r*pow(xi2, 20) - 455.51176071167*x1r*pow(xi2, 19) - 6305.58423042297*x1r*pow(xi2, 18) + 2225.50031661987*x1r*pow(xi2, 17) + 12897.7859258652*x1r*pow(xi2, 16) - 4585.87944030762*x1r*pow(xi2, 15) - 14423.3304977417*x1r*pow(xi2, 14) + 5177.60581970215*x1r*pow(xi2, 13) + 9574.10731315613*x1r*pow(xi2, 12) - 3481.49356842041*x1r*pow(xi2, 11) - 3829.64292526245*x1r*pow(xi2, 10) + 1418.38626861572*x1r*pow(xi2, 9) + 893.583349227905*x1r*pow(xi2, 8) - 340.412704467773*x1r*pow(xi2, 7) - 111.00414276123*x1r*pow(xi2, 6) + 44.4016571044922*x1r*pow(xi2, 5) + 5.94665050506592*x1r*pow(xi2, 4) - 2.6429557800293*x1r*pow(xi2, 3) - 0.0695514678955078*x1r*pow(xi2, 2) + 0.0463676452636719*x1r*xi2; case 21: return -2407.70502090454*x1r*pow(xi1, 21) + 842.696757316589*x1r*pow(xi1, 20) + 12298.8175392151*x1r*pow(xi1, 19) - 4327.36172676086*x1r*pow(xi1, 18) - 26706.0037994385*x1r*pow(xi1, 17) + 9458.37634563446*x1r*pow(xi1, 16) + 32101.1560821533*x1r*pow(xi1, 15) - 11464.698600769*x1r*pow(xi1, 14) - 23299.2261886597*x1r*pow(xi1, 13) + 8413.60945701599*x1r*pow(xi1, 12) + 10444.4807052612*x1r*pow(xi1, 11) - 3829.64292526245*x1r*pow(xi1, 10) - 2836.77253723145*x1r*pow(xi1, 9) + 1063.78970146179*x1r*pow(xi1, 8) + 437.673477172852*x1r*pow(xi1, 7) - 170.206352233887*x1r*pow(xi1, 6) - 33.3012428283691*x1r*pow(xi1, 5) + 13.8755178451538*x1r*pow(xi1, 4) + 0.880985260009766*x1r*pow(xi1, 3) - 0.440492630004883*x1r*pow(xi1, 2) + 2407.70502090454*x1r*pow(xi2, 21) - 842.696757316589*x1r*pow(xi2, 20) - 12298.8175392151*x1r*pow(xi2, 19) + 4327.36172676086*x1r*pow(xi2, 18) + 26706.0037994385*x1r*pow(xi2, 17) - 9458.37634563446*x1r*pow(xi2, 16) - 32101.1560821533*x1r*pow(xi2, 15) + 11464.698600769*x1r*pow(xi2, 14) + 23299.2261886597*x1r*pow(xi2, 13) - 8413.60945701599*x1r*pow(xi2, 12) - 10444.4807052612*x1r*pow(xi2, 11) + 3829.64292526245*x1r*pow(xi2, 10) + 2836.77253723145*x1r*pow(xi2, 9) - 1063.78970146179*x1r*pow(xi2, 8) - 437.673477172852*x1r*pow(xi2, 7) + 170.206352233887*x1r*pow(xi2, 6) + 33.3012428283691*x1r*pow(xi2, 5) - 13.8755178451538*x1r*pow(xi2, 4) - 0.880985260009766*x1r*pow(xi2, 3) + 0.440492630004883*x1r*pow(xi2, 2); case 22: return -4481.61457300186*x1r*pow(xi1, 22) + 1565.00826358795*x1r*pow(xi1, 21) + 24016.8575835228*x1r*pow(xi1, 20) - 8426.96757316589*x1r*pow(xi1, 19) - 55173.862016201*x1r*pow(xi1, 18) + 19473.1277704239*x1r*pow(xi1, 17) + 70937.8225922585*x1r*pow(xi1, 16) - 25222.3369216919*x1r*pow(xi1, 15) - 55890.4056787491*x1r*pow(xi1, 14) + 20063.2225513458*x1r*pow(xi1, 13) + 27764.9112081528*x1r*pow(xi1, 12) - 10096.3313484192*x1r*pow(xi1, 11) - 8616.69658184052*x1r*pow(xi1, 10) + 3191.36910438538*x1r*pow(xi1, 9) + 1595.68455219269*x1r*pow(xi1, 8) - 607.879829406738*x1r*pow(xi1, 7) - 159.568455219269*x1r*pow(xi1, 6) + 63.8273820877075*x1r*pow(xi1, 5) + 6.9377589225769*x1r*pow(xi1, 4) - 3.08344841003418*x1r*pow(xi1, 3) - 0.0660738945007324*x1r*pow(xi1, 2) + 0.0440492630004883*x1r*xi1 + 4481.61457300186*x1r*pow(xi2, 22) - 1565.00826358795*x1r*pow(xi2, 21) - 24016.8575835228*x1r*pow(xi2, 20) + 8426.96757316589*x1r*pow(xi2, 19) + 55173.862016201*x1r*pow(xi2, 18) - 19473.1277704239*x1r*pow(xi2, 17) - 70937.8225922585*x1r*pow(xi2, 16) + 25222.3369216919*x1r*pow(xi2, 15) + 55890.4056787491*x1r*pow(xi2, 14) - 20063.2225513458*x1r*pow(xi2, 13) - 27764.9112081528*x1r*pow(xi2, 12) + 10096.3313484192*x1r*pow(xi2, 11) + 8616.69658184052*x1r*pow(xi2, 10) - 3191.36910438538*x1r*pow(xi2, 9) - 1595.68455219269*x1r*pow(xi2, 8) + 607.879829406738*x1r*pow(xi2, 7) + 159.568455219269*x1r*pow(xi2, 6) - 63.8273820877075*x1r*pow(xi2, 5) - 6.9377589225769*x1r*pow(xi2, 4) + 3.08344841003418*x1r*pow(xi2, 3) + 0.0660738945007324*x1r*pow(xi2, 2) - 0.0440492630004883*x1r*xi2; case 23: return -8369.39201831818*x1r*pow(xi1, 23) + 2916.60630941391*x1r*pow(xi1, 22) + 46950.2479076385*x1r*pow(xi1, 21) - 16432.5867676735*x1r*pow(xi1, 20) - 113764.06223774*x1r*pow(xi1, 19) + 40028.095972538*x1r*pow(xi1, 18) + 155785.022163391*x1r*pow(xi1, 17) - 55173.862016201*x1r*pow(xi1, 16) - 132417.268838882*x1r*pow(xi1, 15) + 47291.8817281723*x1r*pow(xi1, 14) + 72227.601184845*x1r*pow(xi1, 13) - 26082.1893167496*x1r*pow(xi1, 12) - 25240.828371048*x1r*pow(xi1, 11) + 9254.97040271759*x1r*pow(xi1, 10) + 5470.91846466064*x1r*pow(xi1, 9) - 2051.59442424774*x1r*pow(xi1, 8) - 683.864808082581*x1r*pow(xi1, 7) + 265.947425365448*x1r*pow(xi1, 6) + 42.5515880584717*x1r*pow(xi1, 5) - 17.7298283576965*x1r*pow(xi1, 4) - 0.925034523010254*x1r*pow(xi1, 3) + 0.462517261505127*x1r*pow(xi1, 2) + 8369.39201831818*x1r*pow(xi2, 23) - 2916.60630941391*x1r*pow(xi2, 22) - 46950.2479076385*x1r*pow(xi2, 21) + 16432.5867676735*x1r*pow(xi2, 20) + 113764.06223774*x1r*pow(xi2, 19) - 40028.095972538*x1r*pow(xi2, 18) - 155785.022163391*x1r*pow(xi2, 17) + 55173.862016201*x1r*pow(xi2, 16) + 132417.268838882*x1r*pow(xi2, 15) - 47291.8817281723*x1r*pow(xi2, 14) - 72227.601184845*x1r*pow(xi2, 13) + 26082.1893167496*x1r*pow(xi2, 12) + 25240.828371048*x1r*pow(xi2, 11) - 9254.97040271759*x1r*pow(xi2, 10) - 5470.91846466064*x1r*pow(xi2, 9) + 2051.59442424774*x1r*pow(xi2, 8) + 683.864808082581*x1r*pow(xi2, 7) - 265.947425365448*x1r*pow(xi2, 6) - 42.5515880584717*x1r*pow(xi2, 5) + 17.7298283576965*x1r*pow(xi2, 4) + 0.925034523010254*x1r*pow(xi2, 3) - 0.462517261505127*x1r*pow(xi2, 2); case 24: return -15676.7589130998*x1r*pow(xi1, 24) + 5452.78570890427*x1r*pow(xi1, 23) + 91873.0987465382*x1r*pow(xi1, 22) - 32082.669403553*x1r*pow(xi1, 21) - 234164.361439347*x1r*pow(xi1, 20) + 82162.9338383675*x1r*pow(xi1, 19) + 340238.815766573*x1r*pow(xi1, 18) - 120084.287917614*x1r*pow(xi1, 17) - 310352.973841131*x1r*pow(xi1, 16) + 110347.724032402*x1r*pow(xi1, 15) + 184438.338739872*x1r*pow(xi1, 14) - 66208.6344194412*x1r*pow(xi1, 13) - 71726.0206210613*x1r*pow(xi1, 12) + 26082.1893167496*x1r*pow(xi1, 11) + 17848.8714909554*x1r*pow(xi1, 10) - 6610.69314479828*x1r*pow(xi1, 9) - 2692.71768182516*x1r*pow(xi1, 8) + 1025.79721212387*x1r*pow(xi1, 7) + 221.622854471207*x1r*pow(xi1, 6) - 88.6491417884827*x1r*pow(xi1, 5) - 7.97842276096344*x1r*pow(xi1, 4) + 3.54596567153931*x1r*pow(xi1, 3) + 0.06307053565979*x1r*pow(xi1, 2) - 0.0420470237731934*x1r*xi1 + 15676.7589130998*x1r*pow(xi2, 24) - 5452.78570890427*x1r*pow(xi2, 23) - 91873.0987465382*x1r*pow(xi2, 22) + 32082.669403553*x1r*pow(xi2, 21) + 234164.361439347*x1r*pow(xi2, 20) - 82162.9338383675*x1r*pow(xi2, 19) - 340238.815766573*x1r*pow(xi2, 18) + 120084.287917614*x1r*pow(xi2, 17) + 310352.973841131*x1r*pow(xi2, 16) - 110347.724032402*x1r*pow(xi2, 15) - 184438.338739872*x1r*pow(xi2, 14) + 66208.6344194412*x1r*pow(xi2, 13) + 71726.0206210613*x1r*pow(xi2, 12) - 26082.1893167496*x1r*pow(xi2, 11) - 17848.8714909554*x1r*pow(xi2, 10) + 6610.69314479828*x1r*pow(xi2, 9) + 2692.71768182516*x1r*pow(xi2, 8) - 1025.79721212387*x1r*pow(xi2, 7) - 221.622854471207*x1r*pow(xi2, 6) + 88.6491417884827*x1r*pow(xi2, 5) + 7.97842276096344*x1r*pow(xi2, 4) - 3.54596567153931*x1r*pow(xi2, 3) - 0.06307053565979*x1r*pow(xi2, 2) + 0.0420470237731934*x1r*xi2; case 25: return -29445.042828083*x1r*pow(xi1, 25) + 10223.9732041955*x1r*pow(xi1, 24) + 179941.928393841*x1r*pow(xi1, 23) - 62707.0356523991*x1r*pow(xi1, 22) - 481240.041053295*x1r*pow(xi1, 21) + 168434.014368653*x1r*pow(xi1, 20) + 739466.404545307*x1r*pow(xi1, 19) - 260182.623821497*x1r*pow(xi1, 18) - 720505.727505684*x1r*pow(xi1, 17) + 255179.11182493*x1r*pow(xi1, 16) + 463460.440936089*x1r*pow(xi1, 15) - 165521.586048603*x1r*pow(xi1, 14) - 198625.903258324*x1r*pow(xi1, 13) + 71726.0206210613*x1r*pow(xi1, 12) + 55890.4056787491*x1r*pow(xi1, 11) - 20493.1487488747*x1r*pow(xi1, 10) - 9916.03971719742*x1r*pow(xi1, 9) + 3718.51489394903*x1r*pow(xi1, 8) + 1025.79721212387*x1r*pow(xi1, 7) - 398.921138048172*x1r*pow(xi1, 6) - 53.1894850730896*x1r*pow(xi1, 5) + 22.1622854471207*x1r*pow(xi1, 4) + 0.967081546783447*x1r*pow(xi1, 3) - 0.483540773391724*x1r*pow(xi1, 2) + 29445.042828083*x1r*pow(xi2, 25) - 10223.9732041955*x1r*pow(xi2, 24) - 179941.928393841*x1r*pow(xi2, 23) + 62707.0356523991*x1r*pow(xi2, 22) + 481240.041053295*x1r*pow(xi2, 21) - 168434.014368653*x1r*pow(xi2, 20) - 739466.404545307*x1r*pow(xi2, 19) + 260182.623821497*x1r*pow(xi2, 18) + 720505.727505684*x1r*pow(xi2, 17) - 255179.11182493*x1r*pow(xi2, 16) - 463460.440936089*x1r*pow(xi2, 15) + 165521.586048603*x1r*pow(xi2, 14) + 198625.903258324*x1r*pow(xi2, 13) - 71726.0206210613*x1r*pow(xi2, 12) - 55890.4056787491*x1r*pow(xi2, 11) + 20493.1487488747*x1r*pow(xi2, 10) + 9916.03971719742*x1r*pow(xi2, 9) - 3718.51489394903*x1r*pow(xi2, 8) - 1025.79721212387*x1r*pow(xi2, 7) + 398.921138048172*x1r*pow(xi2, 6) + 53.1894850730896*x1r*pow(xi2, 5) - 22.1622854471207*x1r*pow(xi2, 4) - 0.967081546783447*x1r*pow(xi2, 3) + 0.483540773391724*x1r*pow(xi2, 2); case 26: return -55445.3931458294*x1r*pow(xi1, 26) + 19221.0696238875*x1r*pow(xi1, 25) + 352727.075544745*x1r*pow(xi1, 24) - 122687.678450346*x1r*pow(xi1, 23) - 987635.811525285*x1r*pow(xi1, 22) + 344888.696088195*x1r*pow(xi1, 21) + 1600123.13650221*x1r*pow(xi1, 20) - 561446.714562178*x1r*pow(xi1, 19) - 1658664.22686204*x1r*pow(xi1, 18) + 585410.903598368*x1r*pow(xi1, 17) + 1148306.00321218*x1r*pow(xi1, 16) - 408286.578919888*x1r*pow(xi1, 15) - 537945.15465796*x1r*pow(xi1, 14) + 193108.517056704*x1r*pow(xi1, 13) + 169068.477178216*x1r*pow(xi1, 12) - 61479.446246624*x1r*pow(xi1, 11) - 34582.188513726*x1r*pow(xi1, 10) + 12808.2179680467*x1r*pow(xi1, 9) + 4338.26737627387*x1r*pow(xi1, 8) - 1652.67328619957*x1r*pow(xi1, 7) - 299.190853536129*x1r*pow(xi1, 6) + 119.676341414452*x1r*pow(xi1, 5) + 9.06638950109482*x1r*pow(xi1, 4) - 4.02950644493103*x1r*pow(xi1, 3) - 0.0604425966739655*x1r*pow(xi1, 2) + 0.0402950644493103*x1r*xi1 + 55445.3931458294*x1r*pow(xi2, 26) - 19221.0696238875*x1r*pow(xi2, 25) - 352727.075544745*x1r*pow(xi2, 24) + 122687.678450346*x1r*pow(xi2, 23) + 987635.811525285*x1r*pow(xi2, 22) - 344888.696088195*x1r*pow(xi2, 21) - 1600123.13650221*x1r*pow(xi2, 20) + 561446.714562178*x1r*pow(xi2, 19) + 1658664.22686204*x1r*pow(xi2, 18) - 585410.903598368*x1r*pow(xi2, 17) - 1148306.00321218*x1r*pow(xi2, 16) + 408286.578919888*x1r*pow(xi2, 15) + 537945.15465796*x1r*pow(xi2, 14) - 193108.517056704*x1r*pow(xi2, 13) - 169068.477178216*x1r*pow(xi2, 12) + 61479.446246624*x1r*pow(xi2, 11) + 34582.188513726*x1r*pow(xi2, 10) - 12808.2179680467*x1r*pow(xi2, 9) - 4338.26737627387*x1r*pow(xi2, 8) + 1652.67328619957*x1r*pow(xi2, 7) + 299.190853536129*x1r*pow(xi2, 6) - 119.676341414452*x1r*pow(xi2, 5) - 9.06638950109482*x1r*pow(xi2, 4) + 4.02950644493103*x1r*pow(xi2, 3) + 0.0604425966739655*x1r*pow(xi2, 2) - 0.0402950644493103*x1r*xi2; case 27: return -104648.045730054*x1r*pow(xi1, 27) + 36224.3235219419*x1r*pow(xi1, 26) + 691958.506459951*x1r*pow(xi1, 25) - 240263.370298594*x1r*pow(xi1, 24) - 2024346.69443071*x1r*pow(xi1, 23) + 705454.151089489*x1r*pow(xi1, 22) + 3448886.96088195*x1r*pow(xi1, 21) - 1207110.43630868*x1r*pow(xi1, 20) - 3789765.3232947*x1r*pow(xi1, 19) + 1333435.94708517*x1r*pow(xi1, 18) + 2809972.33727217*x1r*pow(xi1, 17) - 995198.536117226*x1r*pow(xi1, 16) - 1429003.02621961*x1r*pow(xi1, 15) + 510358.223649859*x1r*pow(xi1, 14) + 496564.758145809*x1r*pow(xi1, 13) - 179315.051552653*x1r*pow(xi1, 12) - 115273.96171242*x1r*pow(xi1, 11) + 42267.119294554*x1r*pow(xi1, 10) + 17077.6239573956*x1r*pow(xi1, 9) - 6404.10898402333*x1r*pow(xi1, 8) - 1487.40595757961*x1r*pow(xi1, 7) + 578.435650169849*x1r*pow(xi1, 6) + 65.2780044078827*x1r*pow(xi1, 5) - 27.1991685032845*x1r*pow(xi1, 4) - 1.00737661123276*x1r*pow(xi1, 3) + 0.503688305616379*x1r*pow(xi1, 2) + 104648.045730054*x1r*pow(xi2, 27) - 36224.3235219419*x1r*pow(xi2, 26) - 691958.506459951*x1r*pow(xi2, 25) + 240263.370298594*x1r*pow(xi2, 24) + 2024346.69443071*x1r*pow(xi2, 23) - 705454.151089489*x1r*pow(xi2, 22) - 3448886.96088195*x1r*pow(xi2, 21) + 1207110.43630868*x1r*pow(xi2, 20) + 3789765.3232947*x1r*pow(xi2, 19) - 1333435.94708517*x1r*pow(xi2, 18) - 2809972.33727217*x1r*pow(xi2, 17) + 995198.536117226*x1r*pow(xi2, 16) + 1429003.02621961*x1r*pow(xi2, 15) - 510358.223649859*x1r*pow(xi2, 14) - 496564.758145809*x1r*pow(xi2, 13) + 179315.051552653*x1r*pow(xi2, 12) + 115273.96171242*x1r*pow(xi2, 11) - 42267.119294554*x1r*pow(xi2, 10) - 17077.6239573956*x1r*pow(xi2, 9) + 6404.10898402333*x1r*pow(xi2, 8) + 1487.40595757961*x1r*pow(xi2, 7) - 578.435650169849*x1r*pow(xi2, 6) - 65.2780044078827*x1r*pow(xi2, 5) + 27.1991685032845*x1r*pow(xi2, 4) + 1.00737661123276*x1r*pow(xi2, 3) - 0.503688305616379*x1r*pow(xi2, 2); case 28: return -197940.053530611*x1r*pow(xi1, 28) + 68423.7222081125*x1r*pow(xi1, 27) + 1358412.13207282*x1r*pow(xi1, 26) - 470916.205785245*x1r*pow(xi1, 25) - 4144543.13765075*x1r*pow(xi1, 24) + 1441580.22179157*x1r*pow(xi1, 23) + 7407268.58643964*x1r*pow(xi1, 22) - 2586665.22066146*x1r*pow(xi1, 21) - 8600661.85869936*x1r*pow(xi1, 20) + 3017776.0907717*x1r*pow(xi1, 19) + 6800523.33013438*x1r*pow(xi1, 18) - 2400184.70475331*x1r*pow(xi1, 17) - 3731994.5104396*x1r*pow(xi1, 16) + 1326931.38148963*x1r*pow(xi1, 15) + 1421712.19445318*x1r*pow(xi1, 14) - 510358.223649859*x1r*pow(xi1, 13) - 369837.293827347*x1r*pow(xi1, 12) + 134486.28866449*x1r*pow(xi1, 11) + 63400.678941831*x1r*pow(xi1, 10) - 23481.7329414189*x1r*pow(xi1, 9) - 6724.3144332245*x1r*pow(xi1, 8) + 2561.64359360933*x1r*pow(xi1, 7) + 394.387943297625*x1r*pow(xi1, 6) - 157.75517731905*x1r*pow(xi1, 5) - 10.1996881887317*x1r*pow(xi1, 4) + 4.53319475054741*x1r*pow(xi1, 3) + 0.0581178814172745*x1r*pow(xi1, 2) - 0.038745254278183*x1r*xi1 + 197940.053530611*x1r*pow(xi2, 28) - 68423.7222081125*x1r*pow(xi2, 27) - 1358412.13207282*x1r*pow(xi2, 26) + 470916.205785245*x1r*pow(xi2, 25) + 4144543.13765075*x1r*pow(xi2, 24) - 1441580.22179157*x1r*pow(xi2, 23) - 7407268.58643964*x1r*pow(xi2, 22) + 2586665.22066146*x1r*pow(xi2, 21) + 8600661.85869936*x1r*pow(xi2, 20) - 3017776.0907717*x1r*pow(xi2, 19) - 6800523.33013438*x1r*pow(xi2, 18) + 2400184.70475331*x1r*pow(xi2, 17) + 3731994.5104396*x1r*pow(xi2, 16) - 1326931.38148963*x1r*pow(xi2, 15) - 1421712.19445318*x1r*pow(xi2, 14) + 510358.223649859*x1r*pow(xi2, 13) + 369837.293827347*x1r*pow(xi2, 12) - 134486.28866449*x1r*pow(xi2, 11) - 63400.678941831*x1r*pow(xi2, 10) + 23481.7329414189*x1r*pow(xi2, 9) + 6724.3144332245*x1r*pow(xi2, 8) - 2561.64359360933*x1r*pow(xi2, 7) - 394.387943297625*x1r*pow(xi2, 6) + 157.75517731905*x1r*pow(xi2, 5) + 10.1996881887317*x1r*pow(xi2, 4) - 4.53319475054741*x1r*pow(xi2, 3) - 0.0581178814172745*x1r*pow(xi2, 2) + 0.038745254278183*x1r*xi2; case 29: return -375150.752796203*x1r*pow(xi1, 29) + 129516.331322499*x1r*pow(xi1, 28) + 2668525.16611639*x1r*pow(xi1, 27) - 923720.249809518*x1r*pow(xi1, 26) - 8476491.7041344*x1r*pow(xi1, 25) + 2943226.28615778*x1r*pow(xi1, 24) + 15857382.4397072*x1r*pow(xi1, 23) - 5526057.51686767*x1r*pow(xi1, 22) - 19399989.154961*x1r*pow(xi1, 21) + 6789996.20423634*x1r*pow(xi1, 20) + 16295990.8901672*x1r*pow(xi1, 19) - 5733774.57246624*x1r*pow(xi1, 18) - 9600738.81901324*x1r*pow(xi1, 17) + 3400261.66506719*x1r*pow(xi1, 16) + 3980794.1444689*x1r*pow(xi1, 15) - 1421712.19445318*x1r*pow(xi1, 14) - 1148306.00321218*x1r*pow(xi1, 13) + 414666.056715511*x1r*pow(xi1, 12) + 224143.814440817*x1r*pow(xi1, 11) - 82186.0652949661*x1r*pow(xi1, 10) - 28178.0795297027*x1r*pow(xi1, 9) + 10566.7798236385*x1r*pow(xi1, 8) + 2095.89021295309*x1r*pow(xi1, 7) - 815.068416148424*x1r*pow(xi1, 6) - 78.8775886595249*x1r*pow(xi1, 5) + 32.8656619414687*x1r*pow(xi1, 4) + 1.04612186551094*x1r*pow(xi1, 3) - 0.52306093275547*x1r*pow(xi1, 2) + 375150.752796203*x1r*pow(xi2, 29) - 129516.331322499*x1r*pow(xi2, 28) - 2668525.16611639*x1r*pow(xi2, 27) + 923720.249809518*x1r*pow(xi2, 26) + 8476491.7041344*x1r*pow(xi2, 25) - 2943226.28615778*x1r*pow(xi2, 24) - 15857382.4397072*x1r*pow(xi2, 23) + 5526057.51686767*x1r*pow(xi2, 22) + 19399989.154961*x1r*pow(xi2, 21) - 6789996.20423634*x1r*pow(xi2, 20) - 16295990.8901672*x1r*pow(xi2, 19) + 5733774.57246624*x1r*pow(xi2, 18) + 9600738.81901324*x1r*pow(xi2, 17) - 3400261.66506719*x1r*pow(xi2, 16) - 3980794.1444689*x1r*pow(xi2, 15) + 1421712.19445318*x1r*pow(xi2, 14) + 1148306.00321218*x1r*pow(xi2, 13) - 414666.056715511*x1r*pow(xi2, 12) - 224143.814440817*x1r*pow(xi2, 11) + 82186.0652949661*x1r*pow(xi2, 10) + 28178.0795297027*x1r*pow(xi2, 9) - 10566.7798236385*x1r*pow(xi2, 8) - 2095.89021295309*x1r*pow(xi2, 7) + 815.068416148424*x1r*pow(xi2, 6) + 78.8775886595249*x1r*pow(xi2, 5) - 32.8656619414687*x1r*pow(xi2, 4) - 1.04612186551094*x1r*pow(xi2, 3) + 0.52306093275547*x1r*pow(xi2, 2); default: return 0.; } case 2: switch(j) { case 0: return 0.75*x2t*pow(xi1, 3)*y1t - 0.75*x2t*pow(xi2, 3)*y1t; case 1: return 0.375*x2t*pow(xi1, 3)*y1r - 0.1875*x2t*pow(xi1, 2)*y1r - 0.375*x2t*pow(xi2, 3)*y1r + 0.1875*x2t*pow(xi2, 2)*y1r; case 2: return -0.75*x2t*pow(xi1, 3)*y2t + 0.75*x2t*pow(xi2, 3)*y2t; case 3: return 0.375*x2t*pow(xi1, 3)*y2r + 0.1875*x2t*pow(xi1, 2)*y2r - 0.375*x2t*pow(xi2, 3)*y2r - 0.1875*x2t*pow(xi2, 2)*y2r; case 4: return 0.5625*x2t*pow(xi1, 4) - 0.375*x2t*pow(xi1, 2) - 0.5625*x2t*pow(xi2, 4) + 0.375*x2t*pow(xi2, 2); case 5: return 0.75*x2t*pow(xi1, 5) - 0.75*x2t*pow(xi1, 3) - 0.75*x2t*pow(xi2, 5) + 0.75*x2t*pow(xi2, 3); case 6: return 1.09375*x2t*pow(xi1, 6) - 1.40625*x2t*pow(xi1, 4) + 0.28125*x2t*pow(xi1, 2) - 1.09375*x2t*pow(xi2, 6) + 1.40625*x2t*pow(xi2, 4) - 0.28125*x2t*pow(xi2, 2); case 7: return 1.6875*x2t*pow(xi1, 7) - 2.625*x2t*pow(xi1, 5) + 0.9375*x2t*pow(xi1, 3) - 1.6875*x2t*pow(xi2, 7) + 2.625*x2t*pow(xi2, 5) - 0.9375*x2t*pow(xi2, 3); case 8: return 2.70703125*x2t*pow(xi1, 8) - 4.921875*x2t*pow(xi1, 6) + 2.4609375*x2t*pow(xi1, 4) - 0.234375*x2t*pow(xi1, 2) - 2.70703125*x2t*pow(xi2, 8) + 4.921875*x2t*pow(xi2, 6) - 2.4609375*x2t*pow(xi2, 4) + 0.234375*x2t*pow(xi2, 2); case 9: return 4.46875*x2t*pow(xi1, 9) - 9.28125*x2t*pow(xi1, 7) + 5.90625*x2t*pow(xi1, 5) - 1.09375*x2t*pow(xi1, 3) - 4.46875*x2t*pow(xi2, 9) + 9.28125*x2t*pow(xi2, 7) - 5.90625*x2t*pow(xi2, 5) + 1.09375*x2t*pow(xi2, 3); case 10: return 7.541015625*x2t*pow(xi1, 10) - 17.595703125*x2t*pow(xi1, 8) + 13.53515625*x2t*pow(xi1, 6) - 3.69140625*x2t*pow(xi1, 4) + 0.205078125*x2t*pow(xi1, 2) - 7.541015625*x2t*pow(xi2, 10) + 17.595703125*x2t*pow(xi2, 8) - 13.53515625*x2t*pow(xi2, 6) + 3.69140625*x2t*pow(xi2, 4) - 0.205078125*x2t*pow(xi2, 2); case 11: return 12.94921875*x2t*pow(xi1, 11) - 33.515625*x2t*pow(xi1, 9) + 30.1640625*x2t*pow(xi1, 7) - 10.828125*x2t*pow(xi1, 5) + 1.23046875*x2t*pow(xi1, 3) - 12.94921875*x2t*pow(xi2, 11) + 33.515625*x2t*pow(xi2, 9) - 30.1640625*x2t*pow(xi2, 7) + 10.828125*x2t*pow(xi2, 5) - 1.23046875*x2t*pow(xi2, 3); case 12: return 22.55322265625*x2t*pow(xi1, 12) - 64.0986328125*x2t*pow(xi1, 10) + 65.98388671875*x2t*pow(xi1, 8) - 29.326171875*x2t*pow(xi1, 6) + 5.07568359375*x2t*pow(xi1, 4) - 0.1845703125*x2t*pow(xi1, 2) - 22.55322265625*x2t*pow(xi2, 12) + 64.0986328125*x2t*pow(xi2, 10) - 65.98388671875*x2t*pow(xi2, 8) + 29.326171875*x2t*pow(xi2, 6) - 5.07568359375*x2t*pow(xi2, 4) + 0.1845703125*x2t*pow(xi2, 2); case 13: return 39.744140625*x2t*pow(xi1, 13) - 123.017578125*x2t*pow(xi1, 11) + 142.44140625*x2t*pow(xi1, 9) - 75.41015625*x2t*pow(xi1, 7) + 17.595703125*x2t*pow(xi1, 5) - 1.353515625*x2t*pow(xi1, 3) - 39.744140625*x2t*pow(xi2, 13) + 123.017578125*x2t*pow(xi2, 11) - 142.44140625*x2t*pow(xi2, 9) + 75.41015625*x2t*pow(xi2, 7) - 17.595703125*x2t*pow(xi2, 5) + 1.353515625*x2t*pow(xi2, 3); case 14: return 70.735107421875*x2t*pow(xi1, 14) - 236.808837890625*x2t*pow(xi1, 12) + 304.468505859375*x2t*pow(xi1, 10) - 186.954345703125*x2t*pow(xi1, 8) + 54.986572265625*x2t*pow(xi1, 6) - 6.598388671875*x2t*pow(xi1, 4) + 0.169189453125*x2t*pow(xi1, 2) - 70.735107421875*x2t*pow(xi2, 14) + 236.808837890625*x2t*pow(xi2, 12) - 304.468505859375*x2t*pow(xi2, 10) + 186.954345703125*x2t*pow(xi2, 8) - 54.986572265625*x2t*pow(xi2, 6) + 6.598388671875*x2t*pow(xi2, 4) - 0.169189453125*x2t*pow(xi2, 2); case 15: return 126.96044921875*x2t*pow(xi1, 15) - 457.0576171875*x2t*pow(xi1, 13) + 645.84228515625*x2t*pow(xi1, 11) - 451.064453125*x2t*pow(xi1, 9) + 160.24658203125*x2t*pow(xi1, 7) - 26.3935546875*x2t*pow(xi1, 5) + 1.46630859375*x2t*pow(xi1, 3) - 126.96044921875*x2t*pow(xi2, 15) + 457.0576171875*x2t*pow(xi2, 13) - 645.84228515625*x2t*pow(xi2, 11) + 451.064453125*x2t*pow(xi2, 9) - 160.24658203125*x2t*pow(xi2, 7) + 26.3935546875*x2t*pow(xi2, 5) - 1.46630859375*x2t*pow(xi2, 3); case 16: return 229.549026489258*x2t*pow(xi1, 16) - 884.188842773438*x2t*pow(xi1, 14) + 1361.65081787109*x2t*pow(xi1, 12) - 1065.63977050781*x2t*pow(xi1, 10) + 444.016571044922*x2t*pow(xi1, 8) - 93.4771728515625*x2t*pow(xi1, 6) + 8.24798583984375*x2t*pow(xi1, 4) - 0.1571044921875*x2t*pow(xi1, 2) - 229.549026489258*x2t*pow(xi2, 16) + 884.188842773438*x2t*pow(xi2, 14) - 1361.65081787109*x2t*pow(xi2, 12) + 1065.63977050781*x2t*pow(xi2, 10) - 444.016571044922*x2t*pow(xi2, 8) + 93.4771728515625*x2t*pow(xi2, 6) - 8.24798583984375*x2t*pow(xi2, 4) + 0.1571044921875*x2t*pow(xi2, 2); case 17: return 417.689208984375*x2t*pow(xi1, 17) - 1713.96606445313*x2t*pow(xi1, 15) + 2856.61010742188*x2t*pow(xi1, 13) - 2475.72875976563*x2t*pow(xi1, 11) + 1184.04418945313*x2t*pow(xi1, 9) - 304.468505859375*x2t*pow(xi1, 7) + 37.390869140625*x2t*pow(xi1, 5) - 1.571044921875*x2t*pow(xi1, 3) - 417.689208984375*x2t*pow(xi2, 17) + 1713.96606445313*x2t*pow(xi2, 15) - 2856.61010742188*x2t*pow(xi2, 13) + 2475.72875976563*x2t*pow(xi2, 11) - 1184.04418945313*x2t*pow(xi2, 9) + 304.468505859375*x2t*pow(xi2, 7) - 37.390869140625*x2t*pow(xi2, 5) + 1.571044921875*x2t*pow(xi2, 3); case 18: return 764.31324005127*x2t*pow(xi1, 18) - 3328.46088409424*x2t*pow(xi1, 16) + 5968.2746887207*x2t*pow(xi1, 14) - 5673.54507446289*x2t*pow(xi1, 12) + 3063.71434020996*x2t*pow(xi1, 10) - 932.434799194336*x2t*pow(xi1, 8) + 148.005523681641*x2t*pow(xi1, 6) - 10.0154113769531*x2t*pow(xi1, 4) + 0.147285461425781*x2t*pow(xi1, 2) - 764.31324005127*x2t*pow(xi2, 18) + 3328.46088409424*x2t*pow(xi2, 16) - 5968.2746887207*x2t*pow(xi2, 14) + 5673.54507446289*x2t*pow(xi2, 12) - 3063.71434020996*x2t*pow(xi2, 10) + 932.434799194336*x2t*pow(xi2, 8) - 148.005523681641*x2t*pow(xi2, 6) + 10.0154113769531*x2t*pow(xi2, 4) - 0.147285461425781*x2t*pow(xi2, 2); case 19: return 1405.57914733887*x2t*pow(xi1, 19) - 6474.18273925781*x2t*pow(xi1, 17) + 12426.2539672852*x2t*pow(xi1, 15) - 12854.7454833984*x2t*pow(xi1, 13) + 7736.65237426758*x2t*pow(xi1, 11) - 2723.30163574219*x2t*pow(xi1, 9) + 532.819885253906*x2t*pow(xi1, 7) - 50.7447509765625*x2t*pow(xi1, 5) + 1.66923522949219*x2t*pow(xi1, 3) - 1405.57914733887*x2t*pow(xi2, 19) + 6474.18273925781*x2t*pow(xi2, 17) - 12426.2539672852*x2t*pow(xi2, 15) + 12854.7454833984*x2t*pow(xi2, 13) - 7736.65237426758*x2t*pow(xi2, 11) + 2723.30163574219*x2t*pow(xi2, 9) - 532.819885253906*x2t*pow(xi2, 7) + 50.7447509765625*x2t*pow(xi2, 5) - 1.66923522949219*x2t*pow(xi2, 3); case 20: return 2596.41703605652*x2t*pow(xi1, 20) - 12611.1684608459*x2t*pow(xi1, 18) + 25795.5718517303*x2t*pow(xi1, 16) - 28846.6609954834*x2t*pow(xi1, 14) + 19148.2146263123*x2t*pow(xi1, 12) - 7659.2858505249*x2t*pow(xi1, 10) + 1787.16669845581*x2t*pow(xi1, 8) - 222.008285522461*x2t*pow(xi1, 6) + 11.8933010101318*x2t*pow(xi1, 4) - 0.139102935791016*x2t*pow(xi1, 2) - 2596.41703605652*x2t*pow(xi2, 20) + 12611.1684608459*x2t*pow(xi2, 18) - 25795.5718517303*x2t*pow(xi2, 16) + 28846.6609954834*x2t*pow(xi2, 14) - 19148.2146263123*x2t*pow(xi2, 12) + 7659.2858505249*x2t*pow(xi2, 10) - 1787.16669845581*x2t*pow(xi2, 8) + 222.008285522461*x2t*pow(xi2, 6) - 11.8933010101318*x2t*pow(xi2, 4) + 0.139102935791016*x2t*pow(xi2, 2); case 21: return 4815.41004180908*x2t*pow(xi1, 21) - 24597.6350784302*x2t*pow(xi1, 19) + 53412.007598877*x2t*pow(xi1, 17) - 64202.3121643066*x2t*pow(xi1, 15) + 46598.4523773193*x2t*pow(xi1, 13) - 20888.9614105225*x2t*pow(xi1, 11) + 5673.54507446289*x2t*pow(xi1, 9) - 875.346954345703*x2t*pow(xi1, 7) + 66.6024856567383*x2t*pow(xi1, 5) - 1.76197052001953*x2t*pow(xi1, 3) - 4815.41004180908*x2t*pow(xi2, 21) + 24597.6350784302*x2t*pow(xi2, 19) - 53412.007598877*x2t*pow(xi2, 17) + 64202.3121643066*x2t*pow(xi2, 15) - 46598.4523773193*x2t*pow(xi2, 13) + 20888.9614105225*x2t*pow(xi2, 11) - 5673.54507446289*x2t*pow(xi2, 9) + 875.346954345703*x2t*pow(xi2, 7) - 66.6024856567383*x2t*pow(xi2, 5) + 1.76197052001953*x2t*pow(xi2, 3); case 22: return 8963.22914600372*x2t*pow(xi1, 22) - 48033.7151670456*x2t*pow(xi1, 20) + 110347.724032402*x2t*pow(xi1, 18) - 141875.645184517*x2t*pow(xi1, 16) + 111780.811357498*x2t*pow(xi1, 14) - 55529.8224163055*x2t*pow(xi1, 12) + 17233.393163681*x2t*pow(xi1, 10) - 3191.36910438538*x2t*pow(xi1, 8) + 319.136910438538*x2t*pow(xi1, 6) - 13.8755178451538*x2t*pow(xi1, 4) + 0.132147789001465*x2t*pow(xi1, 2) - 8963.22914600372*x2t*pow(xi2, 22) + 48033.7151670456*x2t*pow(xi2, 20) - 110347.724032402*x2t*pow(xi2, 18) + 141875.645184517*x2t*pow(xi2, 16) - 111780.811357498*x2t*pow(xi2, 14) + 55529.8224163055*x2t*pow(xi2, 12) - 17233.393163681*x2t*pow(xi2, 10) + 3191.36910438538*x2t*pow(xi2, 8) - 319.136910438538*x2t*pow(xi2, 6) + 13.8755178451538*x2t*pow(xi2, 4) - 0.132147789001465*x2t*pow(xi2, 2); case 23: return 16738.7840366364*x2t*pow(xi1, 23) - 93900.4958152771*x2t*pow(xi1, 21) + 227528.124475479*x2t*pow(xi1, 19) - 311570.044326782*x2t*pow(xi1, 17) + 264834.537677765*x2t*pow(xi1, 15) - 144455.20236969*x2t*pow(xi1, 13) + 50481.6567420959*x2t*pow(xi1, 11) - 10941.8369293213*x2t*pow(xi1, 9) + 1367.72961616516*x2t*pow(xi1, 7) - 85.1031761169434*x2t*pow(xi1, 5) + 1.85006904602051*x2t*pow(xi1, 3) - 16738.7840366364*x2t*pow(xi2, 23) + 93900.4958152771*x2t*pow(xi2, 21) - 227528.124475479*x2t*pow(xi2, 19) + 311570.044326782*x2t*pow(xi2, 17) - 264834.537677765*x2t*pow(xi2, 15) + 144455.20236969*x2t*pow(xi2, 13) - 50481.6567420959*x2t*pow(xi2, 11) + 10941.8369293213*x2t*pow(xi2, 9) - 1367.72961616516*x2t*pow(xi2, 7) + 85.1031761169434*x2t*pow(xi2, 5) - 1.85006904602051*x2t*pow(xi2, 3); case 24: return 31353.5178261995*x2t*pow(xi1, 24) - 183746.197493076*x2t*pow(xi1, 22) + 468328.722878695*x2t*pow(xi1, 20) - 680477.631533146*x2t*pow(xi1, 18) + 620705.947682261*x2t*pow(xi1, 16) - 368876.677479744*x2t*pow(xi1, 14) + 143452.041242123*x2t*pow(xi1, 12) - 35697.7429819107*x2t*pow(xi1, 10) + 5385.43536365032*x2t*pow(xi1, 8) - 443.245708942413*x2t*pow(xi1, 6) + 15.9568455219269*x2t*pow(xi1, 4) - 0.12614107131958*x2t*pow(xi1, 2) - 31353.5178261995*x2t*pow(xi2, 24) + 183746.197493076*x2t*pow(xi2, 22) - 468328.722878695*x2t*pow(xi2, 20) + 680477.631533146*x2t*pow(xi2, 18) - 620705.947682261*x2t*pow(xi2, 16) + 368876.677479744*x2t*pow(xi2, 14) - 143452.041242123*x2t*pow(xi2, 12) + 35697.7429819107*x2t*pow(xi2, 10) - 5385.43536365032*x2t*pow(xi2, 8) + 443.245708942413*x2t*pow(xi2, 6) - 15.9568455219269*x2t*pow(xi2, 4) + 0.12614107131958*x2t*pow(xi2, 2); case 25: return 58890.0856561661*x2t*pow(xi1, 25) - 359883.856787682*x2t*pow(xi1, 23) + 962480.08210659*x2t*pow(xi1, 21) - 1478932.80909061*x2t*pow(xi1, 19) + 1441011.45501137*x2t*pow(xi1, 17) - 926920.881872177*x2t*pow(xi1, 15) + 397251.806516647*x2t*pow(xi1, 13) - 111780.811357498*x2t*pow(xi1, 11) + 19832.0794343948*x2t*pow(xi1, 9) - 2051.59442424774*x2t*pow(xi1, 7) + 106.378970146179*x2t*pow(xi1, 5) - 1.93416309356689*x2t*pow(xi1, 3) - 58890.0856561661*x2t*pow(xi2, 25) + 359883.856787682*x2t*pow(xi2, 23) - 962480.08210659*x2t*pow(xi2, 21) + 1478932.80909061*x2t*pow(xi2, 19) - 1441011.45501137*x2t*pow(xi2, 17) + 926920.881872177*x2t*pow(xi2, 15) - 397251.806516647*x2t*pow(xi2, 13) + 111780.811357498*x2t*pow(xi2, 11) - 19832.0794343948*x2t*pow(xi2, 9) + 2051.59442424774*x2t*pow(xi2, 7) - 106.378970146179*x2t*pow(xi2, 5) + 1.93416309356689*x2t*pow(xi2, 3); case 26: return 110890.786291659*x2t*pow(xi1, 26) - 705454.151089489*x2t*pow(xi1, 24) + 1975271.62305057*x2t*pow(xi1, 22) - 3200246.27300441*x2t*pow(xi1, 20) + 3317328.45372409*x2t*pow(xi1, 18) - 2296612.00642437*x2t*pow(xi1, 16) + 1075890.30931592*x2t*pow(xi1, 14) - 338136.954356432*x2t*pow(xi1, 12) + 69164.377027452*x2t*pow(xi1, 10) - 8676.53475254774*x2t*pow(xi1, 8) + 598.381707072258*x2t*pow(xi1, 6) - 18.1327790021896*x2t*pow(xi1, 4) + 0.120885193347931*x2t*pow(xi1, 2) - 110890.786291659*x2t*pow(xi2, 26) + 705454.151089489*x2t*pow(xi2, 24) - 1975271.62305057*x2t*pow(xi2, 22) + 3200246.27300441*x2t*pow(xi2, 20) - 3317328.45372409*x2t*pow(xi2, 18) + 2296612.00642437*x2t*pow(xi2, 16) - 1075890.30931592*x2t*pow(xi2, 14) + 338136.954356432*x2t*pow(xi2, 12) - 69164.377027452*x2t*pow(xi2, 10) + 8676.53475254774*x2t*pow(xi2, 8) - 598.381707072258*x2t*pow(xi2, 6) + 18.1327790021896*x2t*pow(xi2, 4) - 0.120885193347931*x2t*pow(xi2, 2); case 27: return 209296.091460109*x2t*pow(xi1, 27) - 1383917.0129199*x2t*pow(xi1, 25) + 4048693.38886142*x2t*pow(xi1, 23) - 6897773.9217639*x2t*pow(xi1, 21) + 7579530.6465894*x2t*pow(xi1, 19) - 5619944.67454433*x2t*pow(xi1, 17) + 2858006.05243921*x2t*pow(xi1, 15) - 993129.516291618*x2t*pow(xi1, 13) + 230547.92342484*x2t*pow(xi1, 11) - 34155.2479147911*x2t*pow(xi1, 9) + 2974.81191515923*x2t*pow(xi1, 7) - 130.556008815765*x2t*pow(xi1, 5) + 2.01475322246552*x2t*pow(xi1, 3) - 209296.091460109*x2t*pow(xi2, 27) + 1383917.0129199*x2t*pow(xi2, 25) - 4048693.38886142*x2t*pow(xi2, 23) + 6897773.9217639*x2t*pow(xi2, 21) - 7579530.6465894*x2t*pow(xi2, 19) + 5619944.67454433*x2t*pow(xi2, 17) - 2858006.05243921*x2t*pow(xi2, 15) + 993129.516291618*x2t*pow(xi2, 13) - 230547.92342484*x2t*pow(xi2, 11) + 34155.2479147911*x2t*pow(xi2, 9) - 2974.81191515923*x2t*pow(xi2, 7) + 130.556008815765*x2t*pow(xi2, 5) - 2.01475322246552*x2t*pow(xi2, 3); case 28: return 395880.107061222*x2t*pow(xi1, 28) - 2716824.26414564*x2t*pow(xi1, 26) + 8289086.2753015*x2t*pow(xi1, 24) - 14814537.1728793*x2t*pow(xi1, 22) + 17201323.7173987*x2t*pow(xi1, 20) - 13601046.6602688*x2t*pow(xi1, 18) + 7463989.02087919*x2t*pow(xi1, 16) - 2843424.38890636*x2t*pow(xi1, 14) + 739674.587654695*x2t*pow(xi1, 12) - 126801.357883662*x2t*pow(xi1, 10) + 13448.628866449*x2t*pow(xi1, 8) - 788.775886595249*x2t*pow(xi1, 6) + 20.3993763774633*x2t*pow(xi1, 4) - 0.116235762834549*x2t*pow(xi1, 2) - 395880.107061222*x2t*pow(xi2, 28) + 2716824.26414564*x2t*pow(xi2, 26) - 8289086.2753015*x2t*pow(xi2, 24) + 14814537.1728793*x2t*pow(xi2, 22) - 17201323.7173987*x2t*pow(xi2, 20) + 13601046.6602688*x2t*pow(xi2, 18) - 7463989.02087919*x2t*pow(xi2, 16) + 2843424.38890636*x2t*pow(xi2, 14) - 739674.587654695*x2t*pow(xi2, 12) + 126801.357883662*x2t*pow(xi2, 10) - 13448.628866449*x2t*pow(xi2, 8) + 788.775886595249*x2t*pow(xi2, 6) - 20.3993763774633*x2t*pow(xi2, 4) + 0.116235762834549*x2t*pow(xi2, 2); case 29: return 750301.505592406*x2t*pow(xi1, 29) - 5337050.33223277*x2t*pow(xi1, 27) + 16952983.4082688*x2t*pow(xi1, 25) - 31714764.8794144*x2t*pow(xi1, 23) + 38799978.3099219*x2t*pow(xi1, 21) - 32591981.7803344*x2t*pow(xi1, 19) + 19201477.6380265*x2t*pow(xi1, 17) - 7961588.28893781*x2t*pow(xi1, 15) + 2296612.00642437*x2t*pow(xi1, 13) - 448287.628881633*x2t*pow(xi1, 11) + 56356.1590594053*x2t*pow(xi1, 9) - 4191.78042590618*x2t*pow(xi1, 7) + 157.75517731905*x2t*pow(xi1, 5) - 2.09224373102188*x2t*pow(xi1, 3) - 750301.505592406*x2t*pow(xi2, 29) + 5337050.33223277*x2t*pow(xi2, 27) - 16952983.4082688*x2t*pow(xi2, 25) + 31714764.8794144*x2t*pow(xi2, 23) - 38799978.3099219*x2t*pow(xi2, 21) + 32591981.7803344*x2t*pow(xi2, 19) - 19201477.6380265*x2t*pow(xi2, 17) + 7961588.28893781*x2t*pow(xi2, 15) - 2296612.00642437*x2t*pow(xi2, 13) + 448287.628881633*x2t*pow(xi2, 11) - 56356.1590594053*x2t*pow(xi2, 9) + 4191.78042590618*x2t*pow(xi2, 7) - 157.75517731905*x2t*pow(xi2, 5) + 2.09224373102188*x2t*pow(xi2, 3); default: return 0.; } case 3: switch(j) { case 0: return -0.375*x2r*pow(xi1, 3)*y1t - 0.1875*x2r*pow(xi1, 2)*y1t + 0.375*x2r*pow(xi2, 3)*y1t + 0.1875*x2r*pow(xi2, 2)*y1t; case 1: return -0.1875*x2r*pow(xi1, 3)*y1r + 0.0625*x2r*xi1*y1r + 0.1875*x2r*pow(xi2, 3)*y1r - 0.0625*x2r*xi2*y1r; case 2: return 0.375*x2r*pow(xi1, 3)*y2t + 0.1875*x2r*pow(xi1, 2)*y2t - 0.375*x2r*pow(xi2, 3)*y2t - 0.1875*x2r*pow(xi2, 2)*y2t; case 3: return -0.1875*x2r*pow(xi1, 3)*y2r - 0.1875*x2r*pow(xi1, 2)*y2r - 0.0625*x2r*xi1*y2r + 0.1875*x2r*pow(xi2, 3)*y2r + 0.1875*x2r*pow(xi2, 2)*y2r + 0.0625*x2r*xi2*y2r; case 4: return -0.28125*x2r*pow(xi1, 4) - 0.125*x2r*pow(xi1, 3) + 0.1875*x2r*pow(xi1, 2) + 0.125*x2r*xi1 + 0.28125*x2r*pow(xi2, 4) + 0.125*x2r*pow(xi2, 3) - 0.1875*x2r*pow(xi2, 2) - 0.125*x2r*xi2; case 5: return -0.375*x2r*pow(xi1, 5) - 0.15625*x2r*pow(xi1, 4) + 0.375*x2r*pow(xi1, 3) + 0.1875*x2r*pow(xi1, 2) + 0.375*x2r*pow(xi2, 5) + 0.15625*x2r*pow(xi2, 4) - 0.375*x2r*pow(xi2, 3) - 0.1875*x2r*pow(xi2, 2); case 6: return -0.546875*x2r*pow(xi1, 6) - 0.21875*x2r*pow(xi1, 5) + 0.703125*x2r*pow(xi1, 4) + 0.3125*x2r*pow(xi1, 3) - 0.140625*x2r*pow(xi1, 2) - 0.09375*x2r*xi1 + 0.546875*x2r*pow(xi2, 6) + 0.21875*x2r*pow(xi2, 5) - 0.703125*x2r*pow(xi2, 4) - 0.3125*x2r*pow(xi2, 3) + 0.140625*x2r*pow(xi2, 2) + 0.09375*x2r*xi2; case 7: return -0.84375*x2r*pow(xi1, 7) - 0.328125*x2r*pow(xi1, 6) + 1.3125*x2r*pow(xi1, 5) + 0.546875*x2r*pow(xi1, 4) - 0.46875*x2r*pow(xi1, 3) - 0.234375*x2r*pow(xi1, 2) + 0.84375*x2r*pow(xi2, 7) + 0.328125*x2r*pow(xi2, 6) - 1.3125*x2r*pow(xi2, 5) - 0.546875*x2r*pow(xi2, 4) + 0.46875*x2r*pow(xi2, 3) + 0.234375*x2r*pow(xi2, 2); case 8: return -1.353515625*x2r*pow(xi1, 8) - 0.515625*x2r*pow(xi1, 7) + 2.4609375*x2r*pow(xi1, 6) + 0.984375*x2r*pow(xi1, 5) - 1.23046875*x2r*pow(xi1, 4) - 0.546875*x2r*pow(xi1, 3) + 0.1171875*x2r*pow(xi1, 2) + 0.078125*x2r*xi1 + 1.353515625*x2r*pow(xi2, 8) + 0.515625*x2r*pow(xi2, 7) - 2.4609375*x2r*pow(xi2, 6) - 0.984375*x2r*pow(xi2, 5) + 1.23046875*x2r*pow(xi2, 4) + 0.546875*x2r*pow(xi2, 3) - 0.1171875*x2r*pow(xi2, 2) - 0.078125*x2r*xi2; case 9: return -2.234375*x2r*pow(xi1, 9) - 0.837890625*x2r*pow(xi1, 8) + 4.640625*x2r*pow(xi1, 7) + 1.8046875*x2r*pow(xi1, 6) - 2.953125*x2r*pow(xi1, 5) - 1.23046875*x2r*pow(xi1, 4) + 0.546875*x2r*pow(xi1, 3) + 0.2734375*x2r*pow(xi1, 2) + 2.234375*x2r*pow(xi2, 9) + 0.837890625*x2r*pow(xi2, 8) - 4.640625*x2r*pow(xi2, 7) - 1.8046875*x2r*pow(xi2, 6) + 2.953125*x2r*pow(xi2, 5) + 1.23046875*x2r*pow(xi2, 4) - 0.546875*x2r*pow(xi2, 3) - 0.2734375*x2r*pow(xi2, 2); case 10: return -3.7705078125*x2r*pow(xi1, 10) - 1.396484375*x2r*pow(xi1, 9) + 8.7978515625*x2r*pow(xi1, 8) + 3.3515625*x2r*pow(xi1, 7) - 6.767578125*x2r*pow(xi1, 6) - 2.70703125*x2r*pow(xi1, 5) + 1.845703125*x2r*pow(xi1, 4) + 0.8203125*x2r*pow(xi1, 3) - 0.1025390625*x2r*pow(xi1, 2) - 0.068359375*x2r*xi1 + 3.7705078125*x2r*pow(xi2, 10) + 1.396484375*x2r*pow(xi2, 9) - 8.7978515625*x2r*pow(xi2, 8) - 3.3515625*x2r*pow(xi2, 7) + 6.767578125*x2r*pow(xi2, 6) + 2.70703125*x2r*pow(xi2, 5) - 1.845703125*x2r*pow(xi2, 4) - 0.8203125*x2r*pow(xi2, 3) + 0.1025390625*x2r*pow(xi2, 2) + 0.068359375*x2r*xi2; case 11: return -6.474609375*x2r*pow(xi1, 11) - 2.3740234375*x2r*pow(xi1, 10) + 16.7578125*x2r*pow(xi1, 9) + 6.2841796875*x2r*pow(xi1, 8) - 15.08203125*x2r*pow(xi1, 7) - 5.865234375*x2r*pow(xi1, 6) + 5.4140625*x2r*pow(xi1, 5) + 2.255859375*x2r*pow(xi1, 4) - 0.615234375*x2r*pow(xi1, 3) - 0.3076171875*x2r*pow(xi1, 2) + 6.474609375*x2r*pow(xi2, 11) + 2.3740234375*x2r*pow(xi2, 10) - 16.7578125*x2r*pow(xi2, 9) - 6.2841796875*x2r*pow(xi2, 8) + 15.08203125*x2r*pow(xi2, 7) + 5.865234375*x2r*pow(xi2, 6) - 5.4140625*x2r*pow(xi2, 5) - 2.255859375*x2r*pow(xi2, 4) + 0.615234375*x2r*pow(xi2, 3) + 0.3076171875*x2r*pow(xi2, 2); case 12: return -11.276611328125*x2r*pow(xi1, 12) - 4.1005859375*x2r*pow(xi1, 11) + 32.04931640625*x2r*pow(xi1, 10) + 11.8701171875*x2r*pow(xi1, 9) - 32.991943359375*x2r*pow(xi1, 8) - 12.568359375*x2r*pow(xi1, 7) + 14.6630859375*x2r*pow(xi1, 6) + 5.865234375*x2r*pow(xi1, 5) - 2.537841796875*x2r*pow(xi1, 4) - 1.1279296875*x2r*pow(xi1, 3) + 0.09228515625*x2r*pow(xi1, 2) + 0.0615234375*x2r*xi1 + 11.276611328125*x2r*pow(xi2, 12) + 4.1005859375*x2r*pow(xi2, 11) - 32.04931640625*x2r*pow(xi2, 10) - 11.8701171875*x2r*pow(xi2, 9) + 32.991943359375*x2r*pow(xi2, 8) + 12.568359375*x2r*pow(xi2, 7) - 14.6630859375*x2r*pow(xi2, 6) - 5.865234375*x2r*pow(xi2, 5) + 2.537841796875*x2r*pow(xi2, 4) + 1.1279296875*x2r*pow(xi2, 3) - 0.09228515625*x2r*pow(xi2, 2) - 0.0615234375*x2r*xi2; case 13: return -19.8720703125*x2r*pow(xi1, 13) - 7.176025390625*x2r*pow(xi1, 12) + 61.5087890625*x2r*pow(xi1, 11) + 22.55322265625*x2r*pow(xi1, 10) - 71.220703125*x2r*pow(xi1, 9) - 26.707763671875*x2r*pow(xi1, 8) + 37.705078125*x2r*pow(xi1, 7) + 14.6630859375*x2r*pow(xi1, 6) - 8.7978515625*x2r*pow(xi1, 5) - 3.665771484375*x2r*pow(xi1, 4) + 0.6767578125*x2r*pow(xi1, 3) + 0.33837890625*x2r*pow(xi1, 2) + 19.8720703125*x2r*pow(xi2, 13) + 7.176025390625*x2r*pow(xi2, 12) - 61.5087890625*x2r*pow(xi2, 11) - 22.55322265625*x2r*pow(xi2, 10) + 71.220703125*x2r*pow(xi2, 9) + 26.707763671875*x2r*pow(xi2, 8) - 37.705078125*x2r*pow(xi2, 7) - 14.6630859375*x2r*pow(xi2, 6) + 8.7978515625*x2r*pow(xi2, 5) + 3.665771484375*x2r*pow(xi2, 4) - 0.6767578125*x2r*pow(xi2, 3) - 0.33837890625*x2r*pow(xi2, 2); case 14: return -35.3675537109375*x2r*pow(xi1, 14) - 12.696044921875*x2r*pow(xi1, 13) + 118.404418945313*x2r*pow(xi1, 12) + 43.05615234375*x2r*pow(xi1, 11) - 152.234252929688*x2r*pow(xi1, 10) - 56.383056640625*x2r*pow(xi1, 9) + 93.4771728515625*x2r*pow(xi1, 8) + 35.6103515625*x2r*pow(xi1, 7) - 27.4932861328125*x2r*pow(xi1, 6) - 10.997314453125*x2r*pow(xi1, 5) + 3.2991943359375*x2r*pow(xi1, 4) + 1.46630859375*x2r*pow(xi1, 3) - 0.0845947265625*x2r*pow(xi1, 2) - 0.056396484375*x2r*xi1 + 35.3675537109375*x2r*pow(xi2, 14) + 12.696044921875*x2r*pow(xi2, 13) - 118.404418945313*x2r*pow(xi2, 12) - 43.05615234375*x2r*pow(xi2, 11) + 152.234252929688*x2r*pow(xi2, 10) + 56.383056640625*x2r*pow(xi2, 9) - 93.4771728515625*x2r*pow(xi2, 8) - 35.6103515625*x2r*pow(xi2, 7) + 27.4932861328125*x2r*pow(xi2, 6) + 10.997314453125*x2r*pow(xi2, 5) - 3.2991943359375*x2r*pow(xi2, 4) - 1.46630859375*x2r*pow(xi2, 3) + 0.0845947265625*x2r*pow(xi2, 2) + 0.056396484375*x2r*xi2; case 15: return -63.480224609375*x2r*pow(xi1, 15) - 22.6715087890625*x2r*pow(xi1, 14) + 228.52880859375*x2r*pow(xi1, 13) + 82.5242919921875*x2r*pow(xi1, 12) - 322.921142578125*x2r*pow(xi1, 11) - 118.404418945313*x2r*pow(xi1, 10) + 225.5322265625*x2r*pow(xi1, 9) + 84.5745849609375*x2r*pow(xi1, 8) - 80.123291015625*x2r*pow(xi1, 7) - 31.1590576171875*x2r*pow(xi1, 6) + 13.19677734375*x2r*pow(xi1, 5) + 5.4986572265625*x2r*pow(xi1, 4) - 0.733154296875*x2r*pow(xi1, 3) - 0.3665771484375*x2r*pow(xi1, 2) + 63.480224609375*x2r*pow(xi2, 15) + 22.6715087890625*x2r*pow(xi2, 14) - 228.52880859375*x2r*pow(xi2, 13) - 82.5242919921875*x2r*pow(xi2, 12) + 322.921142578125*x2r*pow(xi2, 11) + 118.404418945313*x2r*pow(xi2, 10) - 225.5322265625*x2r*pow(xi2, 9) - 84.5745849609375*x2r*pow(xi2, 8) + 80.123291015625*x2r*pow(xi2, 7) + 31.1590576171875*x2r*pow(xi2, 6) - 13.19677734375*x2r*pow(xi2, 5) - 5.4986572265625*x2r*pow(xi2, 4) + 0.733154296875*x2r*pow(xi2, 3) + 0.3665771484375*x2r*pow(xi2, 2); case 16: return -114.774513244629*x2r*pow(xi1, 16) - 40.8087158203125*x2r*pow(xi1, 15) + 442.094421386719*x2r*pow(xi1, 14) + 158.700561523438*x2r*pow(xi1, 13) - 680.825408935547*x2r*pow(xi1, 12) - 247.572875976563*x2r*pow(xi1, 11) + 532.819885253906*x2r*pow(xi1, 10) + 197.340698242188*x2r*pow(xi1, 9) - 222.008285522461*x2r*pow(xi1, 8) - 84.5745849609375*x2r*pow(xi1, 7) + 46.7385864257813*x2r*pow(xi1, 6) + 18.6954345703125*x2r*pow(xi1, 5) - 4.12399291992188*x2r*pow(xi1, 4) - 1.8328857421875*x2r*pow(xi1, 3) + 0.07855224609375*x2r*pow(xi1, 2) + 0.0523681640625*x2r*xi1 + 114.774513244629*x2r*pow(xi2, 16) + 40.8087158203125*x2r*pow(xi2, 15) - 442.094421386719*x2r*pow(xi2, 14) - 158.700561523438*x2r*pow(xi2, 13) + 680.825408935547*x2r*pow(xi2, 12) + 247.572875976563*x2r*pow(xi2, 11) - 532.819885253906*x2r*pow(xi2, 10) - 197.340698242188*x2r*pow(xi2, 9) + 222.008285522461*x2r*pow(xi2, 8) + 84.5745849609375*x2r*pow(xi2, 7) - 46.7385864257813*x2r*pow(xi2, 6) - 18.6954345703125*x2r*pow(xi2, 5) + 4.12399291992188*x2r*pow(xi2, 4) + 1.8328857421875*x2r*pow(xi2, 3) - 0.07855224609375*x2r*pow(xi2, 2) - 0.0523681640625*x2r*xi2; case 17: return -208.844604492188*x2r*pow(xi1, 17) - 73.9657974243164*x2r*pow(xi1, 16) + 856.983032226563*x2r*pow(xi1, 15) + 306.065368652344*x2r*pow(xi1, 14) - 1428.30505371094*x2r*pow(xi1, 13) - 515.776824951172*x2r*pow(xi1, 12) + 1237.86437988281*x2r*pow(xi1, 11) + 453.883605957031*x2r*pow(xi1, 10) - 592.022094726563*x2r*pow(xi1, 9) - 222.008285522461*x2r*pow(xi1, 8) + 152.234252929688*x2r*pow(xi1, 7) + 59.2022094726563*x2r*pow(xi1, 6) - 18.6954345703125*x2r*pow(xi1, 5) - 7.78976440429688*x2r*pow(xi1, 4) + 0.7855224609375*x2r*pow(xi1, 3) + 0.39276123046875*x2r*pow(xi1, 2) + 208.844604492188*x2r*pow(xi2, 17) + 73.9657974243164*x2r*pow(xi2, 16) - 856.983032226563*x2r*pow(xi2, 15) - 306.065368652344*x2r*pow(xi2, 14) + 1428.30505371094*x2r*pow(xi2, 13) + 515.776824951172*x2r*pow(xi2, 12) - 1237.86437988281*x2r*pow(xi2, 11) - 453.883605957031*x2r*pow(xi2, 10) + 592.022094726563*x2r*pow(xi2, 9) + 222.008285522461*x2r*pow(xi2, 8) - 152.234252929688*x2r*pow(xi2, 7) - 59.2022094726563*x2r*pow(xi2, 6) + 18.6954345703125*x2r*pow(xi2, 5) + 7.78976440429688*x2r*pow(xi2, 4) - 0.7855224609375*x2r*pow(xi2, 3) - 0.39276123046875*x2r*pow(xi2, 2); case 18: return -382.156620025635*x2r*pow(xi1, 18) - 134.878807067871*x2r*pow(xi1, 17) + 1664.23044204712*x2r*pow(xi1, 16) + 591.726379394531*x2r*pow(xi1, 15) - 2984.13734436035*x2r*pow(xi1, 14) - 1071.2287902832*x2r*pow(xi1, 13) + 2836.77253723145*x2r*pow(xi1, 12) + 1031.55364990234*x2r*pow(xi1, 11) - 1531.85717010498*x2r*pow(xi1, 10) - 567.354507446289*x2r*pow(xi1, 9) + 466.217399597168*x2r*pow(xi1, 8) + 177.606628417969*x2r*pow(xi1, 7) - 74.0027618408203*x2r*pow(xi1, 6) - 29.6011047363281*x2r*pow(xi1, 5) + 5.00770568847656*x2r*pow(xi1, 4) + 2.22564697265625*x2r*pow(xi1, 3) - 0.0736427307128906*x2r*pow(xi1, 2) - 0.0490951538085938*x2r*xi1 + 382.156620025635*x2r*pow(xi2, 18) + 134.878807067871*x2r*pow(xi2, 17) - 1664.23044204712*x2r*pow(xi2, 16) - 591.726379394531*x2r*pow(xi2, 15) + 2984.13734436035*x2r*pow(xi2, 14) + 1071.2287902832*x2r*pow(xi2, 13) - 2836.77253723145*x2r*pow(xi2, 12) - 1031.55364990234*x2r*pow(xi2, 11) + 1531.85717010498*x2r*pow(xi2, 10) + 567.354507446289*x2r*pow(xi2, 9) - 466.217399597168*x2r*pow(xi2, 8) - 177.606628417969*x2r*pow(xi2, 7) + 74.0027618408203*x2r*pow(xi2, 6) + 29.6011047363281*x2r*pow(xi2, 5) - 5.00770568847656*x2r*pow(xi2, 4) - 2.22564697265625*x2r*pow(xi2, 3) + 0.0736427307128906*x2r*pow(xi2, 2) + 0.0490951538085938*x2r*xi2; case 19: return -702.789573669434*x2r*pow(xi1, 19) - 247.277812957764*x2r*pow(xi1, 18) + 3237.09136962891*x2r*pow(xi1, 17) + 1146.4698600769*x2r*pow(xi1, 16) - 6213.12698364258*x2r*pow(xi1, 15) - 2218.97392272949*x2r*pow(xi1, 14) + 6427.37274169922*x2r*pow(xi1, 13) + 2320.99571228027*x2r*pow(xi1, 12) - 3868.32618713379*x2r*pow(xi1, 11) - 1418.38626861572*x2r*pow(xi1, 10) + 1361.65081787109*x2r*pow(xi1, 9) + 510.61905670166*x2r*pow(xi1, 8) - 266.409942626953*x2r*pow(xi1, 7) - 103.603866577148*x2r*pow(xi1, 6) + 25.3723754882813*x2r*pow(xi1, 5) + 10.5718231201172*x2r*pow(xi1, 4) - 0.834617614746094*x2r*pow(xi1, 3) - 0.417308807373047*x2r*pow(xi1, 2) + 702.789573669434*x2r*pow(xi2, 19) + 247.277812957764*x2r*pow(xi2, 18) - 3237.09136962891*x2r*pow(xi2, 17) - 1146.4698600769*x2r*pow(xi2, 16) + 6213.12698364258*x2r*pow(xi2, 15) + 2218.97392272949*x2r*pow(xi2, 14) - 6427.37274169922*x2r*pow(xi2, 13) - 2320.99571228027*x2r*pow(xi2, 12) + 3868.32618713379*x2r*pow(xi2, 11) + 1418.38626861572*x2r*pow(xi2, 10) - 1361.65081787109*x2r*pow(xi2, 9) - 510.61905670166*x2r*pow(xi2, 8) + 266.409942626953*x2r*pow(xi2, 7) + 103.603866577148*x2r*pow(xi2, 6) - 25.3723754882813*x2r*pow(xi2, 5) - 10.5718231201172*x2r*pow(xi2, 4) + 0.834617614746094*x2r*pow(xi2, 3) + 0.417308807373047*x2r*pow(xi2, 2); case 20: return -1298.20851802826*x2r*pow(xi1, 20) - 455.51176071167*x2r*pow(xi1, 19) + 6305.58423042297*x2r*pow(xi1, 18) + 2225.50031661987*x2r*pow(xi1, 17) - 12897.7859258652*x2r*pow(xi1, 16) - 4585.87944030762*x2r*pow(xi1, 15) + 14423.3304977417*x2r*pow(xi1, 14) + 5177.60581970215*x2r*pow(xi1, 13) - 9574.10731315613*x2r*pow(xi1, 12) - 3481.49356842041*x2r*pow(xi1, 11) + 3829.64292526245*x2r*pow(xi1, 10) + 1418.38626861572*x2r*pow(xi1, 9) - 893.583349227905*x2r*pow(xi1, 8) - 340.412704467773*x2r*pow(xi1, 7) + 111.00414276123*x2r*pow(xi1, 6) + 44.4016571044922*x2r*pow(xi1, 5) - 5.94665050506592*x2r*pow(xi1, 4) - 2.6429557800293*x2r*pow(xi1, 3) + 0.0695514678955078*x2r*pow(xi1, 2) + 0.0463676452636719*x2r*xi1 + 1298.20851802826*x2r*pow(xi2, 20) + 455.51176071167*x2r*pow(xi2, 19) - 6305.58423042297*x2r*pow(xi2, 18) - 2225.50031661987*x2r*pow(xi2, 17) + 12897.7859258652*x2r*pow(xi2, 16) + 4585.87944030762*x2r*pow(xi2, 15) - 14423.3304977417*x2r*pow(xi2, 14) - 5177.60581970215*x2r*pow(xi2, 13) + 9574.10731315613*x2r*pow(xi2, 12) + 3481.49356842041*x2r*pow(xi2, 11) - 3829.64292526245*x2r*pow(xi2, 10) - 1418.38626861572*x2r*pow(xi2, 9) + 893.583349227905*x2r*pow(xi2, 8) + 340.412704467773*x2r*pow(xi2, 7) - 111.00414276123*x2r*pow(xi2, 6) - 44.4016571044922*x2r*pow(xi2, 5) + 5.94665050506592*x2r*pow(xi2, 4) + 2.6429557800293*x2r*pow(xi2, 3) - 0.0695514678955078*x2r*pow(xi2, 2) - 0.0463676452636719*x2r*xi2; case 21: return -2407.70502090454*x2r*pow(xi1, 21) - 842.696757316589*x2r*pow(xi1, 20) + 12298.8175392151*x2r*pow(xi1, 19) + 4327.36172676086*x2r*pow(xi1, 18) - 26706.0037994385*x2r*pow(xi1, 17) - 9458.37634563446*x2r*pow(xi1, 16) + 32101.1560821533*x2r*pow(xi1, 15) + 11464.698600769*x2r*pow(xi1, 14) - 23299.2261886597*x2r*pow(xi1, 13) - 8413.60945701599*x2r*pow(xi1, 12) + 10444.4807052612*x2r*pow(xi1, 11) + 3829.64292526245*x2r*pow(xi1, 10) - 2836.77253723145*x2r*pow(xi1, 9) - 1063.78970146179*x2r*pow(xi1, 8) + 437.673477172852*x2r*pow(xi1, 7) + 170.206352233887*x2r*pow(xi1, 6) - 33.3012428283691*x2r*pow(xi1, 5) - 13.8755178451538*x2r*pow(xi1, 4) + 0.880985260009766*x2r*pow(xi1, 3) + 0.440492630004883*x2r*pow(xi1, 2) + 2407.70502090454*x2r*pow(xi2, 21) + 842.696757316589*x2r*pow(xi2, 20) - 12298.8175392151*x2r*pow(xi2, 19) - 4327.36172676086*x2r*pow(xi2, 18) + 26706.0037994385*x2r*pow(xi2, 17) + 9458.37634563446*x2r*pow(xi2, 16) - 32101.1560821533*x2r*pow(xi2, 15) - 11464.698600769*x2r*pow(xi2, 14) + 23299.2261886597*x2r*pow(xi2, 13) + 8413.60945701599*x2r*pow(xi2, 12) - 10444.4807052612*x2r*pow(xi2, 11) - 3829.64292526245*x2r*pow(xi2, 10) + 2836.77253723145*x2r*pow(xi2, 9) + 1063.78970146179*x2r*pow(xi2, 8) - 437.673477172852*x2r*pow(xi2, 7) - 170.206352233887*x2r*pow(xi2, 6) + 33.3012428283691*x2r*pow(xi2, 5) + 13.8755178451538*x2r*pow(xi2, 4) - 0.880985260009766*x2r*pow(xi2, 3) - 0.440492630004883*x2r*pow(xi2, 2); case 22: return -4481.61457300186*x2r*pow(xi1, 22) - 1565.00826358795*x2r*pow(xi1, 21) + 24016.8575835228*x2r*pow(xi1, 20) + 8426.96757316589*x2r*pow(xi1, 19) - 55173.862016201*x2r*pow(xi1, 18) - 19473.1277704239*x2r*pow(xi1, 17) + 70937.8225922585*x2r*pow(xi1, 16) + 25222.3369216919*x2r*pow(xi1, 15) - 55890.4056787491*x2r*pow(xi1, 14) - 20063.2225513458*x2r*pow(xi1, 13) + 27764.9112081528*x2r*pow(xi1, 12) + 10096.3313484192*x2r*pow(xi1, 11) - 8616.69658184052*x2r*pow(xi1, 10) - 3191.36910438538*x2r*pow(xi1, 9) + 1595.68455219269*x2r*pow(xi1, 8) + 607.879829406738*x2r*pow(xi1, 7) - 159.568455219269*x2r*pow(xi1, 6) - 63.8273820877075*x2r*pow(xi1, 5) + 6.9377589225769*x2r*pow(xi1, 4) + 3.08344841003418*x2r*pow(xi1, 3) - 0.0660738945007324*x2r*pow(xi1, 2) - 0.0440492630004883*x2r*xi1 + 4481.61457300186*x2r*pow(xi2, 22) + 1565.00826358795*x2r*pow(xi2, 21) - 24016.8575835228*x2r*pow(xi2, 20) - 8426.96757316589*x2r*pow(xi2, 19) + 55173.862016201*x2r*pow(xi2, 18) + 19473.1277704239*x2r*pow(xi2, 17) - 70937.8225922585*x2r*pow(xi2, 16) - 25222.3369216919*x2r*pow(xi2, 15) + 55890.4056787491*x2r*pow(xi2, 14) + 20063.2225513458*x2r*pow(xi2, 13) - 27764.9112081528*x2r*pow(xi2, 12) - 10096.3313484192*x2r*pow(xi2, 11) + 8616.69658184052*x2r*pow(xi2, 10) + 3191.36910438538*x2r*pow(xi2, 9) - 1595.68455219269*x2r*pow(xi2, 8) - 607.879829406738*x2r*pow(xi2, 7) + 159.568455219269*x2r*pow(xi2, 6) + 63.8273820877075*x2r*pow(xi2, 5) - 6.9377589225769*x2r*pow(xi2, 4) - 3.08344841003418*x2r*pow(xi2, 3) + 0.0660738945007324*x2r*pow(xi2, 2) + 0.0440492630004883*x2r*xi2; case 23: return -8369.39201831818*x2r*pow(xi1, 23) - 2916.60630941391*x2r*pow(xi1, 22) + 46950.2479076385*x2r*pow(xi1, 21) + 16432.5867676735*x2r*pow(xi1, 20) - 113764.06223774*x2r*pow(xi1, 19) - 40028.095972538*x2r*pow(xi1, 18) + 155785.022163391*x2r*pow(xi1, 17) + 55173.862016201*x2r*pow(xi1, 16) - 132417.268838882*x2r*pow(xi1, 15) - 47291.8817281723*x2r*pow(xi1, 14) + 72227.601184845*x2r*pow(xi1, 13) + 26082.1893167496*x2r*pow(xi1, 12) - 25240.828371048*x2r*pow(xi1, 11) - 9254.97040271759*x2r*pow(xi1, 10) + 5470.91846466064*x2r*pow(xi1, 9) + 2051.59442424774*x2r*pow(xi1, 8) - 683.864808082581*x2r*pow(xi1, 7) - 265.947425365448*x2r*pow(xi1, 6) + 42.5515880584717*x2r*pow(xi1, 5) + 17.7298283576965*x2r*pow(xi1, 4) - 0.925034523010254*x2r*pow(xi1, 3) - 0.462517261505127*x2r*pow(xi1, 2) + 8369.39201831818*x2r*pow(xi2, 23) + 2916.60630941391*x2r*pow(xi2, 22) - 46950.2479076385*x2r*pow(xi2, 21) - 16432.5867676735*x2r*pow(xi2, 20) + 113764.06223774*x2r*pow(xi2, 19) + 40028.095972538*x2r*pow(xi2, 18) - 155785.022163391*x2r*pow(xi2, 17) - 55173.862016201*x2r*pow(xi2, 16) + 132417.268838882*x2r*pow(xi2, 15) + 47291.8817281723*x2r*pow(xi2, 14) - 72227.601184845*x2r*pow(xi2, 13) - 26082.1893167496*x2r*pow(xi2, 12) + 25240.828371048*x2r*pow(xi2, 11) + 9254.97040271759*x2r*pow(xi2, 10) - 5470.91846466064*x2r*pow(xi2, 9) - 2051.59442424774*x2r*pow(xi2, 8) + 683.864808082581*x2r*pow(xi2, 7) + 265.947425365448*x2r*pow(xi2, 6) - 42.5515880584717*x2r*pow(xi2, 5) - 17.7298283576965*x2r*pow(xi2, 4) + 0.925034523010254*x2r*pow(xi2, 3) + 0.462517261505127*x2r*pow(xi2, 2); case 24: return -15676.7589130998*x2r*pow(xi1, 24) - 5452.78570890427*x2r*pow(xi1, 23) + 91873.0987465382*x2r*pow(xi1, 22) + 32082.669403553*x2r*pow(xi1, 21) - 234164.361439347*x2r*pow(xi1, 20) - 82162.9338383675*x2r*pow(xi1, 19) + 340238.815766573*x2r*pow(xi1, 18) + 120084.287917614*x2r*pow(xi1, 17) - 310352.973841131*x2r*pow(xi1, 16) - 110347.724032402*x2r*pow(xi1, 15) + 184438.338739872*x2r*pow(xi1, 14) + 66208.6344194412*x2r*pow(xi1, 13) - 71726.0206210613*x2r*pow(xi1, 12) - 26082.1893167496*x2r*pow(xi1, 11) + 17848.8714909554*x2r*pow(xi1, 10) + 6610.69314479828*x2r*pow(xi1, 9) - 2692.71768182516*x2r*pow(xi1, 8) - 1025.79721212387*x2r*pow(xi1, 7) + 221.622854471207*x2r*pow(xi1, 6) + 88.6491417884827*x2r*pow(xi1, 5) - 7.97842276096344*x2r*pow(xi1, 4) - 3.54596567153931*x2r*pow(xi1, 3) + 0.06307053565979*x2r*pow(xi1, 2) + 0.0420470237731934*x2r*xi1 + 15676.7589130998*x2r*pow(xi2, 24) + 5452.78570890427*x2r*pow(xi2, 23) - 91873.0987465382*x2r*pow(xi2, 22) - 32082.669403553*x2r*pow(xi2, 21) + 234164.361439347*x2r*pow(xi2, 20) + 82162.9338383675*x2r*pow(xi2, 19) - 340238.815766573*x2r*pow(xi2, 18) - 120084.287917614*x2r*pow(xi2, 17) + 310352.973841131*x2r*pow(xi2, 16) + 110347.724032402*x2r*pow(xi2, 15) - 184438.338739872*x2r*pow(xi2, 14) - 66208.6344194412*x2r*pow(xi2, 13) + 71726.0206210613*x2r*pow(xi2, 12) + 26082.1893167496*x2r*pow(xi2, 11) - 17848.8714909554*x2r*pow(xi2, 10) - 6610.69314479828*x2r*pow(xi2, 9) + 2692.71768182516*x2r*pow(xi2, 8) + 1025.79721212387*x2r*pow(xi2, 7) - 221.622854471207*x2r*pow(xi2, 6) - 88.6491417884827*x2r*pow(xi2, 5) + 7.97842276096344*x2r*pow(xi2, 4) + 3.54596567153931*x2r*pow(xi2, 3) - 0.06307053565979*x2r*pow(xi2, 2) - 0.0420470237731934*x2r*xi2; case 25: return -29445.042828083*x2r*pow(xi1, 25) - 10223.9732041955*x2r*pow(xi1, 24) + 179941.928393841*x2r*pow(xi1, 23) + 62707.0356523991*x2r*pow(xi1, 22) - 481240.041053295*x2r*pow(xi1, 21) - 168434.014368653*x2r*pow(xi1, 20) + 739466.404545307*x2r*pow(xi1, 19) + 260182.623821497*x2r*pow(xi1, 18) - 720505.727505684*x2r*pow(xi1, 17) - 255179.11182493*x2r*pow(xi1, 16) + 463460.440936089*x2r*pow(xi1, 15) + 165521.586048603*x2r*pow(xi1, 14) - 198625.903258324*x2r*pow(xi1, 13) - 71726.0206210613*x2r*pow(xi1, 12) + 55890.4056787491*x2r*pow(xi1, 11) + 20493.1487488747*x2r*pow(xi1, 10) - 9916.03971719742*x2r*pow(xi1, 9) - 3718.51489394903*x2r*pow(xi1, 8) + 1025.79721212387*x2r*pow(xi1, 7) + 398.921138048172*x2r*pow(xi1, 6) - 53.1894850730896*x2r*pow(xi1, 5) - 22.1622854471207*x2r*pow(xi1, 4) + 0.967081546783447*x2r*pow(xi1, 3) + 0.483540773391724*x2r*pow(xi1, 2) + 29445.042828083*x2r*pow(xi2, 25) + 10223.9732041955*x2r*pow(xi2, 24) - 179941.928393841*x2r*pow(xi2, 23) - 62707.0356523991*x2r*pow(xi2, 22) + 481240.041053295*x2r*pow(xi2, 21) + 168434.014368653*x2r*pow(xi2, 20) - 739466.404545307*x2r*pow(xi2, 19) - 260182.623821497*x2r*pow(xi2, 18) + 720505.727505684*x2r*pow(xi2, 17) + 255179.11182493*x2r*pow(xi2, 16) - 463460.440936089*x2r*pow(xi2, 15) - 165521.586048603*x2r*pow(xi2, 14) + 198625.903258324*x2r*pow(xi2, 13) + 71726.0206210613*x2r*pow(xi2, 12) - 55890.4056787491*x2r*pow(xi2, 11) - 20493.1487488747*x2r*pow(xi2, 10) + 9916.03971719742*x2r*pow(xi2, 9) + 3718.51489394903*x2r*pow(xi2, 8) - 1025.79721212387*x2r*pow(xi2, 7) - 398.921138048172*x2r*pow(xi2, 6) + 53.1894850730896*x2r*pow(xi2, 5) + 22.1622854471207*x2r*pow(xi2, 4) - 0.967081546783447*x2r*pow(xi2, 3) - 0.483540773391724*x2r*pow(xi2, 2); case 26: return -55445.3931458294*x2r*pow(xi1, 26) - 19221.0696238875*x2r*pow(xi1, 25) + 352727.075544745*x2r*pow(xi1, 24) + 122687.678450346*x2r*pow(xi1, 23) - 987635.811525285*x2r*pow(xi1, 22) - 344888.696088195*x2r*pow(xi1, 21) + 1600123.13650221*x2r*pow(xi1, 20) + 561446.714562178*x2r*pow(xi1, 19) - 1658664.22686204*x2r*pow(xi1, 18) - 585410.903598368*x2r*pow(xi1, 17) + 1148306.00321218*x2r*pow(xi1, 16) + 408286.578919888*x2r*pow(xi1, 15) - 537945.15465796*x2r*pow(xi1, 14) - 193108.517056704*x2r*pow(xi1, 13) + 169068.477178216*x2r*pow(xi1, 12) + 61479.446246624*x2r*pow(xi1, 11) - 34582.188513726*x2r*pow(xi1, 10) - 12808.2179680467*x2r*pow(xi1, 9) + 4338.26737627387*x2r*pow(xi1, 8) + 1652.67328619957*x2r*pow(xi1, 7) - 299.190853536129*x2r*pow(xi1, 6) - 119.676341414452*x2r*pow(xi1, 5) + 9.06638950109482*x2r*pow(xi1, 4) + 4.02950644493103*x2r*pow(xi1, 3) - 0.0604425966739655*x2r*pow(xi1, 2) - 0.0402950644493103*x2r*xi1 + 55445.3931458294*x2r*pow(xi2, 26) + 19221.0696238875*x2r*pow(xi2, 25) - 352727.075544745*x2r*pow(xi2, 24) - 122687.678450346*x2r*pow(xi2, 23) + 987635.811525285*x2r*pow(xi2, 22) + 344888.696088195*x2r*pow(xi2, 21) - 1600123.13650221*x2r*pow(xi2, 20) - 561446.714562178*x2r*pow(xi2, 19) + 1658664.22686204*x2r*pow(xi2, 18) + 585410.903598368*x2r*pow(xi2, 17) - 1148306.00321218*x2r*pow(xi2, 16) - 408286.578919888*x2r*pow(xi2, 15) + 537945.15465796*x2r*pow(xi2, 14) + 193108.517056704*x2r*pow(xi2, 13) - 169068.477178216*x2r*pow(xi2, 12) - 61479.446246624*x2r*pow(xi2, 11) + 34582.188513726*x2r*pow(xi2, 10) + 12808.2179680467*x2r*pow(xi2, 9) - 4338.26737627387*x2r*pow(xi2, 8) - 1652.67328619957*x2r*pow(xi2, 7) + 299.190853536129*x2r*pow(xi2, 6) + 119.676341414452*x2r*pow(xi2, 5) - 9.06638950109482*x2r*pow(xi2, 4) - 4.02950644493103*x2r*pow(xi2, 3) + 0.0604425966739655*x2r*pow(xi2, 2) + 0.0402950644493103*x2r*xi2; case 27: return -104648.045730054*x2r*pow(xi1, 27) - 36224.3235219419*x2r*pow(xi1, 26) + 691958.506459951*x2r*pow(xi1, 25) + 240263.370298594*x2r*pow(xi1, 24) - 2024346.69443071*x2r*pow(xi1, 23) - 705454.151089489*x2r*pow(xi1, 22) + 3448886.96088195*x2r*pow(xi1, 21) + 1207110.43630868*x2r*pow(xi1, 20) - 3789765.3232947*x2r*pow(xi1, 19) - 1333435.94708517*x2r*pow(xi1, 18) + 2809972.33727217*x2r*pow(xi1, 17) + 995198.536117226*x2r*pow(xi1, 16) - 1429003.02621961*x2r*pow(xi1, 15) - 510358.223649859*x2r*pow(xi1, 14) + 496564.758145809*x2r*pow(xi1, 13) + 179315.051552653*x2r*pow(xi1, 12) - 115273.96171242*x2r*pow(xi1, 11) - 42267.119294554*x2r*pow(xi1, 10) + 17077.6239573956*x2r*pow(xi1, 9) + 6404.10898402333*x2r*pow(xi1, 8) - 1487.40595757961*x2r*pow(xi1, 7) - 578.435650169849*x2r*pow(xi1, 6) + 65.2780044078827*x2r*pow(xi1, 5) + 27.1991685032845*x2r*pow(xi1, 4) - 1.00737661123276*x2r*pow(xi1, 3) - 0.503688305616379*x2r*pow(xi1, 2) + 104648.045730054*x2r*pow(xi2, 27) + 36224.3235219419*x2r*pow(xi2, 26) - 691958.506459951*x2r*pow(xi2, 25) - 240263.370298594*x2r*pow(xi2, 24) + 2024346.69443071*x2r*pow(xi2, 23) + 705454.151089489*x2r*pow(xi2, 22) - 3448886.96088195*x2r*pow(xi2, 21) - 1207110.43630868*x2r*pow(xi2, 20) + 3789765.3232947*x2r*pow(xi2, 19) + 1333435.94708517*x2r*pow(xi2, 18) - 2809972.33727217*x2r*pow(xi2, 17) - 995198.536117226*x2r*pow(xi2, 16) + 1429003.02621961*x2r*pow(xi2, 15) + 510358.223649859*x2r*pow(xi2, 14) - 496564.758145809*x2r*pow(xi2, 13) - 179315.051552653*x2r*pow(xi2, 12) + 115273.96171242*x2r*pow(xi2, 11) + 42267.119294554*x2r*pow(xi2, 10) - 17077.6239573956*x2r*pow(xi2, 9) - 6404.10898402333*x2r*pow(xi2, 8) + 1487.40595757961*x2r*pow(xi2, 7) + 578.435650169849*x2r*pow(xi2, 6) - 65.2780044078827*x2r*pow(xi2, 5) - 27.1991685032845*x2r*pow(xi2, 4) + 1.00737661123276*x2r*pow(xi2, 3) + 0.503688305616379*x2r*pow(xi2, 2); case 28: return -197940.053530611*x2r*pow(xi1, 28) - 68423.7222081125*x2r*pow(xi1, 27) + 1358412.13207282*x2r*pow(xi1, 26) + 470916.205785245*x2r*pow(xi1, 25) - 4144543.13765075*x2r*pow(xi1, 24) - 1441580.22179157*x2r*pow(xi1, 23) + 7407268.58643964*x2r*pow(xi1, 22) + 2586665.22066146*x2r*pow(xi1, 21) - 8600661.85869936*x2r*pow(xi1, 20) - 3017776.0907717*x2r*pow(xi1, 19) + 6800523.33013438*x2r*pow(xi1, 18) + 2400184.70475331*x2r*pow(xi1, 17) - 3731994.5104396*x2r*pow(xi1, 16) - 1326931.38148963*x2r*pow(xi1, 15) + 1421712.19445318*x2r*pow(xi1, 14) + 510358.223649859*x2r*pow(xi1, 13) - 369837.293827347*x2r*pow(xi1, 12) - 134486.28866449*x2r*pow(xi1, 11) + 63400.678941831*x2r*pow(xi1, 10) + 23481.7329414189*x2r*pow(xi1, 9) - 6724.3144332245*x2r*pow(xi1, 8) - 2561.64359360933*x2r*pow(xi1, 7) + 394.387943297625*x2r*pow(xi1, 6) + 157.75517731905*x2r*pow(xi1, 5) - 10.1996881887317*x2r*pow(xi1, 4) - 4.53319475054741*x2r*pow(xi1, 3) + 0.0581178814172745*x2r*pow(xi1, 2) + 0.038745254278183*x2r*xi1 + 197940.053530611*x2r*pow(xi2, 28) + 68423.7222081125*x2r*pow(xi2, 27) - 1358412.13207282*x2r*pow(xi2, 26) - 470916.205785245*x2r*pow(xi2, 25) + 4144543.13765075*x2r*pow(xi2, 24) + 1441580.22179157*x2r*pow(xi2, 23) - 7407268.58643964*x2r*pow(xi2, 22) - 2586665.22066146*x2r*pow(xi2, 21) + 8600661.85869936*x2r*pow(xi2, 20) + 3017776.0907717*x2r*pow(xi2, 19) - 6800523.33013438*x2r*pow(xi2, 18) - 2400184.70475331*x2r*pow(xi2, 17) + 3731994.5104396*x2r*pow(xi2, 16) + 1326931.38148963*x2r*pow(xi2, 15) - 1421712.19445318*x2r*pow(xi2, 14) - 510358.223649859*x2r*pow(xi2, 13) + 369837.293827347*x2r*pow(xi2, 12) + 134486.28866449*x2r*pow(xi2, 11) - 63400.678941831*x2r*pow(xi2, 10) - 23481.7329414189*x2r*pow(xi2, 9) + 6724.3144332245*x2r*pow(xi2, 8) + 2561.64359360933*x2r*pow(xi2, 7) - 394.387943297625*x2r*pow(xi2, 6) - 157.75517731905*x2r*pow(xi2, 5) + 10.1996881887317*x2r*pow(xi2, 4) + 4.53319475054741*x2r*pow(xi2, 3) - 0.0581178814172745*x2r*pow(xi2, 2) - 0.038745254278183*x2r*xi2; case 29: return -375150.752796203*x2r*pow(xi1, 29) - 129516.331322499*x2r*pow(xi1, 28) + 2668525.16611639*x2r*pow(xi1, 27) + 923720.249809518*x2r*pow(xi1, 26) - 8476491.7041344*x2r*pow(xi1, 25) - 2943226.28615778*x2r*pow(xi1, 24) + 15857382.4397072*x2r*pow(xi1, 23) + 5526057.51686767*x2r*pow(xi1, 22) - 19399989.154961*x2r*pow(xi1, 21) - 6789996.20423634*x2r*pow(xi1, 20) + 16295990.8901672*x2r*pow(xi1, 19) + 5733774.57246624*x2r*pow(xi1, 18) - 9600738.81901324*x2r*pow(xi1, 17) - 3400261.66506719*x2r*pow(xi1, 16) + 3980794.1444689*x2r*pow(xi1, 15) + 1421712.19445318*x2r*pow(xi1, 14) - 1148306.00321218*x2r*pow(xi1, 13) - 414666.056715511*x2r*pow(xi1, 12) + 224143.814440817*x2r*pow(xi1, 11) + 82186.0652949661*x2r*pow(xi1, 10) - 28178.0795297027*x2r*pow(xi1, 9) - 10566.7798236385*x2r*pow(xi1, 8) + 2095.89021295309*x2r*pow(xi1, 7) + 815.068416148424*x2r*pow(xi1, 6) - 78.8775886595249*x2r*pow(xi1, 5) - 32.8656619414687*x2r*pow(xi1, 4) + 1.04612186551094*x2r*pow(xi1, 3) + 0.52306093275547*x2r*pow(xi1, 2) + 375150.752796203*x2r*pow(xi2, 29) + 129516.331322499*x2r*pow(xi2, 28) - 2668525.16611639*x2r*pow(xi2, 27) - 923720.249809518*x2r*pow(xi2, 26) + 8476491.7041344*x2r*pow(xi2, 25) + 2943226.28615778*x2r*pow(xi2, 24) - 15857382.4397072*x2r*pow(xi2, 23) - 5526057.51686767*x2r*pow(xi2, 22) + 19399989.154961*x2r*pow(xi2, 21) + 6789996.20423634*x2r*pow(xi2, 20) - 16295990.8901672*x2r*pow(xi2, 19) - 5733774.57246624*x2r*pow(xi2, 18) + 9600738.81901324*x2r*pow(xi2, 17) + 3400261.66506719*x2r*pow(xi2, 16) - 3980794.1444689*x2r*pow(xi2, 15) - 1421712.19445318*x2r*pow(xi2, 14) + 1148306.00321218*x2r*pow(xi2, 13) + 414666.056715511*x2r*pow(xi2, 12) - 224143.814440817*x2r*pow(xi2, 11) - 82186.0652949661*x2r*pow(xi2, 10) + 28178.0795297027*x2r*pow(xi2, 9) + 10566.7798236385*x2r*pow(xi2, 8) - 2095.89021295309*x2r*pow(xi2, 7) - 815.068416148424*x2r*pow(xi2, 6) + 78.8775886595249*x2r*pow(xi2, 5) + 32.8656619414687*x2r*pow(xi2, 4) - 1.04612186551094*x2r*pow(xi2, 3) - 0.52306093275547*x2r*pow(xi2, 2); default: return 0.; } case 4: switch(j) { case 0: return -0.5625*pow(xi1, 4)*y1t + 0.375*pow(xi1, 2)*y1t + 0.5625*pow(xi2, 4)*y1t - 0.375*pow(xi2, 2)*y1t; case 1: return -0.28125*pow(xi1, 4)*y1r + 0.125*pow(xi1, 3)*y1r + 0.1875*pow(xi1, 2)*y1r - 0.125*xi1*y1r + 0.28125*pow(xi2, 4)*y1r - 0.125*pow(xi2, 3)*y1r - 0.1875*pow(xi2, 2)*y1r + 0.125*xi2*y1r; case 2: return 0.5625*pow(xi1, 4)*y2t - 0.375*pow(xi1, 2)*y2t - 0.5625*pow(xi2, 4)*y2t + 0.375*pow(xi2, 2)*y2t; case 3: return -0.28125*pow(xi1, 4)*y2r - 0.125*pow(xi1, 3)*y2r + 0.1875*pow(xi1, 2)*y2r + 0.125*xi1*y2r + 0.28125*pow(xi2, 4)*y2r + 0.125*pow(xi2, 3)*y2r - 0.1875*pow(xi2, 2)*y2r - 0.125*xi2*y2r; case 4: return -0.45*pow(xi1, 5) + 0.5*pow(xi1, 3) - 0.25*xi1 + 0.45*pow(xi2, 5) - 0.5*pow(xi2, 3) + 0.25*xi2; case 5: return -0.625*pow(xi1, 6) + 0.875*pow(xi1, 4) - 0.375*pow(xi1, 2) + 0.625*pow(xi2, 6) - 0.875*pow(xi2, 4) + 0.375*pow(xi2, 2); case 6: return -0.9375*pow(xi1, 7) + 1.5625*pow(xi1, 5) - 0.8125*pow(xi1, 3) + 0.1875*xi1 + 0.9375*pow(xi2, 7) - 1.5625*pow(xi2, 5) + 0.8125*pow(xi2, 3) - 0.1875*xi2; case 7: return -1.4765625*pow(xi1, 8) + 2.84375*pow(xi1, 6) - 1.796875*pow(xi1, 4) + 0.46875*pow(xi1, 2) + 1.4765625*pow(xi2, 8) - 2.84375*pow(xi2, 6) + 1.796875*pow(xi2, 4) - 0.46875*pow(xi2, 2); case 8: return -2.40625*pow(xi1, 9) + 5.25*pow(xi1, 7) - 3.9375*pow(xi1, 5) + 1.25*pow(xi1, 3) - 0.15625*xi1 + 2.40625*pow(xi2, 9) - 5.25*pow(xi2, 7) + 3.9375*pow(xi2, 5) - 1.25*pow(xi2, 3) + 0.15625*xi2; case 9: return -4.021875*pow(xi1, 10) + 9.796875*pow(xi1, 8) - 8.53125*pow(xi1, 6) + 3.28125*pow(xi1, 4) - 0.546875*pow(xi1, 2) + 4.021875*pow(xi2, 10) - 9.796875*pow(xi2, 8) + 8.53125*pow(xi2, 6) - 3.28125*pow(xi2, 4) + 0.546875*pow(xi2, 2); case 10: return -6.85546875*pow(xi1, 11) + 18.43359375*pow(xi1, 9) - 18.3046875*pow(xi1, 7) + 8.3671875*pow(xi1, 5) - 1.77734375*pow(xi1, 3) + 0.13671875*xi1 + 6.85546875*pow(xi2, 11) - 18.43359375*pow(xi2, 9) + 18.3046875*pow(xi2, 7) - 8.3671875*pow(xi2, 5) + 1.77734375*pow(xi2, 3) - 0.13671875*xi2; case 11: return -11.8701171875*pow(xi1, 12) + 34.912109375*pow(xi1, 10) - 38.9619140625*pow(xi1, 8) + 20.75390625*pow(xi1, 6) - 5.4345703125*pow(xi1, 4) + 0.615234375*pow(xi1, 2) + 11.8701171875*pow(xi2, 12) - 34.912109375*pow(xi2, 10) + 38.9619140625*pow(xi2, 8) - 20.75390625*pow(xi2, 6) + 5.4345703125*pow(xi2, 4) - 0.615234375*pow(xi2, 2); case 12: return -20.818359375*pow(xi1, 13) + 66.47265625*pow(xi1, 11) - 82.392578125*pow(xi1, 9) + 50.2734375*pow(xi1, 7) - 15.791015625*pow(xi1, 5) + 2.37890625*pow(xi1, 3) - 0.123046875*xi1 + 20.818359375*pow(xi2, 13) - 66.47265625*pow(xi2, 11) + 82.392578125*pow(xi2, 9) - 50.2734375*pow(xi2, 7) + 15.791015625*pow(xi2, 5) - 2.37890625*pow(xi2, 3) + 0.123046875*xi2; case 13: return -36.9052734375*pow(xi1, 14) + 127.1181640625*pow(xi1, 12) - 173.3037109375*pow(xi1, 10) + 119.3994140625*pow(xi1, 8) - 43.9892578125*pow(xi1, 6) + 8.3466796875*pow(xi1, 4) - 0.6767578125*pow(xi1, 2) + 36.9052734375*pow(xi2, 14) - 127.1181640625*pow(xi2, 12) + 173.3037109375*pow(xi2, 10) - 119.3994140625*pow(xi2, 8) + 43.9892578125*pow(xi2, 6) - 8.3466796875*pow(xi2, 4) + 0.6767578125*pow(xi2, 2); case 14: return -66.01943359375*pow(xi1, 15) + 243.98486328125*pow(xi1, 13) - 362.90185546875*pow(xi1, 11) + 278.94775390625*pow(xi1, 9) - 118.35205078125*pow(xi1, 7) + 27.27333984375*pow(xi1, 5) - 3.04541015625*pow(xi1, 3) + 0.11279296875*xi1 + 66.01943359375*pow(xi2, 15) - 243.98486328125*pow(xi2, 13) + 362.90185546875*pow(xi2, 11) - 278.94775390625*pow(xi2, 9) + 118.35205078125*pow(xi2, 7) - 27.27333984375*pow(xi2, 5) + 3.04541015625*pow(xi2, 3) - 0.11279296875*xi2; case 15: return -119.025421142578*pow(xi1, 16) + 469.753662109375*pow(xi1, 14) - 757.070678710938*pow(xi1, 12) + 642.766845703125*pow(xi1, 10) - 309.364929199219*pow(xi1, 8) + 84.312744140625*pow(xi1, 6) - 12.0970458984375*pow(xi1, 4) + 0.733154296875*pow(xi1, 2) + 119.025421142578*pow(xi2, 16) - 469.753662109375*pow(xi2, 14) + 757.070678710938*pow(xi2, 12) - 642.766845703125*pow(xi2, 10) + 309.364929199219*pow(xi2, 8) - 84.312744140625*pow(xi2, 6) + 12.0970458984375*pow(xi2, 4) - 0.733154296875*pow(xi2, 2); case 16: return -216.046142578125*pow(xi1, 17) + 906.8603515625*pow(xi1, 15) - 1574.3095703125*pow(xi1, 13) + 1463.9091796875*pow(xi1, 11) - 789.36279296875*pow(xi1, 9) + 249.2724609375*pow(xi1, 7) - 43.9892578125*pow(xi1, 5) + 3.7705078125*pow(xi1, 3) - 0.104736328125*xi1 + 216.046142578125*pow(xi2, 17) - 906.8603515625*pow(xi2, 15) + 1574.3095703125*pow(xi2, 13) - 1463.9091796875*pow(xi2, 11) + 789.36279296875*pow(xi2, 9) - 249.2724609375*pow(xi2, 7) + 43.9892578125*pow(xi2, 5) - 3.7705078125*pow(xi2, 3) + 0.104736328125*xi2; case 17: return -394.484252929688*pow(xi1, 18) + 1754.77478027344*pow(xi1, 16) - 3264.697265625*pow(xi1, 14) + 3300.9716796875*pow(xi1, 12) - 1973.40698242188*pow(xi1, 10) + 710.426513671875*pow(xi1, 8) - 149.5634765625*pow(xi1, 6) + 16.7578125*pow(xi1, 4) - 0.7855224609375*pow(xi1, 2) + 394.484252929688*pow(xi2, 18) - 1754.77478027344*pow(xi2, 16) + 3264.697265625*pow(xi2, 14) - 3300.9716796875*pow(xi2, 12) + 1973.40698242188*pow(xi2, 10) - 710.426513671875*pow(xi2, 8) + 149.5634765625*pow(xi2, 6) - 16.7578125*pow(xi2, 4) + 0.7855224609375*pow(xi2, 2); case 18: return -724.086227416992*pow(xi1, 19) + 3402.42668151855*pow(xi1, 17) - 6753.84246826172*pow(xi1, 15) + 7379.57611083984*pow(xi1, 13) - 4848.30215454102*pow(xi1, 11) + 1963.53994750977*pow(xi1, 9) - 482.075134277344*pow(xi1, 7) + 67.2145385742188*pow(xi1, 5) - 4.54948425292969*pow(xi1, 3) + 0.0981903076171875*xi1 + 724.086227416992*pow(xi2, 19) - 3402.42668151855*pow(xi2, 17) + 6753.84246826172*pow(xi2, 15) - 7379.57611083984*pow(xi2, 13) + 4848.30215454102*pow(xi2, 11) - 1963.53994750977*pow(xi2, 9) + 482.075134277344*pow(xi2, 7) - 67.2145385742188*pow(xi2, 5) + 4.54948425292969*pow(xi2, 3) - 0.0981903076171875*xi2; case 19: return -1335.30018997192*pow(xi1, 20) + 6609.06154632568*pow(xi1, 18) - 13942.5528144836*pow(xi1, 16) + 16374.4972229004*pow(xi1, 14) - 11733.9227676392*pow(xi1, 12) + 5287.74400939941*pow(xi1, 10) - 1487.45551300049*pow(xi1, 8) + 249.495025634766*pow(xi1, 6) - 22.3955726623535*pow(xi1, 4) + 0.834617614746094*pow(xi1, 2) + 1335.30018997192*pow(xi2, 20) - 6609.06154632568*pow(xi2, 18) + 13942.5528144836*pow(xi2, 16) - 16374.4972229004*pow(xi2, 14) + 11733.9227676392*pow(xi2, 12) - 5287.74400939941*pow(xi2, 10) + 1487.45551300049*pow(xi2, 8) - 249.495025634766*pow(xi2, 6) + 22.3955726623535*pow(xi2, 4) - 0.834617614746094*pow(xi2, 2); case 20: return -2472.77812957764*pow(xi1, 21) + 12858.4462738037*pow(xi1, 19) - 28729.1859054565*pow(xi1, 17) + 36095.3091430664*pow(xi1, 15) - 28030.4866790771*pow(xi1, 13) + 13925.9742736816*pow(xi1, 11) - 4425.36515808105*pow(xi1, 9) + 871.118225097656*pow(xi1, 7) - 98.3179550170898*pow(xi1, 5) + 5.37864685058594*pow(xi1, 3) - 0.0927352905273438*xi1 + 2472.77812957764*pow(xi2, 21) - 12858.4462738037*pow(xi2, 19) + 28729.1859054565*pow(xi2, 17) - 36095.3091430664*pow(xi2, 15) + 28030.4866790771*pow(xi2, 13) - 13925.9742736816*pow(xi2, 11) + 4425.36515808105*pow(xi2, 9) - 871.118225097656*pow(xi2, 7) + 98.3179550170898*pow(xi2, 5) - 5.37864685058594*pow(xi2, 3) + 0.0927352905273438*xi2; case 21: return -4596.5277671814*pow(xi1, 22) + 25053.1468391418*pow(xi1, 20) - 59099.3972969055*pow(xi1, 18) + 79106.4203453064*pow(xi1, 16) - 66199.3886947632*pow(xi1, 14) + 35975.4335403442*pow(xi1, 12) - 12765.4764175415*pow(xi1, 10) + 2893.50798797607*pow(xi1, 8) - 395.914775848389*pow(xi1, 6) + 29.0725135803223*pow(xi1, 4) - 0.880985260009766*pow(xi1, 2) + 4596.5277671814*pow(xi2, 22) - 25053.1468391418*pow(xi2, 20) + 59099.3972969055*pow(xi2, 18) - 79106.4203453064*pow(xi2, 16) + 66199.3886947632*pow(xi2, 14) - 35975.4335403442*pow(xi2, 12) + 12765.4764175415*pow(xi2, 10) - 2893.50798797607*pow(xi2, 8) + 395.914775848389*pow(xi2, 6) - 29.0725135803223*pow(xi2, 4) + 0.880985260009766*pow(xi2, 2); case 22: return -8573.52353096008*pow(xi1, 23) + 48876.4119243622*pow(xi1, 21) - 121393.88422966*pow(xi1, 19) + 172476.27453804*pow(xi1, 17) - 154773.431110382*pow(xi1, 15) + 91384.7427177429*pow(xi1, 13) - 35859.3837547302*pow(xi1, 11) + 9219.5107460022*pow(xi1, 9) - 1489.30558204651*pow(xi1, 7) + 138.755178451538*pow(xi1, 5) - 6.25499534606934*pow(xi1, 3) + 0.0880985260009766*xi1 + 8573.52353096008*pow(xi2, 23) - 48876.4119243622*pow(xi2, 21) + 121393.88422966*pow(xi2, 19) - 172476.27453804*pow(xi2, 17) + 154773.431110382*pow(xi2, 15) - 91384.7427177429*pow(xi2, 13) + 35859.3837547302*pow(xi2, 11) - 9219.5107460022*pow(xi2, 9) + 1489.30558204651*pow(xi2, 7) - 138.755178451538*pow(xi2, 5) + 6.25499534606934*pow(xi2, 3) - 0.0880985260009766*xi2; case 23: return -16041.3347017765*pow(xi1, 24) + 95465.5040788651*pow(xi1, 22) - 249016.891787052*pow(xi1, 20) + 374316.789364815*pow(xi1, 18) - 358630.103105307*pow(xi1, 16) + 228720.737085342*pow(xi1, 14) - 98439.2306470871*pow(xi1, 12) + 28357.5940418243*pow(xi1, 10) - 5299.95226264*pow(xi1, 8) + 602.814164161682*pow(xi1, 6) - 36.8472084999084*pow(xi1, 4) + 0.925034523010254*pow(xi1, 2) + 16041.3347017765*pow(xi2, 24) - 95465.5040788651*pow(xi2, 22) + 249016.891787052*pow(xi2, 20) - 374316.789364815*pow(xi2, 18) + 358630.103105307*pow(xi2, 16) - 228720.737085342*pow(xi2, 14) + 98439.2306470871*pow(xi2, 12) - 28357.5940418243*pow(xi2, 10) + 5299.95226264*pow(xi2, 8) - 602.814164161682*pow(xi2, 6) + 36.8472084999084*pow(xi2, 4) - 0.925034523010254*pow(xi2, 2); case 24: return -30099.3771131516*pow(xi1, 25) + 186662.80380249*pow(xi1, 23) - 510192.693929672*pow(xi1, 21) + 808988.887023926*pow(xi1, 19) - 824362.408947945*pow(xi1, 17) + 564980.347045898*pow(xi1, 15) - 264834.537677765*pow(xi1, 13) + 84616.872253418*pow(xi1, 11) - 18008.4399461746*pow(xi1, 9) + 2431.51931762695*pow(xi1, 7) - 190.063759994507*pow(xi1, 5) + 7.176025390625*pow(xi1, 3) - 0.0840940475463867*xi1 + 30099.3771131516*pow(xi2, 25) - 186662.80380249*pow(xi2, 23) + 510192.693929672*pow(xi2, 21) - 808988.887023926*pow(xi2, 19) + 824362.408947945*pow(xi2, 17) - 564980.347045898*pow(xi2, 15) + 264834.537677765*pow(xi2, 13) - 84616.872253418*pow(xi2, 11) + 18008.4399461746*pow(xi2, 9) - 2431.51931762695*pow(xi2, 7) + 190.063759994507*pow(xi2, 5) - 7.176025390625*pow(xi2, 3) + 0.0840940475463867*xi2; case 25: return -56625.0823616982*pow(xi1, 26) + 365336.642496586*pow(xi1, 24) - 1044145.05877018*pow(xi1, 22) + 1741854.19737339*pow(xi1, 20) - 1881320.51070929*pow(xi1, 18) + 1379346.55040503*pow(xi1, 16) - 699919.84957695*pow(xi1, 14) + 245917.784986496*pow(xi1, 12) - 58835.1689887047*pow(xi1, 10) + 9232.17490911484*pow(xi1, 8) - 886.491417884827*pow(xi1, 6) + 45.7751932144165*pow(xi1, 4) - 0.967081546783447*pow(xi1, 2) + 56625.0823616982*pow(xi2, 26) - 365336.642496586*pow(xi2, 24) + 1044145.05877018*pow(xi2, 22) - 1741854.19737339*pow(xi2, 20) + 1881320.51070929*pow(xi2, 18) - 1379346.55040503*pow(xi2, 16) + 699919.84957695*pow(xi2, 14) - 245917.784986496*pow(xi2, 12) + 58835.1689887047*pow(xi2, 10) - 9232.17490911484*pow(xi2, 8) + 886.491417884827*pow(xi2, 6) - 45.7751932144165*pow(xi2, 4) + 0.967081546783447*pow(xi2, 2); case 26: return -106783.720132709*pow(xi1, 27) + 715678.124293685*pow(xi1, 25) - 2134765.60503602*pow(xi1, 23) + 3737630.98551393*pow(xi1, 21) - 4265625.64844191*pow(xi1, 19) + 3332338.98971379*pow(xi1, 17) - 1820737.44653463*pow(xi1, 15) + 698343.453519344*pow(xi1, 13) - 185835.598881841*pow(xi1, 11) + 33328.9112716913*pow(xi1, 9) - 3818.24517846107*pow(xi1, 7) + 253.858906030655*pow(xi1, 5) - 8.13960301876068*pow(xi1, 3) + 0.0805901288986206*xi1 + 106783.720132709*pow(xi2, 27) - 715678.124293685*pow(xi2, 25) + 2134765.60503602*pow(xi2, 23) - 3737630.98551393*pow(xi2, 21) + 4265625.64844191*pow(xi2, 19) - 3332338.98971379*pow(xi2, 17) + 1820737.44653463*pow(xi2, 15) - 698343.453519344*pow(xi2, 13) + 185835.598881841*pow(xi2, 11) - 33328.9112716913*pow(xi2, 9) + 3818.24517846107*pow(xi2, 7) - 253.858906030655*pow(xi2, 5) + 8.13960301876068*pow(xi2, 3) - 0.0805901288986206*xi2; case 27: return -201821.231050819*pow(xi1, 28) + 1403138.08254379*pow(xi1, 26) - 4360524.57158938*pow(xi1, 24) + 7995147.04568088*pow(xi1, 22) - 9614774.98687729*pow(xi1, 20) + 7974597.42012888*pow(xi1, 18) - 4669777.74639621*pow(xi1, 16) + 1942908.14099908*pow(xi1, 14) - 569965.699578077*pow(xi1, 12) + 115273.96171242*pow(xi1, 10) - 15411.178393811*pow(xi1, 8) + 1265.66797435284*pow(xi1, 6) - 55.909401923418*pow(xi1, 4) + 1.00737661123276*pow(xi1, 2) + 201821.231050819*pow(xi2, 28) - 1403138.08254379*pow(xi2, 26) + 4360524.57158938*pow(xi2, 24) - 7995147.04568088*pow(xi2, 22) + 9614774.98687729*pow(xi2, 20) - 7974597.42012888*pow(xi2, 18) + 4669777.74639621*pow(xi2, 16) - 1942908.14099908*pow(xi2, 14) + 569965.699578077*pow(xi2, 12) - 115273.96171242*pow(xi2, 10) + 15411.178393811*pow(xi2, 8) - 1265.66797435284*pow(xi2, 6) + 55.909401923418*pow(xi2, 4) - 1.00737661123276*pow(xi2, 2); case 28: return -382229.068886697*pow(xi1, 29) + 2753048.58766758*pow(xi1, 27) - 8899355.23585993*pow(xi1, 25) + 17053587.3045981*pow(xi1, 23) - 21555543.5055122*pow(xi1, 21) + 18920754.2807454*pow(xi1, 19) - 11825300.252687*pow(xi1, 17) + 5307725.52595854*pow(xi1, 15) - 1703492.98975021*pow(xi1, 13) + 384246.5390414*pow(xi1, 11) - 58917.8026530147*pow(xi1, 9) + 5799.38080430031*pow(xi1, 7) - 331.82985574007*pow(xi1, 5) + 9.14388000965118*pow(xi1, 3) - 0.077490508556366*xi1 + 382229.068886697*pow(xi2, 29) - 2753048.58766758*pow(xi2, 27) + 8899355.23585993*pow(xi2, 25) - 17053587.3045981*pow(xi2, 23) + 21555543.5055122*pow(xi2, 21) - 18920754.2807454*pow(xi2, 19) + 11825300.252687*pow(xi2, 17) - 5307725.52595854*pow(xi2, 15) + 1703492.98975021*pow(xi2, 13) - 384246.5390414*pow(xi2, 11) + 58917.8026530147*pow(xi2, 9) - 5799.38080430031*pow(xi2, 7) + 331.82985574007*pow(xi2, 5) - 9.14388000965118*pow(xi2, 3) + 0.077490508556366*xi2; case 29: return -725291.455405992*pow(xi1, 30) + 5405474.05444089*pow(xi1, 28) - 18148386.0844929*pow(xi1, 26) + 36279768.9150877*pow(xi1, 24) - 48088457.9659335*pow(xi1, 22) + 44542375.0997904*pow(xi1, 20) - 29602278.0252908*pow(xi1, 18) + 14264512.3510136*pow(xi1, 16) - 4975992.68058613*pow(xi1, 14) + 1240262.43990585*pow(xi1, 12) - 215092.673743397*pow(xi1, 10) + 24801.3675199449*pow(xi1, 8) - 1761.59948006272*pow(xi1, 6) + 67.3005066812038*pow(xi1, 4) - 1.04612186551094*pow(xi1, 2) + 725291.455405992*pow(xi2, 30) - 5405474.05444089*pow(xi2, 28) + 18148386.0844929*pow(xi2, 26) - 36279768.9150877*pow(xi2, 24) + 48088457.9659335*pow(xi2, 22) - 44542375.0997904*pow(xi2, 20) + 29602278.0252908*pow(xi2, 18) - 14264512.3510136*pow(xi2, 16) + 4975992.68058613*pow(xi2, 14) - 1240262.43990585*pow(xi2, 12) + 215092.673743397*pow(xi2, 10) - 24801.3675199449*pow(xi2, 8) + 1761.59948006272*pow(xi2, 6) - 67.3005066812038*pow(xi2, 4) + 1.04612186551094*pow(xi2, 2); default: return 0.; } case 5: switch(j) { case 0: return -0.75*pow(xi1, 5)*y1t + 0.75*pow(xi1, 3)*y1t + 0.75*pow(xi2, 5)*y1t - 0.75*pow(xi2, 3)*y1t; case 1: return -0.375*pow(xi1, 5)*y1r + 0.15625*pow(xi1, 4)*y1r + 0.375*pow(xi1, 3)*y1r - 0.1875*pow(xi1, 2)*y1r + 0.375*pow(xi2, 5)*y1r - 0.15625*pow(xi2, 4)*y1r - 0.375*pow(xi2, 3)*y1r + 0.1875*pow(xi2, 2)*y1r; case 2: return 0.75*pow(xi1, 5)*y2t - 0.75*pow(xi1, 3)*y2t - 0.75*pow(xi2, 5)*y2t + 0.75*pow(xi2, 3)*y2t; case 3: return -0.375*pow(xi1, 5)*y2r - 0.15625*pow(xi1, 4)*y2r + 0.375*pow(xi1, 3)*y2r + 0.1875*pow(xi1, 2)*y2r + 0.375*pow(xi2, 5)*y2r + 0.15625*pow(xi2, 4)*y2r - 0.375*pow(xi2, 3)*y2r - 0.1875*pow(xi2, 2)*y2r; case 4: return -0.625*pow(xi1, 6) + 0.875*pow(xi1, 4) - 0.375*pow(xi1, 2) + 0.625*pow(xi2, 6) - 0.875*pow(xi2, 4) + 0.375*pow(xi2, 2); case 5: return -0.892857142857143*pow(xi1, 7) + 1.5*pow(xi1, 5) - 0.75*pow(xi1, 3) + 0.892857142857143*pow(xi2, 7) - 1.5*pow(xi2, 5) + 0.75*pow(xi2, 3); case 6: return -1.3671875*pow(xi1, 8) + 2.65625*pow(xi1, 6) - 1.640625*pow(xi1, 4) + 0.28125*pow(xi1, 2) + 1.3671875*pow(xi2, 8) - 2.65625*pow(xi2, 6) + 1.640625*pow(xi2, 4) - 0.28125*pow(xi2, 2); case 7: return -2.1875*pow(xi1, 9) + 4.8125*pow(xi1, 7) - 3.5625*pow(xi1, 5) + 0.9375*pow(xi1, 3) + 2.1875*pow(xi2, 9) - 4.8125*pow(xi2, 7) + 3.5625*pow(xi2, 5) - 0.9375*pow(xi2, 3); case 8: return -3.609375*pow(xi1, 10) + 8.859375*pow(xi1, 8) - 7.65625*pow(xi1, 6) + 2.65625*pow(xi1, 4) - 0.234375*pow(xi1, 2) + 3.609375*pow(xi2, 10) - 8.859375*pow(xi2, 8) + 7.65625*pow(xi2, 6) - 2.65625*pow(xi2, 4) + 0.234375*pow(xi2, 2); case 9: return -6.09375*pow(xi1, 11) + 16.5*pow(xi1, 9) - 16.3125*pow(xi1, 7) + 7.0*pow(xi1, 5) - 1.09375*pow(xi1, 3) + 6.09375*pow(xi2, 11) - 16.5*pow(xi2, 9) + 16.3125*pow(xi2, 7) - 7.0*pow(xi2, 5) + 1.09375*pow(xi2, 3); case 10: return -10.4736328125*pow(xi1, 12) + 31.001953125*pow(xi1, 10) - 34.5146484375*pow(xi1, 8) + 17.63671875*pow(xi1, 6) - 3.8623046875*pow(xi1, 4) + 0.205078125*pow(xi1, 2) + 10.4736328125*pow(xi2, 12) - 31.001953125*pow(xi2, 10) + 34.5146484375*pow(xi2, 8) - 17.63671875*pow(xi2, 6) + 3.8623046875*pow(xi2, 4) - 0.205078125*pow(xi2, 2); case 11: return -18.26171875*pow(xi1, 13) + 58.65234375*pow(xi1, 11) - 72.6171875*pow(xi1, 9) + 43.0546875*pow(xi1, 7) - 12.05859375*pow(xi1, 5) + 1.23046875*pow(xi1, 3) + 18.26171875*pow(xi2, 13) - 58.65234375*pow(xi2, 11) + 72.6171875*pow(xi2, 9) - 43.0546875*pow(xi2, 7) + 12.05859375*pow(xi2, 5) - 1.23046875*pow(xi2, 3); case 12: return -32.2188895089286*pow(xi1, 14) + 111.5791015625*pow(xi1, 12) - 152.0771484375*pow(xi1, 10) + 102.6416015625*pow(xi1, 8) - 34.9658203125*pow(xi1, 6) + 5.2294921875*pow(xi1, 4) - 0.1845703125*pow(xi1, 2) + 32.2188895089286*pow(xi2, 14) - 111.5791015625*pow(xi2, 12) + 152.0771484375*pow(xi2, 10) - 102.6416015625*pow(xi2, 8) + 34.9658203125*pow(xi2, 6) - 5.2294921875*pow(xi2, 4) + 0.1845703125*pow(xi2, 2); case 13: return -57.408203125*pow(xi1, 15) + 213.23046875*pow(xi1, 13) - 317.255859375*pow(xi1, 11) + 240.1953125*pow(xi1, 9) - 96.357421875*pow(xi1, 7) + 18.94921875*pow(xi1, 5) - 1.353515625*pow(xi1, 3) + 57.408203125*pow(xi2, 15) - 213.23046875*pow(xi2, 13) + 317.255859375*pow(xi2, 11) - 240.1953125*pow(xi2, 9) + 96.357421875*pow(xi2, 7) - 18.94921875*pow(xi2, 5) + 1.353515625*pow(xi2, 3); case 14: return -103.155364990234*pow(xi1, 16) + 409.033447265625*pow(xi1, 14) - 659.681762695313*pow(xi1, 12) + 553.740966796875*pow(xi1, 10) - 255.687561035156*pow(xi1, 8) + 62.318115234375*pow(xi1, 6) - 6.7393798828125*pow(xi1, 4) + 0.169189453125*pow(xi1, 2) + 103.155364990234*pow(xi2, 16) - 409.033447265625*pow(xi2, 14) + 659.681762695313*pow(xi2, 12) - 553.740966796875*pow(xi2, 10) + 255.687561035156*pow(xi2, 8) - 62.318115234375*pow(xi2, 6) + 6.7393798828125*pow(xi2, 4) - 0.169189453125*pow(xi2, 2); case 15: return -186.70654296875*pow(xi1, 17) + 787.15478515625*pow(xi1, 15) - 1367.86083984375*pow(xi1, 13) + 1260.93017578125*pow(xi1, 11) - 658.79150390625*pow(xi1, 9) + 191.66748046875*pow(xi1, 7) - 27.85986328125*pow(xi1, 5) + 1.46630859375*pow(xi1, 3) + 186.70654296875*pow(xi2, 17) - 787.15478515625*pow(xi2, 15) + 1367.86083984375*pow(xi2, 13) - 1260.93017578125*pow(xi2, 11) + 658.79150390625*pow(xi2, 9) - 191.66748046875*pow(xi2, 7) + 27.85986328125*pow(xi2, 5) - 1.46630859375*pow(xi2, 3); case 16: return -340.072631835938*pow(xi1, 18) + 1518.99108886719*pow(xi1, 16) - 2829.404296875*pow(xi1, 14) + 2841.7060546875*pow(xi1, 12) - 1657.66186523438*pow(xi1, 10) + 560.863037109375*pow(xi1, 8) - 102.6416015625*pow(xi1, 6) + 8.37890625*pow(xi1, 4) - 0.1571044921875*pow(xi1, 2) + 340.072631835938*pow(xi2, 18) - 1518.99108886719*pow(xi2, 16) + 2829.404296875*pow(xi2, 14) - 2841.7060546875*pow(xi2, 12) + 1657.66186523438*pow(xi2, 10) - 560.863037109375*pow(xi2, 8) + 102.6416015625*pow(xi2, 6) - 8.37890625*pow(xi2, 4) + 0.1571044921875*pow(xi2, 2); case 17: return -622.869873046875*pow(xi1, 19) + 2938.2275390625*pow(xi1, 17) - 5840.1806640625*pow(xi1, 15) + 6348.0224609375*pow(xi1, 13) - 4090.33447265625*pow(xi1, 11) + 1578.7255859375*pow(xi1, 9) - 348.9814453125*pow(xi1, 7) + 38.9619140625*pow(xi1, 5) - 1.571044921875*pow(xi1, 3) + 622.869873046875*pow(xi2, 19) - 2938.2275390625*pow(xi2, 17) + 5840.1806640625*pow(xi2, 15) - 6348.0224609375*pow(xi2, 13) + 4090.33447265625*pow(xi2, 11) - 1578.7255859375*pow(xi2, 9) + 348.9814453125*pow(xi2, 7) - 38.9619140625*pow(xi2, 5) + 1.571044921875*pow(xi2, 3); case 18: return -1146.4698600769*pow(xi1, 20) + 5695.36640167236*pow(xi1, 18) - 12032.1948051453*pow(xi1, 16) + 14073.3390808105*pow(xi1, 14) - 9928.70388031006*pow(xi1, 12) + 4306.96073913574*pow(xi1, 10) - 1117.44170379639*pow(xi1, 8) + 159.133758544922*pow(xi1, 6) - 10.1381492614746*pow(xi1, 4) + 0.147285461425781*pow(xi1, 2) + 1146.4698600769*pow(xi2, 20) - 5695.36640167236*pow(xi2, 18) + 12032.1948051453*pow(xi2, 16) - 14073.3390808105*pow(xi2, 14) + 9928.70388031006*pow(xi2, 12) - 4306.96073913574*pow(xi2, 10) + 1117.44170379639*pow(xi2, 8) - 159.133758544922*pow(xi2, 6) + 10.1381492614746*pow(xi2, 4) - 0.147285461425781*pow(xi2, 2); case 19: return -2119.52411106655*pow(xi1, 21) + 11060.0621795654*pow(xi1, 19) - 24748.0856323242*pow(xi1, 17) + 30994.2196655273*pow(xi1, 15) - 23765.4090881348*pow(xi1, 13) + 11450.245513916*pow(xi1, 11) - 3413.99407958984*pow(xi1, 9) + 593.230303083147*pow(xi1, 7) - 52.4139862060547*pow(xi1, 5) + 1.66923522949219*pow(xi1, 3) + 2119.52411106655*pow(xi2, 21) - 11060.0621795654*pow(xi2, 19) + 24748.0856323242*pow(xi2, 17) - 30994.2196655273*pow(xi2, 15) + 23765.4090881348*pow(xi2, 13) - 11450.245513916*pow(xi2, 11) + 3413.99407958984*pow(xi2, 9) - 593.230303083147*pow(xi2, 7) + 52.4139862060547*pow(xi2, 5) - 1.66923522949219*pow(xi2, 3); case 20: return -3933.96520614624*pow(xi1, 22) + 21513.1697273254*pow(xi1, 20) - 50826.8304634094*pow(xi1, 18) + 67863.6191368103*pow(xi1, 16) - 56201.2533187866*pow(xi1, 14) + 29786.1116409302*pow(xi1, 12) - 10042.1747817993*pow(xi1, 10) + 2064.67705535889*pow(xi1, 8) - 235.223064422607*pow(xi1, 6) + 12.009220123291*pow(xi1, 4) - 0.139102935791016*pow(xi1, 2) + 3933.96520614624*pow(xi2, 22) - 21513.1697273254*pow(xi2, 20) + 50826.8304634094*pow(xi2, 18) - 67863.6191368103*pow(xi2, 16) + 56201.2533187866*pow(xi2, 14) - 29786.1116409302*pow(xi2, 12) + 10042.1747817993*pow(xi2, 10) - 2064.67705535889*pow(xi2, 8) + 235.223064422607*pow(xi2, 6) - 12.009220123291*pow(xi2, 4) + 0.139102935791016*pow(xi2, 2); case 21: return -7327.79788970947*pow(xi1, 23) + 41907.0819854736*pow(xi1, 21) - 104247.120094299*pow(xi1, 19) + 147827.172546387*pow(xi1, 17) - 131511.187820435*pow(xi1, 15) + 76057.2441101074*pow(xi1, 13) - 28625.61378479*pow(xi1, 11) + 6808.25408935547*pow(xi1, 9) - 954.635627746582*pow(xi1, 7) + 68.3644561767578*pow(xi1, 5) - 1.76197052001953*pow(xi1, 3) + 7327.79788970947*pow(xi2, 23) - 41907.0819854736*pow(xi2, 21) + 104247.120094299*pow(xi2, 19) - 147827.172546387*pow(xi2, 17) + 131511.187820435*pow(xi2, 15) - 76057.2441101074*pow(xi2, 13) + 28625.61378479*pow(xi2, 11) - 6808.25408935547*pow(xi2, 9) + 954.635627746582*pow(xi2, 7) - 68.3644561767578*pow(xi2, 5) + 1.76197052001953*pow(xi2, 3); case 22: return -13693.8223063946*pow(xi1, 24) + 81741.5854597092*pow(xi1, 22) - 213555.301215649*pow(xi1, 20) + 320533.865046501*pow(xi1, 18) - 304889.328414202*pow(xi1, 16) + 191109.129095078*pow(xi1, 14) - 79465.0906991959*pow(xi1, 12) + 21488.5519695282*pow(xi1, 10) - 3590.29024243355*pow(xi1, 8) + 334.554152488708*pow(xi1, 6) - 13.985641002655*pow(xi1, 4) + 0.132147789001465*pow(xi1, 2) + 13693.8223063946*pow(xi2, 24) - 81741.5854597092*pow(xi2, 22) + 213555.301215649*pow(xi2, 20) - 320533.865046501*pow(xi2, 18) + 304889.328414202*pow(xi2, 16) - 191109.129095078*pow(xi2, 14) + 79465.0906991959*pow(xi2, 12) - 21488.5519695282*pow(xi2, 10) + 3590.29024243355*pow(xi2, 8) - 334.554152488708*pow(xi2, 6) + 13.985641002655*pow(xi2, 4) - 0.132147789001465*pow(xi2, 2); case 23: return -25666.1355228424*pow(xi1, 25) + 159630.842885971*pow(xi1, 23) - 436998.461294174*pow(xi1, 21) + 692150.120401382*pow(xi1, 19) - 701032.59973526*pow(xi1, 17) + 473492.052211761*pow(xi1, 15) - 215647.282390594*pow(xi1, 13) + 65402.3434638977*pow(xi1, 11) - 12714.8197650909*pow(xi1, 9) + 1469.04292106628*pow(xi1, 7) - 86.9532451629639*pow(xi1, 5) + 1.85006904602051*pow(xi1, 3) + 25666.1355228424*pow(xi2, 25) - 159630.842885971*pow(xi2, 23) + 436998.461294174*pow(xi2, 21) - 692150.120401382*pow(xi2, 19) + 701032.59973526*pow(xi2, 17) - 473492.052211761*pow(xi2, 15) + 215647.282390594*pow(xi2, 13) - 65402.3434638977*pow(xi2, 11) + 12714.8197650909*pow(xi2, 9) - 1469.04292106628*pow(xi2, 7) + 86.9532451629639*pow(xi2, 5) - 1.85006904602051*pow(xi2, 3); case 24: return -48236.1812710762*pow(xi1, 26) + 312076.875107288*pow(xi1, 24) - 893335.171551704*pow(xi1, 22) + 1489045.17017841*pow(xi1, 20) - 1600041.99846983*pow(xi1, 18) + 1158651.10234022*pow(xi1, 16) - 573808.164968491*pow(xi1, 14) + 193032.23982811*pow(xi1, 12) - 42878.3234667778*pow(xi1, 10) + 5939.49249982834*pow(xi1, 8) - 460.97553730011*pow(xi1, 6) + 16.0619630813599*pow(xi1, 4) - 0.12614107131958*pow(xi1, 2) + 48236.1812710762*pow(xi2, 26) - 312076.875107288*pow(xi2, 24) + 893335.171551704*pow(xi2, 22) - 1489045.17017841*pow(xi2, 20) + 1600041.99846983*pow(xi2, 18) - 1158651.10234022*pow(xi2, 16) + 573808.164968491*pow(xi2, 14) - 193032.23982811*pow(xi2, 12) + 42878.3234667778*pow(xi2, 10) - 5939.49249982834*pow(xi2, 8) + 460.97553730011*pow(xi2, 6) - 16.0619630813599*pow(xi2, 4) + 0.12614107131958*pow(xi2, 2); case 25: return -90879.7618150711*pow(xi1, 27) + 610711.999397278*pow(xi1, 25) - 1824527.45999336*pow(xi1, 23) + 3192616.85771942*pow(xi1, 21) - 3627809.54024792*pow(xi1, 19) + 2804130.39894104*pow(xi1, 17) - 1500729.04684067*pow(xi1, 15) + 554891.412277222*pow(xi1, 13) - 138824.556040764*pow(xi1, 11) + 22491.5536880493*pow(xi1, 9) - 2178.23605537415*pow(xi1, 7) + 108.313133239746*pow(xi1, 5) - 1.93416309356689*pow(xi1, 3) + 90879.7618150711*pow(xi2, 27) - 610711.999397278*pow(xi2, 25) + 1824527.45999336*pow(xi2, 23) - 3192616.85771942*pow(xi2, 21) + 3627809.54024792*pow(xi2, 19) - 2804130.39894104*pow(xi2, 17) + 1500729.04684067*pow(xi2, 15) - 554891.412277222*pow(xi2, 13) + 138824.556040764*pow(xi2, 11) - 22491.5536880493*pow(xi2, 9) + 2178.23605537415*pow(xi2, 7) - 108.313133239746*pow(xi2, 5) + 1.93416309356689*pow(xi2, 3); case 26: return -171616.693070424*pow(xi1, 28) + 1196204.86489087*pow(xi1, 26) - 3723230.24186119*pow(xi1, 24) + 6824129.6124512*pow(xi1, 22) - 8176238.95359054*pow(xi1, 20) + 6719716.61138982*pow(xi1, 18) - 3865618.70751008*pow(xi1, 16) + 1558943.10125368*pow(xi1, 14) - 434198.589116782*pow(xi1, 12) + 80733.090030849*pow(xi1, 10) - 9424.51188638806*pow(xi1, 8) + 618.529239296913*pow(xi1, 6) - 18.2335166633129*pow(xi1, 4) + 0.120885193347931*pow(xi1, 2) + 171616.693070424*pow(xi2, 28) - 1196204.86489087*pow(xi2, 26) + 3723230.24186119*pow(xi2, 24) - 6824129.6124512*pow(xi2, 22) + 8176238.95359054*pow(xi2, 20) - 6719716.61138982*pow(xi2, 18) + 3865618.70751008*pow(xi2, 16) - 1558943.10125368*pow(xi2, 14) + 434198.589116782*pow(xi2, 12) - 80733.090030849*pow(xi2, 10) + 9424.51188638806*pow(xi2, 8) - 618.529239296913*pow(xi2, 6) + 18.2335166633129*pow(xi2, 4) - 0.120885193347931*pow(xi2, 2); case 27: return -324769.797093272*pow(xi1, 29) + 2344970.49411428*pow(xi1, 27) - 7591913.54250741*pow(xi1, 25) + 14545305.8785021*pow(xi1, 23) - 18327224.8967797*pow(xi1, 21) + 15960149.8981029*pow(xi1, 19) - 9822894.75166082*pow(xi1, 17) + 4292526.46486044*pow(xi1, 15) - 1318261.2031728*pow(xi1, 13) + 277123.261490464*pow(xi1, 11) - 38011.4855825901*pow(xi1, 9) + 3130.23573517799*pow(xi1, 7) - 132.570762038231*pow(xi1, 5) + 2.01475322246552*pow(xi1, 3) + 324769.797093272*pow(xi2, 29) - 2344970.49411428*pow(xi2, 27) + 7591913.54250741*pow(xi2, 25) - 14545305.8785021*pow(xi2, 23) + 18327224.8967797*pow(xi2, 21) - 15960149.8981029*pow(xi2, 19) + 9822894.75166082*pow(xi2, 17) - 4292526.46486044*pow(xi2, 15) + 1318261.2031728*pow(xi2, 13) - 277123.261490464*pow(xi2, 11) + 38011.4855825901*pow(xi2, 9) - 3130.23573517799*pow(xi2, 7) + 132.570762038231*pow(xi2, 5) - 2.01475322246552*pow(xi2, 3); case 28: return -615813.499873012*pow(xi1, 30) + 4600489.08728662*pow(xi1, 28) - 15469264.6876864*pow(xi1, 26) + 30922406.9560893*pow(xi1, 24) - 40877148.8659076*pow(xi1, 22) + 37602893.7078018*pow(xi1, 20) - 24658808.1726824*pow(xi1, 18) + 11610649.5880343*pow(xi1, 16) - 3900102.37127021*pow(xi1, 14) + 915787.584715337*pow(xi1, 12) - 144732.863038927*pow(xi1, 10) + 14434.5987246931*pow(xi1, 8) - 811.441860347986*pow(xi1, 6) + 20.4962395131588*pow(xi1, 4) - 0.116235762834549*pow(xi1, 2) + 615813.499873012*pow(xi2, 30) - 4600489.08728662*pow(xi2, 28) + 15469264.6876864*pow(xi2, 26) - 30922406.9560893*pow(xi2, 24) + 40877148.8659076*pow(xi2, 22) - 37602893.7078018*pow(xi2, 20) + 24658808.1726824*pow(xi2, 18) - 11610649.5880343*pow(xi2, 16) + 3900102.37127021*pow(xi2, 14) - 915787.584715337*pow(xi2, 12) + 144732.863038927*pow(xi2, 10) - 14434.5987246931*pow(xi2, 8) + 811.441860347986*pow(xi2, 6) - 20.4962395131588*pow(xi2, 4) + 0.116235762834549*pow(xi2, 2); case 29: return -1169824.92807418*pow(xi1, 31) + 9031931.33147085*pow(xi1, 29) - 31499061.7647464*pow(xi1, 27) + 65582289.5567043*pow(xi1, 25) - 90758210.1336434*pow(xi1, 23) + 87946617.5024897*pow(xi1, 21) - 61225764.2230055*pow(xi1, 19) + 30909695.7099938*pow(xi1, 17) - 11278916.7426619*pow(xi1, 15) + 2928812.50869334*pow(xi1, 13) - 525136.936689913*pow(xi1, 11) + 61789.9485003948*pow(xi1, 9) - 4379.58420842886*pow(xi1, 7) + 159.847421050072*pow(xi1, 5) - 2.09224373102188*pow(xi1, 3) + 1169824.92807418*pow(xi2, 31) - 9031931.33147085*pow(xi2, 29) + 31499061.7647464*pow(xi2, 27) - 65582289.5567043*pow(xi2, 25) + 90758210.1336434*pow(xi2, 23) - 87946617.5024897*pow(xi2, 21) + 61225764.2230055*pow(xi2, 19) - 30909695.7099938*pow(xi2, 17) + 11278916.7426619*pow(xi2, 15) - 2928812.50869334*pow(xi2, 13) + 525136.936689913*pow(xi2, 11) - 61789.9485003948*pow(xi2, 9) + 4379.58420842886*pow(xi2, 7) - 159.847421050072*pow(xi2, 5) + 2.09224373102188*pow(xi2, 3); default: return 0.; } case 6: switch(j) { case 0: return -1.09375*pow(xi1, 6)*y1t + 1.40625*pow(xi1, 4)*y1t - 0.28125*pow(xi1, 2)*y1t + 1.09375*pow(xi2, 6)*y1t - 1.40625*pow(xi2, 4)*y1t + 0.28125*pow(xi2, 2)*y1t; case 1: return -0.546875*pow(xi1, 6)*y1r + 0.21875*pow(xi1, 5)*y1r + 0.703125*pow(xi1, 4)*y1r - 0.3125*pow(xi1, 3)*y1r - 0.140625*pow(xi1, 2)*y1r + 0.09375*xi1*y1r + 0.546875*pow(xi2, 6)*y1r - 0.21875*pow(xi2, 5)*y1r - 0.703125*pow(xi2, 4)*y1r + 0.3125*pow(xi2, 3)*y1r + 0.140625*pow(xi2, 2)*y1r - 0.09375*xi2*y1r; case 2: return 1.09375*pow(xi1, 6)*y2t - 1.40625*pow(xi1, 4)*y2t + 0.28125*pow(xi1, 2)*y2t - 1.09375*pow(xi2, 6)*y2t + 1.40625*pow(xi2, 4)*y2t - 0.28125*pow(xi2, 2)*y2t; case 3: return -0.546875*pow(xi1, 6)*y2r - 0.21875*pow(xi1, 5)*y2r + 0.703125*pow(xi1, 4)*y2r + 0.3125*pow(xi1, 3)*y2r - 0.140625*pow(xi1, 2)*y2r - 0.09375*xi1*y2r + 0.546875*pow(xi2, 6)*y2r + 0.21875*pow(xi2, 5)*y2r - 0.703125*pow(xi2, 4)*y2r - 0.3125*pow(xi2, 3)*y2r + 0.140625*pow(xi2, 2)*y2r + 0.09375*xi2*y2r; case 4: return -0.9375*pow(xi1, 7) + 1.5625*pow(xi1, 5) - 0.8125*pow(xi1, 3) + 0.1875*xi1 + 0.9375*pow(xi2, 7) - 1.5625*pow(xi2, 5) + 0.8125*pow(xi2, 3) - 0.1875*xi2; case 5: return -1.3671875*pow(xi1, 8) + 2.65625*pow(xi1, 6) - 1.640625*pow(xi1, 4) + 0.28125*pow(xi1, 2) + 1.3671875*pow(xi2, 8) - 2.65625*pow(xi2, 6) + 1.640625*pow(xi2, 4) - 0.28125*pow(xi2, 2); case 6: return -2.12673611111111*pow(xi1, 9) + 4.6875*pow(xi1, 7) - 3.46875*pow(xi1, 5) + 0.9375*pow(xi1, 3) - 0.140625*xi1 + 2.12673611111111*pow(xi2, 9) - 4.6875*pow(xi2, 7) + 3.46875*pow(xi2, 5) - 0.9375*pow(xi2, 3) + 0.140625*xi2; case 7: return -3.4453125*pow(xi1, 10) + 8.4765625*pow(xi1, 8) - 7.328125*pow(xi1, 6) + 2.578125*pow(xi1, 4) - 0.3515625*pow(xi1, 2) + 3.4453125*pow(xi2, 10) - 8.4765625*pow(xi2, 8) + 7.328125*pow(xi2, 6) - 2.578125*pow(xi2, 4) + 0.3515625*pow(xi2, 2); case 8: return -5.7421875*pow(xi1, 11) + 15.5859375*pow(xi1, 9) - 15.421875*pow(xi1, 7) + 6.671875*pow(xi1, 5) - 1.2109375*pow(xi1, 3) + 0.1171875*xi1 + 5.7421875*pow(xi2, 11) - 15.5859375*pow(xi2, 9) + 15.421875*pow(xi2, 7) - 6.671875*pow(xi2, 5) + 1.2109375*pow(xi2, 3) - 0.1171875*xi2; case 9: return -9.775390625*pow(xi1, 12) + 29.00390625*pow(xi1, 10) - 32.326171875*pow(xi1, 8) + 16.6067708333333*pow(xi1, 6) - 3.896484375*pow(xi1, 4) + 0.41015625*pow(xi1, 2) + 9.775390625*pow(xi2, 12) - 29.00390625*pow(xi2, 10) + 32.326171875*pow(xi2, 8) - 16.6067708333333*pow(xi2, 6) + 3.896484375*pow(xi2, 4) - 0.41015625*pow(xi2, 2); case 10: return -16.9189453125*pow(xi1, 13) + 54.462890625*pow(xi1, 11) - 67.5146484375*pow(xi1, 9) + 40.18359375*pow(xi1, 7) - 11.6826171875*pow(xi1, 5) + 1.572265625*pow(xi1, 3) - 0.1025390625*xi1 + 16.9189453125*pow(xi2, 13) - 54.462890625*pow(xi2, 11) + 67.5146484375*pow(xi2, 9) - 40.18359375*pow(xi2, 7) + 11.6826171875*pow(xi2, 5) - 1.572265625*pow(xi2, 3) + 0.1025390625*xi2; case 11: return -29.67529296875*pow(xi1, 14) + 102.99072265625*pow(xi1, 12) - 140.55615234375*pow(xi1, 10) + 95.14892578125*pow(xi1, 8) - 33.15087890625*pow(xi1, 6) + 5.69091796875*pow(xi1, 4) - 0.46142578125*pow(xi1, 2) + 29.67529296875*pow(xi2, 14) - 102.99072265625*pow(xi2, 12) + 140.55615234375*pow(xi2, 10) - 95.14892578125*pow(xi2, 8) + 33.15087890625*pow(xi2, 6) - 5.69091796875*pow(xi2, 4) + 0.46142578125*pow(xi2, 2); case 12: return -52.6241861979167*pow(xi1, 15) + 195.85693359375*pow(xi1, 13) - 291.79541015625*pow(xi1, 11) + 221.459147135417*pow(xi1, 9) - 90.15380859375*pow(xi1, 7) + 19.16455078125*pow(xi1, 5) - 1.99951171875*pow(xi1, 3) + 0.09228515625*xi1 + 52.6241861979167*pow(xi2, 15) - 195.85693359375*pow(xi2, 13) + 291.79541015625*pow(xi2, 11) - 221.459147135417*pow(xi2, 9) + 90.15380859375*pow(xi2, 7) - 19.16455078125*pow(xi2, 5) + 1.99951171875*pow(xi2, 3) - 0.09228515625*xi2; case 13: return -94.1853332519531*pow(xi1, 16) + 374.178466796875*pow(xi1, 14) - 604.269897460938*pow(xi1, 12) + 508.285400390625*pow(xi1, 10) - 237.096862792969*pow(xi1, 8) + 60.626220703125*pow(xi1, 6) - 8.0364990234375*pow(xi1, 4) + 0.507568359375*pow(xi1, 2) + 94.1853332519531*pow(xi2, 16) - 374.178466796875*pow(xi2, 14) + 604.269897460938*pow(xi2, 12) - 508.285400390625*pow(xi2, 10) + 237.096862792969*pow(xi2, 8) - 60.626220703125*pow(xi2, 6) + 8.0364990234375*pow(xi2, 4) - 0.507568359375*pow(xi2, 2); case 14: return -169.902954101563*pow(xi1, 17) + 717.6025390625*pow(xi1, 15) - 1248.62841796875*pow(xi1, 13) + 1153.1279296875*pow(xi1, 11) - 606.947021484375*pow(xi1, 9) + 182.2412109375*pow(xi1, 7) - 29.89013671875*pow(xi1, 5) + 2.4814453125*pow(xi1, 3) - 0.0845947265625*xi1 + 169.902954101563*pow(xi2, 17) - 717.6025390625*pow(xi2, 15) + 1248.62841796875*pow(xi2, 13) - 1153.1279296875*pow(xi2, 11) + 606.947021484375*pow(xi2, 9) - 182.2412109375*pow(xi2, 7) + 29.89013671875*pow(xi2, 5) - 2.4814453125*pow(xi2, 3) + 0.0845947265625*xi2; case 15: return -308.584425184462*pow(xi1, 18) + 1380.69488525391*pow(xi1, 16) - 2575.08911132813*pow(xi1, 14) + 2590.54516601563*pow(xi1, 12) - 1519.67175292969*pow(xi1, 10) + 525.514526367188*pow(xi1, 8) - 103.863525390625*pow(xi1, 6) + 10.997314453125*pow(xi1, 4) - 0.54986572265625*pow(xi1, 2) + 308.584425184462*pow(xi2, 18) - 1380.69488525391*pow(xi2, 16) + 2575.08911132813*pow(xi2, 14) - 2590.54516601563*pow(xi2, 12) + 1519.67175292969*pow(xi2, 10) - 525.514526367188*pow(xi2, 8) + 103.863525390625*pow(xi2, 6) - 10.997314453125*pow(xi2, 4) + 0.54986572265625*pow(xi2, 2); case 16: return -563.804626464844*pow(xi1, 19) + 2663.90228271484*pow(xi1, 17) - 5301.50561523438*pow(xi1, 15) + 5771.18041992188*pow(xi1, 13) - 3735.12121582031*pow(xi1, 11) + 1464.47570800781*pow(xi1, 9) - 340.916748046875*pow(xi1, 7) + 44.722412109375*pow(xi1, 5) - 3.01116943359375*pow(xi1, 3) + 0.07855224609375*xi1 + 563.804626464844*pow(xi2, 19) - 2663.90228271484*pow(xi2, 17) + 5301.50561523438*pow(xi2, 15) - 5771.18041992188*pow(xi2, 13) + 3735.12121582031*pow(xi2, 11) - 1464.47570800781*pow(xi2, 9) + 340.916748046875*pow(xi2, 7) - 44.722412109375*pow(xi2, 5) + 3.01116943359375*pow(xi2, 3) - 0.07855224609375*xi2; case 17: return -1035.52116394043*pow(xi1, 20) + 5152.10037231445*pow(xi1, 18) - 10897.6274871826*pow(xi1, 16) + 12764.0594482422*pow(xi1, 14) - 9037.30697631836*pow(xi1, 12) + 3966.54803466797*pow(xi1, 10) - 1067.19772338867*pow(xi1, 8) + 168.992065429688*pow(xi1, 6) - 14.6303558349609*pow(xi1, 4) + 0.589141845703125*pow(xi1, 2) + 1035.52116394043*pow(xi2, 20) - 5152.10037231445*pow(xi2, 18) + 10897.6274871826*pow(xi2, 16) - 12764.0594482422*pow(xi2, 14) + 9037.30697631836*pow(xi2, 12) - 3966.54803466797*pow(xi2, 10) + 1067.19772338867*pow(xi2, 8) - 168.992065429688*pow(xi2, 6) + 14.6303558349609*pow(xi2, 4) - 0.589141845703125*pow(xi2, 2); case 18: return -1910.78310012817*pow(xi1, 21) + 9985.38265228271*pow(xi1, 19) - 22369.5526313782*pow(xi1, 17) + 28051.8356831868*pow(xi1, 15) - 21573.3575820923*pow(xi1, 13) + 10488.2096099854*pow(xi1, 11) - 3210.89761098226*pow(xi1, 9) + 600.256988525391*pow(xi1, 7) - 64.6043128967285*pow(xi1, 5) + 3.58394622802734*pow(xi1, 3) - 0.0736427307128906*xi1 + 1910.78310012817*pow(xi2, 21) - 9985.38265228271*pow(xi2, 19) + 22369.5526313782*pow(xi2, 17) - 28051.8356831868*pow(xi2, 15) + 21573.3575820923*pow(xi2, 13) - 10488.2096099854*pow(xi2, 11) + 3210.89761098226*pow(xi2, 9) - 600.256988525391*pow(xi2, 7) + 64.6043128967285*pow(xi2, 5) - 3.58394622802734*pow(xi2, 3) + 0.0736427307128906*xi2; case 19: return -3540.56868553162*pow(xi1, 22) + 19388.8285160065*pow(xi1, 20) - 45859.8821353912*pow(xi1, 18) + 61306.8062496185*pow(xi1, 16) - 50899.6626853943*pow(xi1, 14) + 27168.544254303*pow(xi1, 12) - 9342.84868240356*pow(xi1, 10) + 2023.97553634644*pow(xi1, 8) - 263.558332443237*pow(xi1, 6) + 18.9875507354736*pow(xi1, 4) - 0.62596321105957*pow(xi1, 2) + 3540.56868553162*pow(xi2, 22) - 19388.8285160065*pow(xi2, 20) + 45859.8821353912*pow(xi2, 18) - 61306.8062496185*pow(xi2, 16) + 50899.6626853943*pow(xi2, 14) - 27168.544254303*pow(xi2, 12) + 9342.84868240356*pow(xi2, 10) - 2023.97553634644*pow(xi2, 8) + 263.558332443237*pow(xi2, 6) - 18.9875507354736*pow(xi2, 4) + 0.62596321105957*pow(xi2, 2); case 20: return -6585.11567115784*pow(xi1, 23) + 37709.866476059*pow(xi1, 21) - 93909.3694210052*pow(xi1, 19) + 133322.262125015*pow(xi1, 17) - 118866.862277985*pow(xi1, 15) + 69138.8915061951*pow(xi1, 13) - 26420.6678581238*pow(xi1, 11) + 6530.74373245239*pow(xi1, 9) - 1006.17326545715*pow(xi1, 7) + 90.5513744354248*pow(xi1, 5) - 4.1962718963623*pow(xi1, 3) + 0.0695514678955078*xi1 + 6585.11567115784*pow(xi2, 23) - 37709.866476059*pow(xi2, 21) + 93909.3694210052*pow(xi2, 19) - 133322.262125015*pow(xi2, 17) + 118866.862277985*pow(xi2, 15) - 69138.8915061951*pow(xi2, 13) + 26420.6678581238*pow(xi2, 11) - 6530.74373245239*pow(xi2, 9) + 1006.17326545715*pow(xi2, 7) - 90.5513744354248*pow(xi2, 5) + 4.1962718963623*pow(xi2, 3) - 0.0695514678955078*xi2; case 21: return -12289.3277108669*pow(xi1, 24) + 73451.2714147568*pow(xi1, 22) - 192100.697286129*pow(xi1, 20) + 288650.013709068*pow(xi1, 18) - 275090.35777688*pow(xi1, 16) + 173242.563199997*pow(xi1, 14) - 72901.8306016922*pow(xi1, 12) + 20297.107503891*pow(xi1, 10) - 3631.91679596901*pow(xi1, 8) + 396.634247144063*pow(xi1, 6) - 24.1169714927673*pow(xi1, 4) + 0.660738945007324*pow(xi1, 2) + 12289.3277108669*pow(xi2, 24) - 73451.2714147568*pow(xi2, 22) + 192100.697286129*pow(xi2, 20) - 288650.013709068*pow(xi2, 18) + 275090.35777688*pow(xi2, 16) - 173242.563199997*pow(xi2, 14) + 72901.8306016922*pow(xi2, 12) - 20297.107503891*pow(xi2, 10) + 3631.91679596901*pow(xi2, 8) - 396.634247144063*pow(xi2, 6) + 24.1169714927673*pow(xi2, 4) - 0.660738945007324*pow(xi2, 2); case 22: return -23005.6214747429*pow(xi1, 25) + 143258.44874382*pow(xi1, 23) - 392582.810969353*pow(xi1, 21) + 622456.821012497*pow(xi1, 19) - 631527.864468098*pow(xi1, 17) + 428224.98418808*pow(xi1, 15) - 196905.242013931*pow(xi1, 13) + 61080.8704948425*pow(xi1, 11) - 12499.5289921761*pow(xi1, 9) + 1618.81041526794*pow(xi1, 7) - 123.646281242371*pow(xi1, 5) + 4.84541893005371*pow(xi1, 3) - 0.0660738945007324*xi1 + 23005.6214747429*pow(xi2, 25) - 143258.44874382*pow(xi2, 23) + 392582.810969353*pow(xi2, 21) - 622456.821012497*pow(xi2, 19) + 631527.864468098*pow(xi2, 17) - 428224.98418808*pow(xi2, 15) + 196905.242013931*pow(xi2, 13) - 61080.8704948425*pow(xi2, 11) + 12499.5289921761*pow(xi2, 9) - 1618.81041526794*pow(xi2, 7) + 123.646281242371*pow(xi2, 5) - 4.84541893005371*pow(xi2, 3) + 0.0660738945007324*xi2; case 23: return -43188.2088124752*pow(xi1, 26) + 279745.227116346*pow(xi1, 24) - 801585.194084644*pow(xi1, 22) + 1337462.24400759*pow(xi1, 20) - 1439388.69436383*pow(xi1, 18) + 1045795.4754889*pow(xi1, 16) - 521967.386698723*pow(xi1, 14) + 178745.682291985*pow(xi1, 12) - 41294.0366613865*pow(xi1, 10) + 6224.43616986275*pow(xi1, 8) - 578.917438983917*pow(xi1, 6) + 30.0636219978333*pow(xi1, 4) - 0.69377589225769*pow(xi1, 2) + 43188.2088124752*pow(xi2, 26) - 279745.227116346*pow(xi2, 24) + 801585.194084644*pow(xi2, 22) - 1337462.24400759*pow(xi2, 20) + 1439388.69436383*pow(xi2, 18) - 1045795.4754889*pow(xi2, 16) + 521967.386698723*pow(xi2, 14) - 178745.682291985*pow(xi2, 12) + 41294.0366613865*pow(xi2, 10) - 6224.43616986275*pow(xi2, 8) + 578.917438983917*pow(xi2, 6) - 30.0636219978333*pow(xi2, 4) + 0.69377589225769*pow(xi2, 2); case 24: return -81286.8980679247*pow(xi1, 27) + 546863.683015108*pow(xi1, 25) - 1635362.49871016*pow(xi1, 23) + 2864386.47074461*pow(xi1, 21) - 3259442.8732574*pow(xi1, 19) + 2526638.3282125*pow(xi1, 17) - 1360955.26306629*pow(xi1, 15) + 510447.213749886*pow(xi1, 13) - 131678.168796301*pow(xi1, 11) + 22745.5405149195*pow(xi1, 9) - 2515.10279417038*pow(xi1, 7) + 165.034568309784*pow(xi1, 5) - 5.52918362617493*pow(xi1, 3) + 0.06307053565979*xi1 + 81286.8980679247*pow(xi2, 27) - 546863.683015108*pow(xi2, 25) + 1635362.49871016*pow(xi2, 23) - 2864386.47074461*pow(xi2, 21) + 3259442.8732574*pow(xi2, 19) - 2526638.3282125*pow(xi2, 17) + 1360955.26306629*pow(xi2, 15) - 510447.213749886*pow(xi2, 13) + 131678.168796301*pow(xi2, 11) - 22745.5405149195*pow(xi2, 9) + 2515.10279417038*pow(xi2, 7) - 165.034568309784*pow(xi2, 5) + 5.52918362617493*pow(xi2, 3) - 0.06307053565979*xi2; case 25: return -153359.598062932*pow(xi1, 28) + 1070109.19537246*pow(xi1, 26) - 3333887.07623631*pow(xi1, 24) + 6116230.13594985*pow(xi1, 22) - 7337624.0086922*pow(xi1, 20) + 6045594.79239285*pow(xi1, 18) - 3496643.50527674*pow(xi1, 16) + 1426638.4321332*pow(xi1, 14) - 407136.064055264*pow(xi1, 12) + 79550.5738002062*pow(xi1, 10) - 10259.5551416278*pow(xi1, 8) + 822.825216054916*pow(xi1, 6) - 36.8699839711189*pow(xi1, 4) + 0.725311160087585*pow(xi1, 2) + 153359.598062932*pow(xi2, 28) - 1070109.19537246*pow(xi2, 26) + 3333887.07623631*pow(xi2, 24) - 6116230.13594985*pow(xi2, 22) + 7337624.0086922*pow(xi2, 20) - 6045594.79239285*pow(xi2, 18) + 3496643.50527674*pow(xi2, 16) - 1426638.4321332*pow(xi2, 14) + 407136.064055264*pow(xi2, 12) - 79550.5738002062*pow(xi2, 10) + 10259.5551416278*pow(xi2, 8) - 822.825216054916*pow(xi2, 6) + 36.8699839711189*pow(xi2, 4) - 0.725311160087585*pow(xi2, 2); case 26: return -289973.033118993*pow(xi1, 29) + 2095914.50686008*pow(xi1, 27) - 6791785.39954707*pow(xi1, 25) + 13024073.7724453*pow(xi1, 23) - 16430288.1617863*pow(xi1, 21) + 14339802.0394251*pow(xi1, 19) - 8866155.64289019*pow(xi1, 17) + 3911826.81694865*pow(xi1, 15) - 1225155.31102046*pow(xi1, 13) + 267815.70602864*pow(xi1, 11) - 39657.0352770388*pow(xi1, 9) + 3791.47774279118*pow(xi1, 7) - 215.921102851629*pow(xi1, 5) + 6.2457349896431*pow(xi1, 3) - 0.0604425966739655*xi1 + 289973.033118993*pow(xi2, 29) - 2095914.50686008*pow(xi2, 27) + 6791785.39954707*pow(xi2, 25) - 13024073.7724453*pow(xi2, 23) + 16430288.1617863*pow(xi2, 21) - 14339802.0394251*pow(xi2, 19) + 8866155.64289019*pow(xi2, 17) - 3911826.81694865*pow(xi2, 15) + 1225155.31102046*pow(xi2, 13) - 267815.70602864*pow(xi2, 11) + 39657.0352770388*pow(xi2, 9) - 3791.47774279118*pow(xi2, 7) + 215.921102851629*pow(xi2, 5) - 6.2457349896431*pow(xi2, 3) + 0.0604425966739655*xi2; case 27: return -549402.240082785*pow(xi1, 30) + 4108503.63210596*pow(xi1, 28) - 13827208.0805501*pow(xi1, 26) + 27664083.4957633*pow(xi1, 24) - 36611156.418654*pow(xi1, 22) + 33744830.445754*pow(xi1, 20) - 22216010.2240916*pow(xi1, 18) + 10544759.5412088*pow(xi1, 16) - 3599355.56090511*pow(xi1, 14) + 872026.17332451*pow(xi1, 12) - 146323.561076894*pow(xi1, 10) + 16351.5572648495*pow(xi1, 8) - 1142.58334207038*pow(xi1, 6) + 44.5764150470495*pow(xi1, 4) - 0.755532458424568*pow(xi1, 2) + 549402.240082785*pow(xi2, 30) - 4108503.63210596*pow(xi2, 28) + 13827208.0805501*pow(xi2, 26) - 27664083.4957633*pow(xi2, 24) + 36611156.418654*pow(xi2, 22) - 33744830.445754*pow(xi2, 20) + 22216010.2240916*pow(xi2, 18) - 10544759.5412088*pow(xi2, 16) + 3599355.56090511*pow(xi2, 14) - 872026.17332451*pow(xi2, 12) + 146323.561076894*pow(xi2, 10) - 16351.5572648495*pow(xi2, 8) + 1142.58334207038*pow(xi2, 6) - 44.5764150470495*pow(xi2, 4) + 0.755532458424568*pow(xi2, 2); case 28: return -1042909.95946236*pow(xi1, 31) + 8059911.98363207*pow(xi1, 29) - 28133362.1181482*pow(xi1, 27) + 58624160.113125*pow(xi1, 25) - 81214983.145294*pow(xi1, 23) + 78838147.1421372*pow(xi1, 21) - 55072273.9968482*pow(xi1, 19) + 27992398.0403953*pow(xi1, 17) - 10350961.3508769*pow(xi1, 15) + 2756968.91762204*pow(xi1, 13) - 518441.73184298*pow(xi1, 11) + 66642.1722281724*pow(xi1, 9) - 5566.69839374721*pow(xi1, 7) + 277.567127123475*pow(xi1, 5) - 6.99351839721203*pow(xi1, 3) + 0.0581178814172745*xi1 + 1042909.95946236*pow(xi2, 31) - 8059911.98363207*pow(xi2, 29) + 28133362.1181482*pow(xi2, 27) - 58624160.113125*pow(xi2, 25) + 81214983.145294*pow(xi2, 23) - 78838147.1421372*pow(xi2, 21) + 55072273.9968482*pow(xi2, 19) - 27992398.0403953*pow(xi2, 17) + 10350961.3508769*pow(xi2, 15) - 2756968.91762204*pow(xi2, 13) + 518441.73184298*pow(xi2, 11) - 66642.1722281724*pow(xi2, 9) + 5566.69839374721*pow(xi2, 7) - 277.567127123475*pow(xi2, 5) + 6.99351839721203*pow(xi2, 3) - 0.0581178814172745*xi2; case 29: return -1983218.82337576*pow(xi1, 32) + 15822985.760626*pow(xi1, 30) - 57208772.2688402*pow(xi1, 28) + 123966103.721286*pow(xi1, 26) - 179418908.264614*pow(xi1, 24) + 182977170.438836*pow(xi1, 22) - 135194614.345589*pow(xi1, 20) + 73288566.706319*pow(xi1, 18) - 29202857.0441898*pow(xi1, 16) + 8491314.83706627*pow(xi1, 14) - 1772603.99920279*pow(xi1, 12) + 258638.67419567*pow(xi1, 10) - 25307.2639591154*pow(xi1, 8) + 1554.31043241173*pow(xi1, 6) - 53.2214499078691*pow(xi1, 4) + 0.784591399133205*pow(xi1, 2) + 1983218.82337576*pow(xi2, 32) - 15822985.760626*pow(xi2, 30) + 57208772.2688402*pow(xi2, 28) - 123966103.721286*pow(xi2, 26) + 179418908.264614*pow(xi2, 24) - 182977170.438836*pow(xi2, 22) + 135194614.345589*pow(xi2, 20) - 73288566.706319*pow(xi2, 18) + 29202857.0441898*pow(xi2, 16) - 8491314.83706627*pow(xi2, 14) + 1772603.99920279*pow(xi2, 12) - 258638.67419567*pow(xi2, 10) + 25307.2639591154*pow(xi2, 8) - 1554.31043241173*pow(xi2, 6) + 53.2214499078691*pow(xi2, 4) - 0.784591399133205*pow(xi2, 2); default: return 0.; } case 7: switch(j) { case 0: return -1.6875*pow(xi1, 7)*y1t + 2.625*pow(xi1, 5)*y1t - 0.9375*pow(xi1, 3)*y1t + 1.6875*pow(xi2, 7)*y1t - 2.625*pow(xi2, 5)*y1t + 0.9375*pow(xi2, 3)*y1t; case 1: return -0.84375*pow(xi1, 7)*y1r + 0.328125*pow(xi1, 6)*y1r + 1.3125*pow(xi1, 5)*y1r - 0.546875*pow(xi1, 4)*y1r - 0.46875*pow(xi1, 3)*y1r + 0.234375*pow(xi1, 2)*y1r + 0.84375*pow(xi2, 7)*y1r - 0.328125*pow(xi2, 6)*y1r - 1.3125*pow(xi2, 5)*y1r + 0.546875*pow(xi2, 4)*y1r + 0.46875*pow(xi2, 3)*y1r - 0.234375*pow(xi2, 2)*y1r; case 2: return 1.6875*pow(xi1, 7)*y2t - 2.625*pow(xi1, 5)*y2t + 0.9375*pow(xi1, 3)*y2t - 1.6875*pow(xi2, 7)*y2t + 2.625*pow(xi2, 5)*y2t - 0.9375*pow(xi2, 3)*y2t; case 3: return -0.84375*pow(xi1, 7)*y2r - 0.328125*pow(xi1, 6)*y2r + 1.3125*pow(xi1, 5)*y2r + 0.546875*pow(xi1, 4)*y2r - 0.46875*pow(xi1, 3)*y2r - 0.234375*pow(xi1, 2)*y2r + 0.84375*pow(xi2, 7)*y2r + 0.328125*pow(xi2, 6)*y2r - 1.3125*pow(xi2, 5)*y2r - 0.546875*pow(xi2, 4)*y2r + 0.46875*pow(xi2, 3)*y2r + 0.234375*pow(xi2, 2)*y2r; case 4: return -1.4765625*pow(xi1, 8) + 2.84375*pow(xi1, 6) - 1.796875*pow(xi1, 4) + 0.46875*pow(xi1, 2) + 1.4765625*pow(xi2, 8) - 2.84375*pow(xi2, 6) + 1.796875*pow(xi2, 4) - 0.46875*pow(xi2, 2); case 5: return -2.1875*pow(xi1, 9) + 4.8125*pow(xi1, 7) - 3.5625*pow(xi1, 5) + 0.9375*pow(xi1, 3) + 2.1875*pow(xi2, 9) - 4.8125*pow(xi2, 7) + 3.5625*pow(xi2, 5) - 0.9375*pow(xi2, 3); case 6: return -3.4453125*pow(xi1, 10) + 8.4765625*pow(xi1, 8) - 7.328125*pow(xi1, 6) + 2.578125*pow(xi1, 4) - 0.3515625*pow(xi1, 2) + 3.4453125*pow(xi2, 10) - 8.4765625*pow(xi2, 8) + 7.328125*pow(xi2, 6) - 2.578125*pow(xi2, 4) + 0.3515625*pow(xi2, 2); case 7: return -5.63778409090909*pow(xi1, 11) + 15.3125*pow(xi1, 9) - 15.15625*pow(xi1, 7) + 6.5625*pow(xi1, 5) - 1.171875*pow(xi1, 3) + 5.63778409090909*pow(xi2, 11) - 15.3125*pow(xi2, 9) + 15.15625*pow(xi2, 7) - 6.5625*pow(xi2, 5) + 1.171875*pow(xi2, 3); case 8: return -9.474609375*pow(xi1, 12) + 28.13671875*pow(xi1, 10) - 31.376953125*pow(xi1, 8) + 16.1328125*pow(xi1, 6) - 3.759765625*pow(xi1, 4) + 0.29296875*pow(xi1, 2) + 9.474609375*pow(xi2, 12) - 28.13671875*pow(xi2, 10) + 31.376953125*pow(xi2, 8) - 16.1328125*pow(xi2, 6) + 3.759765625*pow(xi2, 4) - 0.29296875*pow(xi2, 2); case 9: return -16.2421875*pow(xi1, 13) + 52.3359375*pow(xi1, 11) - 64.921875*pow(xi1, 9) + 38.671875*pow(xi1, 7) - 11.2109375*pow(xi1, 5) + 1.3671875*pow(xi1, 3) + 16.2421875*pow(xi2, 13) - 52.3359375*pow(xi2, 11) + 64.921875*pow(xi2, 9) - 38.671875*pow(xi2, 7) + 11.2109375*pow(xi2, 5) - 1.3671875*pow(xi2, 3); case 10: return -28.27880859375*pow(xi1, 14) + 98.24267578125*pow(xi1, 12) - 134.17529296875*pow(xi1, 10) + 90.90087890625*pow(xi1, 8) - 31.63330078125*pow(xi1, 6) + 5.21240234375*pow(xi1, 4) - 0.25634765625*pow(xi1, 2) + 28.27880859375*pow(xi2, 14) - 98.24267578125*pow(xi2, 12) + 134.17529296875*pow(xi2, 10) - 90.90087890625*pow(xi2, 8) + 31.63330078125*pow(xi2, 6) - 5.21240234375*pow(xi2, 4) + 0.25634765625*pow(xi2, 2); case 11: return -49.8544921875*pow(xi1, 15) + 185.732421875*pow(xi1, 13) - 276.9228515625*pow(xi1, 11) + 210.33203125*pow(xi1, 9) - 85.5908203125*pow(xi1, 7) + 17.841796875*pow(xi1, 5) - 1.5380859375*pow(xi1, 3) + 49.8544921875*pow(xi2, 15) - 185.732421875*pow(xi2, 13) + 276.9228515625*pow(xi2, 11) - 210.33203125*pow(xi2, 9) + 85.5908203125*pow(xi2, 7) - 17.841796875*pow(xi2, 5) + 1.5380859375*pow(xi2, 3); case 12: return -88.8033142089844*pow(xi1, 16) + 353.135986328125*pow(xi1, 14) - 570.725708007813*pow(xi1, 12) + 480.425537109375*pow(xi1, 10) - 224.105529785156*pow(xi1, 8) + 56.719482421875*pow(xi1, 6) - 6.8829345703125*pow(xi1, 4) + 0.230712890625*pow(xi1, 2) + 88.8033142089844*pow(xi2, 16) - 353.135986328125*pow(xi2, 14) + 570.725708007813*pow(xi2, 12) - 480.425537109375*pow(xi2, 10) + 224.105529785156*pow(xi2, 8) - 56.719482421875*pow(xi2, 6) + 6.8829345703125*pow(xi2, 4) - 0.230712890625*pow(xi2, 2); case 13: return -159.56103515625*pow(xi1, 17) + 674.54638671875*pow(xi1, 15) - 1174.60205078125*pow(xi1, 13) + 1085.54443359375*pow(xi1, 11) - 571.51123046875*pow(xi1, 9) + 170.62353515625*pow(xi1, 7) - 26.73193359375*pow(xi1, 5) + 1.69189453125*pow(xi1, 3) + 159.56103515625*pow(xi2, 17) - 674.54638671875*pow(xi2, 15) + 1174.60205078125*pow(xi2, 13) - 1085.54443359375*pow(xi2, 11) + 571.51123046875*pow(xi2, 9) - 170.62353515625*pow(xi2, 7) + 26.73193359375*pow(xi2, 5) - 1.69189453125*pow(xi2, 3); case 14: return -288.835021972656*pow(xi1, 18) + 1293.47857666016*pow(xi1, 16) - 2414.21997070313*pow(xi1, 14) + 2430.40649414063*pow(xi1, 12) - 1426.24694824219*pow(xi1, 10) + 491.579956054688*pow(xi1, 8) - 94.689697265625*pow(xi1, 6) + 8.741455078125*pow(xi1, 4) - 0.21148681640625*pow(xi1, 2) + 288.835021972656*pow(xi2, 18) - 1293.47857666016*pow(xi2, 16) + 2414.21997070313*pow(xi2, 14) - 2430.40649414063*pow(xi2, 12) + 1426.24694824219*pow(xi2, 10) - 491.579956054688*pow(xi2, 8) + 94.689697265625*pow(xi2, 6) - 8.741455078125*pow(xi2, 4) + 0.21148681640625*pow(xi2, 2); case 15: return -526.217651367188*pow(xi1, 19) + 2488.4248046875*pow(xi1, 17) - 4955.87353515625*pow(xi1, 15) + 5398.5791015625*pow(xi1, 13) - 3495.47973632813*pow(xi1, 11) + 1367.8564453125*pow(xi1, 9) - 313.58056640625*pow(xi1, 7) + 38.1240234375*pow(xi1, 5) - 1.8328857421875*pow(xi1, 3) + 526.217651367188*pow(xi2, 19) - 2488.4248046875*pow(xi2, 17) + 4955.87353515625*pow(xi2, 15) - 5398.5791015625*pow(xi2, 13) + 3495.47973632813*pow(xi2, 11) - 1367.8564453125*pow(xi2, 9) + 313.58056640625*pow(xi2, 7) - 38.1240234375*pow(xi2, 5) + 1.8328857421875*pow(xi2, 3); case 16: return -964.105911254883*pow(xi1, 20) + 4800.69198608398*pow(xi1, 18) - 10161.4835968018*pow(xi1, 16) + 11909.6392822266*pow(xi1, 14) - 8436.31484985352*pow(xi1, 12) + 3698.58013916016*pow(xi1, 10) - 985.634307861328*pow(xi1, 8) + 149.196899414063*pow(xi1, 6) - 10.7682037353516*pow(xi1, 4) + 0.196380615234375*pow(xi1, 2) + 964.105911254883*pow(xi2, 20) - 4800.69198608398*pow(xi2, 18) + 10161.4835968018*pow(xi2, 16) - 11909.6392822266*pow(xi2, 14) + 8436.31484985352*pow(xi2, 12) - 3698.58013916016*pow(xi2, 10) + 985.634307861328*pow(xi2, 8) - 149.196899414063*pow(xi2, 6) + 10.7682037353516*pow(xi2, 4) - 0.196380615234375*pow(xi2, 2); case 17: return -1775.17913818359*pow(xi1, 21) + 9283.98284912109*pow(xi1, 19) - 20812.4450683594*pow(xi1, 17) + 26115.7644042969*pow(xi1, 15) - 20094.2510986328*pow(xi1, 13) + 9762.98254394531*pow(xi1, 11) - 2970.49682617188*pow(xi1, 9) + 539.915771484375*pow(xi1, 7) - 52.2372436523438*pow(xi1, 5) + 1.96380615234375*pow(xi1, 3) + 1775.17913818359*pow(xi2, 21) - 9283.98284912109*pow(xi2, 19) + 20812.4450683594*pow(xi2, 17) - 26115.7644042969*pow(xi2, 15) + 20094.2510986328*pow(xi2, 13) - 9762.98254394531*pow(xi2, 11) + 2970.49682617188*pow(xi2, 9) - 539.915771484375*pow(xi2, 7) + 52.2372436523438*pow(xi2, 5) - 1.96380615234375*pow(xi2, 3); case 18: return -3283.07278112932*pow(xi1, 22) + 17992.180223465*pow(xi1, 20) - 42584.5325946808*pow(xi1, 18) + 56963.228559494*pow(xi1, 16) - 47316.9975090027*pow(xi1, 14) + 25248.5089607239*pow(xi1, 12) - 8647.22272109985*pow(xi1, 10) + 1839.3581199646*pow(xi1, 8) - 224.21347618103*pow(xi1, 6) + 12.9488468170166*pow(xi1, 4) - 0.184106826782227*pow(xi1, 2) + 3283.07278112932*pow(xi2, 22) - 17992.180223465*pow(xi2, 20) + 42584.5325946808*pow(xi2, 18) - 56963.228559494*pow(xi2, 16) + 47316.9975090027*pow(xi2, 14) - 25248.5089607239*pow(xi2, 12) + 8647.22272109985*pow(xi2, 10) - 1839.3581199646*pow(xi2, 8) + 224.21347618103*pow(xi2, 6) - 12.9488468170166*pow(xi2, 4) + 0.184106826782227*pow(xi2, 2); case 19: return -6095.93564987183*pow(xi1, 23) + 34933.6110305786*pow(xi1, 21) - 87051.21717453*pow(xi1, 19) + 123659.410858154*pow(xi1, 17) - 110306.809043884*pow(xi1, 15) + 64153.908493042*pow(xi1, 13) - 24448.4942550659*pow(xi1, 11) + 5969.55612182617*pow(xi1, 9) - 881.217098236084*pow(xi1, 7) + 69.2732620239258*pow(xi1, 5) - 2.08654403686523*pow(xi1, 3) + 6095.93564987183*pow(xi2, 23) - 34933.6110305786*pow(xi2, 21) + 87051.21717453*pow(xi2, 19) - 123659.410858154*pow(xi2, 17) + 110306.809043884*pow(xi2, 15) - 64153.908493042*pow(xi2, 13) + 24448.4942550659*pow(xi2, 11) - 5969.55612182617*pow(xi2, 9) + 881.217098236084*pow(xi2, 7) - 69.2732620239258*pow(xi2, 5) + 2.08654403686523*pow(xi2, 3); case 20: return -11359.3245327473*pow(xi1, 24) + 67939.5791101456*pow(xi1, 22) - 177795.557491779*pow(xi1, 20) + 267309.309983253*pow(xi1, 18) - 254878.725403547*pow(xi1, 16) + 160521.721315384*pow(xi1, 14) - 67422.9912786484*pow(xi1, 12) + 18613.5446720123*pow(xi1, 10) - 3236.46453738213*pow(xi1, 8) + 324.005513191223*pow(xi1, 6) - 15.2723431587219*pow(xi1, 4) + 0.17387866973877*pow(xi1, 2) + 11359.3245327473*pow(xi2, 24) - 67939.5791101456*pow(xi2, 22) + 177795.557491779*pow(xi2, 20) - 267309.309983253*pow(xi2, 18) + 254878.725403547*pow(xi2, 16) - 160521.721315384*pow(xi2, 14) + 67422.9912786484*pow(xi2, 12) - 18613.5446720123*pow(xi2, 10) + 3236.46453738213*pow(xi2, 8) - 324.005513191223*pow(xi2, 6) + 15.2723431587219*pow(xi2, 4) - 0.17387866973877*pow(xi2, 2); case 21: return -21235.9582843781*pow(xi1, 25) + 132326.16648674*pow(xi1, 23) - 362841.146650314*pow(xi1, 21) + 575621.929979324*pow(xi1, 19) - 584297.167682648*pow(xi1, 17) + 396256.456432343*pow(xi1, 15) - 181974.990749359*pow(xi1, 13) + 56113.9396705627*pow(xi1, 11) - 11257.6701450348*pow(xi1, 9) + 1375.65848350525*pow(xi1, 7) - 89.4200038909912*pow(xi1, 5) + 2.20246315002441*pow(xi1, 3) + 21235.9582843781*pow(xi2, 25) - 132326.16648674*pow(xi2, 23) + 362841.146650314*pow(xi2, 21) - 575621.929979324*pow(xi2, 19) + 584297.167682648*pow(xi2, 17) - 396256.456432343*pow(xi2, 15) + 181974.990749359*pow(xi2, 13) - 56113.9396705627*pow(xi2, 11) + 11257.6701450348*pow(xi2, 9) - 1375.65848350525*pow(xi2, 7) + 89.4200038909912*pow(xi2, 5) - 2.20246315002441*pow(xi2, 3); case 22: return -39817.4217832088*pow(xi1, 26) + 258075.881928205*pow(xi1, 24) - 739921.916306019*pow(xi1, 22) + 1235245.40490389*pow(xi1, 20) - 1330024.46163297*pow(xi1, 18) + 966541.123548746*pow(xi1, 16) - 482000.350642204*pow(xi1, 14) + 164355.508875847*pow(xi1, 12) - 37440.0785429478*pow(xi1, 10) + 5421.85859799385*pow(xi1, 8) - 453.112743854523*pow(xi1, 6) + 17.7298283576965*pow(xi1, 4) - 0.165184736251831*pow(xi1, 2) + 39817.4217832088*pow(xi2, 26) - 258075.881928205*pow(xi2, 24) + 739921.916306019*pow(xi2, 22) - 1235245.40490389*pow(xi2, 20) + 1330024.46163297*pow(xi2, 18) - 966541.123548746*pow(xi2, 16) + 482000.350642204*pow(xi2, 14) - 164355.508875847*pow(xi2, 12) + 37440.0785429478*pow(xi2, 10) - 5421.85859799385*pow(xi2, 8) + 453.112743854523*pow(xi2, 6) - 17.7298283576965*pow(xi2, 4) + 0.165184736251831*pow(xi2, 2); case 23: return -74859.5619416237*pow(xi1, 27) + 503932.66087532*pow(xi1, 25) - 1507825.26934147*pow(xi1, 23) + 2642391.18733406*pow(xi1, 21) - 3008256.60670996*pow(xi1, 19) + 2332526.65002823*pow(xi1, 17) - 1255698.85142326*pow(xi1, 15) + 469510.651874542*pow(xi1, 13) - 119893.934762478*pow(xi1, 11) + 20130.9536838531*pow(xi1, 9) - 2068.42124271393*pow(xi1, 7) + 112.854211807251*pow(xi1, 5) - 2.31258630752563*pow(xi1, 3) + 74859.5619416237*pow(xi2, 27) - 503932.66087532*pow(xi2, 25) + 1507825.26934147*pow(xi2, 23) - 2642391.18733406*pow(xi2, 21) + 3008256.60670996*pow(xi2, 19) - 2332526.65002823*pow(xi2, 17) + 1255698.85142326*pow(xi2, 15) - 469510.651874542*pow(xi2, 13) + 119893.934762478*pow(xi2, 11) - 20130.9536838531*pow(xi2, 9) + 2068.42124271393*pow(xi2, 7) - 112.854211807251*pow(xi2, 5) + 2.31258630752563*pow(xi2, 3); case 24: return -141090.830217898*pow(xi1, 28) + 985083.781004548*pow(xi1, 26) - 3070661.81036085*pow(xi1, 24) + 5636204.89152074*pow(xi1, 22) - 6764883.44941288*pow(xi1, 20) + 5575318.75673711*pow(xi1, 18) - 3223532.88829654*pow(xi1, 16) + 1312222.58924246*pow(xi1, 14) - 371694.770376384*pow(xi1, 12) + 71150.4344075918*pow(xi1, 10) - 8712.88090068102*pow(xi1, 8) + 616.332282304764*pow(xi1, 6) - 20.313968360424*pow(xi1, 4) + 0.157676339149475*pow(xi1, 2) + 141090.830217898*pow(xi2, 28) - 985083.781004548*pow(xi2, 26) + 3070661.81036085*pow(xi2, 24) - 5636204.89152074*pow(xi2, 22) + 6764883.44941288*pow(xi2, 20) - 5575318.75673711*pow(xi2, 18) + 3223532.88829654*pow(xi2, 16) - 1312222.58924246*pow(xi2, 14) + 371694.770376384*pow(xi2, 12) - 71150.4344075918*pow(xi2, 10) + 8712.88090068102*pow(xi2, 8) - 616.332282304764*pow(xi2, 6) + 20.313968360424*pow(xi2, 4) - 0.157676339149475*pow(xi2, 2); case 25: return -266528.404909372*pow(xi1, 29) + 1927559.74809766*pow(xi1, 27) - 6249526.46725416*pow(xi1, 25) + 11990174.723804*pow(xi1, 23) - 15132877.5010765*pow(xi1, 21) + 13211577.6992261*pow(xi1, 19) - 8167029.78691578*pow(xi1, 17) + 3597335.80345631*pow(xi1, 15) - 1120385.35932899*pow(xi1, 13) + 241233.31105113*pow(xi1, 11) - 34408.5311770439*pow(xi1, 9) + 3012.09060621262*pow(xi1, 7) - 139.743283510208*pow(xi1, 5) + 2.41770386695862*pow(xi1, 3) + 266528.404909372*pow(xi2, 29) - 1927559.74809766*pow(xi2, 27) + 6249526.46725416*pow(xi2, 25) - 11990174.723804*pow(xi2, 23) + 15132877.5010765*pow(xi2, 21) - 13211577.6992261*pow(xi2, 19) + 8167029.78691578*pow(xi2, 17) - 3597335.80345631*pow(xi2, 15) + 1120385.35932899*pow(xi2, 13) - 241233.31105113*pow(xi2, 11) + 34408.5311770439*pow(xi2, 9) - 3012.09060621262*pow(xi2, 7) + 139.743283510208*pow(xi2, 5) - 2.41770386695862*pow(xi2, 3); case 26: return -504553.077627048*pow(xi1, 30) + 3775202.10564919*pow(xi1, 28) - 12711977.0834365*pow(xi1, 26) + 25445111.4509571*pow(xi1, 24) - 33689526.0770302*pow(xi1, 22) + 31062052.6502893*pow(xi1, 20) - 20448237.8820252*pow(xi1, 18) + 9693702.71960892*pow(xi1, 16) - 3294914.07228*pow(xi1, 14) + 789254.786240682*pow(xi1, 12) - 128830.869173482*pow(xi1, 10) + 13511.1869540066*pow(xi1, 8) - 818.705045714974*pow(xi1, 6) + 23.0185555666685*pow(xi1, 4) - 0.151106491684914*pow(xi1, 2) + 504553.077627048*pow(xi2, 30) - 3775202.10564919*pow(xi2, 28) + 12711977.0834365*pow(xi2, 26) - 25445111.4509571*pow(xi2, 24) + 33689526.0770302*pow(xi2, 22) - 31062052.6502893*pow(xi2, 20) + 20448237.8820252*pow(xi2, 18) - 9693702.71960892*pow(xi2, 16) + 3294914.07228*pow(xi2, 14) - 789254.786240682*pow(xi2, 12) + 128830.869173482*pow(xi2, 10) - 13511.1869540066*pow(xi2, 8) + 818.705045714974*pow(xi2, 6) - 23.0185555666685*pow(xi2, 4) + 0.151106491684914*pow(xi2, 2); case 27: return -957023.256918401*pow(xi1, 31) + 7400111.8051967*pow(xi1, 29) - 25843137.068245*pow(xi1, 27) + 53877067.1146849*pow(xi1, 25) - 74671105.3192668*pow(xi1, 23) + 72510060.6815735*pow(xi1, 21) - 50652263.6690386*pow(xi1, 19) + 25722379.0240824*pow(xi1, 17) - 9480938.51420894*pow(xi1, 15) + 2503513.98898512*pow(xi1, 13) - 461137.163681835*pow(xi1, 11) + 56571.6800898314*pow(xi1, 9) - 4267.03145876527*pow(xi1, 7) + 170.246647298336*pow(xi1, 5) - 2.51844152808189*pow(xi1, 3) + 957023.256918401*pow(xi2, 31) - 7400111.8051967*pow(xi2, 29) + 25843137.068245*pow(xi2, 27) - 53877067.1146849*pow(xi2, 25) + 74671105.3192668*pow(xi2, 23) - 72510060.6815735*pow(xi2, 21) + 50652263.6690386*pow(xi2, 19) - 25722379.0240824*pow(xi2, 17) + 9480938.51420894*pow(xi2, 15) - 2503513.98898512*pow(xi2, 13) + 461137.163681835*pow(xi2, 11) - 56571.6800898314*pow(xi2, 9) + 4267.03145876527*pow(xi2, 7) - 170.246647298336*pow(xi2, 5) + 2.51844152808189*pow(xi2, 3); case 28: return -1818574.24181249*pow(xi1, 32) + 14516897.6514182*pow(xi1, 30) - 52511869.8034722*pow(xi1, 28) + 113840304.253635*pow(xi1, 26) - 164833771.490504*pow(xi1, 24) + 168159990.091489*pow(xi1, 22) - 124255903.500852*pow(xi1, 20) + 67314123.2068179*pow(xi1, 18) - 26755766.9500322*pow(xi1, 16) + 7728158.51647016*pow(xi1, 14) - 1588058.92531319*pow(xi1, 12) + 223746.609440781*pow(xi1, 10) - 20315.2289499063*pow(xi1, 8) + 1065.5041789636*pow(xi1, 6) - 25.8382414467633*pow(xi1, 4) + 0.145294703543186*pow(xi1, 2) + 1818574.24181249*pow(xi2, 32) - 14516897.6514182*pow(xi2, 30) + 52511869.8034722*pow(xi2, 28) - 113840304.253635*pow(xi2, 26) + 164833771.490504*pow(xi2, 24) - 168159990.091489*pow(xi2, 22) + 124255903.500852*pow(xi2, 20) - 67314123.2068179*pow(xi2, 18) + 26755766.9500322*pow(xi2, 16) - 7728158.51647016*pow(xi2, 14) + 1588058.92531319*pow(xi2, 12) - 223746.609440781*pow(xi2, 10) + 20315.2289499063*pow(xi2, 8) - 1065.5041789636*pow(xi2, 6) + 25.8382414467633*pow(xi2, 4) - 0.145294703543186*pow(xi2, 2); case 29: return -3461618.30989224*pow(xi1, 33) + 28498480.2996788*pow(xi1, 31) - 106650445.835851*pow(xi1, 29) + 240073829.195359*pow(xi1, 27) - 362501705.126616*pow(xi1, 25) + 387645522.427694*pow(xi1, 23) - 302119490.023002*pow(xi1, 21) + 173956904.077601*pow(xi1, 19) - 74200832.0310932*pow(xi1, 17) + 23288542.3204008*pow(xi1, 15) - 5288299.728707*pow(xi1, 13) + 843336.470763026*pow(xi1, 11) - 89923.5811349005*pow(xi1, 9) + 5901.7463196069*pow(xi1, 7) - 204.516824707389*pow(xi1, 5) + 2.61530466377735*pow(xi1, 3) + 3461618.30989224*pow(xi2, 33) - 28498480.2996788*pow(xi2, 31) + 106650445.835851*pow(xi2, 29) - 240073829.195359*pow(xi2, 27) + 362501705.126616*pow(xi2, 25) - 387645522.427694*pow(xi2, 23) + 302119490.023002*pow(xi2, 21) - 173956904.077601*pow(xi2, 19) + 74200832.0310932*pow(xi2, 17) - 23288542.3204008*pow(xi2, 15) + 5288299.728707*pow(xi2, 13) - 843336.470763026*pow(xi2, 11) + 89923.5811349005*pow(xi2, 9) - 5901.7463196069*pow(xi2, 7) + 204.516824707389*pow(xi2, 5) - 2.61530466377735*pow(xi2, 3); default: return 0.; } case 8: switch(j) { case 0: return -2.70703125*pow(xi1, 8)*y1t + 4.921875*pow(xi1, 6)*y1t - 2.4609375*pow(xi1, 4)*y1t + 0.234375*pow(xi1, 2)*y1t + 2.70703125*pow(xi2, 8)*y1t - 4.921875*pow(xi2, 6)*y1t + 2.4609375*pow(xi2, 4)*y1t - 0.234375*pow(xi2, 2)*y1t; case 1: return -1.353515625*pow(xi1, 8)*y1r + 0.515625*pow(xi1, 7)*y1r + 2.4609375*pow(xi1, 6)*y1r - 0.984375*pow(xi1, 5)*y1r - 1.23046875*pow(xi1, 4)*y1r + 0.546875*pow(xi1, 3)*y1r + 0.1171875*pow(xi1, 2)*y1r - 0.078125*xi1*y1r + 1.353515625*pow(xi2, 8)*y1r - 0.515625*pow(xi2, 7)*y1r - 2.4609375*pow(xi2, 6)*y1r + 0.984375*pow(xi2, 5)*y1r + 1.23046875*pow(xi2, 4)*y1r - 0.546875*pow(xi2, 3)*y1r - 0.1171875*pow(xi2, 2)*y1r + 0.078125*xi2*y1r; case 2: return 2.70703125*pow(xi1, 8)*y2t - 4.921875*pow(xi1, 6)*y2t + 2.4609375*pow(xi1, 4)*y2t - 0.234375*pow(xi1, 2)*y2t - 2.70703125*pow(xi2, 8)*y2t + 4.921875*pow(xi2, 6)*y2t - 2.4609375*pow(xi2, 4)*y2t + 0.234375*pow(xi2, 2)*y2t; case 3: return -1.353515625*pow(xi1, 8)*y2r - 0.515625*pow(xi1, 7)*y2r + 2.4609375*pow(xi1, 6)*y2r + 0.984375*pow(xi1, 5)*y2r - 1.23046875*pow(xi1, 4)*y2r - 0.546875*pow(xi1, 3)*y2r + 0.1171875*pow(xi1, 2)*y2r + 0.078125*xi1*y2r + 1.353515625*pow(xi2, 8)*y2r + 0.515625*pow(xi2, 7)*y2r - 2.4609375*pow(xi2, 6)*y2r - 0.984375*pow(xi2, 5)*y2r + 1.23046875*pow(xi2, 4)*y2r + 0.546875*pow(xi2, 3)*y2r - 0.1171875*pow(xi2, 2)*y2r - 0.078125*xi2*y2r; case 4: return -2.40625*pow(xi1, 9) + 5.25*pow(xi1, 7) - 3.9375*pow(xi1, 5) + 1.25*pow(xi1, 3) - 0.15625*xi1 + 2.40625*pow(xi2, 9) - 5.25*pow(xi2, 7) + 3.9375*pow(xi2, 5) - 1.25*pow(xi2, 3) + 0.15625*xi2; case 5: return -3.609375*pow(xi1, 10) + 8.859375*pow(xi1, 8) - 7.65625*pow(xi1, 6) + 2.65625*pow(xi1, 4) - 0.234375*pow(xi1, 2) + 3.609375*pow(xi2, 10) - 8.859375*pow(xi2, 8) + 7.65625*pow(xi2, 6) - 2.65625*pow(xi2, 4) + 0.234375*pow(xi2, 2); case 6: return -5.7421875*pow(xi1, 11) + 15.5859375*pow(xi1, 9) - 15.421875*pow(xi1, 7) + 6.671875*pow(xi1, 5) - 1.2109375*pow(xi1, 3) + 0.1171875*xi1 + 5.7421875*pow(xi2, 11) - 15.5859375*pow(xi2, 9) + 15.421875*pow(xi2, 7) - 6.671875*pow(xi2, 5) + 1.2109375*pow(xi2, 3) - 0.1171875*xi2; case 7: return -9.474609375*pow(xi1, 12) + 28.13671875*pow(xi1, 10) - 31.376953125*pow(xi1, 8) + 16.1328125*pow(xi1, 6) - 3.759765625*pow(xi1, 4) + 0.29296875*pow(xi1, 2) + 9.474609375*pow(xi2, 12) - 28.13671875*pow(xi2, 10) + 31.376953125*pow(xi2, 8) - 16.1328125*pow(xi2, 6) + 3.759765625*pow(xi2, 4) - 0.29296875*pow(xi2, 2); case 8: return -16.0339543269231*pow(xi1, 13) + 51.6796875*pow(xi1, 11) - 64.12109375*pow(xi1, 9) + 38.203125*pow(xi1, 7) - 11.07421875*pow(xi1, 5) + 1.3671875*pow(xi1, 3) - 0.09765625*xi1 + 16.0339543269231*pow(xi2, 13) - 51.6796875*pow(xi2, 11) + 64.12109375*pow(xi2, 9) - 38.203125*pow(xi2, 7) + 11.07421875*pow(xi2, 5) - 1.3671875*pow(xi2, 3) + 0.09765625*xi2; case 9: return -27.650390625*pow(xi1, 14) + 96.099609375*pow(xi1, 12) - 131.291015625*pow(xi1, 10) + 88.974609375*pow(xi1, 8) - 30.966796875*pow(xi1, 6) + 5.126953125*pow(xi1, 4) - 0.341796875*pow(xi1, 2) + 27.650390625*pow(xi2, 14) - 96.099609375*pow(xi2, 12) + 131.291015625*pow(xi2, 10) - 88.974609375*pow(xi2, 8) + 30.966796875*pow(xi2, 6) - 5.126953125*pow(xi2, 4) + 0.341796875*pow(xi2, 2); case 10: return -48.38818359375*pow(xi1, 15) + 180.35595703125*pow(xi1, 13) - 269.01123046875*pow(xi1, 11) + 204.39697265625*pow(xi1, 9) - 83.19580078125*pow(xi1, 7) + 17.38037109375*pow(xi1, 5) - 1.62353515625*pow(xi1, 3) + 0.08544921875*xi1 + 48.38818359375*pow(xi2, 15) - 180.35595703125*pow(xi2, 13) + 269.01123046875*pow(xi2, 11) - 204.39697265625*pow(xi2, 9) + 83.19580078125*pow(xi2, 7) - 17.38037109375*pow(xi2, 5) + 1.62353515625*pow(xi2, 3) - 0.08544921875*xi2; case 11: return -85.6874084472656*pow(xi1, 16) + 340.916748046875*pow(xi1, 14) - 551.209838867188*pow(xi1, 12) + 464.177978515625*pow(xi1, 10) - 216.592712402344*pow(xi1, 8) + 54.884033203125*pow(xi1, 6) - 6.8572998046875*pow(xi1, 4) + 0.384521484375*pow(xi1, 2) + 85.6874084472656*pow(xi2, 16) - 340.916748046875*pow(xi2, 14) + 551.209838867188*pow(xi2, 12) - 464.177978515625*pow(xi2, 10) + 216.592712402344*pow(xi2, 8) - 54.884033203125*pow(xi2, 6) + 6.8572998046875*pow(xi2, 4) - 0.384521484375*pow(xi2, 2); case 12: return -153.229248046875*pow(xi1, 17) + 648.1083984375*pow(xi1, 15) - 1129.0576171875*pow(xi1, 13) + 1043.8720703125*pow(xi1, 11) - 549.75830078125*pow(xi1, 9) + 164.2587890625*pow(xi1, 7) - 26.0654296875*pow(xi1, 5) + 1.9482421875*pow(xi1, 3) - 0.076904296875*xi1 + 153.229248046875*pow(xi2, 17) - 648.1083984375*pow(xi2, 15) + 1129.0576171875*pow(xi2, 13) - 1043.8720703125*pow(xi2, 11) + 549.75830078125*pow(xi2, 9) - 164.2587890625*pow(xi2, 7) + 26.0654296875*pow(xi2, 5) - 1.9482421875*pow(xi2, 3) + 0.076904296875*xi2; case 13: return -276.276977539063*pow(xi1, 18) + 1237.86437988281*pow(xi1, 16) - 2311.435546875*pow(xi1, 14) + 2327.8759765625*pow(xi1, 12) - 1366.56469726563*pow(xi1, 10) + 471.289306640625*pow(xi1, 8) - 91.3623046875*pow(xi1, 6) + 9.0234375*pow(xi1, 4) - 0.4229736328125*pow(xi1, 2) + 276.276977539063*pow(xi2, 18) - 1237.86437988281*pow(xi2, 16) + 2311.435546875*pow(xi2, 14) - 2327.8759765625*pow(xi2, 12) + 1366.56469726563*pow(xi2, 10) - 471.289306640625*pow(xi2, 8) + 91.3623046875*pow(xi2, 6) - 9.0234375*pow(xi2, 4) + 0.4229736328125*pow(xi2, 2); case 14: return -501.660827636719*pow(xi1, 19) + 2373.47039794922*pow(xi1, 17) - 4729.00073242188*pow(xi1, 15) + 5153.51928710938*pow(xi1, 13) - 3338.01818847656*pow(xi1, 11) + 1306.88244628906*pow(xi1, 9) - 300.665771484375*pow(xi1, 7) + 37.729248046875*pow(xi1, 5) - 2.32635498046875*pow(xi1, 3) + 0.07049560546875*xi1 + 501.660827636719*pow(xi2, 19) - 2373.47039794922*pow(xi2, 17) + 4729.00073242188*pow(xi2, 15) - 5153.51928710938*pow(xi2, 13) + 3338.01818847656*pow(xi2, 11) - 1306.88244628906*pow(xi2, 9) + 300.665771484375*pow(xi2, 7) - 37.729248046875*pow(xi2, 5) + 2.32635498046875*pow(xi2, 3) - 0.07049560546875*xi2; case 15: return -916.495742797852*pow(xi1, 20) + 4565.8151550293*pow(xi1, 18) - 9668.48670959473*pow(xi1, 16) + 11336.3458251953*pow(xi1, 14) - 8033.13552856445*pow(xi1, 12) + 3523.35626220703*pow(xi1, 10) - 940.964263916016*pow(xi1, 8) + 144.797973632813*pow(xi1, 6) - 11.6846466064453*pow(xi1, 4) + 0.458221435546875*pow(xi1, 2) + 916.495742797852*pow(xi2, 20) - 4565.8151550293*pow(xi2, 18) + 9668.48670959473*pow(xi2, 16) - 11336.3458251953*pow(xi2, 14) + 8033.13552856445*pow(xi2, 12) - 3523.35626220703*pow(xi2, 10) + 940.964263916016*pow(xi2, 8) - 144.797973632813*pow(xi2, 6) + 11.6846466064453*pow(xi2, 4) - 0.458221435546875*pow(xi2, 2); case 16: return -1683.35952758789*pow(xi1, 21) + 8807.88116455078*pow(xi1, 19) - 19753.4588928223*pow(xi1, 17) + 24796.6374511719*pow(xi1, 15) - 19086.1575317383*pow(xi1, 13) + 9276.90124511719*pow(xi1, 11) - 2826.61529541016*pow(xi1, 9) + 518.549560546875*pow(xi1, 7) - 53.0620422363281*pow(xi1, 5) + 2.74932861328125*pow(xi1, 3) - 0.065460205078125*xi1 + 1683.35952758789*pow(xi2, 21) - 8807.88116455078*pow(xi2, 19) + 19753.4588928223*pow(xi2, 17) - 24796.6374511719*pow(xi2, 15) + 19086.1575317383*pow(xi2, 13) - 9276.90124511719*pow(xi2, 11) + 2826.61529541016*pow(xi2, 9) - 518.549560546875*pow(xi2, 7) + 53.0620422363281*pow(xi2, 5) - 2.74932861328125*pow(xi2, 3) + 0.065460205078125*xi2; case 17: return -3106.56349182129*pow(xi1, 22) + 17032.5377655029*pow(xi1, 20) - 40329.7801971436*pow(xi1, 18) + 53967.8263092041*pow(xi1, 16) - 44844.786529541*pow(xi1, 14) + 23938.3236999512*pow(xi1, 12) - 8206.77645874023*pow(xi1, 10) + 1755.44631958008*pow(xi1, 8) - 220.63362121582*pow(xi1, 6) + 14.8921966552734*pow(xi1, 4) - 0.490951538085938*pow(xi1, 2) + 3106.56349182129*pow(xi2, 22) - 17032.5377655029*pow(xi2, 20) + 40329.7801971436*pow(xi2, 18) - 53967.8263092041*pow(xi2, 16) + 44844.786529541*pow(xi2, 14) - 23938.3236999512*pow(xi2, 12) + 8206.77645874023*pow(xi2, 10) - 1755.44631958008*pow(xi2, 8) + 220.63362121582*pow(xi2, 6) - 14.8921966552734*pow(xi2, 4) + 0.490951538085938*pow(xi2, 2); case 18: return -5757.27255821228*pow(xi1, 23) + 33007.2371006012*pow(xi1, 21) - 82283.7614536285*pow(xi1, 19) + 116930.786275864*pow(xi1, 17) - 104341.16991806*pow(xi1, 15) + 60706.0439186096*pow(xi1, 13) - 23152.2125434875*pow(xi1, 11) + 5673.22050094604*pow(xi1, 9) - 852.549619674683*pow(xi1, 7) + 72.8285694122314*pow(xi1, 5) - 3.21164131164551*pow(xi1, 3) + 0.0613689422607422*xi1 + 5757.27255821228*pow(xi2, 23) - 33007.2371006012*pow(xi2, 21) + 82283.7614536285*pow(xi2, 19) - 116930.786275864*pow(xi2, 17) + 104341.16991806*pow(xi2, 15) - 60706.0439186096*pow(xi2, 13) + 23152.2125434875*pow(xi2, 11) - 5673.22050094604*pow(xi2, 9) + 852.549619674683*pow(xi2, 7) - 72.8285694122314*pow(xi2, 5) + 3.21164131164551*pow(xi2, 3) - 0.0613689422607422*xi2; case 19: return -10710.2202737331*pow(xi1, 24) + 64084.2932081223*pow(xi1, 22) - 167771.560342312*pow(xi1, 20) + 252330.548357964*pow(xi1, 18) - 240678.833252192*pow(xi1, 16) + 151630.777410507*pow(xi1, 14) - 63727.5063905716*pow(xi1, 12) + 17635.4748363495*pow(xi1, 10) - 3100.26537537575*pow(xi1, 8) + 325.466094017029*pow(xi1, 6) - 18.6919569969177*pow(xi1, 4) + 0.521636009216309*pow(xi1, 2) + 10710.2202737331*pow(xi2, 24) - 64084.2932081223*pow(xi2, 22) + 167771.560342312*pow(xi2, 20) - 252330.548357964*pow(xi2, 18) + 240678.833252192*pow(xi2, 16) - 151630.777410507*pow(xi2, 14) + 63727.5063905716*pow(xi2, 12) - 17635.4748363495*pow(xi2, 10) + 3100.26537537575*pow(xi2, 8) - 325.466094017029*pow(xi2, 6) + 18.6919569969177*pow(xi2, 4) - 0.521636009216309*pow(xi2, 2); case 20: return -19992.4111776352*pow(xi1, 25) + 124628.017730713*pow(xi1, 23) - 341861.576414108*pow(xi1, 21) + 542531.872558594*pow(xi1, 19) - 550892.626976967*pow(xi1, 17) + 373726.219482422*pow(xi1, 15) - 171716.18970108*pow(xi1, 13) + 53039.797668457*pow(xi1, 11) - 10716.5249490738*pow(xi1, 9) + 1347.62924194336*pow(xi1, 7) - 97.8589153289795*pow(xi1, 5) + 3.70941162109375*pow(xi1, 3) - 0.0579595565795898*xi1 + 19992.4111776352*pow(xi2, 25) - 124628.017730713*pow(xi2, 23) + 341861.576414108*pow(xi2, 21) - 542531.872558594*pow(xi2, 19) + 550892.626976967*pow(xi2, 17) - 373726.219482422*pow(xi2, 15) + 171716.18970108*pow(xi2, 13) - 53039.797668457*pow(xi2, 11) + 10716.5249490738*pow(xi2, 9) - 1347.62924194336*pow(xi2, 7) + 97.8589153289795*pow(xi2, 5) - 3.70941162109375*pow(xi2, 3) + 0.0579595565795898*xi2; case 21: return -37435.1828731023*pow(xi1, 26) + 242730.829489231*pow(xi1, 24) - 696181.399483681*pow(xi1, 22) + 1162625.44245243*pow(xi1, 20) - 1252241.40361547*pow(xi1, 18) + 910307.749307156*pow(xi1, 16) - 454159.560728073*pow(xi1, 14) + 155054.118558884*pow(xi1, 12) - 35489.4119925499*pow(xi1, 10) + 5233.38281393051*pow(xi1, 8) - 467.142434120178*pow(xi1, 6) + 23.1258630752563*pow(xi1, 4) - 0.550615787506104*pow(xi1, 2) + 37435.1828731023*pow(xi2, 26) - 242730.829489231*pow(xi2, 24) + 696181.399483681*pow(xi2, 22) - 1162625.44245243*pow(xi2, 20) + 1252241.40361547*pow(xi2, 18) - 910307.749307156*pow(xi2, 16) + 454159.560728073*pow(xi2, 14) - 155054.118558884*pow(xi2, 12) + 35489.4119925499*pow(xi2, 10) - 5233.38281393051*pow(xi2, 8) + 467.142434120178*pow(xi2, 6) - 23.1258630752563*pow(xi2, 4) + 0.550615787506104*pow(xi2, 2); case 22: return -70294.9545061588*pow(xi1, 27) + 473384.903422594*pow(xi1, 25) - 1416926.27066374*pow(xi1, 23) + 2483930.03357649*pow(xi1, 21) - 2828756.50350451*pow(xi1, 19) + 2194030.45318007*pow(xi1, 17) - 1181610.30903339*pow(xi1, 15) + 442227.793622017*pow(xi1, 13) - 113300.856317282*pow(xi1, 11) + 19251.8955790997*pow(xi1, 9) - 2061.04299116135*pow(xi1, 7) + 129.04231595993*pow(xi1, 5) - 4.239741563797*pow(xi1, 3) + 0.0550615787506104*xi1 + 70294.9545061588*pow(xi2, 27) - 473384.903422594*pow(xi2, 25) + 1416926.27066374*pow(xi2, 23) - 2483930.03357649*pow(xi2, 21) + 2828756.50350451*pow(xi2, 19) - 2194030.45318007*pow(xi2, 17) + 1181610.30903339*pow(xi2, 15) - 442227.793622017*pow(xi2, 13) + 113300.856317282*pow(xi2, 11) - 19251.8955790997*pow(xi2, 9) + 2061.04299116135*pow(xi2, 7) - 129.04231595993*pow(xi2, 5) + 4.239741563797*pow(xi2, 3) - 0.0550615787506104*xi2; case 23: return -132341.011289656*pow(xi1, 28) + 924333.005681634*pow(xi1, 26) - 2882286.2527594*pow(xi1, 24) + 5292172.23957181*pow(xi1, 22) - 6353932.12669283*pow(xi1, 20) + 5238217.27822244*pow(xi1, 18) - 3029728.63045782*pow(xi1, 16) + 1234258.81294012*pow(xi1, 14) - 350443.153385818*pow(xi1, 12) + 67627.7707961798*pow(xi1, 10) - 8505.12255173922*pow(xi1, 8) + 654.847356081009*pow(xi1, 6) - 28.2328245043755*pow(xi1, 4) + 0.578146576881409*pow(xi1, 2) + 132341.011289656*pow(xi2, 28) - 924333.005681634*pow(xi2, 26) + 2882286.2527594*pow(xi2, 24) - 5292172.23957181*pow(xi2, 22) + 6353932.12669283*pow(xi2, 20) - 5238217.27822244*pow(xi2, 18) + 3029728.63045782*pow(xi2, 16) - 1234258.81294012*pow(xi2, 14) + 350443.153385818*pow(xi2, 12) - 67627.7707961798*pow(xi2, 10) + 8505.12255173922*pow(xi2, 8) - 654.847356081009*pow(xi2, 6) + 28.2328245043755*pow(xi2, 4) - 0.578146576881409*pow(xi2, 2); case 24: return -249746.986822486*pow(xi1, 29) + 1806837.60868192*pow(xi1, 27) - 5860084.52208102*pow(xi1, 25) + 11246581.6746354*pow(xi1, 23) - 14198689.9865001*pow(xi1, 21) + 12399650.7613456*pow(xi1, 19) - 7667706.33566916*pow(xi1, 17) + 3379488.03859234*pow(xi1, 15) - 1054394.5972234*pow(xi1, 13) + 228315.864676237*pow(xi1, 11) - 33153.3859709501*pow(xi1, 9) + 3064.44115304947*pow(xi1, 7) - 167.322627186775*pow(xi1, 5) + 4.80036854743958*pow(xi1, 3) - 0.0525587797164917*xi1 + 249746.986822486*pow(xi2, 29) - 1806837.60868192*pow(xi2, 27) + 5860084.52208102*pow(xi2, 25) - 11246581.6746354*pow(xi2, 23) + 14198689.9865001*pow(xi2, 21) - 12399650.7613456*pow(xi2, 19) + 7667706.33566916*pow(xi2, 17) - 3379488.03859234*pow(xi2, 15) + 1054394.5972234*pow(xi2, 13) - 228315.864676237*pow(xi2, 11) + 33153.3859709501*pow(xi2, 9) - 3064.44115304947*pow(xi2, 7) + 167.322627186775*pow(xi2, 5) - 4.80036854743958*pow(xi2, 3) + 0.0525587797164917*xi2; case 25: return -472347.562033832*pow(xi1, 30) + 3535449.9340108*pow(xi1, 28) - 11908551.1147007*pow(xi1, 26) + 23844310.0991026*pow(xi1, 24) - 31579394.0735087*pow(xi1, 22) + 29124851.166729*pow(xi1, 20) - 19179056.4950797*pow(xi1, 18) + 9096790.49992114*pow(xi1, 16) - 3096188.05515915*pow(xi1, 14) + 744686.034451425*pow(xi1, 12) - 123066.221275628*pow(xi1, 10) + 13381.5246321559*pow(xi1, 8) - 899.184363186359*pow(xi1, 6) + 34.0493294596672*pow(xi1, 4) - 0.604425966739655*pow(xi1, 2) + 472347.562033832*pow(xi2, 30) - 3535449.9340108*pow(xi2, 28) + 11908551.1147007*pow(xi2, 26) - 23844310.0991026*pow(xi2, 24) + 31579394.0735087*pow(xi2, 22) - 29124851.166729*pow(xi2, 20) + 19179056.4950797*pow(xi2, 18) - 9096790.49992114*pow(xi2, 16) + 3096188.05515915*pow(xi2, 14) - 744686.034451425*pow(xi2, 12) + 123066.221275628*pow(xi2, 10) - 13381.5246321559*pow(xi2, 8) + 899.184363186359*pow(xi2, 6) - 34.0493294596672*pow(xi2, 4) + 0.604425966739655*pow(xi2, 2); case 26: return -895174.815144762*pow(xi1, 31) + 6924185.8525414*pow(xi1, 29) - 24188727.8042527*pow(xi1, 27) + 50443217.3199738*pow(xi1, 25) - 69932128.9454531*pow(xi1, 23) + 67927236.8258033*pow(xi1, 21) - 47465195.5647927*pow(xi1, 19) + 24114852.0421258*pow(xi1, 17) - 8897819.76002522*pow(xi1, 15) + 2356624.70512949*pow(xi1, 13) - 437897.870313004*pow(xi1, 11) + 55065.7599892467*pow(xi1, 9) - 4446.10128606856*pow(xi1, 7) + 213.694800540805*pow(xi1, 5) - 5.38946487009525*pow(xi1, 3) + 0.0503688305616379*xi1 + 895174.815144762*pow(xi2, 31) - 6924185.8525414*pow(xi2, 29) + 24188727.8042527*pow(xi2, 27) - 50443217.3199738*pow(xi2, 25) + 69932128.9454531*pow(xi2, 23) - 67927236.8258033*pow(xi2, 21) + 47465195.5647927*pow(xi2, 19) - 24114852.0421258*pow(xi2, 17) + 8897819.76002522*pow(xi2, 15) - 2356624.70512949*pow(xi2, 13) + 437897.870313004*pow(xi2, 11) - 55065.7599892467*pow(xi2, 9) + 4446.10128606856*pow(xi2, 7) - 213.694800540805*pow(xi2, 5) + 5.38946487009525*pow(xi2, 3) - 0.0503688305616379*xi2; case 27: return -1699713.18025612*pow(xi1, 32) + 13572477.7881676*pow(xi1, 30) - 49110727.486688*pow(xi1, 28) + 106498272.480833*pow(xi1, 26) - 154246386.564348*pow(xi1, 24) + 157401903.208298*pow(xi1, 22) - 116340051.261704*pow(xi1, 20) + 63051164.7932561*pow(xi1, 18) - 25082662.6889706*pow(xi1, 16) + 7261397.49628846*pow(xi1, 14) - 1501655.10006906*pow(xi1, 12) + 215279.573045634*pow(xi1, 10) - 20471.3273524772*pow(xi1, 8) + 1212.25182954222*pow(xi1, 6) - 40.6098696403205*pow(xi1, 4) + 0.629610382020473*pow(xi1, 2) + 1699713.18025612*pow(xi2, 32) - 13572477.7881676*pow(xi2, 30) + 49110727.486688*pow(xi2, 28) - 106498272.480833*pow(xi2, 26) + 154246386.564348*pow(xi2, 24) - 157401903.208298*pow(xi2, 22) + 116340051.261704*pow(xi2, 20) - 63051164.7932561*pow(xi2, 18) + 25082662.6889706*pow(xi2, 16) - 7261397.49628846*pow(xi2, 14) + 1501655.10006906*pow(xi2, 12) - 215279.573045634*pow(xi2, 10) + 20471.3273524772*pow(xi2, 8) - 1212.25182954222*pow(xi2, 6) + 40.6098696403205*pow(xi2, 4) - 0.629610382020473*pow(xi2, 2); case 28: return -3233020.87433331*pow(xi1, 33) + 26624877.7886273*pow(xi1, 31) - 99668638.718943*pow(xi1, 29) + 224421795.69438*pow(xi1, 27) - 338960904.584224*pow(xi1, 25) + 362568410.607603*pow(xi1, 23) - 282653208.096126*pow(xi1, 21) + 162807565.128513*pow(xi1, 19) - 69493811.927836*pow(xi1, 17) + 21849539.0316908*pow(xi1, 15) - 4984958.43316376*pow(xi1, 13) + 804945.792270452*pow(xi1, 11) - 88641.442552954*pow(xi1, 9) + 6313.27903792262*pow(xi1, 7) - 269.202026724815*pow(xi1, 5) + 6.00551441311836*pow(xi1, 3) - 0.0484315678477287*xi1 + 3233020.87433331*pow(xi2, 33) - 26624877.7886273*pow(xi2, 31) + 99668638.718943*pow(xi2, 29) - 224421795.69438*pow(xi2, 27) + 338960904.584224*pow(xi2, 25) - 362568410.607603*pow(xi2, 23) + 282653208.096126*pow(xi2, 21) - 162807565.128513*pow(xi2, 19) + 69493811.927836*pow(xi2, 17) - 21849539.0316908*pow(xi2, 15) + 4984958.43316376*pow(xi2, 13) - 804945.792270452*pow(xi2, 11) + 88641.442552954*pow(xi2, 9) - 6313.27903792262*pow(xi2, 7) + 269.202026724815*pow(xi2, 5) - 6.00551441311836*pow(xi2, 3) + 0.0484315678477287*xi2; case 29: return -6159644.34554354*pow(xi1, 34) + 52267170.8017219*pow(xi1, 32) - 202194111.58739*pow(xi1, 30) + 472090210.646781*pow(xi1, 28) - 742330528.164016*pow(xi1, 26) + 830587403.930279*pow(xi1, 24) - 681190082.905951*pow(xi1, 22) + 415637119.889813*pow(xi1, 20) - 189551172.160955*pow(xi1, 18) + 64362896.3166805*pow(xi1, 16) - 16078796.4261874*pow(xi1, 14) + 2894443.79047908*pow(xi1, 12) - 363906.137368977*pow(xi1, 10) + 30556.7713536322*pow(xi1, 8) - 1607.71495364606*pow(xi1, 6) + 47.9472521692514*pow(xi1, 4) - 0.653826165944338*pow(xi1, 2) + 6159644.34554354*pow(xi2, 34) - 52267170.8017219*pow(xi2, 32) + 202194111.58739*pow(xi2, 30) - 472090210.646781*pow(xi2, 28) + 742330528.164016*pow(xi2, 26) - 830587403.930279*pow(xi2, 24) + 681190082.905951*pow(xi2, 22) - 415637119.889813*pow(xi2, 20) + 189551172.160955*pow(xi2, 18) - 64362896.3166805*pow(xi2, 16) + 16078796.4261874*pow(xi2, 14) - 2894443.79047908*pow(xi2, 12) + 363906.137368977*pow(xi2, 10) - 30556.7713536322*pow(xi2, 8) + 1607.71495364606*pow(xi2, 6) - 47.9472521692514*pow(xi2, 4) + 0.653826165944338*pow(xi2, 2); default: return 0.; } case 9: switch(j) { case 0: return -4.46875*pow(xi1, 9)*y1t + 9.28125*pow(xi1, 7)*y1t - 5.90625*pow(xi1, 5)*y1t + 1.09375*pow(xi1, 3)*y1t + 4.46875*pow(xi2, 9)*y1t - 9.28125*pow(xi2, 7)*y1t + 5.90625*pow(xi2, 5)*y1t - 1.09375*pow(xi2, 3)*y1t; case 1: return -2.234375*pow(xi1, 9)*y1r + 0.837890625*pow(xi1, 8)*y1r + 4.640625*pow(xi1, 7)*y1r - 1.8046875*pow(xi1, 6)*y1r - 2.953125*pow(xi1, 5)*y1r + 1.23046875*pow(xi1, 4)*y1r + 0.546875*pow(xi1, 3)*y1r - 0.2734375*pow(xi1, 2)*y1r + 2.234375*pow(xi2, 9)*y1r - 0.837890625*pow(xi2, 8)*y1r - 4.640625*pow(xi2, 7)*y1r + 1.8046875*pow(xi2, 6)*y1r + 2.953125*pow(xi2, 5)*y1r - 1.23046875*pow(xi2, 4)*y1r - 0.546875*pow(xi2, 3)*y1r + 0.2734375*pow(xi2, 2)*y1r; case 2: return 4.46875*pow(xi1, 9)*y2t - 9.28125*pow(xi1, 7)*y2t + 5.90625*pow(xi1, 5)*y2t - 1.09375*pow(xi1, 3)*y2t - 4.46875*pow(xi2, 9)*y2t + 9.28125*pow(xi2, 7)*y2t - 5.90625*pow(xi2, 5)*y2t + 1.09375*pow(xi2, 3)*y2t; case 3: return -2.234375*pow(xi1, 9)*y2r - 0.837890625*pow(xi1, 8)*y2r + 4.640625*pow(xi1, 7)*y2r + 1.8046875*pow(xi1, 6)*y2r - 2.953125*pow(xi1, 5)*y2r - 1.23046875*pow(xi1, 4)*y2r + 0.546875*pow(xi1, 3)*y2r + 0.2734375*pow(xi1, 2)*y2r + 2.234375*pow(xi2, 9)*y2r + 0.837890625*pow(xi2, 8)*y2r - 4.640625*pow(xi2, 7)*y2r - 1.8046875*pow(xi2, 6)*y2r + 2.953125*pow(xi2, 5)*y2r + 1.23046875*pow(xi2, 4)*y2r - 0.546875*pow(xi2, 3)*y2r - 0.2734375*pow(xi2, 2)*y2r; case 4: return -4.021875*pow(xi1, 10) + 9.796875*pow(xi1, 8) - 8.53125*pow(xi1, 6) + 3.28125*pow(xi1, 4) - 0.546875*pow(xi1, 2) + 4.021875*pow(xi2, 10) - 9.796875*pow(xi2, 8) + 8.53125*pow(xi2, 6) - 3.28125*pow(xi2, 4) + 0.546875*pow(xi2, 2); case 5: return -6.09375*pow(xi1, 11) + 16.5*pow(xi1, 9) - 16.3125*pow(xi1, 7) + 7.0*pow(xi1, 5) - 1.09375*pow(xi1, 3) + 6.09375*pow(xi2, 11) - 16.5*pow(xi2, 9) + 16.3125*pow(xi2, 7) - 7.0*pow(xi2, 5) + 1.09375*pow(xi2, 3); case 6: return -9.775390625*pow(xi1, 12) + 29.00390625*pow(xi1, 10) - 32.326171875*pow(xi1, 8) + 16.6067708333333*pow(xi1, 6) - 3.896484375*pow(xi1, 4) + 0.41015625*pow(xi1, 2) + 9.775390625*pow(xi2, 12) - 29.00390625*pow(xi2, 10) + 32.326171875*pow(xi2, 8) - 16.6067708333333*pow(xi2, 6) + 3.896484375*pow(xi2, 4) - 0.41015625*pow(xi2, 2); case 7: return -16.2421875*pow(xi1, 13) + 52.3359375*pow(xi1, 11) - 64.921875*pow(xi1, 9) + 38.671875*pow(xi1, 7) - 11.2109375*pow(xi1, 5) + 1.3671875*pow(xi1, 3) + 16.2421875*pow(xi2, 13) - 52.3359375*pow(xi2, 11) + 64.921875*pow(xi2, 9) - 38.671875*pow(xi2, 7) + 11.2109375*pow(xi2, 5) - 1.3671875*pow(xi2, 3); case 8: return -27.650390625*pow(xi1, 14) + 96.099609375*pow(xi1, 12) - 131.291015625*pow(xi1, 10) + 88.974609375*pow(xi1, 8) - 30.966796875*pow(xi1, 6) + 5.126953125*pow(xi1, 4) - 0.341796875*pow(xi1, 2) + 27.650390625*pow(xi2, 14) - 96.099609375*pow(xi2, 12) + 131.291015625*pow(xi2, 10) - 88.974609375*pow(xi2, 8) + 30.966796875*pow(xi2, 6) - 5.126953125*pow(xi2, 4) + 0.341796875*pow(xi2, 2); case 9: return -47.92734375*pow(xi1, 15) + 178.6640625*pow(xi1, 13) - 266.51953125*pow(xi1, 11) + 202.526041666667*pow(xi1, 9) - 82.44140625*pow(xi1, 7) + 17.2265625*pow(xi1, 5) - 1.59505208333333*pow(xi1, 3) + 47.92734375*pow(xi2, 15) - 178.6640625*pow(xi2, 13) + 266.51953125*pow(xi2, 11) - 202.526041666667*pow(xi2, 9) + 82.44140625*pow(xi2, 7) - 17.2265625*pow(xi2, 5) + 1.59505208333333*pow(xi2, 3); case 10: return -84.2472839355469*pow(xi1, 16) + 335.260986328125*pow(xi1, 14) - 542.167602539063*pow(xi1, 12) + 456.642333984375*pow(xi1, 10) - 213.108215332031*pow(xi1, 8) + 54.012451171875*pow(xi1, 6) - 6.7291259765625*pow(xi1, 4) + 0.299072265625*pow(xi1, 2) + 84.2472839355469*pow(xi2, 16) - 335.260986328125*pow(xi2, 14) + 542.167602539063*pow(xi2, 12) - 456.642333984375*pow(xi2, 10) + 213.108215332031*pow(xi2, 8) - 54.012451171875*pow(xi2, 6) + 6.7291259765625*pow(xi2, 4) - 0.299072265625*pow(xi2, 2); case 11: return -149.77294921875*pow(xi1, 17) + 633.65478515625*pow(xi1, 15) - 1104.13037109375*pow(xi1, 13) + 1021.03955078125*pow(xi1, 11) - 537.83447265625*pow(xi1, 9) + 160.72998046875*pow(xi1, 7) - 25.48095703125*pow(xi1, 5) + 1.79443359375*pow(xi1, 3) + 149.77294921875*pow(xi2, 17) - 633.65478515625*pow(xi2, 15) + 1104.13037109375*pow(xi2, 13) - 1021.03955078125*pow(xi2, 11) + 537.83447265625*pow(xi2, 9) - 160.72998046875*pow(xi2, 7) + 25.48095703125*pow(xi2, 5) - 1.79443359375*pow(xi2, 3); case 12: return -268.759236653646*pow(xi1, 18) + 1204.52014160156*pow(xi1, 16) - 2249.736328125*pow(xi1, 14) + 2266.26139322917*pow(xi1, 12) - 1330.67504882813*pow(xi1, 10) + 459.010986328125*pow(xi1, 8) - 88.9560546875*pow(xi1, 6) + 8.61328125*pow(xi1, 4) - 0.2691650390625*pow(xi1, 2) + 268.759236653646*pow(xi2, 18) - 1204.52014160156*pow(xi2, 16) + 2249.736328125*pow(xi2, 14) - 2266.26139322917*pow(xi2, 12) + 1330.67504882813*pow(xi2, 10) - 459.010986328125*pow(xi2, 8) + 88.9560546875*pow(xi2, 6) - 8.61328125*pow(xi2, 4) + 0.2691650390625*pow(xi2, 2); case 13: return -486.081298828125*pow(xi1, 19) + 2300.4287109375*pow(xi1, 17) - 4584.6708984375*pow(xi1, 15) + 4997.4462890625*pow(xi1, 13) - 3237.65380859375*pow(xi1, 11) + 1267.8681640625*pow(xi1, 9) - 291.6826171875*pow(xi1, 7) + 36.3193359375*pow(xi1, 5) - 1.973876953125*pow(xi1, 3) + 486.081298828125*pow(xi2, 19) - 2300.4287109375*pow(xi2, 17) + 4584.6708984375*pow(xi2, 15) - 4997.4462890625*pow(xi2, 13) + 3237.65380859375*pow(xi2, 11) - 1267.8681640625*pow(xi2, 9) + 291.6826171875*pow(xi2, 7) - 36.3193359375*pow(xi2, 5) + 1.973876953125*pow(xi2, 3); case 14: return -885.073031616211*pow(xi1, 20) + 4410.56460571289*pow(xi1, 18) - 9342.22398376465*pow(xi1, 16) + 10956.5228271484*pow(xi1, 14) - 7765.78414916992*pow(xi1, 12) + 3406.85804443359*pow(xi1, 10) - 909.936126708984*pow(xi1, 8) + 139.553100585938*pow(xi1, 6) - 10.7329559326172*pow(xi1, 4) + 0.246734619140625*pow(xi1, 2) + 885.073031616211*pow(xi2, 20) - 4410.56460571289*pow(xi2, 18) + 9342.22398376465*pow(xi2, 16) - 10956.5228271484*pow(xi2, 14) + 7765.78414916992*pow(xi2, 12) - 3406.85804443359*pow(xi2, 10) + 909.936126708984*pow(xi2, 8) - 139.553100585938*pow(xi2, 6) + 10.7329559326172*pow(xi2, 4) - 0.246734619140625*pow(xi2, 2); case 15: return -1621.01287841797*pow(xi1, 21) + 8484.13201904297*pow(xi1, 19) - 19032.4753417969*pow(xi1, 17) + 23897.5576985677*pow(xi1, 15) - 18398.4429931641*pow(xi1, 13) + 8944.64904785156*pow(xi1, 11) - 2725.78621419271*pow(xi1, 9) + 499.278076171875*pow(xi1, 7) - 50.0377807617188*pow(xi1, 5) + 2.13836669921875*pow(xi1, 3) + 1621.01287841797*pow(xi2, 21) - 8484.13201904297*pow(xi2, 19) + 19032.4753417969*pow(xi2, 17) - 23897.5576985677*pow(xi2, 15) + 18398.4429931641*pow(xi2, 13) - 8944.64904785156*pow(xi2, 11) + 2725.78621419271*pow(xi2, 9) - 499.278076171875*pow(xi2, 7) + 50.0377807617188*pow(xi2, 5) - 2.13836669921875*pow(xi2, 3); case 16: return -2984.13734436035*pow(xi1, 22) + 16365.9954071045*pow(xi1, 20) - 38761.818649292*pow(xi1, 18) + 51882.5600738525*pow(xi1, 16) - 43122.1461486816*pow(xi1, 14) + 23023.9469909668*pow(xi1, 12) - 7894.69711303711*pow(xi1, 10) + 1687.47244262695*pow(xi1, 8) - 210.002883911133*pow(xi1, 6) + 13.0593109130859*pow(xi1, 4) - 0.229110717773438*pow(xi1, 2) + 2984.13734436035*pow(xi2, 22) - 16365.9954071045*pow(xi2, 20) + 38761.818649292*pow(xi2, 18) - 51882.5600738525*pow(xi2, 16) + 43122.1461486816*pow(xi2, 14) - 23023.9469909668*pow(xi2, 12) + 7894.69711303711*pow(xi2, 10) - 1687.47244262695*pow(xi2, 8) + 210.002883911133*pow(xi2, 6) - 13.0593109130859*pow(xi2, 4) + 0.229110717773438*pow(xi2, 2); case 17: return -5518.49166870117*pow(xi1, 23) + 31647.1591186523*pow(xi1, 21) - 78913.8542175293*pow(xi1, 19) + 112169.556884766*pow(xi1, 17) - 100115.90423584*pow(xi1, 15) + 58260.7701416016*pow(xi1, 13) - 22223.8673706055*pow(xi1, 11) + 5444.01977539063*pow(xi1, 9) - 813.997650146484*pow(xi1, 7) + 66.9003295898438*pow(xi1, 5) - 2.29110717773438*pow(xi1, 3) + 5518.49166870117*pow(xi2, 23) - 31647.1591186523*pow(xi2, 21) + 78913.8542175293*pow(xi2, 19) - 112169.556884766*pow(xi2, 17) + 100115.90423584*pow(xi2, 15) - 58260.7701416016*pow(xi2, 13) + 22223.8673706055*pow(xi2, 11) - 5444.01977539063*pow(xi2, 9) + 813.997650146484*pow(xi2, 7) - 66.9003295898438*pow(xi2, 5) + 2.29110717773438*pow(xi2, 3); case 18: return -10246.5743744373*pow(xi1, 24) + 61326.8917894363*pow(xi1, 22) - 160593.9336133*pow(xi1, 20) + 241593.914977709*pow(xi1, 18) - 230491.054247618*pow(xi1, 16) + 145244.379724503*pow(xi1, 14) - 61055.4647487005*pow(xi1, 12) + 16894.2880268097*pow(xi1, 10) - 2961.98580622673*pow(xi1, 8) + 304.893860816956*pow(xi1, 6) - 15.5723690986633*pow(xi1, 4) + 0.214791297912598*pow(xi1, 2) + 10246.5743744373*pow(xi2, 24) - 61326.8917894363*pow(xi2, 22) + 160593.9336133*pow(xi2, 20) - 241593.914977709*pow(xi2, 18) + 230491.054247618*pow(xi2, 16) - 145244.379724503*pow(xi2, 14) + 61055.4647487005*pow(xi2, 12) - 16894.2880268097*pow(xi2, 10) + 2961.98580622673*pow(xi2, 8) - 304.893860816956*pow(xi2, 6) + 15.5723690986633*pow(xi2, 4) - 0.214791297912598*pow(xi2, 2); case 19: return -19094.7927165985*pow(xi1, 25) + 119064.266939163*pow(xi1, 23) - 326681.909379959*pow(xi1, 21) + 518565.316343307*pow(xi1, 19) - 526676.111125946*pow(xi1, 17) + 357375.374311066*pow(xi1, 15) - 164236.218235016*pow(xi1, 13) + 50730.0305137634*pow(xi1, 11) - 10234.6607875824*pow(xi1, 9) + 1273.41782569885*pow(xi1, 7) - 87.1479892730713*pow(xi1, 5) + 2.43430137634277*pow(xi1, 3) + 19094.7927165985*pow(xi2, 25) - 119064.266939163*pow(xi2, 23) + 326681.909379959*pow(xi2, 21) - 518565.316343307*pow(xi2, 19) + 526676.111125946*pow(xi2, 17) - 357375.374311066*pow(xi2, 15) + 164236.218235016*pow(xi2, 13) - 50730.0305137634*pow(xi2, 11) + 10234.6607875824*pow(xi2, 9) - 1273.41782569885*pow(xi2, 7) + 87.1479892730713*pow(xi2, 5) - 2.43430137634277*pow(xi2, 3); case 20: return -35700.7342457771*pow(xi1, 26) + 231544.762108326*pow(xi1, 24) - 664261.264958382*pow(xi1, 22) + 1109577.42443562*pow(xi1, 20) - 1195370.44476271*pow(xi1, 18) + 869151.521766186*pow(xi1, 16) - 433712.863775253*pow(xi1, 14) + 148085.07665062*pow(xi1, 12) - 33866.3728480339*pow(xi1, 10) + 4964.00997877121*pow(xi1, 8) - 429.167332649231*pow(xi1, 6) + 18.2572603225708*pow(xi1, 4) - 0.202858448028564*pow(xi1, 2) + 35700.7342457771*pow(xi2, 26) - 231544.762108326*pow(xi2, 24) + 664261.264958382*pow(xi2, 22) - 1109577.42443562*pow(xi2, 20) + 1195370.44476271*pow(xi2, 18) - 869151.521766186*pow(xi2, 16) + 433712.863775253*pow(xi2, 14) - 148085.07665062*pow(xi2, 12) + 33866.3728480339*pow(xi2, 10) - 4964.00997877121*pow(xi2, 8) + 429.167332649231*pow(xi2, 6) - 18.2572603225708*pow(xi2, 4) + 0.202858448028564*pow(xi2, 2); case 21: return -66947.5757201513*pow(xi1, 27) + 450956.643104553*pow(xi1, 25) - 1350117.33681679*pow(xi1, 23) + 2367351.01711273*pow(xi1, 21) - 2696581.86814785*pow(xi1, 19) + 2091952.29377747*pow(xi1, 17) - 1126858.29648972*pow(xi1, 15) + 421785.623886108*pow(xi1, 13) - 108014.851653099*pow(xi1, 11) + 18288.6666742961*pow(xi1, 9) - 1922.75032997131*pow(xi1, 7) + 111.00414276123*pow(xi1, 5) - 2.56954034169515*pow(xi1, 3) + 66947.5757201513*pow(xi2, 27) - 450956.643104553*pow(xi2, 25) + 1350117.33681679*pow(xi2, 23) - 2367351.01711273*pow(xi2, 21) + 2696581.86814785*pow(xi2, 19) - 2091952.29377747*pow(xi2, 17) + 1126858.29648972*pow(xi2, 15) - 421785.623886108*pow(xi2, 13) + 108014.851653099*pow(xi2, 11) - 18288.6666742961*pow(xi2, 9) + 1922.75032997131*pow(xi2, 7) - 111.00414276123*pow(xi2, 5) + 2.56954034169515*pow(xi2, 3); case 22: return -125885.352202356*pow(xi1, 28) + 879459.403354526*pow(xi1, 26) - 2742999.29717928*pow(xi1, 24) + 5037549.29947257*pow(xi1, 22) - 6049516.46395773*pow(xi1, 20) + 4988280.7302314*pow(xi1, 18) - 2885731.76894814*pow(xi1, 16) + 1175760.47526598*pow(xi1, 14) - 333757.370148003*pow(xi1, 12) + 64269.6642190218*pow(xi1, 10) - 7996.5022303462*pow(xi1, 8) + 588.090698003769*pow(xi1, 6) - 21.1023500561714*pow(xi1, 4) + 0.192715525627136*pow(xi1, 2) + 125885.352202356*pow(xi2, 28) - 879459.403354526*pow(xi2, 26) + 2742999.29717928*pow(xi2, 24) - 5037549.29947257*pow(xi2, 22) + 6049516.46395773*pow(xi2, 20) - 4988280.7302314*pow(xi2, 18) + 2885731.76894814*pow(xi2, 16) - 1175760.47526598*pow(xi2, 14) + 333757.370148003*pow(xi2, 12) - 64269.6642190218*pow(xi2, 10) + 7996.5022303462*pow(xi2, 8) - 588.090698003769*pow(xi2, 6) + 21.1023500561714*pow(xi2, 4) - 0.192715525627136*pow(xi2, 2); case 23: return -237301.123691797*pow(xi1, 29) + 1717205.31722188*pow(xi1, 27) - 5570646.91424131*pow(xi1, 25) + 10693423.2775569*pow(xi1, 23) - 13503154.0309131*pow(xi1, 21) + 11794617.2651803*pow(xi1, 19) - 7294968.68435383*pow(xi1, 17) + 3215695.24364948*pow(xi1, 15) - 1003197.3931253*pow(xi1, 13) + 216942.985686064*pow(xi1, 11) - 31295.3054652214*pow(xi1, 9) + 2815.34257078171*pow(xi1, 7) - 138.678092241287*pow(xi1, 5) + 2.69801735877991*pow(xi1, 3) + 237301.123691797*pow(xi2, 29) - 1717205.31722188*pow(xi2, 27) + 5570646.91424131*pow(xi2, 25) - 10693423.2775569*pow(xi2, 23) + 13503154.0309131*pow(xi2, 21) - 11794617.2651803*pow(xi2, 19) + 7294968.68435383*pow(xi2, 17) - 3215695.24364948*pow(xi2, 15) + 1003197.3931253*pow(xi2, 13) - 216942.985686064*pow(xi2, 11) + 31295.3054652214*pow(xi2, 9) - 2815.34257078171*pow(xi2, 7) + 138.678092241287*pow(xi2, 5) - 2.69801735877991*pow(xi2, 3); case 24: return -448355.304914653*pow(xi1, 30) + 3356649.28634673*pow(xi1, 28) - 11308794.1731486*pow(xi1, 26) + 22648233.4607616*pow(xi1, 24) - 30001437.7402291*pow(xi1, 22) + 27674998.2284423*pow(xi1, 20) - 18227758.1421468*pow(xi1, 18) + 8646958.25716048*pow(xi1, 16) - 2943054.94313389*pow(xi1, 14) + 707276.096616685*pow(xi1, 12) - 116399.603186524*pow(xi1, 10) + 12447.9005028605*pow(xi1, 8) - 787.236498335997*pow(xi1, 6) + 24.0982005000114*pow(xi1, 4) - 0.183955729007721*pow(xi1, 2) + 448355.304914653*pow(xi2, 30) - 3356649.28634673*pow(xi2, 28) + 11308794.1731486*pow(xi2, 26) - 22648233.4607616*pow(xi2, 24) + 30001437.7402291*pow(xi2, 22) - 27674998.2284423*pow(xi2, 20) + 18227758.1421468*pow(xi2, 18) - 8646958.25716048*pow(xi2, 16) + 2943054.94313389*pow(xi2, 14) - 707276.096616685*pow(xi2, 12) + 116399.603186524*pow(xi2, 10) - 12447.9005028605*pow(xi2, 8) + 787.236498335997*pow(xi2, 6) - 24.0982005000114*pow(xi2, 4) + 0.183955729007721*pow(xi2, 2); case 25: return -848919.581535459*pow(xi1, 31) + 6567880.38637519*pow(xi1, 29) - 22948968.0209559*pow(xi1, 27) + 47867735.5486178*pow(xi1, 25) - 66374849.7944623*pow(xi1, 23) + 64484380.0577223*pow(xi1, 21) - 45067812.6132363*pow(xi1, 19) + 22900583.7163782*pow(xi1, 17) - 8450156.6509527*pow(xi1, 15) + 2236934.93848443*pow(xi1, 13) - 414545.549288392*pow(xi1, 11) + 51583.1626238823*pow(xi1, 9) - 4013.14664876461*pow(xi1, 7) + 170.367532491684*pow(xi1, 5) - 2.82065451145172*pow(xi1, 3) + 848919.581535459*pow(xi2, 31) - 6567880.38637519*pow(xi2, 29) + 22948968.0209559*pow(xi2, 27) - 47867735.5486178*pow(xi2, 25) + 66374849.7944623*pow(xi2, 23) - 64484380.0577223*pow(xi2, 21) + 45067812.6132363*pow(xi2, 19) - 22900583.7163782*pow(xi2, 17) + 8450156.6509527*pow(xi2, 15) - 2236934.93848443*pow(xi2, 13) + 414545.549288392*pow(xi2, 11) - 51583.1626238823*pow(xi2, 9) + 4013.14664876461*pow(xi2, 7) - 170.367532491684*pow(xi2, 5) + 2.82065451145172*pow(xi2, 3); case 26: return -1610515.40403276*pow(xi1, 32) + 12863036.2875285*pow(xi1, 30) - 46553456.1889886*pow(xi1, 28) + 100973154.142899*pow(xi1, 26) - 146272634.545407*pow(xi1, 24) + 149293201.91956*pow(xi1, 22) - 110366783.018132*pow(xi1, 20) + 59823745.9727661*pow(xi1, 18) - 23800627.8061373*pow(xi1, 16) + 6888187.31875923*pow(xi1, 14) - 1421973.09600106*pow(xi1, 12) + 202464.943845011*pow(xi1, 10) - 18805.9319790099*pow(xi1, 8) + 1032.46532573551*pow(xi1, 6) - 27.2369451262057*pow(xi1, 4) + 0.176290906965733*pow(xi1, 2) + 1610515.40403276*pow(xi2, 32) - 12863036.2875285*pow(xi2, 30) + 46553456.1889886*pow(xi2, 28) - 100973154.142899*pow(xi2, 26) + 146272634.545407*pow(xi2, 24) - 149293201.91956*pow(xi2, 22) + 110366783.018132*pow(xi2, 20) - 59823745.9727661*pow(xi2, 18) + 23800627.8061373*pow(xi2, 16) - 6888187.31875923*pow(xi2, 14) + 1421973.09600106*pow(xi2, 12) - 202464.943845011*pow(xi2, 10) + 18805.9319790099*pow(xi2, 8) - 1032.46532573551*pow(xi2, 6) + 27.2369451262057*pow(xi2, 4) - 0.176290906965733*pow(xi2, 2); case 27: return -3060955.33760409*pow(xi1, 33) + 25213238.0791345*pow(xi1, 31) - 94403567.7795993*pow(xi1, 29) + 212608488.378715*pow(xi1, 27) - 321179615.28731*pow(xi1, 25) + 343612154.357964*pow(xi1, 23) - 267922999.822594*pow(xi1, 21) + 154348350.525506*pow(xi1, 19) - 65889718.4853975*pow(xi1, 17) + 20712941.0533648*pow(xi1, 15) - 4720135.0192485*pow(xi1, 13) + 758719.445440695*pow(xi1, 11) - 82283.9487223575*pow(xi1, 9) + 5587.16253004968*pow(xi1, 7) - 206.260361149907*pow(xi1, 5) + 2.93818178276221*pow(xi1, 3) + 3060955.33760409*pow(xi2, 33) - 25213238.0791345*pow(xi2, 31) + 94403567.7795993*pow(xi2, 29) - 212608488.378715*pow(xi2, 27) + 321179615.28731*pow(xi2, 25) - 343612154.357964*pow(xi2, 23) + 267922999.822594*pow(xi2, 21) - 154348350.525506*pow(xi2, 19) + 65889718.4853975*pow(xi2, 17) - 20712941.0533648*pow(xi2, 15) + 4720135.0192485*pow(xi2, 13) - 758719.445440695*pow(xi2, 11) + 82283.9487223575*pow(xi2, 9) - 5587.16253004968*pow(xi2, 7) + 206.260361149907*pow(xi2, 5) - 2.93818178276221*pow(xi2, 3); case 28: return -5827588.0465924*pow(xi1, 34) + 49459785.7287714*pow(xi1, 32) - 191371992.258556*pow(xi1, 30) + 446908389.876074*pow(xi1, 28) - 702864733.260658*pow(xi1, 26) + 786571534.918486*pow(xi1, 24) - 645204185.079993*pow(xi1, 22) + 393744121.477465*pow(xi1, 20) - 179587759.860223*pow(xi1, 18) + 60975122.6641322*pow(xi1, 16) - 15220645.8223283*pow(xi1, 14) + 2731517.74901457*pow(xi1, 12) - 339940.64778775*pow(xi1, 10) + 27672.1318222582*pow(xi1, 8) - 1329.91148047149*pow(xi1, 6) + 30.5118877440691*pow(xi1, 4) - 0.169510487467051*pow(xi1, 2) + 5827588.0465924*pow(xi2, 34) - 49459785.7287714*pow(xi2, 32) + 191371992.258556*pow(xi2, 30) - 446908389.876074*pow(xi2, 28) + 702864733.260658*pow(xi2, 26) - 786571534.918486*pow(xi2, 24) + 645204185.079993*pow(xi2, 22) - 393744121.477465*pow(xi2, 20) + 179587759.860223*pow(xi2, 18) - 60975122.6641322*pow(xi2, 16) + 15220645.8223283*pow(xi2, 14) - 2731517.74901457*pow(xi2, 12) + 339940.64778775*pow(xi2, 10) - 27672.1318222582*pow(xi2, 8) + 1329.91148047149*pow(xi2, 6) - 30.5118877440691*pow(xi2, 4) + 0.169510487467051*pow(xi2, 2); case 29: return -11112501.2274704*pow(xi1, 35) + 97093261.8133116*pow(xi1, 33) - 387817607.62591*pow(xi1, 31) + 937921252.467321*pow(xi1, 29) - 1533331634.12215*pow(xi1, 27) + 1791534433.11565*pow(xi1, 25) - 1542331961.52872*pow(xi1, 23) + 994100047.035712*pow(xi1, 21) - 482601965.041428*pow(xi1, 19) + 176100565.554967*pow(xi1, 17) - 47831521.5085922*pow(xi1, 15) + 9494731.97971299*pow(xi1, 13) - 1337246.817251*pow(xi1, 11) + 127520.279397815*pow(xi1, 9) - 7617.85942465067*pow(xi1, 7) + 246.536052972078*pow(xi1, 5) - 3.05118877440691*pow(xi1, 3) + 11112501.2274704*pow(xi2, 35) - 97093261.8133116*pow(xi2, 33) + 387817607.62591*pow(xi2, 31) - 937921252.467321*pow(xi2, 29) + 1533331634.12215*pow(xi2, 27) - 1791534433.11565*pow(xi2, 25) + 1542331961.52872*pow(xi2, 23) - 994100047.035712*pow(xi2, 21) + 482601965.041428*pow(xi2, 19) - 176100565.554967*pow(xi2, 17) + 47831521.5085922*pow(xi2, 15) - 9494731.97971299*pow(xi2, 13) + 1337246.817251*pow(xi2, 11) - 127520.279397815*pow(xi2, 9) + 7617.85942465067*pow(xi2, 7) - 246.536052972078*pow(xi2, 5) + 3.05118877440691*pow(xi2, 3); default: return 0.; } case 10: switch(j) { case 0: return -7.541015625*pow(xi1, 10)*y1t + 17.595703125*pow(xi1, 8)*y1t - 13.53515625*pow(xi1, 6)*y1t + 3.69140625*pow(xi1, 4)*y1t - 0.205078125*pow(xi1, 2)*y1t + 7.541015625*pow(xi2, 10)*y1t - 17.595703125*pow(xi2, 8)*y1t + 13.53515625*pow(xi2, 6)*y1t - 3.69140625*pow(xi2, 4)*y1t + 0.205078125*pow(xi2, 2)*y1t; case 1: return -3.7705078125*pow(xi1, 10)*y1r + 1.396484375*pow(xi1, 9)*y1r + 8.7978515625*pow(xi1, 8)*y1r - 3.3515625*pow(xi1, 7)*y1r - 6.767578125*pow(xi1, 6)*y1r + 2.70703125*pow(xi1, 5)*y1r + 1.845703125*pow(xi1, 4)*y1r - 0.8203125*pow(xi1, 3)*y1r - 0.1025390625*pow(xi1, 2)*y1r + 0.068359375*xi1*y1r + 3.7705078125*pow(xi2, 10)*y1r - 1.396484375*pow(xi2, 9)*y1r - 8.7978515625*pow(xi2, 8)*y1r + 3.3515625*pow(xi2, 7)*y1r + 6.767578125*pow(xi2, 6)*y1r - 2.70703125*pow(xi2, 5)*y1r - 1.845703125*pow(xi2, 4)*y1r + 0.8203125*pow(xi2, 3)*y1r + 0.1025390625*pow(xi2, 2)*y1r - 0.068359375*xi2*y1r; case 2: return 7.541015625*pow(xi1, 10)*y2t - 17.595703125*pow(xi1, 8)*y2t + 13.53515625*pow(xi1, 6)*y2t - 3.69140625*pow(xi1, 4)*y2t + 0.205078125*pow(xi1, 2)*y2t - 7.541015625*pow(xi2, 10)*y2t + 17.595703125*pow(xi2, 8)*y2t - 13.53515625*pow(xi2, 6)*y2t + 3.69140625*pow(xi2, 4)*y2t - 0.205078125*pow(xi2, 2)*y2t; case 3: return -3.7705078125*pow(xi1, 10)*y2r - 1.396484375*pow(xi1, 9)*y2r + 8.7978515625*pow(xi1, 8)*y2r + 3.3515625*pow(xi1, 7)*y2r - 6.767578125*pow(xi1, 6)*y2r - 2.70703125*pow(xi1, 5)*y2r + 1.845703125*pow(xi1, 4)*y2r + 0.8203125*pow(xi1, 3)*y2r - 0.1025390625*pow(xi1, 2)*y2r - 0.068359375*xi1*y2r + 3.7705078125*pow(xi2, 10)*y2r + 1.396484375*pow(xi2, 9)*y2r - 8.7978515625*pow(xi2, 8)*y2r - 3.3515625*pow(xi2, 7)*y2r + 6.767578125*pow(xi2, 6)*y2r + 2.70703125*pow(xi2, 5)*y2r - 1.845703125*pow(xi2, 4)*y2r - 0.8203125*pow(xi2, 3)*y2r + 0.1025390625*pow(xi2, 2)*y2r + 0.068359375*xi2*y2r; case 4: return -6.85546875*pow(xi1, 11) + 18.43359375*pow(xi1, 9) - 18.3046875*pow(xi1, 7) + 8.3671875*pow(xi1, 5) - 1.77734375*pow(xi1, 3) + 0.13671875*xi1 + 6.85546875*pow(xi2, 11) - 18.43359375*pow(xi2, 9) + 18.3046875*pow(xi2, 7) - 8.3671875*pow(xi2, 5) + 1.77734375*pow(xi2, 3) - 0.13671875*xi2; case 5: return -10.4736328125*pow(xi1, 12) + 31.001953125*pow(xi1, 10) - 34.5146484375*pow(xi1, 8) + 17.63671875*pow(xi1, 6) - 3.8623046875*pow(xi1, 4) + 0.205078125*pow(xi1, 2) + 10.4736328125*pow(xi2, 12) - 31.001953125*pow(xi2, 10) + 34.5146484375*pow(xi2, 8) - 17.63671875*pow(xi2, 6) + 3.8623046875*pow(xi2, 4) - 0.205078125*pow(xi2, 2); case 6: return -16.9189453125*pow(xi1, 13) + 54.462890625*pow(xi1, 11) - 67.5146484375*pow(xi1, 9) + 40.18359375*pow(xi1, 7) - 11.6826171875*pow(xi1, 5) + 1.572265625*pow(xi1, 3) - 0.1025390625*xi1 + 16.9189453125*pow(xi2, 13) - 54.462890625*pow(xi2, 11) + 67.5146484375*pow(xi2, 9) - 40.18359375*pow(xi2, 7) + 11.6826171875*pow(xi2, 5) - 1.572265625*pow(xi2, 3) + 0.1025390625*xi2; case 7: return -28.27880859375*pow(xi1, 14) + 98.24267578125*pow(xi1, 12) - 134.17529296875*pow(xi1, 10) + 90.90087890625*pow(xi1, 8) - 31.63330078125*pow(xi1, 6) + 5.21240234375*pow(xi1, 4) - 0.25634765625*pow(xi1, 2) + 28.27880859375*pow(xi2, 14) - 98.24267578125*pow(xi2, 12) + 134.17529296875*pow(xi2, 10) - 90.90087890625*pow(xi2, 8) + 31.63330078125*pow(xi2, 6) - 5.21240234375*pow(xi2, 4) + 0.25634765625*pow(xi2, 2); case 8: return -48.38818359375*pow(xi1, 15) + 180.35595703125*pow(xi1, 13) - 269.01123046875*pow(xi1, 11) + 204.39697265625*pow(xi1, 9) - 83.19580078125*pow(xi1, 7) + 17.38037109375*pow(xi1, 5) - 1.62353515625*pow(xi1, 3) + 0.08544921875*xi1 + 48.38818359375*pow(xi2, 15) - 180.35595703125*pow(xi2, 13) + 269.01123046875*pow(xi2, 11) - 204.39697265625*pow(xi2, 9) + 83.19580078125*pow(xi2, 7) - 17.38037109375*pow(xi2, 5) + 1.62353515625*pow(xi2, 3) - 0.08544921875*xi2; case 9: return -84.2472839355469*pow(xi1, 16) + 335.260986328125*pow(xi1, 14) - 542.167602539063*pow(xi1, 12) + 456.642333984375*pow(xi1, 10) - 213.108215332031*pow(xi1, 8) + 54.012451171875*pow(xi1, 6) - 6.7291259765625*pow(xi1, 4) + 0.299072265625*pow(xi1, 2) + 84.2472839355469*pow(xi2, 16) - 335.260986328125*pow(xi2, 14) + 542.167602539063*pow(xi2, 12) - 456.642333984375*pow(xi2, 10) + 213.108215332031*pow(xi2, 8) - 54.012451171875*pow(xi2, 6) + 6.7291259765625*pow(xi2, 4) - 0.299072265625*pow(xi2, 2); case 10: return -148.671677533318*pow(xi1, 17) + 629.04638671875*pow(xi1, 15) - 1096.17846679688*pow(xi1, 13) + 1013.75244140625*pow(xi1, 11) - 534.027709960938*pow(xi1, 9) + 159.60205078125*pow(xi1, 7) - 25.301513671875*pow(xi1, 5) + 1.79443359375*pow(xi1, 3) - 0.07476806640625*xi1 + 148.671677533318*pow(xi2, 17) - 629.04638671875*pow(xi2, 15) + 1096.17846679688*pow(xi2, 13) - 1013.75244140625*pow(xi2, 11) + 534.027709960938*pow(xi2, 9) - 159.60205078125*pow(xi2, 7) + 25.301513671875*pow(xi2, 5) - 1.79443359375*pow(xi2, 3) + 0.07476806640625*xi2; case 11: return -265.222930908203*pow(xi1, 18) + 1188.82278442383*pow(xi1, 16) - 2220.67199707031*pow(xi1, 14) + 2237.22033691406*pow(xi1, 12) - 1313.75140380859*pow(xi1, 10) + 453.216247558594*pow(xi1, 8) - 87.8375244140625*pow(xi1, 6) + 8.5235595703125*pow(xi1, 4) - 0.336456298828125*pow(xi1, 2) + 265.222930908203*pow(xi2, 18) - 1188.82278442383*pow(xi2, 16) + 2220.67199707031*pow(xi2, 14) - 2237.22033691406*pow(xi2, 12) + 1313.75140380859*pow(xi2, 10) - 453.216247558594*pow(xi2, 8) + 87.8375244140625*pow(xi2, 6) - 8.5235595703125*pow(xi2, 4) + 0.336456298828125*pow(xi2, 2); case 12: return -477.401275634766*pow(xi1, 19) + 2259.69937133789*pow(xi1, 17) - 4504.13342285156*pow(xi1, 15) + 4910.30090332031*pow(xi1, 13) - 3181.58416748047*pow(xi1, 11) + 1246.05682373047*pow(xi1, 9) - 286.691528320313*pow(xi1, 7) + 35.7271728515625*pow(xi1, 5) - 2.04116821289063*pow(xi1, 3) + 0.067291259765625*xi1 + 477.401275634766*pow(xi2, 19) - 2259.69937133789*pow(xi2, 17) + 4504.13342285156*pow(xi2, 15) - 4910.30090332031*pow(xi2, 13) + 3181.58416748047*pow(xi2, 11) - 1246.05682373047*pow(xi2, 9) + 286.691528320313*pow(xi2, 7) - 35.7271728515625*pow(xi2, 5) + 2.04116821289063*pow(xi2, 3) - 0.067291259765625*xi2; case 13: return -865.832313537598*pow(xi1, 20) + 4315.41819763184*pow(xi1, 18) - 9142.12314605713*pow(xi1, 16) + 10723.4170532227*pow(xi1, 14) - 7601.6089630127*pow(xi1, 12) + 3335.27163696289*pow(xi1, 10) - 890.919937133789*pow(xi1, 8) + 136.690979003906*pow(xi1, 6) - 10.671272277832*pow(xi1, 4) + 0.370101928710938*pow(xi1, 2) + 865.832313537598*pow(xi2, 20) - 4315.41819763184*pow(xi2, 18) + 9142.12314605713*pow(xi2, 16) - 10723.4170532227*pow(xi2, 14) + 7601.6089630127*pow(xi2, 12) - 3335.27163696289*pow(xi2, 10) + 890.919937133789*pow(xi2, 8) - 136.690979003906*pow(xi2, 6) + 10.671272277832*pow(xi2, 4) - 0.370101928710938*pow(xi2, 2); case 14: return -1580.48755645752*pow(xi1, 21) + 8273.50877380371*pow(xi1, 19) - 18563.0642166138*pow(xi1, 17) + 23311.7905883789*pow(xi1, 15) - 17950.1096343994*pow(xi1, 13) + 8727.91030883789*pow(xi1, 11) - 2660.08235168457*pow(xi1, 9) + 487.364318847656*pow(xi1, 7) - 49.1125259399414*pow(xi1, 5) + 2.34397888183594*pow(xi1, 3) - 0.0616836547851563*xi1 + 1580.48755645752*pow(xi2, 21) - 8273.50877380371*pow(xi2, 19) + 18563.0642166138*pow(xi2, 17) - 23311.7905883789*pow(xi2, 15) + 17950.1096343994*pow(xi2, 13) - 8727.91030883789*pow(xi2, 11) + 2660.08235168457*pow(xi2, 9) - 487.364318847656*pow(xi2, 7) + 49.1125259399414*pow(xi2, 5) - 2.34397888183594*pow(xi2, 3) + 0.0616836547851563*xi2; case 15: return -2901.24464035034*pow(xi1, 22) + 15914.2939338684*pow(xi1, 20) - 37698.4300117493*pow(xi1, 18) + 50467.3515129089*pow(xi1, 16) - 41952.306022644*pow(xi1, 14) + 22402.6091384888*pow(xi1, 12) - 7682.70096588135*pow(xi1, 10) + 1642.471824646*pow(xi1, 8) - 204.882259368896*pow(xi1, 6) + 13.231143951416*pow(xi1, 4) - 0.400943756103516*pow(xi1, 2) + 2901.24464035034*pow(xi2, 22) - 15914.2939338684*pow(xi2, 20) + 37698.4300117493*pow(xi2, 18) - 50467.3515129089*pow(xi2, 16) + 41952.306022644*pow(xi2, 14) - 22402.6091384888*pow(xi2, 12) + 7682.70096588135*pow(xi2, 10) - 1642.471824646*pow(xi2, 8) + 204.882259368896*pow(xi2, 6) - 13.231143951416*pow(xi2, 4) + 0.400943756103516*pow(xi2, 2); case 16: return -5351.98545455933*pow(xi1, 23) + 30697.9313850403*pow(xi1, 21) - 76560.1265144348*pow(xi1, 19) + 108841.735485077*pow(xi1, 17) - 97160.8135299683*pow(xi1, 15) + 56549.5268630981*pow(xi1, 13) - 21574.1586685181*pow(xi1, 11) + 5285.74245452881*pow(xi1, 9) - 791.235500335693*pow(xi1, 7) + 66.018253326416*pow(xi1, 5) - 2.69205093383789*pow(xi1, 3) + 0.0572776794433594*xi1 + 5351.98545455933*pow(xi2, 23) - 30697.9313850403*pow(xi2, 21) + 76560.1265144348*pow(xi2, 19) - 108841.735485077*pow(xi2, 17) + 97160.8135299683*pow(xi2, 15) - 56549.5268630981*pow(xi2, 13) + 21574.1586685181*pow(xi2, 11) - 5285.74245452881*pow(xi2, 9) + 791.235500335693*pow(xi2, 7) - 66.018253326416*pow(xi2, 5) + 2.69205093383789*pow(xi2, 3) - 0.0572776794433594*xi2; case 17: return -9916.03971719742*pow(xi1, 24) + 59359.465341568*pow(xi1, 22) - 155468.773369789*pow(xi1, 20) + 233922.147989273*pow(xi1, 18) - 223206.835935116*pow(xi1, 16) + 140675.350513458*pow(xi1, 14) - 59143.3052806854*pow(xi1, 12) + 16367.7127723694*pow(xi1, 10) - 2871.48042440414*pow(xi1, 8) + 297.586183547974*pow(xi1, 6) - 16.2525415420532*pow(xi1, 4) + 0.429582595825195*pow(xi1, 2) + 9916.03971719742*pow(xi2, 24) - 59359.465341568*pow(xi2, 22) + 155468.773369789*pow(xi2, 20) - 233922.147989273*pow(xi2, 18) + 223206.835935116*pow(xi2, 16) - 140675.350513458*pow(xi2, 14) + 59143.3052806854*pow(xi2, 12) - 16367.7127723694*pow(xi2, 10) + 2871.48042440414*pow(xi2, 8) - 297.586183547974*pow(xi2, 6) + 16.2525415420532*pow(xi2, 4) - 0.429582595825195*pow(xi2, 2); case 18: return -18443.8338739872*pow(xi1, 25) + 115026.06071949*pow(xi1, 23) - 315656.213915348*pow(xi1, 21) + 501145.377087593*pow(xi1, 19) - 509063.357251883*pow(xi1, 17) + 345476.188196182*pow(xi1, 15) - 158790.70818615*pow(xi1, 13) + 49055.2678394318*pow(xi1, 11) - 9900.71094870567*pow(xi1, 9) + 1235.98890781403*pow(xi1, 7) - 87.0835518836975*pow(xi1, 5) + 3.07867527008057*pow(xi1, 3) - 0.0536978244781494*xi1 + 18443.8338739872*pow(xi2, 25) - 115026.06071949*pow(xi2, 23) + 315656.213915348*pow(xi2, 21) - 501145.377087593*pow(xi2, 19) + 509063.357251883*pow(xi2, 17) - 345476.188196182*pow(xi2, 15) + 158790.70818615*pow(xi2, 13) - 49055.2678394318*pow(xi2, 11) + 9900.71094870567*pow(xi2, 9) - 1235.98890781403*pow(xi2, 7) + 87.0835518836975*pow(xi2, 5) - 3.07867527008057*pow(xi2, 3) + 0.0536978244781494*xi2; case 19: return -34425.7080227137*pow(xi1, 26) + 223315.047395825*pow(xi1, 24) - 640760.128458738*pow(xi1, 22) + 1070494.58503604*pow(xi1, 20) - 1153444.84326541*pow(xi1, 18) + 838792.879251838*pow(xi1, 16) - 418623.917339802*pow(xi1, 14) + 142953.808037281*pow(xi1, 12) - 32702.0305608511*pow(xi1, 10) + 4801.93332374096*pow(xi1, 8) - 420.951565504074*pow(xi1, 6) + 19.778698682785*pow(xi1, 4) - 0.45643150806427*pow(xi1, 2) + 34425.7080227137*pow(xi2, 26) - 223315.047395825*pow(xi2, 24) + 640760.128458738*pow(xi2, 22) - 1070494.58503604*pow(xi2, 20) + 1153444.84326541*pow(xi2, 18) - 838792.879251838*pow(xi2, 16) + 418623.917339802*pow(xi2, 14) - 142953.808037281*pow(xi2, 12) + 32702.0305608511*pow(xi2, 10) - 4801.93332374096*pow(xi2, 8) + 420.951565504074*pow(xi2, 6) - 19.778698682785*pow(xi2, 4) + 0.45643150806427*pow(xi2, 2); case 20: return -64459.6590548754*pow(xi1, 27) + 434273.931575418*pow(xi1, 25) - 1300387.65375495*pow(xi1, 23) + 2280517.13728309*pow(xi1, 21) - 2598070.78379095*pow(xi1, 19) + 2015827.85172164*pow(xi1, 17) - 1086007.95365381*pow(xi1, 15) + 406552.760191441*pow(xi1, 13) - 104136.594859958*pow(xi1, 11) + 17650.3092950583*pow(xi1, 9) - 1868.9087998867*pow(xi1, 7) + 113.012441396713*pow(xi1, 5) - 3.49930822849274*pow(xi1, 3) + 0.0507146120071411*xi1 + 64459.6590548754*pow(xi2, 27) - 434273.931575418*pow(xi2, 25) + 1300387.65375495*pow(xi2, 23) - 2280517.13728309*pow(xi2, 21) + 2598070.78379095*pow(xi2, 19) - 2015827.85172164*pow(xi2, 17) + 1086007.95365381*pow(xi2, 15) - 406552.760191441*pow(xi2, 13) + 104136.594859958*pow(xi2, 11) - 17650.3092950583*pow(xi2, 9) + 1868.9087998867*pow(xi2, 7) - 113.012441396713*pow(xi2, 5) + 3.49930822849274*pow(xi2, 3) - 0.0507146120071411*xi2; case 21: return -121043.607886881*pow(xi1, 28) + 845778.579072654*pow(xi1, 26) - 2638381.56539574*pow(xi1, 24) + 4846179.01085794*pow(xi1, 22) - 5820583.71478423*pow(xi1, 20) + 4800210.0817278*pow(xi1, 18) - 2777324.87994209*pow(xi1, 16) + 1131748.51436734*pow(xi1, 14) - 321322.880017787*pow(xi1, 12) + 61915.3605063558*pow(xi1, 10) - 7733.72222229838*pow(xi1, 8) + 582.193602919579*pow(xi1, 6) - 23.8485462963581*pow(xi1, 4) + 0.481788814067841*pow(xi1, 2) + 121043.607886881*pow(xi2, 28) - 845778.579072654*pow(xi2, 26) + 2638381.56539574*pow(xi2, 24) - 4846179.01085794*pow(xi2, 22) + 5820583.71478423*pow(xi2, 20) - 4800210.0817278*pow(xi2, 18) + 2777324.87994209*pow(xi2, 16) - 1131748.51436734*pow(xi2, 14) + 321322.880017787*pow(xi2, 12) - 61915.3605063558*pow(xi2, 10) + 7733.72222229838*pow(xi2, 8) - 582.193602919579*pow(xi2, 6) + 23.8485462963581*pow(xi2, 4) - 0.481788814067841*pow(xi2, 2); case 22: return -227895.896228403*pow(xi1, 29) + 1649420.89680523*pow(xi1, 27) - 5351610.52541748*pow(xi1, 25) + 10274545.6434935*pow(xi1, 23) - 12976146.7507325*pow(xi1, 21) + 11335923.7640038*pow(xi1, 19) - 7012244.4740881*pow(xi1, 17) + 3091489.85211968*pow(xi1, 15) - 964606.306213886*pow(xi1, 13) + 208688.813287318*pow(xi1, 11) - 30172.9123489559*pow(xi1, 9) + 2748.55838191509*pow(xi1, 7) - 144.565551549196*pow(xi1, 5) + 3.95066827535629*pow(xi1, 3) - 0.0481788814067841*xi1 + 227895.896228403*pow(xi2, 29) - 1649420.89680523*pow(xi2, 27) + 5351610.52541748*pow(xi2, 25) - 10274545.6434935*pow(xi2, 23) + 12976146.7507325*pow(xi2, 21) - 11335923.7640038*pow(xi2, 19) + 7012244.4740881*pow(xi2, 17) - 3091489.85211968*pow(xi2, 15) + 964606.306213886*pow(xi2, 13) - 208688.813287318*pow(xi2, 11) + 30172.9123489559*pow(xi2, 9) - 2748.55838191509*pow(xi2, 7) + 144.565551549196*pow(xi2, 5) - 3.95066827535629*pow(xi2, 3) + 0.0481788814067841*xi2; case 23: return -430108.286691383*pow(xi1, 30) + 3220566.92717694*pow(xi1, 28) - 10852024.9993969*pow(xi1, 26) + 21736745.4230245*pow(xi1, 24) - 28798227.5263164*pow(xi1, 22) + 26568852.6144587*pow(xi1, 20) - 17501613.8303212*pow(xi1, 18) + 8303601.8471282*pow(xi1, 16) - 2826614.7797104*pow(xi1, 14) + 679508.515860513*pow(xi1, 12) - 111985.127419218*pow(xi1, 10) + 12060.9036379606*pow(xi1, 8) - 789.675955697894*pow(xi1, 6) + 28.4978083521128*pow(xi1, 4) - 0.505878254771233*pow(xi1, 2) + 430108.286691383*pow(xi2, 30) - 3220566.92717694*pow(xi2, 28) + 10852024.9993969*pow(xi2, 26) - 21736745.4230245*pow(xi2, 24) + 28798227.5263164*pow(xi2, 22) - 26568852.6144587*pow(xi2, 20) + 17501613.8303212*pow(xi2, 18) - 8303601.8471282*pow(xi2, 16) + 2826614.7797104*pow(xi2, 14) - 679508.515860513*pow(xi2, 12) + 111985.127419218*pow(xi2, 10) - 12060.9036379606*pow(xi2, 8) + 789.675955697894*pow(xi2, 6) - 28.4978083521128*pow(xi2, 4) + 0.505878254771233*pow(xi2, 2); case 24: return -813547.932304814*pow(xi1, 31) + 6295221.28702842*pow(xi1, 29) - 21999639.0535594*pow(xi1, 27) + 45894394.1861918*pow(xi1, 25) - 63647685.3472386*pow(xi1, 23) + 61843493.4318345*pow(xi1, 21) - 43227949.0107802*pow(xi1, 19) + 21968581.144582*pow(xi1, 17) - 8107398.1842526*pow(xi1, 15) + 2146726.9782532*pow(xi1, 13) - 398184.796114191*pow(xi1, 11) + 49755.7135626823*pow(xi1, 9) - 3946.58752410114*pow(xi1, 7) + 182.554599538445*pow(xi1, 5) - 4.43026714026928*pow(xi1, 3) + 0.0459889322519302*xi1 + 813547.932304814*pow(xi2, 31) - 6295221.28702842*pow(xi2, 29) + 21999639.0535594*pow(xi2, 27) - 45894394.1861918*pow(xi2, 25) + 63647685.3472386*pow(xi2, 23) - 61843493.4318345*pow(xi2, 21) + 43227949.0107802*pow(xi2, 19) - 21968581.144582*pow(xi2, 17) + 8107398.1842526*pow(xi2, 15) - 2146726.9782532*pow(xi2, 13) + 398184.796114191*pow(xi2, 11) - 49755.7135626823*pow(xi2, 9) + 3946.58752410114*pow(xi2, 7) - 182.554599538445*pow(xi2, 5) + 4.43026714026928*pow(xi2, 3) - 0.0459889322519302*xi2; case 25: return -1541982.83364839*pow(xi1, 32) + 12317587.3170846*pow(xi1, 30) - 44586072.4801485*pow(xi1, 28) + 96719986.2192655*pow(xi1, 26) - 140131079.561139*pow(xi1, 24) + 143044354.576721*pow(xi1, 22) - 105761285.988215*pow(xi1, 20) + 57334791.4309478*pow(xi1, 18) - 22813482.6754338*pow(xi1, 16) + 6603828.05723269*pow(xi1, 14) - 1364100.44298442*pow(xi1, 12) + 194729.530543976*pow(xi1, 10) - 18292.9027737658*pow(xi1, 8) + 1052.98558730632*pow(xi1, 6) - 33.7597086839378*pow(xi1, 4) + 0.528872720897198*pow(xi1, 2) + 1541982.83364839*pow(xi2, 32) - 12317587.3170846*pow(xi2, 30) + 44586072.4801485*pow(xi2, 28) - 96719986.2192655*pow(xi2, 26) + 140131079.561139*pow(xi2, 24) - 143044354.576721*pow(xi2, 22) + 105761285.988215*pow(xi2, 20) - 57334791.4309478*pow(xi2, 18) + 22813482.6754338*pow(xi2, 16) - 6603828.05723269*pow(xi2, 14) + 1364100.44298442*pow(xi2, 12) - 194729.530543976*pow(xi2, 10) + 18292.9027737658*pow(xi2, 8) - 1052.98558730632*pow(xi2, 6) + 33.7597086839378*pow(xi2, 4) - 0.528872720897198*pow(xi2, 2); case 26: return -2928209.82551412*pow(xi1, 33) + 24123464.7752993*pow(xi1, 31) - 90336471.2389704*pow(xi1, 29) + 203477776.253399*pow(xi1, 27) - 307428557.336709*pow(xi1, 25) + 328944724.965613*pow(xi1, 23) - 256519873.326385*pow(xi1, 21) + 147797910.676081*pow(xi1, 19) - 63101603.4300435*pow(xi1, 17) + 19839920.0978507*pow(xi1, 15) - 4523153.89852859*pow(xi1, 13) + 728271.336259693*pow(xi1, 11) - 79525.7599556074*pow(xi1, 9) + 5549.65789881349*pow(xi1, 7) - 227.838368162513*pow(xi1, 5) + 4.93614539504051*pow(xi1, 3) - 0.0440727267414331*xi1 + 2928209.82551412*pow(xi2, 33) - 24123464.7752993*pow(xi2, 31) + 90336471.2389704*pow(xi2, 29) - 203477776.253399*pow(xi2, 27) + 307428557.336709*pow(xi2, 25) - 328944724.965613*pow(xi2, 23) + 256519873.326385*pow(xi2, 21) - 147797910.676081*pow(xi2, 19) + 63101603.4300435*pow(xi2, 17) - 19839920.0978507*pow(xi2, 15) + 4523153.89852859*pow(xi2, 13) - 728271.336259693*pow(xi2, 11) + 79525.7599556074*pow(xi2, 9) - 5549.65789881349*pow(xi2, 7) + 227.838368162513*pow(xi2, 5) - 4.93614539504051*pow(xi2, 3) + 0.0440727267414331*xi2; case 27: return -5570488.57394862*pow(xi1, 34) + 47284732.262402*pow(xi1, 32) - 182982384.66517*pow(xi1, 30) + 427375626.699867*pow(xi1, 28) - 672235775.597369*pow(xi1, 26) + 752393678.105771*pow(xi1, 24) - 617247943.398835*pow(xi1, 22) + 376730544.227549*pow(xi1, 20) - 171849479.01199*pow(xi1, 18) + 58356796.5482171*pow(xi1, 16) - 14571815.0302654*pow(xi1, 14) + 2617997.25941163*pow(xi1, 12) - 327223.789883908*pow(xi1, 10) + 27078.8499592803*pow(xi1, 8) - 1383.00216514617*pow(xi1, 6) + 39.6654540672898*pow(xi1, 4) - 0.550909084267914*pow(xi1, 2) + 5570488.57394862*pow(xi2, 34) - 47284732.262402*pow(xi2, 32) + 182982384.66517*pow(xi2, 30) - 427375626.699867*pow(xi2, 28) + 672235775.597369*pow(xi2, 26) - 752393678.105771*pow(xi2, 24) + 617247943.398835*pow(xi2, 22) - 376730544.227549*pow(xi2, 20) + 171849479.01199*pow(xi2, 18) - 58356796.5482171*pow(xi2, 16) + 14571815.0302654*pow(xi2, 14) - 2617997.25941163*pow(xi2, 12) + 327223.789883908*pow(xi2, 10) - 27078.8499592803*pow(xi2, 8) + 1383.00216514617*pow(xi2, 6) - 39.6654540672898*pow(xi2, 4) + 0.550909084267914*pow(xi2, 2); case 28: return -10614535.370579*pow(xi1, 35) + 92755776.4082624*pow(xi1, 33) - 370544334.663235*pow(xi1, 31) + 896268350.896106*pow(xi1, 29) - 1465430395.17544*pow(xi1, 27) + 1712419554.36447*pow(xi1, 25) - 1474407039.04468*pow(xi1, 23) + 950436059.72244*pow(xi1, 21) - 461461192.923372*pow(xi1, 19) + 168410243.079443*pow(xi1, 17) - 45754476.8418039*pow(xi1, 15) + 9089465.50231274*pow(xi1, 13) - 1283771.85423849*pow(xi1, 11) + 123681.481937598*pow(xi1, 9) - 7661.47689465433*pow(xi1, 7) + 281.319605000317*pow(xi1, 5) - 5.46671322081238*pow(xi1, 3) + 0.0423776218667626*xi1 + 10614535.370579*pow(xi2, 35) - 92755776.4082624*pow(xi2, 33) + 370544334.663235*pow(xi2, 31) - 896268350.896106*pow(xi2, 29) + 1465430395.17544*pow(xi2, 27) - 1712419554.36447*pow(xi2, 25) + 1474407039.04468*pow(xi2, 23) - 950436059.72244*pow(xi2, 21) + 461461192.923372*pow(xi2, 19) - 168410243.079443*pow(xi2, 17) + 45754476.8418039*pow(xi2, 15) - 9089465.50231274*pow(xi2, 13) + 1283771.85423849*pow(xi2, 11) - 123681.481937598*pow(xi2, 9) + 7661.47689465433*pow(xi2, 7) - 281.319605000317*pow(xi2, 5) + 5.46671322081238*pow(xi2, 3) - 0.0423776218667626*xi2; case 29: return -20257163.6959095*pow(xi1, 36) + 182085146.881723*pow(xi1, 34) - 750168100.803257*pow(xi1, 32) + 1876902117.73599*pow(xi1, 30) - 3185397290.65285*pow(xi1, 28) + 3879469079.53952*pow(xi1, 26) - 3498141721.81091*pow(xi1, 24) + 2375254474.90776*pow(xi1, 22) - 1223317230.13363*pow(xi1, 20) + 477702027.144423*pow(xi1, 18) - 140396380.678918*pow(xi1, 16) + 30599953.4447357*pow(xi1, 14) - 4831031.28381934*pow(xi1, 12) + 533608.341681669*pow(xi1, 10) - 39235.2255529957*pow(xi1, 8) + 1791.96316720918*pow(xi1, 6) - 46.2445798621047*pow(xi1, 4) + 0.572097895201296*pow(xi1, 2) + 20257163.6959095*pow(xi2, 36) - 182085146.881723*pow(xi2, 34) + 750168100.803257*pow(xi2, 32) - 1876902117.73599*pow(xi2, 30) + 3185397290.65285*pow(xi2, 28) - 3879469079.53952*pow(xi2, 26) + 3498141721.81091*pow(xi2, 24) - 2375254474.90776*pow(xi2, 22) + 1223317230.13363*pow(xi2, 20) - 477702027.144423*pow(xi2, 18) + 140396380.678918*pow(xi2, 16) - 30599953.4447357*pow(xi2, 14) + 4831031.28381934*pow(xi2, 12) - 533608.341681669*pow(xi2, 10) + 39235.2255529957*pow(xi2, 8) - 1791.96316720918*pow(xi2, 6) + 46.2445798621047*pow(xi2, 4) - 0.572097895201296*pow(xi2, 2); default: return 0.; } case 11: switch(j) { case 0: return -12.94921875*pow(xi1, 11)*y1t + 33.515625*pow(xi1, 9)*y1t - 30.1640625*pow(xi1, 7)*y1t + 10.828125*pow(xi1, 5)*y1t - 1.23046875*pow(xi1, 3)*y1t + 12.94921875*pow(xi2, 11)*y1t - 33.515625*pow(xi2, 9)*y1t + 30.1640625*pow(xi2, 7)*y1t - 10.828125*pow(xi2, 5)*y1t + 1.23046875*pow(xi2, 3)*y1t; case 1: return -6.474609375*pow(xi1, 11)*y1r + 2.3740234375*pow(xi1, 10)*y1r + 16.7578125*pow(xi1, 9)*y1r - 6.2841796875*pow(xi1, 8)*y1r - 15.08203125*pow(xi1, 7)*y1r + 5.865234375*pow(xi1, 6)*y1r + 5.4140625*pow(xi1, 5)*y1r - 2.255859375*pow(xi1, 4)*y1r - 0.615234375*pow(xi1, 3)*y1r + 0.3076171875*pow(xi1, 2)*y1r + 6.474609375*pow(xi2, 11)*y1r - 2.3740234375*pow(xi2, 10)*y1r - 16.7578125*pow(xi2, 9)*y1r + 6.2841796875*pow(xi2, 8)*y1r + 15.08203125*pow(xi2, 7)*y1r - 5.865234375*pow(xi2, 6)*y1r - 5.4140625*pow(xi2, 5)*y1r + 2.255859375*pow(xi2, 4)*y1r + 0.615234375*pow(xi2, 3)*y1r - 0.3076171875*pow(xi2, 2)*y1r; case 2: return 12.94921875*pow(xi1, 11)*y2t - 33.515625*pow(xi1, 9)*y2t + 30.1640625*pow(xi1, 7)*y2t - 10.828125*pow(xi1, 5)*y2t + 1.23046875*pow(xi1, 3)*y2t - 12.94921875*pow(xi2, 11)*y2t + 33.515625*pow(xi2, 9)*y2t - 30.1640625*pow(xi2, 7)*y2t + 10.828125*pow(xi2, 5)*y2t - 1.23046875*pow(xi2, 3)*y2t; case 3: return -6.474609375*pow(xi1, 11)*y2r - 2.3740234375*pow(xi1, 10)*y2r + 16.7578125*pow(xi1, 9)*y2r + 6.2841796875*pow(xi1, 8)*y2r - 15.08203125*pow(xi1, 7)*y2r - 5.865234375*pow(xi1, 6)*y2r + 5.4140625*pow(xi1, 5)*y2r + 2.255859375*pow(xi1, 4)*y2r - 0.615234375*pow(xi1, 3)*y2r - 0.3076171875*pow(xi1, 2)*y2r + 6.474609375*pow(xi2, 11)*y2r + 2.3740234375*pow(xi2, 10)*y2r - 16.7578125*pow(xi2, 9)*y2r - 6.2841796875*pow(xi2, 8)*y2r + 15.08203125*pow(xi2, 7)*y2r + 5.865234375*pow(xi2, 6)*y2r - 5.4140625*pow(xi2, 5)*y2r - 2.255859375*pow(xi2, 4)*y2r + 0.615234375*pow(xi2, 3)*y2r + 0.3076171875*pow(xi2, 2)*y2r; case 4: return -11.8701171875*pow(xi1, 12) + 34.912109375*pow(xi1, 10) - 38.9619140625*pow(xi1, 8) + 20.75390625*pow(xi1, 6) - 5.4345703125*pow(xi1, 4) + 0.615234375*pow(xi1, 2) + 11.8701171875*pow(xi2, 12) - 34.912109375*pow(xi2, 10) + 38.9619140625*pow(xi2, 8) - 20.75390625*pow(xi2, 6) + 5.4345703125*pow(xi2, 4) - 0.615234375*pow(xi2, 2); case 5: return -18.26171875*pow(xi1, 13) + 58.65234375*pow(xi1, 11) - 72.6171875*pow(xi1, 9) + 43.0546875*pow(xi1, 7) - 12.05859375*pow(xi1, 5) + 1.23046875*pow(xi1, 3) + 18.26171875*pow(xi2, 13) - 58.65234375*pow(xi2, 11) + 72.6171875*pow(xi2, 9) - 43.0546875*pow(xi2, 7) + 12.05859375*pow(xi2, 5) - 1.23046875*pow(xi2, 3); case 6: return -29.67529296875*pow(xi1, 14) + 102.99072265625*pow(xi1, 12) - 140.55615234375*pow(xi1, 10) + 95.14892578125*pow(xi1, 8) - 33.15087890625*pow(xi1, 6) + 5.69091796875*pow(xi1, 4) - 0.46142578125*pow(xi1, 2) + 29.67529296875*pow(xi2, 14) - 102.99072265625*pow(xi2, 12) + 140.55615234375*pow(xi2, 10) - 95.14892578125*pow(xi2, 8) + 33.15087890625*pow(xi2, 6) - 5.69091796875*pow(xi2, 4) + 0.46142578125*pow(xi2, 2); case 7: return -49.8544921875*pow(xi1, 15) + 185.732421875*pow(xi1, 13) - 276.9228515625*pow(xi1, 11) + 210.33203125*pow(xi1, 9) - 85.5908203125*pow(xi1, 7) + 17.841796875*pow(xi1, 5) - 1.5380859375*pow(xi1, 3) + 49.8544921875*pow(xi2, 15) - 185.732421875*pow(xi2, 13) + 276.9228515625*pow(xi2, 11) - 210.33203125*pow(xi2, 9) + 85.5908203125*pow(xi2, 7) - 17.841796875*pow(xi2, 5) + 1.5380859375*pow(xi2, 3); case 8: return -85.6874084472656*pow(xi1, 16) + 340.916748046875*pow(xi1, 14) - 551.209838867188*pow(xi1, 12) + 464.177978515625*pow(xi1, 10) - 216.592712402344*pow(xi1, 8) + 54.884033203125*pow(xi1, 6) - 6.8572998046875*pow(xi1, 4) + 0.384521484375*pow(xi1, 2) + 85.6874084472656*pow(xi2, 16) - 340.916748046875*pow(xi2, 14) + 551.209838867188*pow(xi2, 12) - 464.177978515625*pow(xi2, 10) + 216.592712402344*pow(xi2, 8) - 54.884033203125*pow(xi2, 6) + 6.8572998046875*pow(xi2, 4) - 0.384521484375*pow(xi2, 2); case 9: return -149.77294921875*pow(xi1, 17) + 633.65478515625*pow(xi1, 15) - 1104.13037109375*pow(xi1, 13) + 1021.03955078125*pow(xi1, 11) - 537.83447265625*pow(xi1, 9) + 160.72998046875*pow(xi1, 7) - 25.48095703125*pow(xi1, 5) + 1.79443359375*pow(xi1, 3) + 149.77294921875*pow(xi2, 17) - 633.65478515625*pow(xi2, 15) + 1104.13037109375*pow(xi2, 13) - 1021.03955078125*pow(xi2, 11) + 537.83447265625*pow(xi2, 9) - 160.72998046875*pow(xi2, 7) + 25.48095703125*pow(xi2, 5) - 1.79443359375*pow(xi2, 3); case 10: return -265.222930908203*pow(xi1, 18) + 1188.82278442383*pow(xi1, 16) - 2220.67199707031*pow(xi1, 14) + 2237.22033691406*pow(xi1, 12) - 1313.75140380859*pow(xi1, 10) + 453.216247558594*pow(xi1, 8) - 87.8375244140625*pow(xi1, 6) + 8.5235595703125*pow(xi1, 4) - 0.336456298828125*pow(xi1, 2) + 265.222930908203*pow(xi2, 18) - 1188.82278442383*pow(xi2, 16) + 2220.67199707031*pow(xi2, 14) - 2237.22033691406*pow(xi2, 12) + 1313.75140380859*pow(xi2, 10) - 453.216247558594*pow(xi2, 8) + 87.8375244140625*pow(xi2, 6) - 8.5235595703125*pow(xi2, 4) + 0.336456298828125*pow(xi2, 2); case 11: return -474.609455309416*pow(xi1, 19) + 2246.59423828125*pow(xi1, 17) - 4478.21118164063*pow(xi1, 15) + 4882.24365234375*pow(xi1, 13) - 3163.52746582031*pow(xi1, 11) + 1239.03076171875*pow(xi1, 9) - 285.084228515625*pow(xi1, 7) + 35.52978515625*pow(xi1, 5) - 2.01873779296875*pow(xi1, 3) + 474.609455309416*pow(xi2, 19) - 2246.59423828125*pow(xi2, 17) + 4478.21118164063*pow(xi2, 15) - 4882.24365234375*pow(xi2, 13) + 3163.52746582031*pow(xi2, 11) - 1239.03076171875*pow(xi2, 9) + 285.084228515625*pow(xi2, 7) - 35.52978515625*pow(xi2, 5) + 2.01873779296875*pow(xi2, 3); case 12: return -856.670066833496*pow(xi1, 20) + 4270.08918762207*pow(xi1, 18) - 9046.75417327881*pow(xi1, 16) + 10612.2775268555*pow(xi1, 14) - 7523.30863952637*pow(xi1, 12) + 3301.1188659668*pow(xi1, 10) - 881.847152709961*pow(xi1, 8) + 135.309265136719*pow(xi1, 6) - 10.5479049682617*pow(xi1, 4) + 0.302810668945313*pow(xi1, 2) + 856.670066833496*pow(xi2, 20) - 4270.08918762207*pow(xi2, 18) + 9046.75417327881*pow(xi2, 16) - 10612.2775268555*pow(xi2, 14) + 7523.30863952637*pow(xi2, 12) - 3301.1188659668*pow(xi2, 10) + 881.847152709961*pow(xi2, 8) - 135.309265136719*pow(xi2, 6) + 10.5479049682617*pow(xi2, 4) - 0.302810668945313*pow(xi2, 2); case 13: return -1557.58193969727*pow(xi1, 21) + 8154.39956665039*pow(xi1, 19) - 18297.4888916016*pow(xi1, 17) + 22980.2501220703*pow(xi1, 15) - 17696.2619018555*pow(xi1, 13) + 8605.14862060547*pow(xi1, 11) - 2622.85949707031*pow(xi1, 9) + 480.582641601563*pow(xi1, 7) - 48.4093322753906*pow(xi1, 5) + 2.22061157226563*pow(xi1, 3) + 1557.58193969727*pow(xi2, 21) - 8154.39956665039*pow(xi2, 19) + 18297.4888916016*pow(xi2, 17) - 22980.2501220703*pow(xi2, 15) + 17696.2619018555*pow(xi2, 13) - 8605.14862060547*pow(xi2, 11) + 2622.85949707031*pow(xi2, 9) - 480.582641601563*pow(xi2, 7) + 48.4093322753906*pow(xi2, 5) - 2.22061157226563*pow(xi2, 3); case 14: return -2849.66695785522*pow(xi1, 22) + 15633.0834388733*pow(xi1, 20) - 37036.0917396545*pow(xi1, 18) + 49585.4949302673*pow(xi1, 16) - 41223.053855896*pow(xi1, 14) + 22015.1343154907*pow(xi1, 12) - 7550.45825958252*pow(xi1, 10) + 1614.33702850342*pow(xi1, 8) - 201.353954315186*pow(xi1, 6) + 12.8610420227051*pow(xi1, 4) - 0.277576446533203*pow(xi1, 2) + 2849.66695785522*pow(xi2, 22) - 15633.0834388733*pow(xi2, 20) + 37036.0917396545*pow(xi2, 18) - 49585.4949302673*pow(xi2, 16) + 41223.053855896*pow(xi2, 14) - 22015.1343154907*pow(xi2, 12) + 7550.45825958252*pow(xi2, 10) - 1614.33702850342*pow(xi2, 8) + 201.353954315186*pow(xi2, 6) - 12.8610420227051*pow(xi2, 4) + 0.277576446533203*pow(xi2, 2); case 15: return -5241.86229705811*pow(xi1, 23) + 30069.7888946533*pow(xi1, 21) - 75001.7991256714*pow(xi1, 19) + 106637.491882324*pow(xi1, 17) - 95202.6352386475*pow(xi1, 15) + 55415.131072998*pow(xi1, 13) - 21143.3159637451*pow(xi1, 11) + 5180.65155029297*pow(xi1, 9) - 775.516868591309*pow(xi1, 7) + 64.4717559814453*pow(xi1, 5) - 2.40566253662109*pow(xi1, 3) + 5241.86229705811*pow(xi2, 23) - 30069.7888946533*pow(xi2, 21) + 75001.7991256714*pow(xi2, 19) - 106637.491882324*pow(xi2, 17) + 95202.6352386475*pow(xi2, 15) - 55415.131072998*pow(xi2, 13) + 21143.3159637451*pow(xi2, 11) - 5180.65155029297*pow(xi2, 9) + 775.516868591309*pow(xi2, 7) - 64.4717559814453*pow(xi2, 5) + 2.40566253662109*pow(xi2, 3); case 16: return -9688.08478116989*pow(xi1, 24) + 58001.8670558929*pow(xi1, 22) - 151930.445162773*pow(xi1, 20) + 228623.231115341*pow(xi1, 18) - 218173.43846941*pow(xi1, 16) + 137516.871471405*pow(xi1, 14) - 57820.9868717194*pow(xi1, 12) + 16003.2707176208*pow(xi1, 10) - 2807.71195650101*pow(xi1, 8) + 290.586851119995*pow(xi1, 6) - 15.4220151901245*pow(xi1, 4) + 0.257749557495117*pow(xi1, 2) + 9688.08478116989*pow(xi2, 24) - 58001.8670558929*pow(xi2, 22) + 151930.445162773*pow(xi2, 20) - 228623.231115341*pow(xi2, 18) + 218173.43846941*pow(xi2, 16) - 137516.871471405*pow(xi2, 14) + 57820.9868717194*pow(xi2, 12) - 16003.2707176208*pow(xi2, 10) + 2807.71195650101*pow(xi2, 8) - 290.586851119995*pow(xi2, 6) + 15.4220151901245*pow(xi2, 4) - 0.257749557495117*pow(xi2, 2); case 17: return -17981.0853538513*pow(xi1, 25) + 112153.828525543*pow(xi1, 23) - 307810.082950592*pow(xi1, 21) + 488743.176174164*pow(xi1, 19) - 496518.425559998*pow(xi1, 17) + 336997.347633362*pow(xi1, 15) - 154909.011726379*pow(xi1, 13) + 47860.7222213745*pow(xi1, 11) - 9660.37977218628*pow(xi1, 9) + 1205.35966873169*pow(xi1, 7) - 84.0263557434082*pow(xi1, 5) + 2.57749557495117*pow(xi1, 3) + 17981.0853538513*pow(xi2, 25) - 112153.828525543*pow(xi2, 23) + 307810.082950592*pow(xi2, 21) - 488743.176174164*pow(xi2, 19) + 496518.425559998*pow(xi2, 17) - 336997.347633362*pow(xi2, 15) + 154909.011726379*pow(xi2, 13) - 47860.7222213745*pow(xi2, 11) + 9660.37977218628*pow(xi2, 9) - 1205.35966873169*pow(xi2, 7) + 84.0263557434082*pow(xi2, 5) - 2.57749557495117*pow(xi2, 3); case 18: return -33498.416224122*pow(xi1, 26) + 217326.537135243*pow(xi1, 24) - 623650.511730909*pow(xi1, 22) + 1042027.70098567*pow(xi1, 20) - 1122894.03705299*pow(xi1, 18) + 816661.687039733*pow(xi1, 16) - 407619.976494312*pow(xi1, 14) + 139209.812054157*pow(xi1, 12) - 31848.3535255194*pow(xi1, 10) + 4675.69127261639*pow(xi1, 8) - 408.09272646904*pow(xi1, 6) + 18.2035624980927*pow(xi1, 4) - 0.241640210151672*pow(xi1, 2) + 33498.416224122*pow(xi2, 26) - 217326.537135243*pow(xi2, 24) + 623650.511730909*pow(xi2, 22) - 1042027.70098567*pow(xi2, 20) + 1122894.03705299*pow(xi2, 18) - 816661.687039733*pow(xi2, 16) + 407619.976494312*pow(xi2, 14) - 139209.812054157*pow(xi2, 12) + 31848.3535255194*pow(xi2, 10) - 4675.69127261639*pow(xi2, 8) + 408.09272646904*pow(xi2, 6) - 18.2035624980927*pow(xi2, 4) + 0.241640210151672*pow(xi2, 2); case 19: return -62617.9545104504*pow(xi1, 27) + 421917.768359184*pow(xi1, 25) - 1263536.77855253*pow(xi1, 23) + 2216141.37401104*pow(xi1, 21) - 2525006.14107251*pow(xi1, 19) + 1959343.88411522*pow(xi1, 17) - 1055685.46106815*pow(xi1, 15) + 395240.543043137*pow(xi1, 13) - 101248.362429857*pow(xi1, 11) + 17159.9815893173*pow(xi1, 9) - 1813.4675860405*pow(xi1, 7) + 107.352690696716*pow(xi1, 5) - 2.73858904838562*pow(xi1, 3) + 62617.9545104504*pow(xi2, 27) - 421917.768359184*pow(xi2, 25) + 1263536.77855253*pow(xi2, 23) - 2216141.37401104*pow(xi2, 21) + 2525006.14107251*pow(xi2, 19) - 1959343.88411522*pow(xi2, 17) + 1055685.46106815*pow(xi2, 15) - 395240.543043137*pow(xi2, 13) + 101248.362429857*pow(xi2, 11) - 17159.9815893173*pow(xi2, 9) + 1813.4675860405*pow(xi2, 7) - 107.352690696716*pow(xi2, 5) + 2.73858904838562*pow(xi2, 3); case 20: return -117408.664707094*pow(xi1, 28) + 820479.374541342*pow(xi1, 26) - 2559760.03214344*pow(xi1, 24) + 4702295.96284211*pow(xi1, 22) - 5648384.72818986*pow(xi1, 20) + 4658688.84687275*pow(xi1, 18) - 2695718.21505412*pow(xi1, 16) + 1098603.18051696*pow(xi1, 14) - 311941.764789551*pow(xi1, 12) + 60108.9683331847*pow(xi1, 10) - 7501.34424760938*pow(xi1, 8) + 559.372027516365*pow(xi1, 6) - 21.1860291659832*pow(xi1, 4) + 0.228215754032135*pow(xi1, 2) + 117408.664707094*pow(xi2, 28) - 820479.374541342*pow(xi2, 26) + 2559760.03214344*pow(xi2, 24) - 4702295.96284211*pow(xi2, 22) + 5648384.72818986*pow(xi2, 20) - 4658688.84687275*pow(xi2, 18) + 2695718.21505412*pow(xi2, 16) - 1098603.18051696*pow(xi2, 14) + 311941.764789551*pow(xi2, 12) - 60108.9683331847*pow(xi2, 10) + 7501.34424760938*pow(xi2, 8) - 559.372027516365*pow(xi2, 6) + 21.1860291659832*pow(xi2, 4) - 0.228215754032135*pow(xi2, 2); case 21: return -220753.859594464*pow(xi1, 29) + 1597921.02183402*pow(xi1, 27) - 5185115.58801055*pow(xi1, 25) + 9956002.6088655*pow(xi1, 23) - 12575203.3539766*pow(xi1, 21) + 10986811.2805098*pow(xi1, 19) - 6796979.6032548*pow(xi1, 17) + 2996882.53331995*pow(xi1, 15) - 935175.832545161*pow(xi1, 13) + 202332.507389426*pow(xi1, 11) - 29241.6076886654*pow(xi1, 9) + 2651.71057105064*pow(xi1, 7) - 134.708152413368*pow(xi1, 5) + 2.89073288440704*pow(xi1, 3) + 220753.859594464*pow(xi2, 29) - 1597921.02183402*pow(xi2, 27) + 5185115.58801055*pow(xi2, 25) - 9956002.6088655*pow(xi2, 23) + 12575203.3539766*pow(xi2, 21) - 10986811.2805098*pow(xi2, 19) + 6796979.6032548*pow(xi2, 17) - 2996882.53331995*pow(xi2, 15) + 935175.832545161*pow(xi2, 13) - 202332.507389426*pow(xi2, 11) + 29241.6076886654*pow(xi2, 9) - 2651.71057105064*pow(xi2, 7) + 134.708152413368*pow(xi2, 5) - 2.89073288440704*pow(xi2, 3); case 22: return -416121.025335565*pow(xi1, 30) + 3116200.43859892*pow(xi1, 28) - 10501547.1333341*pow(xi1, 26) + 21037051.9058537*pow(xi1, 24) - 27874207.4076701*pow(xi1, 22) + 25719033.3889248*pow(xi1, 20) - 16943525.1738567*pow(xi1, 18) + 8039608.18552695*pow(xi1, 16) - 2737009.26113538*pow(xi1, 14) + 658014.033508673*pow(xi1, 12) - 108422.541410133*pow(xi1, 10) + 11650.7581970841*pow(xi1, 8) - 750.30417381227*pow(xi1, 6) + 24.3544245511293*pow(xi1, 4) - 0.216804966330528*pow(xi1, 2) + 416121.025335565*pow(xi2, 30) - 3116200.43859892*pow(xi2, 28) + 10501547.1333341*pow(xi2, 26) - 21037051.9058537*pow(xi2, 24) + 27874207.4076701*pow(xi2, 22) - 25719033.3889248*pow(xi2, 20) + 16943525.1738567*pow(xi2, 18) - 8039608.18552695*pow(xi2, 16) + 2737009.26113538*pow(xi2, 14) - 658014.033508673*pow(xi2, 12) + 108422.541410133*pow(xi2, 10) - 11650.7581970841*pow(xi2, 8) + 750.30417381227*pow(xi2, 6) - 24.3544245511293*pow(xi2, 4) + 0.216804966330528*pow(xi2, 2); case 23: return -786219.448790699*pow(xi1, 31) + 6084458.68978053*pow(xi1, 29) - 21265479.0051578*pow(xi1, 27) + 44367651.1797434*pow(xi1, 25) - 61536845.3039266*pow(xi1, 23) + 59798623.1011078*pow(xi1, 21) - 41802781.6162907*pow(xi1, 19) + 21246375.4476535*pow(xi1, 17) - 7841612.93932602*pow(xi1, 15) + 2076515.09504765*pow(xi1, 13) - 385135.903046876*pow(xi1, 11) + 48068.4554105997*pow(xi1, 9) - 3781.04970547557*pow(xi1, 7) + 166.332770168781*pow(xi1, 5) - 3.0352695286274*pow(xi1, 3) + 786219.448790699*pow(xi2, 31) - 6084458.68978053*pow(xi2, 29) + 21265479.0051578*pow(xi2, 27) - 44367651.1797434*pow(xi2, 25) + 61536845.3039266*pow(xi2, 23) - 59798623.1011078*pow(xi2, 21) + 41802781.6162907*pow(xi2, 19) - 21246375.4476535*pow(xi2, 17) + 7841612.93932602*pow(xi2, 15) - 2076515.09504765*pow(xi2, 13) + 385135.903046876*pow(xi2, 11) - 48068.4554105997*pow(xi2, 9) + 3781.04970547557*pow(xi2, 7) - 166.332770168781*pow(xi2, 5) + 3.0352695286274*pow(xi2, 3); case 24: return -1488679.72334943*pow(xi1, 32) + 11893145.806239*pow(xi1, 30) - 43054459.3877993*pow(xi1, 28) + 93407464.6031898*pow(xi1, 26) - 135345860.163132*pow(xi1, 24) + 138173637.360835*pow(xi1, 22) - 102170151.372404*pow(xi1, 20) + 55393315.5756378*pow(xi1, 18) - 22043036.0687566*pow(xi1, 16) + 6381339.80813455*pow(xi1, 14) - 1318139.46433848*pow(xi1, 12) + 188051.027000137*pow(xi1, 10) - 17587.6326048765*pow(xi1, 8) + 987.120238535106*pow(xi1, 6) - 27.696834448725*pow(xi1, 4) + 0.206950195133686*pow(xi1, 2) + 1488679.72334943*pow(xi2, 32) - 11893145.806239*pow(xi2, 30) + 43054459.3877993*pow(xi2, 28) - 93407464.6031898*pow(xi2, 26) + 135345860.163132*pow(xi2, 24) - 138173637.360835*pow(xi2, 22) + 102170151.372404*pow(xi2, 20) - 55393315.5756378*pow(xi2, 18) + 22043036.0687566*pow(xi2, 16) - 6381339.80813455*pow(xi2, 14) + 1318139.46433848*pow(xi2, 12) - 188051.027000137*pow(xi2, 10) + 17587.6326048765*pow(xi2, 8) - 987.120238535106*pow(xi2, 6) + 27.696834448725*pow(xi2, 4) - 0.206950195133686*pow(xi2, 2); case 25: return -2824372.59765901*pow(xi1, 33) + 23270615.010516*pow(xi1, 31) - 87152179.1195009*pow(xi1, 29) + 196325971.199349*pow(xi1, 27) - 296653455.869637*pow(xi1, 25) + 317447154.463163*pow(xi1, 23) - 247577847.014235*pow(xi1, 21) + 142659378.333813*pow(xi1, 19) - 60913376.9486629*pow(xi1, 17) + 19153554.6350793*pow(xi1, 15) - 4366818.15360002*pow(xi1, 13) + 702868.975049034*pow(xi1, 11) - 76565.7097055763*pow(xi1, 9) + 5272.0752735883*pow(xi1, 7) - 202.452477559447*pow(xi1, 5) + 3.17323632538319*pow(xi1, 3) + 2824372.59765901*pow(xi2, 33) - 23270615.010516*pow(xi2, 31) + 87152179.1195009*pow(xi2, 29) - 196325971.199349*pow(xi2, 27) + 296653455.869637*pow(xi2, 25) - 317447154.463163*pow(xi2, 23) + 247577847.014235*pow(xi2, 21) - 142659378.333813*pow(xi2, 19) + 60913376.9486629*pow(xi2, 17) - 19153554.6350793*pow(xi2, 15) + 4366818.15360002*pow(xi2, 13) - 702868.975049034*pow(xi2, 11) + 76565.7097055763*pow(xi2, 9) - 5272.0752735883*pow(xi2, 7) + 202.452477559447*pow(xi2, 5) - 3.17323632538319*pow(xi2, 3); case 26: return -5368384.68010921*pow(xi1, 34) + 45574159.305608*pow(xi1, 32) - 176381514.925256*pow(xi1, 30) + 412001085.264459*pow(xi1, 28) - 648117747.563351*pow(xi1, 26) + 725470987.473485*pow(xi1, 24) - 595218173.30991*pow(xi1, 22) + 363318946.840418*pow(xi1, 20) - 165746807.477536*pow(xi1, 18) + 56289305.4453993*pow(xi1, 16) - 14056301.5180623*pow(xi1, 14) + 2524964.4175617*pow(xi1, 12) - 315162.630897876*pow(xi1, 10) + 25888.73523077*pow(xi1, 8) - 1276.3814246133*pow(xi1, 6) + 31.2034905329347*pow(xi1, 4) - 0.198327270336449*pow(xi1, 2) + 5368384.68010921*pow(xi2, 34) - 45574159.305608*pow(xi2, 32) + 176381514.925256*pow(xi2, 30) - 412001085.264459*pow(xi2, 28) + 648117747.563351*pow(xi2, 26) - 725470987.473485*pow(xi2, 24) + 595218173.30991*pow(xi2, 22) - 363318946.840418*pow(xi2, 20) + 165746807.477536*pow(xi2, 18) - 56289305.4453993*pow(xi2, 16) + 14056301.5180623*pow(xi2, 14) - 2524964.4175617*pow(xi2, 12) + 315162.630897876*pow(xi2, 10) - 25888.73523077*pow(xi2, 8) + 1276.3814246133*pow(xi2, 6) - 31.2034905329347*pow(xi2, 4) + 0.198327270336449*pow(xi2, 2); case 27: return -10221404.4309279*pow(xi1, 35) + 89329921.0770173*pow(xi1, 33) - 356895696.139291*pow(xi1, 31) + 863342628.482774*pow(xi1, 29) - 1411735169.97465*pow(xi1, 27) + 1649833527.66496*pow(xi1, 25) - 1420653947.98565*pow(xi1, 23) + 915870100.569113*pow(xi1, 21) - 444718654.137696*pow(xi1, 19) + 162314054.739406*pow(xi1, 17) - 44101073.3600514*pow(xi1, 15) + 8760388.7429215*pow(xi1, 13) - 1236316.72201056*pow(xi1, 11) + 118607.011141628*pow(xi1, 9) - 7205.51305599511*pow(xi1, 7) + 243.281451612711*pow(xi1, 5) - 3.30545450560749*pow(xi1, 3) + 10221404.4309279*pow(xi2, 35) - 89329921.0770173*pow(xi2, 33) + 356895696.139291*pow(xi2, 31) - 863342628.482774*pow(xi2, 29) + 1411735169.97465*pow(xi2, 27) - 1649833527.66496*pow(xi2, 25) + 1420653947.98565*pow(xi2, 23) - 915870100.569113*pow(xi2, 21) + 444718654.137696*pow(xi2, 19) - 162314054.739406*pow(xi2, 17) + 44101073.3600514*pow(xi2, 15) - 8760388.7429215*pow(xi2, 13) + 1236316.72201056*pow(xi2, 11) - 118607.011141628*pow(xi2, 9) + 7205.51305599511*pow(xi2, 7) - 243.281451612711*pow(xi2, 5) + 3.30545450560749*pow(xi2, 3); case 28: return -19492742.4243658*pow(xi1, 36) + 175232335.012119*pow(xi1, 34) - 722008921.923926*pow(xi1, 32) + 1806628056.05124*pow(xi1, 30) - 3066428693.32447*pow(xi1, 28) + 3734932372.32101*pow(xi1, 26) - 3368124476.71676*pow(xi1, 24) + 2287179847.95449*pow(xi1, 22) - 1178061248.61469*pow(xi1, 20) + 460069121.41871*pow(xi1, 18) - 135223661.775479*pow(xi1, 16) + 29472096.8897768*pow(xi1, 14) - 4650842.96896293*pow(xi1, 12) + 512427.983994139*pow(xi1, 10) - 37260.1692651166*pow(xi1, 8) + 1624.96143495664*pow(xi1, 6) - 34.866188390879*pow(xi1, 4) + 0.190699298400432*pow(xi1, 2) + 19492742.4243658*pow(xi2, 36) - 175232335.012119*pow(xi2, 34) + 722008921.923926*pow(xi2, 32) - 1806628056.05124*pow(xi2, 30) + 3066428693.32447*pow(xi2, 28) - 3734932372.32101*pow(xi2, 26) + 3368124476.71676*pow(xi2, 24) - 2287179847.95449*pow(xi2, 22) + 1178061248.61469*pow(xi2, 20) - 460069121.41871*pow(xi2, 18) + 135223661.775479*pow(xi2, 16) - 29472096.8897768*pow(xi2, 14) + 4650842.96896293*pow(xi2, 12) - 512427.983994139*pow(xi2, 10) + 37260.1692651166*pow(xi2, 8) - 1624.96143495664*pow(xi2, 6) + 34.866188390879*pow(xi2, 4) - 0.190699298400432*pow(xi2, 2); case 29: return -37229381.9276175*pow(xi1, 37) + 343989572.19469*pow(xi1, 35) - 1460350397.15719*pow(xi1, 33) + 3775623106.58272*pow(xi1, 31) - 6643091344.53323*pow(xi1, 29) + 8419444305.04878*pow(xi1, 27) - 7935772040.54214*pow(xi1, 25) + 5662484321.43375*pow(xi1, 23) - 3084320984.90706*pow(xi1, 21) + 1283814730.95024*pow(xi1, 19) - 406127401.700268*pow(xi1, 17) + 96463492.5990974*pow(xi1, 15) - 16863098.3571735*pow(xi1, 13) + 2104960.9899391*pow(xi1, 11) - 179227.787553705*pow(xi1, 9) + 9672.70429898053*pow(xi1, 7) - 289.023856655695*pow(xi1, 5) + 3.43258737120777*pow(xi1, 3) + 37229381.9276175*pow(xi2, 37) - 343989572.19469*pow(xi2, 35) + 1460350397.15719*pow(xi2, 33) - 3775623106.58272*pow(xi2, 31) + 6643091344.53323*pow(xi2, 29) - 8419444305.04878*pow(xi2, 27) + 7935772040.54214*pow(xi2, 25) - 5662484321.43375*pow(xi2, 23) + 3084320984.90706*pow(xi2, 21) - 1283814730.95024*pow(xi2, 19) + 406127401.700268*pow(xi2, 17) - 96463492.5990974*pow(xi2, 15) + 16863098.3571735*pow(xi2, 13) - 2104960.9899391*pow(xi2, 11) + 179227.787553705*pow(xi2, 9) - 9672.70429898053*pow(xi2, 7) + 289.023856655695*pow(xi2, 5) - 3.43258737120777*pow(xi2, 3); default: return 0.; } case 12: switch(j) { case 0: return -22.55322265625*pow(xi1, 12)*y1t + 64.0986328125*pow(xi1, 10)*y1t - 65.98388671875*pow(xi1, 8)*y1t + 29.326171875*pow(xi1, 6)*y1t - 5.07568359375*pow(xi1, 4)*y1t + 0.1845703125*pow(xi1, 2)*y1t + 22.55322265625*pow(xi2, 12)*y1t - 64.0986328125*pow(xi2, 10)*y1t + 65.98388671875*pow(xi2, 8)*y1t - 29.326171875*pow(xi2, 6)*y1t + 5.07568359375*pow(xi2, 4)*y1t - 0.1845703125*pow(xi2, 2)*y1t; case 1: return -11.276611328125*pow(xi1, 12)*y1r + 4.1005859375*pow(xi1, 11)*y1r + 32.04931640625*pow(xi1, 10)*y1r - 11.8701171875*pow(xi1, 9)*y1r - 32.991943359375*pow(xi1, 8)*y1r + 12.568359375*pow(xi1, 7)*y1r + 14.6630859375*pow(xi1, 6)*y1r - 5.865234375*pow(xi1, 5)*y1r - 2.537841796875*pow(xi1, 4)*y1r + 1.1279296875*pow(xi1, 3)*y1r + 0.09228515625*pow(xi1, 2)*y1r - 0.0615234375*xi1*y1r + 11.276611328125*pow(xi2, 12)*y1r - 4.1005859375*pow(xi2, 11)*y1r - 32.04931640625*pow(xi2, 10)*y1r + 11.8701171875*pow(xi2, 9)*y1r + 32.991943359375*pow(xi2, 8)*y1r - 12.568359375*pow(xi2, 7)*y1r - 14.6630859375*pow(xi2, 6)*y1r + 5.865234375*pow(xi2, 5)*y1r + 2.537841796875*pow(xi2, 4)*y1r - 1.1279296875*pow(xi2, 3)*y1r - 0.09228515625*pow(xi2, 2)*y1r + 0.0615234375*xi2*y1r; case 2: return 22.55322265625*pow(xi1, 12)*y2t - 64.0986328125*pow(xi1, 10)*y2t + 65.98388671875*pow(xi1, 8)*y2t - 29.326171875*pow(xi1, 6)*y2t + 5.07568359375*pow(xi1, 4)*y2t - 0.1845703125*pow(xi1, 2)*y2t - 22.55322265625*pow(xi2, 12)*y2t + 64.0986328125*pow(xi2, 10)*y2t - 65.98388671875*pow(xi2, 8)*y2t + 29.326171875*pow(xi2, 6)*y2t - 5.07568359375*pow(xi2, 4)*y2t + 0.1845703125*pow(xi2, 2)*y2t; case 3: return -11.276611328125*pow(xi1, 12)*y2r - 4.1005859375*pow(xi1, 11)*y2r + 32.04931640625*pow(xi1, 10)*y2r + 11.8701171875*pow(xi1, 9)*y2r - 32.991943359375*pow(xi1, 8)*y2r - 12.568359375*pow(xi1, 7)*y2r + 14.6630859375*pow(xi1, 6)*y2r + 5.865234375*pow(xi1, 5)*y2r - 2.537841796875*pow(xi1, 4)*y2r - 1.1279296875*pow(xi1, 3)*y2r + 0.09228515625*pow(xi1, 2)*y2r + 0.0615234375*xi1*y2r + 11.276611328125*pow(xi2, 12)*y2r + 4.1005859375*pow(xi2, 11)*y2r - 32.04931640625*pow(xi2, 10)*y2r - 11.8701171875*pow(xi2, 9)*y2r + 32.991943359375*pow(xi2, 8)*y2r + 12.568359375*pow(xi2, 7)*y2r - 14.6630859375*pow(xi2, 6)*y2r - 5.865234375*pow(xi2, 5)*y2r + 2.537841796875*pow(xi2, 4)*y2r + 1.1279296875*pow(xi2, 3)*y2r - 0.09228515625*pow(xi2, 2)*y2r - 0.0615234375*xi2*y2r; case 4: return -20.818359375*pow(xi1, 13) + 66.47265625*pow(xi1, 11) - 82.392578125*pow(xi1, 9) + 50.2734375*pow(xi1, 7) - 15.791015625*pow(xi1, 5) + 2.37890625*pow(xi1, 3) - 0.123046875*xi1 + 20.818359375*pow(xi2, 13) - 66.47265625*pow(xi2, 11) + 82.392578125*pow(xi2, 9) - 50.2734375*pow(xi2, 7) + 15.791015625*pow(xi2, 5) - 2.37890625*pow(xi2, 3) + 0.123046875*xi2; case 5: return -32.2188895089286*pow(xi1, 14) + 111.5791015625*pow(xi1, 12) - 152.0771484375*pow(xi1, 10) + 102.6416015625*pow(xi1, 8) - 34.9658203125*pow(xi1, 6) + 5.2294921875*pow(xi1, 4) - 0.1845703125*pow(xi1, 2) + 32.2188895089286*pow(xi2, 14) - 111.5791015625*pow(xi2, 12) + 152.0771484375*pow(xi2, 10) - 102.6416015625*pow(xi2, 8) + 34.9658203125*pow(xi2, 6) - 5.2294921875*pow(xi2, 4) + 0.1845703125*pow(xi2, 2); case 6: return -52.6241861979167*pow(xi1, 15) + 195.85693359375*pow(xi1, 13) - 291.79541015625*pow(xi1, 11) + 221.459147135417*pow(xi1, 9) - 90.15380859375*pow(xi1, 7) + 19.16455078125*pow(xi1, 5) - 1.99951171875*pow(xi1, 3) + 0.09228515625*xi1 + 52.6241861979167*pow(xi2, 15) - 195.85693359375*pow(xi2, 13) + 291.79541015625*pow(xi2, 11) - 221.459147135417*pow(xi2, 9) + 90.15380859375*pow(xi2, 7) - 19.16455078125*pow(xi2, 5) + 1.99951171875*pow(xi2, 3) - 0.09228515625*xi2; case 7: return -88.8033142089844*pow(xi1, 16) + 353.135986328125*pow(xi1, 14) - 570.725708007813*pow(xi1, 12) + 480.425537109375*pow(xi1, 10) - 224.105529785156*pow(xi1, 8) + 56.719482421875*pow(xi1, 6) - 6.8829345703125*pow(xi1, 4) + 0.230712890625*pow(xi1, 2) + 88.8033142089844*pow(xi2, 16) - 353.135986328125*pow(xi2, 14) + 570.725708007813*pow(xi2, 12) - 480.425537109375*pow(xi2, 10) + 224.105529785156*pow(xi2, 8) - 56.719482421875*pow(xi2, 6) + 6.8829345703125*pow(xi2, 4) - 0.230712890625*pow(xi2, 2); case 8: return -153.229248046875*pow(xi1, 17) + 648.1083984375*pow(xi1, 15) - 1129.0576171875*pow(xi1, 13) + 1043.8720703125*pow(xi1, 11) - 549.75830078125*pow(xi1, 9) + 164.2587890625*pow(xi1, 7) - 26.0654296875*pow(xi1, 5) + 1.9482421875*pow(xi1, 3) - 0.076904296875*xi1 + 153.229248046875*pow(xi2, 17) - 648.1083984375*pow(xi2, 15) + 1129.0576171875*pow(xi2, 13) - 1043.8720703125*pow(xi2, 11) + 549.75830078125*pow(xi2, 9) - 164.2587890625*pow(xi2, 7) + 26.0654296875*pow(xi2, 5) - 1.9482421875*pow(xi2, 3) + 0.076904296875*xi2; case 9: return -268.759236653646*pow(xi1, 18) + 1204.52014160156*pow(xi1, 16) - 2249.736328125*pow(xi1, 14) + 2266.26139322917*pow(xi1, 12) - 1330.67504882813*pow(xi1, 10) + 459.010986328125*pow(xi1, 8) - 88.9560546875*pow(xi1, 6) + 8.61328125*pow(xi1, 4) - 0.2691650390625*pow(xi1, 2) + 268.759236653646*pow(xi2, 18) - 1204.52014160156*pow(xi2, 16) + 2249.736328125*pow(xi2, 14) - 2266.26139322917*pow(xi2, 12) + 1330.67504882813*pow(xi2, 10) - 459.010986328125*pow(xi2, 8) + 88.9560546875*pow(xi2, 6) - 8.61328125*pow(xi2, 4) + 0.2691650390625*pow(xi2, 2); case 10: return -477.401275634766*pow(xi1, 19) + 2259.69937133789*pow(xi1, 17) - 4504.13342285156*pow(xi1, 15) + 4910.30090332031*pow(xi1, 13) - 3181.58416748047*pow(xi1, 11) + 1246.05682373047*pow(xi1, 9) - 286.691528320313*pow(xi1, 7) + 35.7271728515625*pow(xi1, 5) - 2.04116821289063*pow(xi1, 3) + 0.067291259765625*xi1 + 477.401275634766*pow(xi2, 19) - 2259.69937133789*pow(xi2, 17) + 4504.13342285156*pow(xi2, 15) - 4910.30090332031*pow(xi2, 13) + 3181.58416748047*pow(xi2, 11) - 1246.05682373047*pow(xi2, 9) + 286.691528320313*pow(xi2, 7) - 35.7271728515625*pow(xi2, 5) + 2.04116821289063*pow(xi2, 3) - 0.067291259765625*xi2; case 11: return -856.670066833496*pow(xi1, 20) + 4270.08918762207*pow(xi1, 18) - 9046.75417327881*pow(xi1, 16) + 10612.2775268555*pow(xi1, 14) - 7523.30863952637*pow(xi1, 12) + 3301.1188659668*pow(xi1, 10) - 881.847152709961*pow(xi1, 8) + 135.309265136719*pow(xi1, 6) - 10.5479049682617*pow(xi1, 4) + 0.302810668945313*pow(xi1, 2) + 856.670066833496*pow(xi2, 20) - 4270.08918762207*pow(xi2, 18) + 9046.75417327881*pow(xi2, 16) - 10612.2775268555*pow(xi2, 14) + 7523.30863952637*pow(xi2, 12) - 3301.1188659668*pow(xi2, 10) + 881.847152709961*pow(xi2, 8) - 135.309265136719*pow(xi2, 6) + 10.5479049682617*pow(xi2, 4) - 0.302810668945313*pow(xi2, 2); case 12: return -1550.16488284156*pow(xi1, 21) + 8115.82168579102*pow(xi1, 19) - 18211.4545440674*pow(xi1, 17) + 22872.8255615234*pow(xi1, 15) - 17613.9967346191*pow(xi1, 13) + 8565.35833740234*pow(xi1, 11) - 2610.79299926758*pow(xi1, 9) + 478.383178710938*pow(xi1, 7) - 48.1872711181641*pow(xi1, 5) + 2.22061157226563*pow(xi1, 3) - 0.0605621337890625*xi1 + 1550.16488284156*pow(xi2, 21) - 8115.82168579102*pow(xi2, 19) + 18211.4545440674*pow(xi2, 17) - 22872.8255615234*pow(xi2, 15) + 17613.9967346191*pow(xi2, 13) - 8565.35833740234*pow(xi2, 11) + 2610.79299926758*pow(xi2, 9) - 478.383178710938*pow(xi2, 7) + 48.1872711181641*pow(xi2, 5) - 2.22061157226563*pow(xi2, 3) + 0.0605621337890625*xi2; case 13: return -2824.88724517822*pow(xi1, 22) + 15497.9402999878*pow(xi1, 20) - 36717.703666687*pow(xi1, 18) + 49161.4813613892*pow(xi1, 16) - 40872.3374176025*pow(xi1, 14) + 21828.7485809326*pow(xi1, 12) - 7486.83421325684*pow(xi1, 10) + 1600.79658508301*pow(xi1, 8) - 199.669990539551*pow(xi1, 6) + 12.7685165405273*pow(xi1, 4) - 0.333091735839844*pow(xi1, 2) + 2824.88724517822*pow(xi2, 22) - 15497.9402999878*pow(xi2, 20) + 36717.703666687*pow(xi2, 18) - 49161.4813613892*pow(xi2, 16) + 40872.3374176025*pow(xi2, 14) - 21828.7485809326*pow(xi2, 12) + 7486.83421325684*pow(xi2, 10) - 1600.79658508301*pow(xi2, 8) + 199.669990539551*pow(xi2, 6) - 12.7685165405273*pow(xi2, 4) + 0.333091735839844*pow(xi2, 2); case 14: return -5178.95994949341*pow(xi1, 23) + 29710.8754997253*pow(xi1, 21) - 74111.1230278015*pow(xi1, 19) + 105377.289905548*pow(xi1, 17) - 94082.8270339966*pow(xi1, 15) + 54766.2573165894*pow(xi1, 13) - 20896.8199081421*pow(xi1, 11) + 5120.50998687744*pow(xi1, 9) - 766.547183990479*pow(xi1, 7) + 63.750057220459*pow(xi1, 5) - 2.46117782592773*pow(xi1, 3) + 0.0555152893066406*xi1 + 5178.95994949341*pow(xi2, 23) - 29710.8754997253*pow(xi2, 21) + 74111.1230278015*pow(xi2, 19) - 105377.289905548*pow(xi2, 17) + 94082.8270339966*pow(xi2, 15) - 54766.2573165894*pow(xi2, 13) + 20896.8199081421*pow(xi2, 11) - 5120.50998687744*pow(xi2, 9) + 766.547183990479*pow(xi2, 7) - 63.750057220459*pow(xi2, 5) + 2.46117782592773*pow(xi2, 3) - 0.0555152893066406*xi2; case 15: return -9544.55759922663*pow(xi1, 24) + 57146.7827625275*pow(xi1, 22) - 149701.111962318*pow(xi1, 20) + 225283.641888301*pow(xi1, 18) - 215000.310380459*pow(xi1, 16) + 135525.19952774*pow(xi1, 14) - 56986.956861496*pow(xi1, 12) + 15773.3450202942*pow(xi1, 10) - 2767.52143621445*pow(xi1, 8) + 286.474313735962*pow(xi1, 6) - 15.3360986709595*pow(xi1, 4) + 0.360849380493164*pow(xi1, 2) + 9544.55759922663*pow(xi2, 24) - 57146.7827625275*pow(xi2, 22) + 149701.111962318*pow(xi2, 20) - 225283.641888301*pow(xi2, 18) + 215000.310380459*pow(xi2, 16) - 135525.19952774*pow(xi2, 14) + 56986.956861496*pow(xi2, 12) - 15773.3450202942*pow(xi2, 10) + 2767.52143621445*pow(xi2, 8) - 286.474313735962*pow(xi2, 6) + 15.3360986709595*pow(xi2, 4) - 0.360849380493164*pow(xi2, 2); case 16: return -17671.0666408539*pow(xi1, 25) + 110228.875732422*pow(xi1, 23) - 302549.896160126*pow(xi1, 21) + 480425.929870605*pow(xi1, 19) - 488103.004846573*pow(xi1, 17) + 331307.98425293*pow(xi1, 15) - 152303.689613342*pow(xi1, 13) + 47058.755859375*pow(xi1, 11) - 9499.08173561096*pow(xi1, 9) + 1185.35339355469*pow(xi1, 7) - 82.8578910827637*pow(xi1, 5) + 2.74932861328125*pow(xi1, 3) - 0.0515499114990234*xi1 + 17671.0666408539*pow(xi2, 25) - 110228.875732422*pow(xi2, 23) + 302549.896160126*pow(xi2, 21) - 480425.929870605*pow(xi2, 19) + 488103.004846573*pow(xi2, 17) - 331307.98425293*pow(xi2, 15) + 152303.689613342*pow(xi2, 13) - 47058.755859375*pow(xi2, 11) + 9499.08173561096*pow(xi2, 9) - 1185.35339355469*pow(xi2, 7) + 82.8578910827637*pow(xi2, 5) - 2.74932861328125*pow(xi2, 3) + 0.0515499114990234*xi2; case 17: return -32850.0597810745*pow(xi1, 26) + 213137.865185738*pow(xi1, 24) - 611679.07834053*pow(xi1, 22) + 1022103.32902718*pow(xi1, 20) - 1101504.66350079*pow(xi1, 18) + 801162.67781353*pow(xi1, 16) - 399911.571865082*pow(xi1, 14) + 136586.399288177*pow(xi1, 12) - 31250.190905571*pow(xi1, 10) + 4588.24283123016*pow(xi1, 8) - 400.869295120239*pow(xi1, 6) + 18.3002185821533*pow(xi1, 4) - 0.386624336242676*pow(xi1, 2) + 32850.0597810745*pow(xi2, 26) - 213137.865185738*pow(xi2, 24) + 611679.07834053*pow(xi2, 22) - 1022103.32902718*pow(xi2, 20) + 1101504.66350079*pow(xi2, 18) - 801162.67781353*pow(xi2, 16) + 399911.571865082*pow(xi2, 14) - 136586.399288177*pow(xi2, 12) + 31250.190905571*pow(xi2, 10) - 4588.24283123016*pow(xi2, 8) + 400.869295120239*pow(xi2, 6) - 18.3002185821533*pow(xi2, 4) + 0.386624336242676*pow(xi2, 2); case 18: return -61289.6948693196*pow(xi1, 27) + 413003.054221272*pow(xi1, 25) - 1236940.47161937*pow(xi1, 23) + 2169664.52764074*pow(xi1, 21) - 2472240.10607421*pow(xi1, 19) + 1918540.2736448*pow(xi1, 17) - 1033774.66102648*pow(xi1, 15) + 387064.230816364*pow(xi1, 13) - 99160.5335086584*pow(xi1, 11) + 16807.3628920317*pow(xi1, 9) - 1776.99817156792*pow(xi1, 7) + 106.044611692429*pow(xi1, 5) - 3.07688534259796*pow(xi1, 3) + 0.0483280420303345*xi1 + 61289.6948693196*pow(xi2, 27) - 413003.054221272*pow(xi2, 25) + 1236940.47161937*pow(xi2, 23) - 2169664.52764074*pow(xi2, 21) + 2472240.10607421*pow(xi2, 19) - 1918540.2736448*pow(xi2, 17) + 1033774.66102648*pow(xi2, 15) - 387064.230816364*pow(xi2, 13) + 99160.5335086584*pow(xi2, 11) - 16807.3628920317*pow(xi2, 9) + 1776.99817156792*pow(xi2, 7) - 106.044611692429*pow(xi2, 5) + 3.07688534259796*pow(xi2, 3) - 0.0483280420303345*xi2; case 19: return -114725.038085218*pow(xi1, 28) + 801794.444799721*pow(xi1, 26) - 2501673.42693731*pow(xi1, 24) + 4595958.69847834*pow(xi1, 22) - 5521081.21116832*pow(xi1, 20) + 4554034.10654563*pow(xi1, 18) - 2635353.3188543*pow(xi1, 16) + 1074078.76940336*pow(xi1, 14) - 304999.325132221*pow(xi1, 12) + 58775.3960224986*pow(xi1, 10) - 7336.62985315919*pow(xi1, 8) + 548.831502556801*pow(xi1, 6) - 21.703318208456*pow(xi1, 4) + 0.410788357257843*pow(xi1, 2) + 114725.038085218*pow(xi2, 28) - 801794.444799721*pow(xi2, 26) + 2501673.42693731*pow(xi2, 24) - 4595958.69847834*pow(xi2, 22) + 5521081.21116832*pow(xi2, 20) - 4554034.10654563*pow(xi2, 18) + 2635353.3188543*pow(xi2, 16) - 1074078.76940336*pow(xi2, 14) + 304999.325132221*pow(xi2, 12) - 58775.3960224986*pow(xi2, 10) + 7336.62985315919*pow(xi2, 8) - 548.831502556801*pow(xi2, 6) + 21.703318208456*pow(xi2, 4) - 0.410788357257843*pow(xi2, 2); case 20: return -215384.171117842*pow(xi1, 29) + 1559187.06731021*pow(xi1, 27) - 5059848.83704752*pow(xi1, 25) + 9716260.68171859*pow(xi1, 23) - 12273352.074565*pow(xi1, 21) + 10723903.6297828*pow(xi1, 19) - 6634823.52170509*pow(xi1, 17) + 2925596.79840517*pow(xi1, 15) - 912995.348572433*pow(xi1, 13) + 197547.517040372*pow(xi1, 11) - 28554.2153170705*pow(xi1, 9) + 2592.99522185326*pow(xi1, 7) - 133.913961589336*pow(xi1, 5) + 3.43845069408417*pow(xi1, 3) - 0.045643150806427*xi1 + 215384.171117842*pow(xi2, 29) - 1559187.06731021*pow(xi2, 27) + 5059848.83704752*pow(xi2, 25) - 9716260.68171859*pow(xi2, 23) + 12273352.074565*pow(xi2, 21) - 10723903.6297828*pow(xi2, 19) + 6634823.52170509*pow(xi2, 17) - 2925596.79840517*pow(xi2, 15) + 912995.348572433*pow(xi2, 13) - 197547.517040372*pow(xi2, 11) + 28554.2153170705*pow(xi2, 9) - 2592.99522185326*pow(xi2, 7) + 133.913961589336*pow(xi2, 5) - 3.43845069408417*pow(xi2, 3) + 0.045643150806427*xi2; case 21: return -405451.255455166*pow(xi1, 30) + 3036558.8335298*pow(xi1, 28) - 10234008.0454154*pow(xi1, 26) + 20502764.8258321*pow(xi1, 24) - 27168407.1926661*pow(xi1, 22) + 25069719.7046261*pow(xi1, 20) - 16516991.3616178*pow(xi1, 18) + 7837789.40442404*pow(xi1, 16) - 2668491.02463529*pow(xi1, 14) + 641586.375719259*pow(xi1, 12) - 105726.973603338*pow(xi1, 10) + 11368.8188244402*pow(xi1, 8) - 737.262150615454*pow(xi1, 6) + 25.5829860270023*pow(xi1, 4) - 0.433609932661057*pow(xi1, 2) + 405451.255455166*pow(xi2, 30) - 3036558.8335298*pow(xi2, 28) + 10234008.0454154*pow(xi2, 26) - 20502764.8258321*pow(xi2, 24) + 27168407.1926661*pow(xi2, 22) - 25069719.7046261*pow(xi2, 20) + 16516991.3616178*pow(xi2, 18) - 7837789.40442404*pow(xi2, 16) + 2668491.02463529*pow(xi2, 14) - 641586.375719259*pow(xi2, 12) + 105726.973603338*pow(xi2, 10) - 11368.8188244402*pow(xi2, 8) + 737.262150615454*pow(xi2, 6) - 25.5829860270023*pow(xi2, 4) + 0.433609932661057*pow(xi2, 2); case 22: return -765125.756262168*pow(xi1, 31) + 5921722.2836215*pow(xi1, 29) - 20698420.5992248*pow(xi1, 27) + 43188032.1491528*pow(xi1, 25) - 59905433.2374316*pow(xi1, 23) + 58217735.3508566*pow(xi1, 21) - 40700676.7005455*pow(xi1, 19) + 20687731.1349157*pow(xi1, 17) - 7635970.62332113*pow(xi1, 15) + 2022201.05743848*pow(xi1, 13) - 375095.230757907*pow(xi1, 11) + 46832.4571802467*pow(xi1, 9) - 3695.62648393214*pow(xi1, 7) + 167.127721711993*pow(xi1, 5) - 3.83022107183933*pow(xi1, 3) + 0.0433609932661057*xi1 + 765125.756262168*pow(xi2, 31) - 5921722.2836215*pow(xi2, 29) + 20698420.5992248*pow(xi2, 27) - 43188032.1491528*pow(xi2, 25) + 59905433.2374316*pow(xi2, 23) - 58217735.3508566*pow(xi2, 21) + 40700676.7005455*pow(xi2, 19) - 20687731.1349157*pow(xi2, 17) + 7635970.62332113*pow(xi2, 15) - 2022201.05743848*pow(xi2, 13) + 375095.230757907*pow(xi2, 11) - 46832.4571802467*pow(xi2, 9) + 3695.62648393214*pow(xi2, 7) - 167.127721711993*pow(xi2, 5) + 3.83022107183933*pow(xi2, 3) - 0.0433609932661057*xi2; case 23: return -1447135.17293038*pow(xi1, 32) + 11562219.9182525*pow(xi1, 30) - 41859905.6974805*pow(xi1, 28) + 90823108.3086038*pow(xi1, 26) - 131611410.038288*pow(xi1, 24) + 134371362.125239*pow(xi1, 22) - 99365988.1704175*pow(xi1, 20) + 53876892.8339118*pow(xi1, 18) - 21441114.7105898*pow(xi1, 16) + 6207519.21943057*pow(xi1, 14) - 1282336.02874777*pow(xi1, 12) + 182983.673429422*pow(xi1, 10) - 17140.8084095176*pow(xi1, 8) + 974.068579562008*pow(xi1, 6) - 29.9732865951955*pow(xi1, 4) + 0.455290429294109*pow(xi1, 2) + 1447135.17293038*pow(xi2, 32) - 11562219.9182525*pow(xi2, 30) + 41859905.6974805*pow(xi2, 28) - 90823108.3086038*pow(xi2, 26) + 131611410.038288*pow(xi2, 24) - 134371362.125239*pow(xi2, 22) + 99365988.1704175*pow(xi2, 20) - 53876892.8339118*pow(xi2, 18) + 21441114.7105898*pow(xi2, 16) - 6207519.21943057*pow(xi2, 14) + 1282336.02874777*pow(xi2, 12) - 182983.673429422*pow(xi2, 10) + 17140.8084095176*pow(xi2, 8) - 974.068579562008*pow(xi2, 6) + 29.9732865951955*pow(xi2, 4) - 0.455290429294109*pow(xi2, 2); case 24: return -2742779.61150441*pow(xi1, 33) + 22600235.4279654*pow(xi1, 31) - 84648362.5869781*pow(xi1, 29) + 190700740.01478*pow(xi1, 27) - 288175803.705125*pow(xi1, 25) + 308398483.842205*pow(xi1, 23) - 240538465.619668*pow(xi1, 21) + 138613122.14585*pow(xi1, 19) - 59189858.1177827*pow(xi1, 17) + 18612900.9589193*pow(xi1, 15) - 4243868.11019075*pow(xi1, 13) + 683181.726775736*pow(xi1, 11) - 74483.69949465*pow(xi1, 9) + 5159.52458873391*pow(xi1, 7) - 206.398327946663*pow(xi1, 5) + 4.24937734007835*pow(xi1, 3) - 0.0413900390267372*xi1 + 2742779.61150441*pow(xi2, 33) - 22600235.4279654*pow(xi2, 31) + 84648362.5869781*pow(xi2, 29) - 190700740.01478*pow(xi2, 27) + 288175803.705125*pow(xi2, 25) - 308398483.842205*pow(xi2, 23) + 240538465.619668*pow(xi2, 21) - 138613122.14585*pow(xi2, 19) + 59189858.1177827*pow(xi2, 17) - 18612900.9589193*pow(xi2, 15) + 4243868.11019075*pow(xi2, 13) - 683181.726775736*pow(xi2, 11) + 74483.69949465*pow(xi2, 9) - 5159.52458873391*pow(xi2, 7) + 206.398327946663*pow(xi2, 5) - 4.24937734007835*pow(xi2, 3) + 0.0413900390267372*xi2; case 25: return -5208475.34921234*pow(xi1, 34) + 44220260.3040145*pow(xi1, 32) - 171155330.901526*pow(xi1, 30) + 399824691.036655*pow(xi1, 28) - 629011031.974561*pow(xi1, 26) + 704136332.023367*pow(xi1, 24) - 577756105.294866*pow(xi1, 22) + 352685335.281925*pow(xi1, 20) - 160906983.145731*pow(xi1, 18) + 54649403.6016254*pow(xi1, 16) - 13647760.1367895*pow(xi1, 14) + 2451853.86356305*pow(xi1, 12) - 306183.941086113*pow(xi1, 10) + 25228.4376387298*pow(xi1, 8) - 1268.23678471148*pow(xi1, 6) + 34.905599579215*pow(xi1, 4) - 0.475985448807478*pow(xi1, 2) + 5208475.34921234*pow(xi2, 34) - 44220260.3040145*pow(xi2, 32) + 171155330.901526*pow(xi2, 30) - 399824691.036655*pow(xi2, 28) + 629011031.974561*pow(xi2, 26) - 704136332.023367*pow(xi2, 24) + 577756105.294866*pow(xi2, 22) - 352685335.281925*pow(xi2, 20) + 160906983.145731*pow(xi2, 18) - 54649403.6016254*pow(xi2, 16) + 13647760.1367895*pow(xi2, 14) - 2451853.86356305*pow(xi2, 12) + 306183.941086113*pow(xi2, 10) - 25228.4376387298*pow(xi2, 8) + 1268.23678471148*pow(xi2, 6) - 34.905599579215*pow(xi2, 4) + 0.475985448807478*pow(xi2, 2); case 26: return -9908504.29528729*pow(xi1, 35) + 86602324.7757193*pow(xi1, 33) - 346025516.708725*pow(xi1, 31) + 837111711.565737*pow(xi1, 29) - 1368945433.05878*pow(xi1, 27) + 1599944782.75468*pow(xi1, 25) - 1377794584.83228*pow(xi1, 23) + 888302170.752598*pow(xi1, 21) - 431362373.068038*pow(xi1, 19) + 157449965.765871*pow(xi1, 17) - 42782436.1134295*pow(xi1, 15) + 8499237.64101472*pow(xi1, 13) - 1199816.01963915*pow(xi1, 11) + 115296.38123868*pow(xi1, 9) - 7073.37042901665*pow(xi1, 7) + 252.483836956322*pow(xi1, 5) - 4.69374539796263*pow(xi1, 3) + 0.0396654540672898*xi1 + 9908504.29528729*pow(xi2, 35) - 86602324.7757193*pow(xi2, 33) + 346025516.708725*pow(xi2, 31) - 837111711.565737*pow(xi2, 29) + 1368945433.05878*pow(xi2, 27) - 1599944782.75468*pow(xi2, 25) + 1377794584.83228*pow(xi2, 23) - 888302170.752598*pow(xi2, 21) + 431362373.068038*pow(xi2, 19) - 157449965.765871*pow(xi2, 17) + 42782436.1134295*pow(xi2, 15) - 8499237.64101472*pow(xi2, 13) + 1199816.01963915*pow(xi2, 11) - 115296.38123868*pow(xi2, 9) + 7073.37042901665*pow(xi2, 7) - 252.483836956322*pow(xi2, 5) + 4.69374539796263*pow(xi2, 3) - 0.0396654540672898*xi2; case 27: return -18881205.4071308*pow(xi1, 36) + 169748323.585053*pow(xi1, 34) - 699467399.742545*pow(xi1, 32) + 1750356773.84535*pow(xi1, 30) - 2971138571.87629*pow(xi1, 28) + 3619131142.81016*pow(xi1, 26) - 3263928373.91906*pow(xi1, 24) + 2216578467.81839*pow(xi1, 22) - 1141774660.52333*pow(xi1, 20) + 445928084.89317*pow(xi1, 18) - 131076153.815987*pow(xi1, 16) + 28570462.2379647*pow(xi1, 14) - 4509449.15763886*pow(xi1, 12) + 497319.399947701*pow(xi1, 10) - 36350.1304189442*pow(xi1, 8) + 1629.89758035168*pow(xi1, 6) - 40.4091813310515*pow(xi1, 4) + 0.495818175841123*pow(xi1, 2) + 18881205.4071308*pow(xi2, 36) - 169748323.585053*pow(xi2, 34) + 699467399.742545*pow(xi2, 32) - 1750356773.84535*pow(xi2, 30) + 2971138571.87629*pow(xi2, 28) - 3619131142.81016*pow(xi2, 26) + 3263928373.91906*pow(xi2, 24) - 2216578467.81839*pow(xi2, 22) + 1141774660.52333*pow(xi2, 20) - 445928084.89317*pow(xi2, 18) + 131076153.815987*pow(xi2, 16) - 28570462.2379647*pow(xi2, 14) + 4509449.15763886*pow(xi2, 12) - 497319.399947701*pow(xi2, 10) + 36350.1304189442*pow(xi2, 8) - 1629.89758035168*pow(xi2, 6) + 40.4091813310515*pow(xi2, 4) - 0.495818175841123*pow(xi2, 2); case 28: return -36035231.94126*pow(xi1, 37) + 332981905.88446*pow(xi1, 35) - 1413726939.76667*pow(xi1, 33) + 3655354391.35564*pow(xi1, 31) - 6431952084.25*pow(xi1, 29) + 8152430288.7193*pow(xi1, 27) - 7684636644.4594*pow(xi1, 25) + 5483667102.29229*pow(xi1, 23) - 2987122332.19582*pow(xi1, 21) + 1243439492.18471*pow(xi1, 19) - 393380943.358236*pow(xi1, 17) + 93442880.9754944*pow(xi1, 15) - 16337382.0053395*pow(xi1, 13) + 2040497.55025906*pow(xi1, 11) - 174241.619613813*pow(xi1, 9) + 9541.69497068971*pow(xi1, 7) - 306.184250854421*pow(xi1, 5) + 5.16159434337169*pow(xi1, 3) - 0.0381398596800864*xi1 + 36035231.94126*pow(xi2, 37) - 332981905.88446*pow(xi2, 35) + 1413726939.76667*pow(xi2, 33) - 3655354391.35564*pow(xi2, 31) + 6431952084.25*pow(xi2, 29) - 8152430288.7193*pow(xi2, 27) + 7684636644.4594*pow(xi2, 25) - 5483667102.29229*pow(xi2, 23) + 2987122332.19582*pow(xi2, 21) - 1243439492.18471*pow(xi2, 19) + 393380943.358236*pow(xi2, 17) - 93442880.9754944*pow(xi2, 15) + 16337382.0053395*pow(xi2, 13) - 2040497.55025906*pow(xi2, 11) + 174241.619613813*pow(xi2, 9) - 9541.69497068971*pow(xi2, 7) + 306.184250854421*pow(xi2, 5) - 5.16159434337169*pow(xi2, 3) + 0.0381398596800864*xi2; case 29: return -68874356.5660925*pow(xi1, 38) + 653656629.297066*pow(xi1, 36) - 2856934570.48049*pow(xi1, 34) + 7624657571.27675*pow(xi1, 32) - 13890356342.0884*pow(xi1, 30) + 18292482306.1948*pow(xi1, 28) - 17989567245.6529*pow(xi1, 26) + 13458767751.5738*pow(xi1, 24) - 7731565722.77115*pow(xi1, 22) + 3418271096.48544*pow(xi1, 20) - 1158704884.14768*pow(xi1, 18) + 298182338.803168*pow(xi1, 16) - 57291281.6304182*pow(xi1, 14) + 8014068.54624802*pow(xi1, 12) - 786727.024230338*pow(xi1, 10) + 51392.5738947513*pow(xi1, 8) - 2070.38795685978*pow(xi1, 6) + 46.5115588798653*pow(xi1, 4) - 0.514888105681166*pow(xi1, 2) + 68874356.5660925*pow(xi2, 38) - 653656629.297066*pow(xi2, 36) + 2856934570.48049*pow(xi2, 34) - 7624657571.27675*pow(xi2, 32) + 13890356342.0884*pow(xi2, 30) - 18292482306.1948*pow(xi2, 28) + 17989567245.6529*pow(xi2, 26) - 13458767751.5738*pow(xi2, 24) + 7731565722.77115*pow(xi2, 22) - 3418271096.48544*pow(xi2, 20) + 1158704884.14768*pow(xi2, 18) - 298182338.803168*pow(xi2, 16) + 57291281.6304182*pow(xi2, 14) - 8014068.54624802*pow(xi2, 12) + 786727.024230338*pow(xi2, 10) - 51392.5738947513*pow(xi2, 8) + 2070.38795685978*pow(xi2, 6) - 46.5115588798653*pow(xi2, 4) + 0.514888105681166*pow(xi2, 2); default: return 0.; } case 13: switch(j) { case 0: return -39.744140625*pow(xi1, 13)*y1t + 123.017578125*pow(xi1, 11)*y1t - 142.44140625*pow(xi1, 9)*y1t + 75.41015625*pow(xi1, 7)*y1t - 17.595703125*pow(xi1, 5)*y1t + 1.353515625*pow(xi1, 3)*y1t + 39.744140625*pow(xi2, 13)*y1t - 123.017578125*pow(xi2, 11)*y1t + 142.44140625*pow(xi2, 9)*y1t - 75.41015625*pow(xi2, 7)*y1t + 17.595703125*pow(xi2, 5)*y1t - 1.353515625*pow(xi2, 3)*y1t; case 1: return -19.8720703125*pow(xi1, 13)*y1r + 7.176025390625*pow(xi1, 12)*y1r + 61.5087890625*pow(xi1, 11)*y1r - 22.55322265625*pow(xi1, 10)*y1r - 71.220703125*pow(xi1, 9)*y1r + 26.707763671875*pow(xi1, 8)*y1r + 37.705078125*pow(xi1, 7)*y1r - 14.6630859375*pow(xi1, 6)*y1r - 8.7978515625*pow(xi1, 5)*y1r + 3.665771484375*pow(xi1, 4)*y1r + 0.6767578125*pow(xi1, 3)*y1r - 0.33837890625*pow(xi1, 2)*y1r + 19.8720703125*pow(xi2, 13)*y1r - 7.176025390625*pow(xi2, 12)*y1r - 61.5087890625*pow(xi2, 11)*y1r + 22.55322265625*pow(xi2, 10)*y1r + 71.220703125*pow(xi2, 9)*y1r - 26.707763671875*pow(xi2, 8)*y1r - 37.705078125*pow(xi2, 7)*y1r + 14.6630859375*pow(xi2, 6)*y1r + 8.7978515625*pow(xi2, 5)*y1r - 3.665771484375*pow(xi2, 4)*y1r - 0.6767578125*pow(xi2, 3)*y1r + 0.33837890625*pow(xi2, 2)*y1r; case 2: return 39.744140625*pow(xi1, 13)*y2t - 123.017578125*pow(xi1, 11)*y2t + 142.44140625*pow(xi1, 9)*y2t - 75.41015625*pow(xi1, 7)*y2t + 17.595703125*pow(xi1, 5)*y2t - 1.353515625*pow(xi1, 3)*y2t - 39.744140625*pow(xi2, 13)*y2t + 123.017578125*pow(xi2, 11)*y2t - 142.44140625*pow(xi2, 9)*y2t + 75.41015625*pow(xi2, 7)*y2t - 17.595703125*pow(xi2, 5)*y2t + 1.353515625*pow(xi2, 3)*y2t; case 3: return -19.8720703125*pow(xi1, 13)*y2r - 7.176025390625*pow(xi1, 12)*y2r + 61.5087890625*pow(xi1, 11)*y2r + 22.55322265625*pow(xi1, 10)*y2r - 71.220703125*pow(xi1, 9)*y2r - 26.707763671875*pow(xi1, 8)*y2r + 37.705078125*pow(xi1, 7)*y2r + 14.6630859375*pow(xi1, 6)*y2r - 8.7978515625*pow(xi1, 5)*y2r - 3.665771484375*pow(xi1, 4)*y2r + 0.6767578125*pow(xi1, 3)*y2r + 0.33837890625*pow(xi1, 2)*y2r + 19.8720703125*pow(xi2, 13)*y2r + 7.176025390625*pow(xi2, 12)*y2r - 61.5087890625*pow(xi2, 11)*y2r - 22.55322265625*pow(xi2, 10)*y2r + 71.220703125*pow(xi2, 9)*y2r + 26.707763671875*pow(xi2, 8)*y2r - 37.705078125*pow(xi2, 7)*y2r - 14.6630859375*pow(xi2, 6)*y2r + 8.7978515625*pow(xi2, 5)*y2r + 3.665771484375*pow(xi2, 4)*y2r - 0.6767578125*pow(xi2, 3)*y2r - 0.33837890625*pow(xi2, 2)*y2r; case 4: return -36.9052734375*pow(xi1, 14) + 127.1181640625*pow(xi1, 12) - 173.3037109375*pow(xi1, 10) + 119.3994140625*pow(xi1, 8) - 43.9892578125*pow(xi1, 6) + 8.3466796875*pow(xi1, 4) - 0.6767578125*pow(xi1, 2) + 36.9052734375*pow(xi2, 14) - 127.1181640625*pow(xi2, 12) + 173.3037109375*pow(xi2, 10) - 119.3994140625*pow(xi2, 8) + 43.9892578125*pow(xi2, 6) - 8.3466796875*pow(xi2, 4) + 0.6767578125*pow(xi2, 2); case 5: return -57.408203125*pow(xi1, 15) + 213.23046875*pow(xi1, 13) - 317.255859375*pow(xi1, 11) + 240.1953125*pow(xi1, 9) - 96.357421875*pow(xi1, 7) + 18.94921875*pow(xi1, 5) - 1.353515625*pow(xi1, 3) + 57.408203125*pow(xi2, 15) - 213.23046875*pow(xi2, 13) + 317.255859375*pow(xi2, 11) - 240.1953125*pow(xi2, 9) + 96.357421875*pow(xi2, 7) - 18.94921875*pow(xi2, 5) + 1.353515625*pow(xi2, 3); case 6: return -94.1853332519531*pow(xi1, 16) + 374.178466796875*pow(xi1, 14) - 604.269897460938*pow(xi1, 12) + 508.285400390625*pow(xi1, 10) - 237.096862792969*pow(xi1, 8) + 60.626220703125*pow(xi1, 6) - 8.0364990234375*pow(xi1, 4) + 0.507568359375*pow(xi1, 2) + 94.1853332519531*pow(xi2, 16) - 374.178466796875*pow(xi2, 14) + 604.269897460938*pow(xi2, 12) - 508.285400390625*pow(xi2, 10) + 237.096862792969*pow(xi2, 8) - 60.626220703125*pow(xi2, 6) + 8.0364990234375*pow(xi2, 4) - 0.507568359375*pow(xi2, 2); case 7: return -159.56103515625*pow(xi1, 17) + 674.54638671875*pow(xi1, 15) - 1174.60205078125*pow(xi1, 13) + 1085.54443359375*pow(xi1, 11) - 571.51123046875*pow(xi1, 9) + 170.62353515625*pow(xi1, 7) - 26.73193359375*pow(xi1, 5) + 1.69189453125*pow(xi1, 3) + 159.56103515625*pow(xi2, 17) - 674.54638671875*pow(xi2, 15) + 1174.60205078125*pow(xi2, 13) - 1085.54443359375*pow(xi2, 11) + 571.51123046875*pow(xi2, 9) - 170.62353515625*pow(xi2, 7) + 26.73193359375*pow(xi2, 5) - 1.69189453125*pow(xi2, 3); case 8: return -276.276977539063*pow(xi1, 18) + 1237.86437988281*pow(xi1, 16) - 2311.435546875*pow(xi1, 14) + 2327.8759765625*pow(xi1, 12) - 1366.56469726563*pow(xi1, 10) + 471.289306640625*pow(xi1, 8) - 91.3623046875*pow(xi1, 6) + 9.0234375*pow(xi1, 4) - 0.4229736328125*pow(xi1, 2) + 276.276977539063*pow(xi2, 18) - 1237.86437988281*pow(xi2, 16) + 2311.435546875*pow(xi2, 14) - 2327.8759765625*pow(xi2, 12) + 1366.56469726563*pow(xi2, 10) - 471.289306640625*pow(xi2, 8) + 91.3623046875*pow(xi2, 6) - 9.0234375*pow(xi2, 4) + 0.4229736328125*pow(xi2, 2); case 9: return -486.081298828125*pow(xi1, 19) + 2300.4287109375*pow(xi1, 17) - 4584.6708984375*pow(xi1, 15) + 4997.4462890625*pow(xi1, 13) - 3237.65380859375*pow(xi1, 11) + 1267.8681640625*pow(xi1, 9) - 291.6826171875*pow(xi1, 7) + 36.3193359375*pow(xi1, 5) - 1.973876953125*pow(xi1, 3) + 486.081298828125*pow(xi2, 19) - 2300.4287109375*pow(xi2, 17) + 4584.6708984375*pow(xi2, 15) - 4997.4462890625*pow(xi2, 13) + 3237.65380859375*pow(xi2, 11) - 1267.8681640625*pow(xi2, 9) + 291.6826171875*pow(xi2, 7) - 36.3193359375*pow(xi2, 5) + 1.973876953125*pow(xi2, 3); case 10: return -865.832313537598*pow(xi1, 20) + 4315.41819763184*pow(xi1, 18) - 9142.12314605713*pow(xi1, 16) + 10723.4170532227*pow(xi1, 14) - 7601.6089630127*pow(xi1, 12) + 3335.27163696289*pow(xi1, 10) - 890.919937133789*pow(xi1, 8) + 136.690979003906*pow(xi1, 6) - 10.671272277832*pow(xi1, 4) + 0.370101928710938*pow(xi1, 2) + 865.832313537598*pow(xi2, 20) - 4315.41819763184*pow(xi2, 18) + 9142.12314605713*pow(xi2, 16) - 10723.4170532227*pow(xi2, 14) + 7601.6089630127*pow(xi2, 12) - 3335.27163696289*pow(xi2, 10) + 890.919937133789*pow(xi2, 8) - 136.690979003906*pow(xi2, 6) + 10.671272277832*pow(xi2, 4) - 0.370101928710938*pow(xi2, 2); case 11: return -1557.58193969727*pow(xi1, 21) + 8154.39956665039*pow(xi1, 19) - 18297.4888916016*pow(xi1, 17) + 22980.2501220703*pow(xi1, 15) - 17696.2619018555*pow(xi1, 13) + 8605.14862060547*pow(xi1, 11) - 2622.85949707031*pow(xi1, 9) + 480.582641601563*pow(xi1, 7) - 48.4093322753906*pow(xi1, 5) + 2.22061157226563*pow(xi1, 3) + 1557.58193969727*pow(xi2, 21) - 8154.39956665039*pow(xi2, 19) + 18297.4888916016*pow(xi2, 17) - 22980.2501220703*pow(xi2, 15) + 17696.2619018555*pow(xi2, 13) - 8605.14862060547*pow(xi2, 11) + 2622.85949707031*pow(xi2, 9) - 480.582641601563*pow(xi2, 7) + 48.4093322753906*pow(xi2, 5) - 2.22061157226563*pow(xi2, 3); case 12: return -2824.88724517822*pow(xi1, 22) + 15497.9402999878*pow(xi1, 20) - 36717.703666687*pow(xi1, 18) + 49161.4813613892*pow(xi1, 16) - 40872.3374176025*pow(xi1, 14) + 21828.7485809326*pow(xi1, 12) - 7486.83421325684*pow(xi1, 10) + 1600.79658508301*pow(xi1, 8) - 199.669990539551*pow(xi1, 6) + 12.7685165405273*pow(xi1, 4) - 0.333091735839844*pow(xi1, 2) + 2824.88724517822*pow(xi2, 22) - 15497.9402999878*pow(xi2, 20) + 36717.703666687*pow(xi2, 18) - 49161.4813613892*pow(xi2, 16) + 40872.3374176025*pow(xi2, 14) - 21828.7485809326*pow(xi2, 12) + 7486.83421325684*pow(xi2, 10) - 1600.79658508301*pow(xi2, 8) + 199.669990539551*pow(xi2, 6) - 12.7685165405273*pow(xi2, 4) + 0.333091735839844*pow(xi2, 2); case 13: return -5158.48975206458*pow(xi1, 23) + 29594.056854248*pow(xi1, 21) - 73821.1861419678*pow(xi1, 19) + 104967.009887695*pow(xi1, 17) - 93718.2104187012*pow(xi1, 15) + 54554.955871582*pow(xi1, 13) - 20816.541595459*pow(xi1, 11) + 5100.92102050781*pow(xi1, 9) - 763.626022338867*pow(xi1, 7) + 63.5094909667969*pow(xi1, 5) - 2.44267272949219*pow(xi1, 3) + 5158.48975206458*pow(xi2, 23) - 29594.056854248*pow(xi2, 21) + 73821.1861419678*pow(xi2, 19) - 104967.009887695*pow(xi2, 17) + 93718.2104187012*pow(xi2, 15) - 54554.955871582*pow(xi2, 13) + 20816.541595459*pow(xi2, 11) - 5100.92102050781*pow(xi2, 9) + 763.626022338867*pow(xi2, 7) - 63.5094909667969*pow(xi2, 5) + 2.44267272949219*pow(xi2, 3); case 14: return -9475.14263486862*pow(xi1, 24) + 56733.152173996*pow(xi1, 22) - 148622.521708488*pow(xi1, 20) + 223667.621259689*pow(xi1, 18) - 213464.600594044*pow(xi1, 16) + 134561.141475677*pow(xi1, 14) - 56583.1933078766*pow(xi1, 12) + 15662.0201225281*pow(xi1, 10) - 2748.06134462357*pow(xi1, 8) + 284.469594955444*pow(xi1, 6) - 15.2158155441284*pow(xi1, 4) + 0.305334091186523*pow(xi1, 2) + 9475.14263486862*pow(xi2, 24) - 56733.152173996*pow(xi2, 22) + 148622.521708488*pow(xi2, 20) - 223667.621259689*pow(xi2, 18) + 213464.600594044*pow(xi2, 16) - 134561.141475677*pow(xi2, 14) + 56583.1933078766*pow(xi2, 12) - 15662.0201225281*pow(xi2, 10) + 2748.06134462357*pow(xi2, 8) - 284.469594955444*pow(xi2, 6) + 15.2158155441284*pow(xi2, 4) - 0.305334091186523*pow(xi2, 2); case 15: return -17492.571018219*pow(xi1, 25) + 109120.323970795*pow(xi1, 23) - 299520.0116539*pow(xi1, 21) + 475634.251041412*pow(xi1, 19) - 483253.892555237*pow(xi1, 17) + 328029.114830017*pow(xi1, 15) - 150801.959220886*pow(xi1, 13) + 46596.4232254028*pow(xi1, 11) - 9406.08324050903*pow(xi1, 9) + 1173.79148483276*pow(xi1, 7) - 82.0330924987793*pow(xi1, 5) + 2.6462287902832*pow(xi1, 3) + 17492.571018219*pow(xi2, 25) - 109120.323970795*pow(xi2, 23) + 299520.0116539*pow(xi2, 21) - 475634.251041412*pow(xi2, 19) + 483253.892555237*pow(xi2, 17) - 328029.114830017*pow(xi2, 15) + 150801.959220886*pow(xi2, 13) - 46596.4232254028*pow(xi2, 11) + 9406.08324050903*pow(xi2, 9) - 1173.79148483276*pow(xi2, 7) + 82.0330924987793*pow(xi2, 5) - 2.6462287902832*pow(xi2, 3); case 16: return -32438.1468057632*pow(xi1, 26) + 210476.088356972*pow(xi1, 24) - 604069.896524429*pow(xi1, 22) + 1009436.52295876*pow(xi1, 20) - 1087903.80975246*pow(xi1, 18) + 791305.484061241*pow(xi1, 16) - 395008.242015839*pow(xi1, 14) + 134917.356273651*pow(xi1, 12) - 30869.5774526596*pow(xi1, 10) + 4532.54437923431*pow(xi1, 8) - 395.989236831665*pow(xi1, 6) + 17.9565525054932*pow(xi1, 4) - 0.283524513244629*pow(xi1, 2) + 32438.1468057632*pow(xi2, 26) - 210476.088356972*pow(xi2, 24) + 604069.896524429*pow(xi2, 22) - 1009436.52295876*pow(xi2, 20) + 1087903.80975246*pow(xi2, 18) - 791305.484061241*pow(xi2, 16) + 395008.242015839*pow(xi2, 14) - 134917.356273651*pow(xi2, 12) + 30869.5774526596*pow(xi2, 10) - 4532.54437923431*pow(xi2, 8) + 395.989236831665*pow(xi2, 6) - 17.9565525054932*pow(xi2, 4) + 0.283524513244629*pow(xi2, 2); case 17: return -60391.0189914703*pow(xi1, 27) + 406970.019607544*pow(xi1, 25) - 1218937.21246719*pow(xi1, 23) + 2138197.03727722*pow(xi1, 21) - 2436507.0156765*pow(xi1, 19) + 1890902.63150024*pow(xi1, 17) - 1018930.93498993*pow(xi1, 15) + 381524.08493042*pow(xi1, 13) - 97745.6159877777*pow(xi1, 11) + 16568.2724761963*pow(xi1, 9) - 1751.74945449829*pow(xi1, 7) + 104.337020874023*pow(xi1, 5) - 2.83524513244629*pow(xi1, 3) + 60391.0189914703*pow(xi2, 27) - 406970.019607544*pow(xi2, 25) + 1218937.21246719*pow(xi2, 23) - 2138197.03727722*pow(xi2, 21) + 2436507.0156765*pow(xi2, 19) - 1890902.63150024*pow(xi2, 17) + 1018930.93498993*pow(xi2, 15) - 381524.08493042*pow(xi2, 13) + 97745.6159877777*pow(xi2, 11) - 16568.2724761963*pow(xi2, 9) + 1751.74945449829*pow(xi2, 7) - 104.337020874023*pow(xi2, 5) + 2.83524513244629*pow(xi2, 3); case 18: return -112828.756463975*pow(xi1, 28) + 788588.082812726*pow(xi1, 26) - 2460608.39660838*pow(xi1, 24) + 4520765.16227424*pow(xi1, 22) - 5431042.46600339*pow(xi1, 20) + 4479999.0119229*pow(xi1, 18) - 2592641.40994146*pow(xi1, 16) + 1056722.9332602*pow(xi1, 14) - 300085.308234841*pow(xi1, 12) + 57831.1539922357*pow(xi1, 10) - 7219.0231026113*pow(xi1, 8) + 539.700724482536*pow(xi1, 6) - 20.9542335569859*pow(xi1, 4) + 0.26580423116684*pow(xi1, 2) + 112828.756463975*pow(xi2, 28) - 788588.082812726*pow(xi2, 26) + 2460608.39660838*pow(xi2, 24) - 4520765.16227424*pow(xi2, 22) + 5431042.46600339*pow(xi2, 20) - 4479999.0119229*pow(xi2, 18) + 2592641.40994146*pow(xi2, 16) - 1056722.9332602*pow(xi2, 14) + 300085.308234841*pow(xi2, 12) - 57831.1539922357*pow(xi2, 10) + 7219.0231026113*pow(xi2, 8) - 539.700724482536*pow(xi2, 6) + 20.9542335569859*pow(xi2, 4) - 0.26580423116684*pow(xi2, 2); case 19: return -211468.095279336*pow(xi1, 29) + 1530931.36221707*pow(xi1, 27) - 4968446.72460437*pow(xi1, 25) + 9541290.03068805*pow(xi1, 23) - 12053003.4512252*pow(xi1, 21) + 10531942.866402*pow(xi1, 19) - 6516402.00767183*pow(xi1, 17) + 2873527.1355443*pow(xi1, 15) - 896790.912789702*pow(xi1, 13) + 194050.851504207*pow(xi1, 11) - 28050.0218017101*pow(xi1, 9) + 2546.69480967522*pow(xi1, 7) - 130.74024116993*pow(xi1, 5) + 3.01244795322418*pow(xi1, 3) + 211468.095279336*pow(xi2, 29) - 1530931.36221707*pow(xi2, 27) + 4968446.72460437*pow(xi2, 25) - 9541290.03068805*pow(xi2, 23) + 12053003.4512252*pow(xi2, 21) - 10531942.866402*pow(xi2, 19) + 6516402.00767183*pow(xi2, 17) - 2873527.1355443*pow(xi2, 15) + 896790.912789702*pow(xi2, 13) - 194050.851504207*pow(xi2, 11) + 28050.0218017101*pow(xi2, 9) - 2546.69480967522*pow(xi2, 7) + 130.74024116993*pow(xi2, 5) - 3.01244795322418*pow(xi2, 3); case 20: return -397481.697608382*pow(xi1, 30) + 2977056.79637298*pow(xi1, 28) - 10034074.3945129*pow(xi1, 26) + 20103395.1400928*pow(xi1, 24) - 26640716.4326794*pow(xi1, 22) + 24584156.7905514*pow(xi1, 20) - 16197959.5438677*pow(xi1, 18) + 7686806.28355846*pow(xi1, 16) - 2617221.91839382*pow(xi1, 14) + 629291.577356607*pow(xi1, 12) - 103705.850256771*pow(xi1, 10) + 11150.8845161498*pow(xi1, 8) - 721.564963907003*pow(xi1, 6) + 24.1832627356052*pow(xi1, 4) - 0.251037329435349*pow(xi1, 2) + 397481.697608382*pow(xi2, 30) - 2977056.79637298*pow(xi2, 28) + 10034074.3945129*pow(xi2, 26) - 20103395.1400928*pow(xi2, 24) + 26640716.4326794*pow(xi2, 22) - 24584156.7905514*pow(xi2, 20) + 16197959.5438677*pow(xi2, 18) - 7686806.28355846*pow(xi2, 16) + 2617221.91839382*pow(xi2, 14) - 629291.577356607*pow(xi2, 12) + 103705.850256771*pow(xi2, 10) - 11150.8845161498*pow(xi2, 8) + 721.564963907003*pow(xi2, 6) - 24.1832627356052*pow(xi2, 4) + 0.251037329435349*pow(xi2, 2); case 21: return -749074.166969955*pow(xi1, 31) + 5797853.33353579*pow(xi1, 29) - 20266690.4669765*pow(xi1, 27) + 42289717.7062619*pow(xi1, 25) - 58662785.4666039*pow(xi1, 23) + 57013311.6029352*pow(xi1, 21) - 39860846.3061646*pow(xi1, 19) + 20261945.3071647*pow(xi1, 17) - 7479204.49236828*pow(xi1, 15) + 1980787.58679807*pow(xi1, 13) - 367431.737764776*pow(xi1, 11) + 45875.8207523823*pow(xi1, 9) - 3617.07494741678*pow(xi1, 7) + 161.534153580666*pow(xi1, 5) - 3.17980617284775*pow(xi1, 3) + 749074.166969955*pow(xi2, 31) - 5797853.33353579*pow(xi2, 29) + 20266690.4669765*pow(xi2, 27) - 42289717.7062619*pow(xi2, 25) + 58662785.4666039*pow(xi2, 23) - 57013311.6029352*pow(xi2, 21) + 39860846.3061646*pow(xi2, 19) - 20261945.3071647*pow(xi2, 17) + 7479204.49236828*pow(xi2, 15) - 1980787.58679807*pow(xi2, 13) + 367431.737764776*pow(xi2, 11) - 45875.8207523823*pow(xi2, 9) + 3617.07494741678*pow(xi2, 7) - 161.534153580666*pow(xi2, 5) + 3.17980617284775*pow(xi2, 3); case 22: return -1415047.91854168*pow(xi1, 32) + 11306561.1464429*pow(xi1, 30) - 40936820.1382083*pow(xi1, 28) + 88825591.3740283*pow(xi1, 26) - 128724305.723804*pow(xi1, 24) + 131431185.617418*pow(xi1, 22) - 97197166.7331937*pow(xi1, 20) + 52703810.8407026*pow(xi1, 18) - 20975386.6819913*pow(xi1, 16) + 6073001.20285492*pow(xi1, 14) - 1254611.22974331*pow(xi1, 12) + 179032.623164363*pow(xi1, 10) - 16764.9744193722*pow(xi1, 8) + 947.979715280235*pow(xi1, 6) - 27.6245661266148*pow(xi1, 4) + 0.238485462963581*pow(xi1, 2) + 1415047.91854168*pow(xi2, 32) - 11306561.1464429*pow(xi2, 30) + 40936820.1382083*pow(xi2, 28) - 88825591.3740283*pow(xi2, 26) + 128724305.723804*pow(xi2, 24) - 131431185.617418*pow(xi2, 22) + 97197166.7331937*pow(xi2, 20) - 52703810.8407026*pow(xi2, 18) + 20975386.6819913*pow(xi2, 16) - 6073001.20285492*pow(xi2, 14) + 1254611.22974331*pow(xi2, 12) - 179032.623164363*pow(xi2, 10) + 16764.9744193722*pow(xi2, 8) - 947.979715280235*pow(xi2, 6) + 27.6245661266148*pow(xi2, 4) - 0.238485462963581*pow(xi2, 2); case 23: return -2678994.03914385*pow(xi1, 33) + 22076031.0194258*pow(xi1, 31) - 82690023.7308931*pow(xi1, 29) + 186299988.107375*pow(xi1, 27) - 281542048.924484*pow(xi1, 25) + 301316378.346892*pow(xi1, 23) - 235027817.674493*pow(xi1, 21) + 135444947.360354*pow(xi1, 19) - 57840098.2291941*pow(xi1, 17) + 18189409.6449181*pow(xi1, 15) - 4147521.9692352*pow(xi1, 13) + 667698.518639132*pow(xi1, 11) - 72786.0282803327*pow(xi1, 9) + 5031.24831698835*pow(xi1, 7) - 196.988992407918*pow(xi1, 5) + 3.33879648149014*pow(xi1, 3) + 2678994.03914385*pow(xi2, 33) - 22076031.0194258*pow(xi2, 31) + 82690023.7308931*pow(xi2, 29) - 186299988.107375*pow(xi2, 27) + 281542048.924484*pow(xi2, 25) - 301316378.346892*pow(xi2, 23) + 235027817.674493*pow(xi2, 21) - 135444947.360354*pow(xi2, 19) + 57840098.2291941*pow(xi2, 17) - 18189409.6449181*pow(xi2, 15) + 4147521.9692352*pow(xi2, 13) - 667698.518639132*pow(xi2, 11) + 72786.0282803327*pow(xi2, 9) - 5031.24831698835*pow(xi2, 7) + 196.988992407918*pow(xi2, 5) - 3.33879648149014*pow(xi2, 3); case 24: return -5082209.28014053*pow(xi1, 34) + 43150939.7019241*pow(xi1, 32) - 167026656.234368*pow(xi1, 30) + 390203143.561572*pow(xi1, 28) - 613909922.174896*pow(xi1, 26) + 687270735.359609*pow(xi1, 24) - 563949022.965526*pow(xi1, 22) + 344275754.593978*pow(xi1, 20) - 157078667.432643*pow(xi1, 18) + 53351986.2105718*pow(xi1, 16) - 13324438.7481877*pow(xi1, 14) + 2393876.62580161*pow(xi1, 12) - 298932.017313659*pow(xi1, 10) + 24607.5082151592*pow(xi1, 8) - 1225.7430113107*pow(xi1, 6) + 31.2632761448622*pow(xi1, 4) - 0.227645214647055*pow(xi1, 2) + 5082209.28014053*pow(xi2, 34) - 43150939.7019241*pow(xi2, 32) + 167026656.234368*pow(xi2, 30) - 390203143.561572*pow(xi2, 28) + 613909922.174896*pow(xi2, 26) - 687270735.359609*pow(xi2, 24) + 563949022.965526*pow(xi2, 22) - 344275754.593978*pow(xi2, 20) + 157078667.432643*pow(xi2, 18) - 53351986.2105718*pow(xi2, 16) + 13324438.7481877*pow(xi2, 14) - 2393876.62580161*pow(xi2, 12) + 298932.017313659*pow(xi2, 10) - 24607.5082151592*pow(xi2, 8) + 1225.7430113107*pow(xi2, 6) - 31.2632761448622*pow(xi2, 4) + 0.227645214647055*pow(xi2, 2); case 25: return -9659354.2839938*pow(xi1, 35) + 84429911.5193532*pow(xi1, 33) - 337365833.200063*pow(xi1, 31) + 816210188.947362*pow(xi1, 29) - 1334841870.98294*pow(xi1, 27) + 1560174819.29886*pow(xi1, 25) - 1343621210.16899*pow(xi1, 23) + 866316834.161896*pow(xi1, 21) - 420708715.370866*pow(xi1, 19) + 153569378.028978*pow(xi1, 17) - 41730149.5483515*pow(xi1, 15) + 8290584.15095028*pow(xi1, 13) - 1170365.41226014*pow(xi1, 11) + 112417.084816247*pow(xi1, 9) - 6868.09226006269*pow(xi1, 7) + 237.358077138662*pow(xi1, 5) - 3.4905599579215*pow(xi1, 3) + 9659354.2839938*pow(xi2, 35) - 84429911.5193532*pow(xi2, 33) + 337365833.200063*pow(xi2, 31) - 816210188.947362*pow(xi2, 29) + 1334841870.98294*pow(xi2, 27) - 1560174819.29886*pow(xi2, 25) + 1343621210.16899*pow(xi2, 23) - 866316834.161896*pow(xi2, 21) + 420708715.370866*pow(xi2, 19) - 153569378.028978*pow(xi2, 17) + 41730149.5483515*pow(xi2, 15) - 8290584.15095028*pow(xi2, 13) + 1170365.41226014*pow(xi2, 11) - 112417.084816247*pow(xi2, 9) + 6868.09226006269*pow(xi2, 7) - 237.358077138662*pow(xi2, 5) + 3.4905599579215*pow(xi2, 3); case 26: return -18390784.4874651*pow(xi1, 36) + 165349363.264199*pow(xi1, 34) - 681381654.418109*pow(xi1, 32) + 1705198444.91246*pow(xi1, 30) - 2894650533.82591*pow(xi1, 28) + 3526159529.0653*pow(xi1, 26) - 3180256899.49859*pow(xi1, 24) + 2159872956.32263*pow(xi1, 22) - 1112624437.37378*pow(xi1, 20) + 434565975.375618*pow(xi1, 18) - 127742933.221558*pow(xi1, 16) + 27845286.2891282*pow(xi1, 14) - 4395100.23215187*pow(xi1, 12) + 484611.628580892*pow(xi1, 10) - 35350.9576309891*pow(xi1, 8) + 1562.02558116987*pow(xi1, 6) - 35.0873995770235*pow(xi1, 4) + 0.218159997370094*pow(xi1, 2) + 18390784.4874651*pow(xi2, 36) - 165349363.264199*pow(xi2, 34) + 681381654.418109*pow(xi2, 32) - 1705198444.91246*pow(xi2, 30) + 2894650533.82591*pow(xi2, 28) - 3526159529.0653*pow(xi2, 26) + 3180256899.49859*pow(xi2, 24) - 2159872956.32263*pow(xi2, 22) + 1112624437.37378*pow(xi2, 20) - 434565975.375618*pow(xi2, 18) + 127742933.221558*pow(xi2, 16) - 27845286.2891282*pow(xi2, 14) + 4395100.23215187*pow(xi2, 12) - 484611.628580892*pow(xi2, 10) + 35350.9576309891*pow(xi2, 8) - 1562.02558116987*pow(xi2, 6) + 35.0873995770235*pow(xi2, 4) - 0.218159997370094*pow(xi2, 2); case 27: return -35071723.0658252*pow(xi1, 37) + 324098167.76767*pow(xi1, 35) - 1376090817.03142*pow(xi1, 33) + 3558247605.06085*pow(xi1, 31) - 6261438377.81587*pow(xi1, 29) + 7936747811.00169*pow(xi1, 27) - 7481739208.62345*pow(xi1, 25) + 5339168617.26796*pow(xi1, 23) - 2908563110.5598*pow(xi1, 21) + 1210800767.34823*pow(xi1, 19) - 383074743.250645*pow(xi1, 17) + 90999253.9513292*pow(xi1, 15) - 15910711.3587747*pow(xi1, 13) + 1987040.60669569*pow(xi1, 11) - 169509.625385143*pow(xi1, 9) + 9217.57154602557*pow(xi1, 7) - 282.880796589889*pow(xi1, 5) + 3.63599995616823*pow(xi1, 3) + 35071723.0658252*pow(xi2, 37) - 324098167.76767*pow(xi2, 35) + 1376090817.03142*pow(xi2, 33) - 3558247605.06085*pow(xi2, 31) + 6261438377.81587*pow(xi2, 29) - 7936747811.00169*pow(xi2, 27) + 7481739208.62345*pow(xi2, 25) - 5339168617.26796*pow(xi2, 23) + 2908563110.5598*pow(xi2, 21) - 1210800767.34823*pow(xi2, 19) + 383074743.250645*pow(xi2, 17) - 90999253.9513292*pow(xi2, 15) + 15910711.3587747*pow(xi2, 13) - 1987040.60669569*pow(xi2, 11) + 169509.625385143*pow(xi2, 9) - 9217.57154602557*pow(xi2, 7) + 282.880796589889*pow(xi2, 5) - 3.63599995616823*pow(xi2, 3); case 28: return -66984151.2400934*pow(xi1, 38) + 635755272.974369*pow(xi1, 36) - 2778854981.71771*pow(xi1, 34) + 7416700465.30732*pow(xi1, 32) - 13512264351.8898*pow(xi1, 30) + 17795545479.9828*pow(xi1, 28) - 17501806486.5197*pow(xi1, 26) + 13094549563.7091*pow(xi1, 24) - 7522729401.02621*pow(xi1, 22) + 3326111850.47562*pow(xi1, 20) - 1127522417.34474*pow(xi1, 18) + 290172121.541803*pow(xi1, 16) - 55754538.0001717*pow(xi1, 14) + 7798909.77564694*pow(xi1, 12) - 765222.40460386*pow(xi1, 10) + 49811.8488852354*pow(xi1, 8) - 1964.34897631989*pow(xi1, 6) + 39.0869995288085*pow(xi1, 4) - 0.209769228240475*pow(xi1, 2) + 66984151.2400934*pow(xi2, 38) - 635755272.974369*pow(xi2, 36) + 2778854981.71771*pow(xi2, 34) - 7416700465.30732*pow(xi2, 32) + 13512264351.8898*pow(xi2, 30) - 17795545479.9828*pow(xi2, 28) + 17501806486.5197*pow(xi2, 26) - 13094549563.7091*pow(xi2, 24) + 7522729401.02621*pow(xi2, 22) - 3326111850.47562*pow(xi2, 20) + 1127522417.34474*pow(xi2, 18) - 290172121.541803*pow(xi2, 16) + 55754538.0001717*pow(xi2, 14) - 7798909.77564694*pow(xi2, 12) + 765222.40460386*pow(xi2, 10) - 49811.8488852354*pow(xi2, 8) + 1964.34897631989*pow(xi2, 6) - 39.0869995288085*pow(xi2, 4) + 0.209769228240475*pow(xi2, 2); case 29: return -128115935.990074*pow(xi1, 39) + 1248008066.49091*pow(xi1, 37) - 5611032814.52263*pow(xi1, 35) + 15442659831.8453*pow(xi1, 33) - 29094919819.8133*pow(xi1, 31) + 39756978325.8846*pow(xi1, 29) - 40725769961.2447*pow(xi1, 27) + 31880588934.2862*pow(xi1, 25) - 19266224339.3282*pow(xi1, 23) + 9018966525.34359*pow(xi1, 21) - 3262752368.84387*pow(xi1, 19) + 904978203.88722*pow(xi1, 17) - 189776731.449743*pow(xi1, 15) + 29452783.6369724*pow(xi1, 13) - 3278994.90893944*pow(xi1, 11) + 250145.992870219*pow(xi1, 9) - 12181.2751102983*pow(xi1, 7) + 333.784795976244*pow(xi1, 5) - 3.77584610832855*pow(xi1, 3) + 128115935.990074*pow(xi2, 39) - 1248008066.49091*pow(xi2, 37) + 5611032814.52263*pow(xi2, 35) - 15442659831.8453*pow(xi2, 33) + 29094919819.8133*pow(xi2, 31) - 39756978325.8846*pow(xi2, 29) + 40725769961.2447*pow(xi2, 27) - 31880588934.2862*pow(xi2, 25) + 19266224339.3282*pow(xi2, 23) - 9018966525.34359*pow(xi2, 21) + 3262752368.84387*pow(xi2, 19) - 904978203.88722*pow(xi2, 17) + 189776731.449743*pow(xi2, 15) - 29452783.6369724*pow(xi2, 13) + 3278994.90893944*pow(xi2, 11) - 250145.992870219*pow(xi2, 9) + 12181.2751102983*pow(xi2, 7) - 333.784795976244*pow(xi2, 5) + 3.77584610832855*pow(xi2, 3); default: return 0.; } case 14: switch(j) { case 0: return -70.735107421875*pow(xi1, 14)*y1t + 236.808837890625*pow(xi1, 12)*y1t - 304.468505859375*pow(xi1, 10)*y1t + 186.954345703125*pow(xi1, 8)*y1t - 54.986572265625*pow(xi1, 6)*y1t + 6.598388671875*pow(xi1, 4)*y1t - 0.169189453125*pow(xi1, 2)*y1t + 70.735107421875*pow(xi2, 14)*y1t - 236.808837890625*pow(xi2, 12)*y1t + 304.468505859375*pow(xi2, 10)*y1t - 186.954345703125*pow(xi2, 8)*y1t + 54.986572265625*pow(xi2, 6)*y1t - 6.598388671875*pow(xi2, 4)*y1t + 0.169189453125*pow(xi2, 2)*y1t; case 1: return -35.3675537109375*pow(xi1, 14)*y1r + 12.696044921875*pow(xi1, 13)*y1r + 118.404418945313*pow(xi1, 12)*y1r - 43.05615234375*pow(xi1, 11)*y1r - 152.234252929688*pow(xi1, 10)*y1r + 56.383056640625*pow(xi1, 9)*y1r + 93.4771728515625*pow(xi1, 8)*y1r - 35.6103515625*pow(xi1, 7)*y1r - 27.4932861328125*pow(xi1, 6)*y1r + 10.997314453125*pow(xi1, 5)*y1r + 3.2991943359375*pow(xi1, 4)*y1r - 1.46630859375*pow(xi1, 3)*y1r - 0.0845947265625*pow(xi1, 2)*y1r + 0.056396484375*xi1*y1r + 35.3675537109375*pow(xi2, 14)*y1r - 12.696044921875*pow(xi2, 13)*y1r - 118.404418945313*pow(xi2, 12)*y1r + 43.05615234375*pow(xi2, 11)*y1r + 152.234252929688*pow(xi2, 10)*y1r - 56.383056640625*pow(xi2, 9)*y1r - 93.4771728515625*pow(xi2, 8)*y1r + 35.6103515625*pow(xi2, 7)*y1r + 27.4932861328125*pow(xi2, 6)*y1r - 10.997314453125*pow(xi2, 5)*y1r - 3.2991943359375*pow(xi2, 4)*y1r + 1.46630859375*pow(xi2, 3)*y1r + 0.0845947265625*pow(xi2, 2)*y1r - 0.056396484375*xi2*y1r; case 2: return 70.735107421875*pow(xi1, 14)*y2t - 236.808837890625*pow(xi1, 12)*y2t + 304.468505859375*pow(xi1, 10)*y2t - 186.954345703125*pow(xi1, 8)*y2t + 54.986572265625*pow(xi1, 6)*y2t - 6.598388671875*pow(xi1, 4)*y2t + 0.169189453125*pow(xi1, 2)*y2t - 70.735107421875*pow(xi2, 14)*y2t + 236.808837890625*pow(xi2, 12)*y2t - 304.468505859375*pow(xi2, 10)*y2t + 186.954345703125*pow(xi2, 8)*y2t - 54.986572265625*pow(xi2, 6)*y2t + 6.598388671875*pow(xi2, 4)*y2t - 0.169189453125*pow(xi2, 2)*y2t; case 3: return -35.3675537109375*pow(xi1, 14)*y2r - 12.696044921875*pow(xi1, 13)*y2r + 118.404418945313*pow(xi1, 12)*y2r + 43.05615234375*pow(xi1, 11)*y2r - 152.234252929688*pow(xi1, 10)*y2r - 56.383056640625*pow(xi1, 9)*y2r + 93.4771728515625*pow(xi1, 8)*y2r + 35.6103515625*pow(xi1, 7)*y2r - 27.4932861328125*pow(xi1, 6)*y2r - 10.997314453125*pow(xi1, 5)*y2r + 3.2991943359375*pow(xi1, 4)*y2r + 1.46630859375*pow(xi1, 3)*y2r - 0.0845947265625*pow(xi1, 2)*y2r - 0.056396484375*xi1*y2r + 35.3675537109375*pow(xi2, 14)*y2r + 12.696044921875*pow(xi2, 13)*y2r - 118.404418945313*pow(xi2, 12)*y2r - 43.05615234375*pow(xi2, 11)*y2r + 152.234252929688*pow(xi2, 10)*y2r + 56.383056640625*pow(xi2, 9)*y2r - 93.4771728515625*pow(xi2, 8)*y2r - 35.6103515625*pow(xi2, 7)*y2r + 27.4932861328125*pow(xi2, 6)*y2r + 10.997314453125*pow(xi2, 5)*y2r - 3.2991943359375*pow(xi2, 4)*y2r - 1.46630859375*pow(xi2, 3)*y2r + 0.0845947265625*pow(xi2, 2)*y2r + 0.056396484375*xi2*y2r; case 4: return -66.01943359375*pow(xi1, 15) + 243.98486328125*pow(xi1, 13) - 362.90185546875*pow(xi1, 11) + 278.94775390625*pow(xi1, 9) - 118.35205078125*pow(xi1, 7) + 27.27333984375*pow(xi1, 5) - 3.04541015625*pow(xi1, 3) + 0.11279296875*xi1 + 66.01943359375*pow(xi2, 15) - 243.98486328125*pow(xi2, 13) + 362.90185546875*pow(xi2, 11) - 278.94775390625*pow(xi2, 9) + 118.35205078125*pow(xi2, 7) - 27.27333984375*pow(xi2, 5) + 3.04541015625*pow(xi2, 3) - 0.11279296875*xi2; case 5: return -103.155364990234*pow(xi1, 16) + 409.033447265625*pow(xi1, 14) - 659.681762695313*pow(xi1, 12) + 553.740966796875*pow(xi1, 10) - 255.687561035156*pow(xi1, 8) + 62.318115234375*pow(xi1, 6) - 6.7393798828125*pow(xi1, 4) + 0.169189453125*pow(xi1, 2) + 103.155364990234*pow(xi2, 16) - 409.033447265625*pow(xi2, 14) + 659.681762695313*pow(xi2, 12) - 553.740966796875*pow(xi2, 10) + 255.687561035156*pow(xi2, 8) - 62.318115234375*pow(xi2, 6) + 6.7393798828125*pow(xi2, 4) - 0.169189453125*pow(xi2, 2); case 6: return -169.902954101563*pow(xi1, 17) + 717.6025390625*pow(xi1, 15) - 1248.62841796875*pow(xi1, 13) + 1153.1279296875*pow(xi1, 11) - 606.947021484375*pow(xi1, 9) + 182.2412109375*pow(xi1, 7) - 29.89013671875*pow(xi1, 5) + 2.4814453125*pow(xi1, 3) - 0.0845947265625*xi1 + 169.902954101563*pow(xi2, 17) - 717.6025390625*pow(xi2, 15) + 1248.62841796875*pow(xi2, 13) - 1153.1279296875*pow(xi2, 11) + 606.947021484375*pow(xi2, 9) - 182.2412109375*pow(xi2, 7) + 29.89013671875*pow(xi2, 5) - 2.4814453125*pow(xi2, 3) + 0.0845947265625*xi2; case 7: return -288.835021972656*pow(xi1, 18) + 1293.47857666016*pow(xi1, 16) - 2414.21997070313*pow(xi1, 14) + 2430.40649414063*pow(xi1, 12) - 1426.24694824219*pow(xi1, 10) + 491.579956054688*pow(xi1, 8) - 94.689697265625*pow(xi1, 6) + 8.741455078125*pow(xi1, 4) - 0.21148681640625*pow(xi1, 2) + 288.835021972656*pow(xi2, 18) - 1293.47857666016*pow(xi2, 16) + 2414.21997070313*pow(xi2, 14) - 2430.40649414063*pow(xi2, 12) + 1426.24694824219*pow(xi2, 10) - 491.579956054688*pow(xi2, 8) + 94.689697265625*pow(xi2, 6) - 8.741455078125*pow(xi2, 4) + 0.21148681640625*pow(xi2, 2); case 8: return -501.660827636719*pow(xi1, 19) + 2373.47039794922*pow(xi1, 17) - 4729.00073242188*pow(xi1, 15) + 5153.51928710938*pow(xi1, 13) - 3338.01818847656*pow(xi1, 11) + 1306.88244628906*pow(xi1, 9) - 300.665771484375*pow(xi1, 7) + 37.729248046875*pow(xi1, 5) - 2.32635498046875*pow(xi1, 3) + 0.07049560546875*xi1 + 501.660827636719*pow(xi2, 19) - 2373.47039794922*pow(xi2, 17) + 4729.00073242188*pow(xi2, 15) - 5153.51928710938*pow(xi2, 13) + 3338.01818847656*pow(xi2, 11) - 1306.88244628906*pow(xi2, 9) + 300.665771484375*pow(xi2, 7) - 37.729248046875*pow(xi2, 5) + 2.32635498046875*pow(xi2, 3) - 0.07049560546875*xi2; case 9: return -885.073031616211*pow(xi1, 20) + 4410.56460571289*pow(xi1, 18) - 9342.22398376465*pow(xi1, 16) + 10956.5228271484*pow(xi1, 14) - 7765.78414916992*pow(xi1, 12) + 3406.85804443359*pow(xi1, 10) - 909.936126708984*pow(xi1, 8) + 139.553100585938*pow(xi1, 6) - 10.7329559326172*pow(xi1, 4) + 0.246734619140625*pow(xi1, 2) + 885.073031616211*pow(xi2, 20) - 4410.56460571289*pow(xi2, 18) + 9342.22398376465*pow(xi2, 16) - 10956.5228271484*pow(xi2, 14) + 7765.78414916992*pow(xi2, 12) - 3406.85804443359*pow(xi2, 10) + 909.936126708984*pow(xi2, 8) - 139.553100585938*pow(xi2, 6) + 10.7329559326172*pow(xi2, 4) - 0.246734619140625*pow(xi2, 2); case 10: return -1580.48755645752*pow(xi1, 21) + 8273.50877380371*pow(xi1, 19) - 18563.0642166138*pow(xi1, 17) + 23311.7905883789*pow(xi1, 15) - 17950.1096343994*pow(xi1, 13) + 8727.91030883789*pow(xi1, 11) - 2660.08235168457*pow(xi1, 9) + 487.364318847656*pow(xi1, 7) - 49.1125259399414*pow(xi1, 5) + 2.34397888183594*pow(xi1, 3) - 0.0616836547851563*xi1 + 1580.48755645752*pow(xi2, 21) - 8273.50877380371*pow(xi2, 19) + 18563.0642166138*pow(xi2, 17) - 23311.7905883789*pow(xi2, 15) + 17950.1096343994*pow(xi2, 13) - 8727.91030883789*pow(xi2, 11) + 2660.08235168457*pow(xi2, 9) - 487.364318847656*pow(xi2, 7) + 49.1125259399414*pow(xi2, 5) - 2.34397888183594*pow(xi2, 3) + 0.0616836547851563*xi2; case 11: return -2849.66695785522*pow(xi1, 22) + 15633.0834388733*pow(xi1, 20) - 37036.0917396545*pow(xi1, 18) + 49585.4949302673*pow(xi1, 16) - 41223.053855896*pow(xi1, 14) + 22015.1343154907*pow(xi1, 12) - 7550.45825958252*pow(xi1, 10) + 1614.33702850342*pow(xi1, 8) - 201.353954315186*pow(xi1, 6) + 12.8610420227051*pow(xi1, 4) - 0.277576446533203*pow(xi1, 2) + 2849.66695785522*pow(xi2, 22) - 15633.0834388733*pow(xi2, 20) + 37036.0917396545*pow(xi2, 18) - 49585.4949302673*pow(xi2, 16) + 41223.053855896*pow(xi2, 14) - 22015.1343154907*pow(xi2, 12) + 7550.45825958252*pow(xi2, 10) - 1614.33702850342*pow(xi2, 8) + 201.353954315186*pow(xi2, 6) - 12.8610420227051*pow(xi2, 4) + 0.277576446533203*pow(xi2, 2); case 12: return -5178.95994949341*pow(xi1, 23) + 29710.8754997253*pow(xi1, 21) - 74111.1230278015*pow(xi1, 19) + 105377.289905548*pow(xi1, 17) - 94082.8270339966*pow(xi1, 15) + 54766.2573165894*pow(xi1, 13) - 20896.8199081421*pow(xi1, 11) + 5120.50998687744*pow(xi1, 9) - 766.547183990479*pow(xi1, 7) + 63.750057220459*pow(xi1, 5) - 2.46117782592773*pow(xi1, 3) + 0.0555152893066406*xi1 + 5178.95994949341*pow(xi2, 23) - 29710.8754997253*pow(xi2, 21) + 74111.1230278015*pow(xi2, 19) - 105377.289905548*pow(xi2, 17) + 94082.8270339966*pow(xi2, 15) - 54766.2573165894*pow(xi2, 13) + 20896.8199081421*pow(xi2, 11) - 5120.50998687744*pow(xi2, 9) + 766.547183990479*pow(xi2, 7) - 63.750057220459*pow(xi2, 5) + 2.46117782592773*pow(xi2, 3) - 0.0555152893066406*xi2; case 13: return -9475.14263486862*pow(xi1, 24) + 56733.152173996*pow(xi1, 22) - 148622.521708488*pow(xi1, 20) + 223667.621259689*pow(xi1, 18) - 213464.600594044*pow(xi1, 16) + 134561.141475677*pow(xi1, 14) - 56583.1933078766*pow(xi1, 12) + 15662.0201225281*pow(xi1, 10) - 2748.06134462357*pow(xi1, 8) + 284.469594955444*pow(xi1, 6) - 15.2158155441284*pow(xi1, 4) + 0.305334091186523*pow(xi1, 2) + 9475.14263486862*pow(xi2, 24) - 56733.152173996*pow(xi2, 22) + 148622.521708488*pow(xi2, 20) - 223667.621259689*pow(xi2, 18) + 213464.600594044*pow(xi2, 16) - 134561.141475677*pow(xi2, 14) + 56583.1933078766*pow(xi2, 12) - 15662.0201225281*pow(xi2, 10) + 2748.06134462357*pow(xi2, 8) - 284.469594955444*pow(xi2, 6) + 15.2158155441284*pow(xi2, 4) - 0.305334091186523*pow(xi2, 2); case 14: return -17434.2624481583*pow(xi1, 25) + 108758.158939362*pow(xi1, 23) - 298530.048517227*pow(xi1, 21) + 474068.508396149*pow(xi1, 19) - 481669.246230125*pow(xi1, 17) + 326957.522309876*pow(xi1, 15) - 150311.129161835*pow(xi1, 13) + 46445.3017959595*pow(xi1, 11) - 9375.68311214447*pow(xi1, 9) + 1170.0111579895*pow(xi1, 7) - 81.768469619751*pow(xi1, 5) + 2.6462287902832*pow(xi1, 3) - 0.0508890151977539*xi1 + 17434.2624481583*pow(xi2, 25) - 108758.158939362*pow(xi2, 23) + 298530.048517227*pow(xi2, 21) - 474068.508396149*pow(xi2, 19) + 481669.246230125*pow(xi2, 17) - 326957.522309876*pow(xi2, 15) + 150311.129161835*pow(xi2, 13) - 46445.3017959595*pow(xi2, 11) + 9375.68311214447*pow(xi2, 9) - 1170.0111579895*pow(xi2, 7) + 81.768469619751*pow(xi2, 5) - 2.6462287902832*pow(xi2, 3) + 0.0508890151977539*xi2; case 15: return -32237.9113316536*pow(xi1, 26) + 209181.995092869*pow(xi1, 24) - 600370.026732445*pow(xi1, 22) + 1003276.71807003*pow(xi1, 20) - 1081289.04205084*pow(xi1, 18) + 786510.933558941*pow(xi1, 16) - 392623.01508522*pow(xi1, 14) + 134105.370706558*pow(xi1, 12) - 30684.3931918144*pow(xi1, 10) + 4505.44078588486*pow(xi1, 8) - 393.626532554626*pow(xi1, 6) + 17.8620443344116*pow(xi1, 4) - 0.3307785987854*pow(xi1, 2) + 32237.9113316536*pow(xi2, 26) - 209181.995092869*pow(xi2, 24) + 600370.026732445*pow(xi2, 22) - 1003276.71807003*pow(xi2, 20) + 1081289.04205084*pow(xi2, 18) - 786510.933558941*pow(xi2, 16) + 392623.01508522*pow(xi2, 14) - 134105.370706558*pow(xi2, 12) + 30684.3931918144*pow(xi2, 10) - 4505.44078588486*pow(xi2, 8) + 393.626532554626*pow(xi2, 6) - 17.8620443344116*pow(xi2, 4) + 0.3307785987854*pow(xi2, 2); case 16: return -59870.4067587852*pow(xi1, 27) + 403474.480330944*pow(xi1, 25) - 1208504.61304951*pow(xi1, 23) + 2119959.62926197*pow(xi1, 21) - 2415794.7218442*pow(xi1, 19) + 1874880.78451395*pow(xi1, 17) - 1010324.84072685*pow(xi1, 15) + 378311.653501511*pow(xi1, 13) - 96925.0929780006*pow(xi1, 11) + 16429.6042370796*pow(xi1, 9) - 1737.12769031525*pow(xi1, 7) + 103.48644733429*pow(xi1, 5) - 2.88249921798706*pow(xi1, 3) + 0.0472540855407715*xi1 + 59870.4067587852*pow(xi2, 27) - 403474.480330944*pow(xi2, 25) + 1208504.61304951*pow(xi2, 23) - 2119959.62926197*pow(xi2, 21) + 2415794.7218442*pow(xi2, 19) - 1874880.78451395*pow(xi2, 17) + 1010324.84072685*pow(xi2, 15) - 378311.653501511*pow(xi2, 13) + 96925.0929780006*pow(xi2, 11) - 16429.6042370796*pow(xi2, 9) + 1737.12769031525*pow(xi2, 7) - 103.48644733429*pow(xi2, 5) + 2.88249921798706*pow(xi2, 3) - 0.0472540855407715*xi2; case 17: return -111615.544028878*pow(xi1, 28) + 780137.430678606*pow(xi1, 26) - 2434327.0201534*pow(xi1, 24) + 4472634.49228525*pow(xi1, 22) - 5373401.24265254*pow(xi1, 20) + 4432596.53837848*pow(xi1, 18) - 2565290.6451391*pow(xi1, 16) + 1045607.6396513*pow(xi1, 14) - 296937.816326022*pow(xi1, 12) + 57226.2783515453*pow(xi1, 10) - 7143.71907627583*pow(xi1, 8) + 534.11292886734*pow(xi1, 6) - 20.8508652448654*pow(xi1, 4) + 0.354405641555786*pow(xi1, 2) + 111615.544028878*pow(xi2, 28) - 780137.430678606*pow(xi2, 26) + 2434327.0201534*pow(xi2, 24) - 4472634.49228525*pow(xi2, 22) + 5373401.24265254*pow(xi2, 20) - 4432596.53837848*pow(xi2, 18) + 2565290.6451391*pow(xi2, 16) - 1045607.6396513*pow(xi2, 14) + 296937.816326022*pow(xi2, 12) - 57226.2783515453*pow(xi2, 10) + 7143.71907627583*pow(xi2, 8) - 534.11292886734*pow(xi2, 6) + 20.8508652448654*pow(xi2, 4) - 0.354405641555786*pow(xi2, 2); case 18: return -208798.043571264*pow(xi1, 29) + 1511662.69413024*pow(xi1, 27) - 4906105.58279559*pow(xi1, 25) + 9421931.56315386*pow(xi1, 23) - 11902666.8263753*pow(xi1, 21) + 10400955.1452*pow(xi1, 19) - 6435583.67661783*pow(xi1, 17) + 2837986.68655086*pow(xi1, 15) - 885729.038971514*pow(xi1, 13) + 191663.560399711*pow(xi1, 11) - 27705.8257147372*pow(xi1, 9) + 2515.56618082523*pow(xi1, 7) - 129.337385505438*pow(xi1, 5) + 3.16011697053909*pow(xi1, 3) - 0.0443007051944733*xi1 + 208798.043571264*pow(xi2, 29) - 1511662.69413024*pow(xi2, 27) + 4906105.58279559*pow(xi2, 25) - 9421931.56315386*pow(xi2, 23) + 11902666.8263753*pow(xi2, 21) - 10400955.1452*pow(xi2, 19) + 6435583.67661783*pow(xi2, 17) - 2837986.68655086*pow(xi2, 15) + 885729.038971514*pow(xi2, 13) - 191663.560399711*pow(xi2, 11) + 27705.8257147372*pow(xi2, 9) - 2515.56618082523*pow(xi2, 7) + 129.337385505438*pow(xi2, 5) - 3.16011697053909*pow(xi2, 3) + 0.0443007051944733*xi2; case 19: return -391803.387642547*pow(xi1, 30) + 2934653.8323424*pow(xi1, 28) - 9891570.76237254*pow(xi1, 26) + 19818695.1768938*pow(xi1, 24) - 26264479.8180815*pow(xi1, 22) + 24237903.7461447*pow(xi1, 20) - 15970425.639332*pow(xi1, 18) + 7579109.61396427*pow(xi1, 16) - 2580646.50840618*pow(xi1, 14) + 620519.280194566*pow(xi1, 12) - 102263.733961907*pow(xi1, 10) + 10996.2634524554*pow(xi1, 8) - 711.916762545705*pow(xi1, 6) + 24.2251022905111*pow(xi1, 4) - 0.376555994153023*pow(xi1, 2) + 391803.387642547*pow(xi2, 30) - 2934653.8323424*pow(xi2, 28) + 9891570.76237254*pow(xi2, 26) - 19818695.1768938*pow(xi2, 24) + 26264479.8180815*pow(xi2, 22) - 24237903.7461447*pow(xi2, 20) + 15970425.639332*pow(xi2, 18) - 7579109.61396427*pow(xi2, 16) + 2580646.50840618*pow(xi2, 14) - 620519.280194566*pow(xi2, 12) + 102263.733961907*pow(xi2, 10) - 10996.2634524554*pow(xi2, 8) + 711.916762545705*pow(xi2, 6) - 24.2251022905111*pow(xi2, 4) + 0.376555994153023*pow(xi2, 2); case 20: return -737264.439112321*pow(xi1, 31) + 5706701.51566319*pow(xi1, 29) - 19948935.3299687*pow(xi1, 27) + 41628441.8250643*pow(xi1, 25) - 57747885.7514877*pow(xi1, 23) + 56126414.4955482*pow(xi1, 21) - 39242329.4288853*pow(xi1, 19) + 19948317.2103351*pow(xi1, 17) - 7363716.27477591*pow(xi1, 15) + 1950274.42433514*pow(xi1, 13) - 361784.81152229*pow(xi1, 11) + 45172.5006237179*pow(xi1, 9) - 3562.3404416889*pow(xi1, 7) + 159.835467651486*pow(xi1, 5) - 3.47268305718899*pow(xi1, 3) + 0.0418395549058914*xi1 + 737264.439112321*pow(xi2, 31) - 5706701.51566319*pow(xi2, 29) + 19948935.3299687*pow(xi2, 27) - 41628441.8250643*pow(xi2, 25) + 57747885.7514877*pow(xi2, 23) - 56126414.4955482*pow(xi2, 21) + 39242329.4288853*pow(xi2, 19) - 19948317.2103351*pow(xi2, 17) + 7363716.27477591*pow(xi2, 15) - 1950274.42433514*pow(xi2, 13) + 361784.81152229*pow(xi2, 11) - 45172.5006237179*pow(xi2, 9) + 3562.3404416889*pow(xi2, 7) - 159.835467651486*pow(xi2, 5) + 3.47268305718899*pow(xi2, 3) - 0.0418395549058914*xi2; case 21: return -1390859.06523328*pow(xi1, 32) + 11113797.4660238*pow(xi1, 30) - 40240699.1092844*pow(xi1, 28) + 87318955.0707993*pow(xi1, 26) - 126546331.339768*pow(xi1, 24) + 129212818.351678*pow(xi1, 22) - 95560534.0450485*pow(xi1, 20) + 51818448.6328783*pow(xi1, 18) - 20623835.859613*pow(xi1, 16) + 5971447.06099082*pow(xi1, 14) - 1233677.99478771*pow(xi1, 12) + 176052.183267586*pow(xi1, 10) - 16487.5533654671*pow(xi1, 8) + 933.829577811062*pow(xi1, 6) - 28.0220418982208*pow(xi1, 4) + 0.397475771605968*pow(xi1, 2) + 1390859.06523328*pow(xi2, 32) - 11113797.4660238*pow(xi2, 30) + 40240699.1092844*pow(xi2, 28) - 87318955.0707993*pow(xi2, 26) + 126546331.339768*pow(xi2, 24) - 129212818.351678*pow(xi2, 22) + 95560534.0450485*pow(xi2, 20) - 51818448.6328783*pow(xi2, 18) + 20623835.859613*pow(xi2, 16) - 5971447.06099082*pow(xi2, 14) + 1233677.99478771*pow(xi2, 12) - 176052.183267586*pow(xi2, 10) + 16487.5533654671*pow(xi2, 8) - 933.829577811062*pow(xi2, 6) + 28.0220418982208*pow(xi2, 4) - 0.397475771605968*pow(xi2, 2); case 22: return -2629988.05062292*pow(xi1, 33) + 21673212.5643307*pow(xi1, 31) - 81184889.5904638*pow(xi1, 29) + 182917081.974193*pow(xi1, 27) - 276441752.001857*pow(xi1, 25) + 295870487.432912*pow(xi1, 23) - 230789656.99729*pow(xi1, 21) + 133007978.589758*pow(xi1, 19) - 56801705.9862845*pow(xi1, 17) + 17863564.1120404*pow(xi1, 15) - 4073381.09373626*pow(xi1, 13) + 655788.077647805*pow(xi1, 11) - 71492.3014260083*pow(xi1, 9) + 4945.05285680294*pow(xi1, 7) - 195.558079630136*pow(xi1, 5) + 3.8157674074173*pow(xi1, 3) - 0.0397475771605968*xi1 + 2629988.05062292*pow(xi2, 33) - 21673212.5643307*pow(xi2, 31) + 81184889.5904638*pow(xi2, 29) - 182917081.974193*pow(xi2, 27) + 276441752.001857*pow(xi2, 25) - 295870487.432912*pow(xi2, 23) + 230789656.99729*pow(xi2, 21) - 133007978.589758*pow(xi2, 19) + 56801705.9862845*pow(xi2, 17) - 17863564.1120404*pow(xi2, 15) + 4073381.09373626*pow(xi2, 13) - 655788.077647805*pow(xi2, 11) + 71492.3014260083*pow(xi2, 9) - 4945.05285680294*pow(xi2, 7) + 195.558079630136*pow(xi2, 5) - 3.8157674074173*pow(xi2, 3) + 0.0397475771605968*xi2; case 23: return -4983716.85223083*pow(xi1, 34) + 42316671.0878179*pow(xi1, 32) - 163804940.004247*pow(xi1, 30) + 382693879.671142*pow(xi1, 28) - 602122074.063587*pow(xi1, 26) + 674103390.262549*pow(xi1, 24) - 553167824.13291*pow(xi1, 22) + 337708164.141526*pow(xi1, 20) - 154088440.688562*pow(xi1, 18) + 52338450.6070863*pow(xi1, 16) - 13071827.5511526*pow(xi1, 14) + 2348583.8959056*pow(xi1, 12) - 293290.932760544*pow(xi1, 10) + 24150.230407007*pow(xi1, 8) - 1207.53139413893*pow(xi1, 6) + 32.2750326544046*pow(xi1, 4) - 0.417349560186267*pow(xi1, 2) + 4983716.85223083*pow(xi2, 34) - 42316671.0878179*pow(xi2, 32) + 163804940.004247*pow(xi2, 30) - 382693879.671142*pow(xi2, 28) + 602122074.063587*pow(xi2, 26) - 674103390.262549*pow(xi2, 24) + 553167824.13291*pow(xi2, 22) - 337708164.141526*pow(xi2, 20) + 154088440.688562*pow(xi2, 18) - 52338450.6070863*pow(xi2, 16) + 13071827.5511526*pow(xi2, 14) - 2348583.8959056*pow(xi2, 12) + 293290.932760544*pow(xi2, 10) - 24150.230407007*pow(xi2, 8) + 1207.53139413893*pow(xi2, 6) - 32.2750326544046*pow(xi2, 4) + 0.417349560186267*pow(xi2, 2); case 24: return -9462589.65969023*pow(xi1, 35) + 82713940.9585662*pow(xi1, 33) - 330524390.007123*pow(xi1, 31) + 799694402.640513*pow(xi1, 29) - 1307889670.50919*pow(xi1, 27) + 1528739306.45805*pow(xi1, 25) - 1316605152.29215*pow(xi1, 23) + 848933462.981639*pow(xi1, 21) - 412283819.498231*pow(xi1, 19) + 150500168.595666*pow(xi1, 17) - 40897766.306323*pow(xi1, 15) + 8125532.61845206*pow(xi1, 13) - 1147116.31001519*pow(xi1, 11) + 110200.627421848*pow(xi1, 9) - 6743.28486777842*pow(xi1, 7) + 237.135490706563*pow(xi1, 5) - 4.18614255823195*pow(xi1, 3) + 0.0379408691078424*xi1 + 9462589.65969023*pow(xi2, 35) - 82713940.9585662*pow(xi2, 33) + 330524390.007123*pow(xi2, 31) - 799694402.640513*pow(xi2, 29) + 1307889670.50919*pow(xi2, 27) - 1528739306.45805*pow(xi2, 25) + 1316605152.29215*pow(xi2, 23) - 848933462.981639*pow(xi2, 21) + 412283819.498231*pow(xi2, 19) - 150500168.595666*pow(xi2, 17) + 40897766.306323*pow(xi2, 15) - 8125532.61845206*pow(xi2, 13) + 1147116.31001519*pow(xi2, 11) - 110200.627421848*pow(xi2, 9) + 6743.28486777842*pow(xi2, 7) - 237.135490706563*pow(xi2, 5) + 4.18614255823195*pow(xi2, 3) - 0.0379408691078424*xi2; case 25: return -17999491.2004977*pow(xi1, 36) + 161838903.489692*pow(xi1, 34) - 666946277.861088*pow(xi1, 32) + 1669148486.73721*pow(xi1, 30) - 2833579781.90386*pow(xi1, 28) + 3451915628.97939*pow(xi1, 26) - 3113429207.75544*pow(xi1, 24) + 2114575789.32407*pow(xi1, 22) - 1089335343.24622*pow(xi1, 20) + 425487080.889746*pow(xi1, 18) - 125079149.104517*pow(xi1, 16) + 27265712.6321411*pow(xi1, 14) - 4303799.71730652*pow(xi1, 12) + 474588.083970297*pow(xi1, 10) - 34644.4308966491*pow(xi1, 8) + 1541.66398141533*pow(xi1, 6) - 37.0144795537926*pow(xi1, 4) + 0.436319994740188*pow(xi1, 2) + 17999491.2004977*pow(xi2, 36) - 161838903.489692*pow(xi2, 34) + 666946277.861088*pow(xi2, 32) - 1669148486.73721*pow(xi2, 30) + 2833579781.90386*pow(xi2, 28) - 3451915628.97939*pow(xi2, 26) + 3113429207.75544*pow(xi2, 24) - 2114575789.32407*pow(xi2, 22) + 1089335343.24622*pow(xi2, 20) - 425487080.889746*pow(xi2, 18) + 125079149.104517*pow(xi2, 16) - 27265712.6321411*pow(xi2, 14) + 4303799.71730652*pow(xi2, 12) - 474588.083970297*pow(xi2, 10) + 34644.4308966491*pow(xi2, 8) - 1541.66398141533*pow(xi2, 6) + 37.0144795537926*pow(xi2, 4) - 0.436319994740188*pow(xi2, 2); case 26: return -34296327.8279754*pow(xi1, 37) + 316947562.443547*pow(xi1, 35) - 1345791771.57908*pow(xi1, 33) + 3480058140.28836*pow(xi1, 31) - 6124119482.10734*pow(xi1, 29) + 7763025283.9491*pow(xi1, 27) - 7318288745.93586*pow(xi1, 25) + 5222745456.02108*pow(xi1, 23) - 2845258105.69757*pow(xi1, 21) + 1184495832.35406*pow(xi1, 19) - 374767367.763486*pow(xi1, 17) + 89029356.3545286*pow(xi1, 15) - 15566914.4021732*pow(xi1, 13) + 1944230.40113592*pow(xi1, 11) - 165915.906914179*pow(xi1, 9) + 9050.10777661577*pow(xi1, 7) - 285.244196561398*pow(xi1, 5) + 4.58135994477198*pow(xi1, 3) - 0.0363599995616823*xi1 + 34296327.8279754*pow(xi2, 37) - 316947562.443547*pow(xi2, 35) + 1345791771.57908*pow(xi2, 33) - 3480058140.28836*pow(xi2, 31) + 6124119482.10734*pow(xi2, 29) - 7763025283.9491*pow(xi2, 27) + 7318288745.93586*pow(xi2, 25) - 5222745456.02108*pow(xi2, 23) + 2845258105.69757*pow(xi2, 21) - 1184495832.35406*pow(xi2, 19) + 374767367.763486*pow(xi2, 17) - 89029356.3545286*pow(xi2, 15) + 15566914.4021732*pow(xi2, 13) - 1944230.40113592*pow(xi2, 11) + 165915.906914179*pow(xi2, 9) - 9050.10777661577*pow(xi2, 7) + 285.244196561398*pow(xi2, 5) - 4.58135994477198*pow(xi2, 3) + 0.0363599995616823*xi2; case 27: return -65451834.0548625*pow(xi1, 38) + 621240699.986569*pow(xi1, 36) - 2715536282.22465*pow(xi1, 34) + 7248028820.61917*pow(xi1, 32) - 13205547592.7004*pow(xi1, 30) + 17392354377.2915*pow(xi1, 28) - 17105998563.4686*pow(xi1, 26) + 12798948921.0048*pow(xi1, 24) - 7353212013.68346*pow(xi1, 22) + 3251293169.35963*pow(xi1, 20) - 1102203636.20301*pow(xi1, 18) + 283667425.441783*pow(xi1, 16) - 54506868.3388107*pow(xi1, 14) + 7624781.68265513*pow(xi1, 12) - 748280.220408097*pow(xi1, 10) + 48779.5884976792*pow(xi1, 8) - 1945.89627654233*pow(xi1, 6) + 42.2684994904557*pow(xi1, 4) - 0.454499994521029*pow(xi1, 2) + 65451834.0548625*pow(xi2, 38) - 621240699.986569*pow(xi2, 36) + 2715536282.22465*pow(xi2, 34) - 7248028820.61917*pow(xi2, 32) + 13205547592.7004*pow(xi2, 30) - 17392354377.2915*pow(xi2, 28) + 17105998563.4686*pow(xi2, 26) - 12798948921.0048*pow(xi2, 24) + 7353212013.68346*pow(xi2, 22) - 3251293169.35963*pow(xi2, 20) + 1102203636.20301*pow(xi2, 18) - 283667425.441783*pow(xi2, 16) + 54506868.3388107*pow(xi2, 14) - 7624781.68265513*pow(xi2, 12) + 748280.220408097*pow(xi2, 10) - 48779.5884976792*pow(xi2, 8) + 1945.89627654233*pow(xi2, 6) - 42.2684994904557*pow(xi2, 4) + 0.454499994521029*pow(xi2, 2); case 28: return -125094333.726157*pow(xi1, 39) + 1218629967.16863*pow(xi1, 37) - 5479196736.83039*pow(xi1, 35) + 15080490963.6401*pow(xi1, 33) - 28413812500.6887*pow(xi1, 31) + 38827942540.1858*pow(xi1, 29) - 39775778008.2976*pow(xi1, 27) + 31138221454.6458*pow(xi1, 25) - 18818365412.316*pow(xi1, 23) + 8809669483.95246*pow(xi1, 21) - 3187162871.2602*pow(xi1, 19) + 884046946.742028*pow(xi1, 17) - 185394647.761177*pow(xi1, 15) + 28774004.6464238*pow(xi1, 13) - 3203798.15636541*pow(xi1, 11) + 244586.1160801*pow(xi1, 9) - 11973.6984699435*pow(xi1, 7) + 340.602295894059*pow(xi1, 5) - 4.99949993973132*pow(xi1, 3) + 0.0349615380400792*xi1 + 125094333.726157*pow(xi2, 39) - 1218629967.16863*pow(xi2, 37) + 5479196736.83039*pow(xi2, 35) - 15080490963.6401*pow(xi2, 33) + 28413812500.6887*pow(xi2, 31) - 38827942540.1858*pow(xi2, 29) + 39775778008.2976*pow(xi2, 27) - 31138221454.6458*pow(xi2, 25) + 18818365412.316*pow(xi2, 23) - 8809669483.95246*pow(xi2, 21) + 3187162871.2602*pow(xi2, 19) - 884046946.742028*pow(xi2, 17) + 185394647.761177*pow(xi2, 15) - 28774004.6464238*pow(xi2, 13) + 3203798.15636541*pow(xi2, 11) - 244586.1160801*pow(xi2, 9) + 11973.6984699435*pow(xi2, 7) - 340.602295894059*pow(xi2, 5) + 4.99949993973132*pow(xi2, 3) - 0.0349615380400792*xi2; case 29: return -239416655.381451*pow(xi1, 40) + 2392202512.34296*pow(xi1, 38) - 11054929261.3249*pow(xi1, 36) + 31346745935.6135*pow(xi1, 34) - 61011867959.9384*pow(xi1, 32) + 86393672600.7061*pow(xi1, 30) - 92038058619.7648*pow(xi1, 28) + 75244727145.7414*pow(xi1, 26) - 47725511673.3336*pow(xi1, 24) + 23587877790.3469*pow(xi1, 22) - 9074343443.38154*pow(xi1, 20) + 2700324281.39419*pow(xi1, 18) - 614338874.893327*pow(xi1, 16) + 104935950.467495*pow(xi1, 14) - 13107241.3893501*pow(xi1, 12) + 1152668.27657894*pow(xi1, 10) - 67538.8728697514*pow(xi1, 8) + 2430.98412069463*pow(xi1, 6) - 48.0633744205988*pow(xi1, 4) + 0.471980763541069*pow(xi1, 2) + 239416655.381451*pow(xi2, 40) - 2392202512.34296*pow(xi2, 38) + 11054929261.3249*pow(xi2, 36) - 31346745935.6135*pow(xi2, 34) + 61011867959.9384*pow(xi2, 32) - 86393672600.7061*pow(xi2, 30) + 92038058619.7648*pow(xi2, 28) - 75244727145.7414*pow(xi2, 26) + 47725511673.3336*pow(xi2, 24) - 23587877790.3469*pow(xi2, 22) + 9074343443.38154*pow(xi2, 20) - 2700324281.39419*pow(xi2, 18) + 614338874.893327*pow(xi2, 16) - 104935950.467495*pow(xi2, 14) + 13107241.3893501*pow(xi2, 12) - 1152668.27657894*pow(xi2, 10) + 67538.8728697514*pow(xi2, 8) - 2430.98412069463*pow(xi2, 6) + 48.0633744205988*pow(xi2, 4) - 0.471980763541069*pow(xi2, 2); default: return 0.; } case 15: switch(j) { case 0: return -126.96044921875*pow(xi1, 15)*y1t + 457.0576171875*pow(xi1, 13)*y1t - 645.84228515625*pow(xi1, 11)*y1t + 451.064453125*pow(xi1, 9)*y1t - 160.24658203125*pow(xi1, 7)*y1t + 26.3935546875*pow(xi1, 5)*y1t - 1.46630859375*pow(xi1, 3)*y1t + 126.96044921875*pow(xi2, 15)*y1t - 457.0576171875*pow(xi2, 13)*y1t + 645.84228515625*pow(xi2, 11)*y1t - 451.064453125*pow(xi2, 9)*y1t + 160.24658203125*pow(xi2, 7)*y1t - 26.3935546875*pow(xi2, 5)*y1t + 1.46630859375*pow(xi2, 3)*y1t; case 1: return -63.480224609375*pow(xi1, 15)*y1r + 22.6715087890625*pow(xi1, 14)*y1r + 228.52880859375*pow(xi1, 13)*y1r - 82.5242919921875*pow(xi1, 12)*y1r - 322.921142578125*pow(xi1, 11)*y1r + 118.404418945313*pow(xi1, 10)*y1r + 225.5322265625*pow(xi1, 9)*y1r - 84.5745849609375*pow(xi1, 8)*y1r - 80.123291015625*pow(xi1, 7)*y1r + 31.1590576171875*pow(xi1, 6)*y1r + 13.19677734375*pow(xi1, 5)*y1r - 5.4986572265625*pow(xi1, 4)*y1r - 0.733154296875*pow(xi1, 3)*y1r + 0.3665771484375*pow(xi1, 2)*y1r + 63.480224609375*pow(xi2, 15)*y1r - 22.6715087890625*pow(xi2, 14)*y1r - 228.52880859375*pow(xi2, 13)*y1r + 82.5242919921875*pow(xi2, 12)*y1r + 322.921142578125*pow(xi2, 11)*y1r - 118.404418945313*pow(xi2, 10)*y1r - 225.5322265625*pow(xi2, 9)*y1r + 84.5745849609375*pow(xi2, 8)*y1r + 80.123291015625*pow(xi2, 7)*y1r - 31.1590576171875*pow(xi2, 6)*y1r - 13.19677734375*pow(xi2, 5)*y1r + 5.4986572265625*pow(xi2, 4)*y1r + 0.733154296875*pow(xi2, 3)*y1r - 0.3665771484375*pow(xi2, 2)*y1r; case 2: return 126.96044921875*pow(xi1, 15)*y2t - 457.0576171875*pow(xi1, 13)*y2t + 645.84228515625*pow(xi1, 11)*y2t - 451.064453125*pow(xi1, 9)*y2t + 160.24658203125*pow(xi1, 7)*y2t - 26.3935546875*pow(xi1, 5)*y2t + 1.46630859375*pow(xi1, 3)*y2t - 126.96044921875*pow(xi2, 15)*y2t + 457.0576171875*pow(xi2, 13)*y2t - 645.84228515625*pow(xi2, 11)*y2t + 451.064453125*pow(xi2, 9)*y2t - 160.24658203125*pow(xi2, 7)*y2t + 26.3935546875*pow(xi2, 5)*y2t - 1.46630859375*pow(xi2, 3)*y2t; case 3: return -63.480224609375*pow(xi1, 15)*y2r - 22.6715087890625*pow(xi1, 14)*y2r + 228.52880859375*pow(xi1, 13)*y2r + 82.5242919921875*pow(xi1, 12)*y2r - 322.921142578125*pow(xi1, 11)*y2r - 118.404418945313*pow(xi1, 10)*y2r + 225.5322265625*pow(xi1, 9)*y2r + 84.5745849609375*pow(xi1, 8)*y2r - 80.123291015625*pow(xi1, 7)*y2r - 31.1590576171875*pow(xi1, 6)*y2r + 13.19677734375*pow(xi1, 5)*y2r + 5.4986572265625*pow(xi1, 4)*y2r - 0.733154296875*pow(xi1, 3)*y2r - 0.3665771484375*pow(xi1, 2)*y2r + 63.480224609375*pow(xi2, 15)*y2r + 22.6715087890625*pow(xi2, 14)*y2r - 228.52880859375*pow(xi2, 13)*y2r - 82.5242919921875*pow(xi2, 12)*y2r + 322.921142578125*pow(xi2, 11)*y2r + 118.404418945313*pow(xi2, 10)*y2r - 225.5322265625*pow(xi2, 9)*y2r - 84.5745849609375*pow(xi2, 8)*y2r + 80.123291015625*pow(xi2, 7)*y2r + 31.1590576171875*pow(xi2, 6)*y2r - 13.19677734375*pow(xi2, 5)*y2r - 5.4986572265625*pow(xi2, 4)*y2r + 0.733154296875*pow(xi2, 3)*y2r + 0.3665771484375*pow(xi2, 2)*y2r; case 4: return -119.025421142578*pow(xi1, 16) + 469.753662109375*pow(xi1, 14) - 757.070678710938*pow(xi1, 12) + 642.766845703125*pow(xi1, 10) - 309.364929199219*pow(xi1, 8) + 84.312744140625*pow(xi1, 6) - 12.0970458984375*pow(xi1, 4) + 0.733154296875*pow(xi1, 2) + 119.025421142578*pow(xi2, 16) - 469.753662109375*pow(xi2, 14) + 757.070678710938*pow(xi2, 12) - 642.766845703125*pow(xi2, 10) + 309.364929199219*pow(xi2, 8) - 84.312744140625*pow(xi2, 6) + 12.0970458984375*pow(xi2, 4) - 0.733154296875*pow(xi2, 2); case 5: return -186.70654296875*pow(xi1, 17) + 787.15478515625*pow(xi1, 15) - 1367.86083984375*pow(xi1, 13) + 1260.93017578125*pow(xi1, 11) - 658.79150390625*pow(xi1, 9) + 191.66748046875*pow(xi1, 7) - 27.85986328125*pow(xi1, 5) + 1.46630859375*pow(xi1, 3) + 186.70654296875*pow(xi2, 17) - 787.15478515625*pow(xi2, 15) + 1367.86083984375*pow(xi2, 13) - 1260.93017578125*pow(xi2, 11) + 658.79150390625*pow(xi2, 9) - 191.66748046875*pow(xi2, 7) + 27.85986328125*pow(xi2, 5) - 1.46630859375*pow(xi2, 3); case 6: return -308.584425184462*pow(xi1, 18) + 1380.69488525391*pow(xi1, 16) - 2575.08911132813*pow(xi1, 14) + 2590.54516601563*pow(xi1, 12) - 1519.67175292969*pow(xi1, 10) + 525.514526367188*pow(xi1, 8) - 103.863525390625*pow(xi1, 6) + 10.997314453125*pow(xi1, 4) - 0.54986572265625*pow(xi1, 2) + 308.584425184462*pow(xi2, 18) - 1380.69488525391*pow(xi2, 16) + 2575.08911132813*pow(xi2, 14) - 2590.54516601563*pow(xi2, 12) + 1519.67175292969*pow(xi2, 10) - 525.514526367188*pow(xi2, 8) + 103.863525390625*pow(xi2, 6) - 10.997314453125*pow(xi2, 4) + 0.54986572265625*pow(xi2, 2); case 7: return -526.217651367188*pow(xi1, 19) + 2488.4248046875*pow(xi1, 17) - 4955.87353515625*pow(xi1, 15) + 5398.5791015625*pow(xi1, 13) - 3495.47973632813*pow(xi1, 11) + 1367.8564453125*pow(xi1, 9) - 313.58056640625*pow(xi1, 7) + 38.1240234375*pow(xi1, 5) - 1.8328857421875*pow(xi1, 3) + 526.217651367188*pow(xi2, 19) - 2488.4248046875*pow(xi2, 17) + 4955.87353515625*pow(xi2, 15) - 5398.5791015625*pow(xi2, 13) + 3495.47973632813*pow(xi2, 11) - 1367.8564453125*pow(xi2, 9) + 313.58056640625*pow(xi2, 7) - 38.1240234375*pow(xi2, 5) + 1.8328857421875*pow(xi2, 3); case 8: return -916.495742797852*pow(xi1, 20) + 4565.8151550293*pow(xi1, 18) - 9668.48670959473*pow(xi1, 16) + 11336.3458251953*pow(xi1, 14) - 8033.13552856445*pow(xi1, 12) + 3523.35626220703*pow(xi1, 10) - 940.964263916016*pow(xi1, 8) + 144.797973632813*pow(xi1, 6) - 11.6846466064453*pow(xi1, 4) + 0.458221435546875*pow(xi1, 2) + 916.495742797852*pow(xi2, 20) - 4565.8151550293*pow(xi2, 18) + 9668.48670959473*pow(xi2, 16) - 11336.3458251953*pow(xi2, 14) + 8033.13552856445*pow(xi2, 12) - 3523.35626220703*pow(xi2, 10) + 940.964263916016*pow(xi2, 8) - 144.797973632813*pow(xi2, 6) + 11.6846466064453*pow(xi2, 4) - 0.458221435546875*pow(xi2, 2); case 9: return -1621.01287841797*pow(xi1, 21) + 8484.13201904297*pow(xi1, 19) - 19032.4753417969*pow(xi1, 17) + 23897.5576985677*pow(xi1, 15) - 18398.4429931641*pow(xi1, 13) + 8944.64904785156*pow(xi1, 11) - 2725.78621419271*pow(xi1, 9) + 499.278076171875*pow(xi1, 7) - 50.0377807617188*pow(xi1, 5) + 2.13836669921875*pow(xi1, 3) + 1621.01287841797*pow(xi2, 21) - 8484.13201904297*pow(xi2, 19) + 19032.4753417969*pow(xi2, 17) - 23897.5576985677*pow(xi2, 15) + 18398.4429931641*pow(xi2, 13) - 8944.64904785156*pow(xi2, 11) + 2725.78621419271*pow(xi2, 9) - 499.278076171875*pow(xi2, 7) + 50.0377807617188*pow(xi2, 5) - 2.13836669921875*pow(xi2, 3); case 10: return -2901.24464035034*pow(xi1, 22) + 15914.2939338684*pow(xi1, 20) - 37698.4300117493*pow(xi1, 18) + 50467.3515129089*pow(xi1, 16) - 41952.306022644*pow(xi1, 14) + 22402.6091384888*pow(xi1, 12) - 7682.70096588135*pow(xi1, 10) + 1642.471824646*pow(xi1, 8) - 204.882259368896*pow(xi1, 6) + 13.231143951416*pow(xi1, 4) - 0.400943756103516*pow(xi1, 2) + 2901.24464035034*pow(xi2, 22) - 15914.2939338684*pow(xi2, 20) + 37698.4300117493*pow(xi2, 18) - 50467.3515129089*pow(xi2, 16) + 41952.306022644*pow(xi2, 14) - 22402.6091384888*pow(xi2, 12) + 7682.70096588135*pow(xi2, 10) - 1642.471824646*pow(xi2, 8) + 204.882259368896*pow(xi2, 6) - 13.231143951416*pow(xi2, 4) + 0.400943756103516*pow(xi2, 2); case 11: return -5241.86229705811*pow(xi1, 23) + 30069.7888946533*pow(xi1, 21) - 75001.7991256714*pow(xi1, 19) + 106637.491882324*pow(xi1, 17) - 95202.6352386475*pow(xi1, 15) + 55415.131072998*pow(xi1, 13) - 21143.3159637451*pow(xi1, 11) + 5180.65155029297*pow(xi1, 9) - 775.516868591309*pow(xi1, 7) + 64.4717559814453*pow(xi1, 5) - 2.40566253662109*pow(xi1, 3) + 5241.86229705811*pow(xi2, 23) - 30069.7888946533*pow(xi2, 21) + 75001.7991256714*pow(xi2, 19) - 106637.491882324*pow(xi2, 17) + 95202.6352386475*pow(xi2, 15) - 55415.131072998*pow(xi2, 13) + 21143.3159637451*pow(xi2, 11) - 5180.65155029297*pow(xi2, 9) + 775.516868591309*pow(xi2, 7) - 64.4717559814453*pow(xi2, 5) + 2.40566253662109*pow(xi2, 3); case 12: return -9544.55759922663*pow(xi1, 24) + 57146.7827625275*pow(xi1, 22) - 149701.111962318*pow(xi1, 20) + 225283.641888301*pow(xi1, 18) - 215000.310380459*pow(xi1, 16) + 135525.19952774*pow(xi1, 14) - 56986.956861496*pow(xi1, 12) + 15773.3450202942*pow(xi1, 10) - 2767.52143621445*pow(xi1, 8) + 286.474313735962*pow(xi1, 6) - 15.3360986709595*pow(xi1, 4) + 0.360849380493164*pow(xi1, 2) + 9544.55759922663*pow(xi2, 24) - 57146.7827625275*pow(xi2, 22) + 149701.111962318*pow(xi2, 20) - 225283.641888301*pow(xi2, 18) + 215000.310380459*pow(xi2, 16) - 135525.19952774*pow(xi2, 14) + 56986.956861496*pow(xi2, 12) - 15773.3450202942*pow(xi2, 10) + 2767.52143621445*pow(xi2, 8) - 286.474313735962*pow(xi2, 6) + 15.3360986709595*pow(xi2, 4) - 0.360849380493164*pow(xi2, 2); case 13: return -17492.571018219*pow(xi1, 25) + 109120.323970795*pow(xi1, 23) - 299520.0116539*pow(xi1, 21) + 475634.251041412*pow(xi1, 19) - 483253.892555237*pow(xi1, 17) + 328029.114830017*pow(xi1, 15) - 150801.959220886*pow(xi1, 13) + 46596.4232254028*pow(xi1, 11) - 9406.08324050903*pow(xi1, 9) + 1173.79148483276*pow(xi1, 7) - 82.0330924987793*pow(xi1, 5) + 2.6462287902832*pow(xi1, 3) + 17492.571018219*pow(xi2, 25) - 109120.323970795*pow(xi2, 23) + 299520.0116539*pow(xi2, 21) - 475634.251041412*pow(xi2, 19) + 483253.892555237*pow(xi2, 17) - 328029.114830017*pow(xi2, 15) + 150801.959220886*pow(xi2, 13) - 46596.4232254028*pow(xi2, 11) + 9406.08324050903*pow(xi2, 9) - 1173.79148483276*pow(xi2, 7) + 82.0330924987793*pow(xi2, 5) - 2.6462287902832*pow(xi2, 3); case 14: return -32237.9113316536*pow(xi1, 26) + 209181.995092869*pow(xi1, 24) - 600370.026732445*pow(xi1, 22) + 1003276.71807003*pow(xi1, 20) - 1081289.04205084*pow(xi1, 18) + 786510.933558941*pow(xi1, 16) - 392623.01508522*pow(xi1, 14) + 134105.370706558*pow(xi1, 12) - 30684.3931918144*pow(xi1, 10) + 4505.44078588486*pow(xi1, 8) - 393.626532554626*pow(xi1, 6) + 17.8620443344116*pow(xi1, 4) - 0.3307785987854*pow(xi1, 2) + 32237.9113316536*pow(xi2, 26) - 209181.995092869*pow(xi2, 24) + 600370.026732445*pow(xi2, 22) - 1003276.71807003*pow(xi2, 20) + 1081289.04205084*pow(xi2, 18) - 786510.933558941*pow(xi2, 16) + 392623.01508522*pow(xi2, 14) - 134105.370706558*pow(xi2, 12) + 30684.3931918144*pow(xi2, 10) - 4505.44078588486*pow(xi2, 8) + 393.626532554626*pow(xi2, 6) - 17.8620443344116*pow(xi2, 4) + 0.3307785987854*pow(xi2, 2); case 15: return -59699.8357993585*pow(xi1, 27) + 402329.133419037*pow(xi1, 25) - 1205086.03384209*pow(xi1, 23) + 2113983.15740585*pow(xi1, 21) - 2409006.79417133*pow(xi1, 19) + 1869629.71721649*pow(xi1, 17) - 1007504.08179092*pow(xi1, 15) + 377258.679588318*pow(xi1, 13) - 96656.1270189285*pow(xi1, 11) + 16384.1465568542*pow(xi1, 9) - 1732.33477592468*pow(xi1, 7) + 103.202922821045*pow(xi1, 5) - 2.86674785614014*pow(xi1, 3) + 59699.8357993585*pow(xi2, 27) - 402329.133419037*pow(xi2, 25) + 1205086.03384209*pow(xi2, 23) - 2113983.15740585*pow(xi2, 21) + 2409006.79417133*pow(xi2, 19) - 1869629.71721649*pow(xi2, 17) + 1007504.08179092*pow(xi2, 15) - 377258.679588318*pow(xi2, 13) + 96656.1270189285*pow(xi2, 11) - 16384.1465568542*pow(xi2, 9) + 1732.33477592468*pow(xi2, 7) - 103.202922821045*pow(xi2, 5) + 2.86674785614014*pow(xi2, 3); case 16: return -111023.419126868*pow(xi1, 28) + 776012.579911947*pow(xi1, 26) - 2421497.64727652*pow(xi1, 24) + 4449137.26589155*pow(xi1, 22) - 5345258.68610036*pow(xi1, 20) + 4409451.09540582*pow(xi1, 18) - 2551934.9433285*pow(xi1, 16) + 1040179.51673985*pow(xi1, 14) - 295400.64020741*pow(xi1, 12) + 56930.848058939*pow(xi1, 10) - 7106.93852126598*pow(xi1, 8) + 531.372191905975*pow(xi1, 6) - 20.7327300310135*pow(xi1, 4) + 0.307151556015015*pow(xi1, 2) + 111023.419126868*pow(xi2, 28) - 776012.579911947*pow(xi2, 26) + 2421497.64727652*pow(xi2, 24) - 4449137.26589155*pow(xi2, 22) + 5345258.68610036*pow(xi2, 20) - 4409451.09540582*pow(xi2, 18) + 2551934.9433285*pow(xi2, 16) - 1040179.51673985*pow(xi2, 14) + 295400.64020741*pow(xi2, 12) - 56930.848058939*pow(xi2, 10) + 7106.93852126598*pow(xi2, 8) - 531.372191905975*pow(xi2, 6) + 20.7327300310135*pow(xi2, 4) - 0.307151556015015*pow(xi2, 2); case 17: return -207243.715703487*pow(xi1, 29) + 1500444.50169325*pow(xi1, 27) - 4869806.82453632*pow(xi1, 25) + 9352426.89430714*pow(xi1, 23) - 11815114.5594144*pow(xi1, 21) + 10324664.1370225*pow(xi1, 19) - 6388508.57412529*pow(xi1, 17) + 2817283.29321098*pow(xi1, 15) - 879284.628088474*pow(xi1, 13) + 190272.663624287*pow(xi1, 11) - 27505.2755784988*pow(xi1, 9) + 2497.40542316437*pow(xi1, 7) - 128.389350414276*pow(xi1, 5) + 3.07151556015015*pow(xi1, 3) + 207243.715703487*pow(xi2, 29) - 1500444.50169325*pow(xi2, 27) + 4869806.82453632*pow(xi2, 25) - 9352426.89430714*pow(xi2, 23) + 11815114.5594144*pow(xi2, 21) - 10324664.1370225*pow(xi2, 19) + 6388508.57412529*pow(xi2, 17) - 2817283.29321098*pow(xi2, 15) + 879284.628088474*pow(xi2, 13) - 190272.663624287*pow(xi2, 11) + 27505.2755784988*pow(xi2, 9) - 2497.40542316437*pow(xi2, 7) + 128.389350414276*pow(xi2, 5) - 3.07151556015015*pow(xi2, 3); case 18: return -388150.20920299*pow(xi1, 30) + 2907370.2766753*pow(xi1, 28) - 9799868.25764738*pow(xi1, 26) + 19635467.5225535*pow(xi1, 24) - 26022314.9884176*pow(xi1, 22) + 24015014.9454261*pow(xi1, 20) - 15823943.7997347*pow(xi1, 18) + 7509769.99117948*pow(xi1, 16) - 2557095.55194207*pow(xi1, 14) + 614870.278818831*pow(xi1, 12) - 101334.994345263*pow(xi1, 10) + 10896.6374951452*pow(xi1, 8) - 705.456735268235*pow(xi1, 6) + 23.9002304524183*pow(xi1, 4) - 0.287954583764076*pow(xi1, 2) + 388150.20920299*pow(xi2, 30) - 2907370.2766753*pow(xi2, 28) + 9799868.25764738*pow(xi2, 26) - 19635467.5225535*pow(xi2, 24) + 26022314.9884176*pow(xi2, 22) - 24015014.9454261*pow(xi2, 20) + 15823943.7997347*pow(xi2, 18) - 7509769.99117948*pow(xi2, 16) + 2557095.55194207*pow(xi2, 14) - 614870.278818831*pow(xi2, 12) + 101334.994345263*pow(xi2, 10) - 10896.6374951452*pow(xi2, 8) + 705.456735268235*pow(xi2, 6) - 23.9002304524183*pow(xi2, 4) + 0.287954583764076*pow(xi2, 2); case 19: return -729162.632089108*pow(xi1, 31) + 5644160.68911642*pow(xi1, 29) - 19730891.0453005*pow(xi1, 27) + 41174618.8415927*pow(xi1, 25) - 57119932.9378419*pow(xi1, 23) + 55517614.4424215*pow(xi1, 21) - 38817710.5718181*pow(xi1, 19) + 19732985.769913*pow(xi1, 17) - 7284416.2171289*pow(xi1, 15) + 1929320.51155955*pow(xi1, 13) - 357906.614608616*pow(xi1, 11) + 44689.359359622*pow(xi1, 9) - 3524.28437796235*pow(xi1, 7) + 157.952687680721*pow(xi1, 5) - 3.26348528265953*pow(xi1, 3) + 729162.632089108*pow(xi2, 31) - 5644160.68911642*pow(xi2, 29) + 19730891.0453005*pow(xi2, 27) - 41174618.8415927*pow(xi2, 25) + 57119932.9378419*pow(xi2, 23) - 55517614.4424215*pow(xi2, 21) + 38817710.5718181*pow(xi2, 19) - 19732985.769913*pow(xi2, 17) + 7284416.2171289*pow(xi2, 15) - 1929320.51155955*pow(xi2, 13) + 357906.614608616*pow(xi2, 11) - 44689.359359622*pow(xi2, 9) + 3524.28437796235*pow(xi2, 7) - 157.952687680721*pow(xi2, 5) + 3.26348528265953*pow(xi2, 3); case 20: return -1373509.47190396*pow(xi1, 32) + 10975517.9743457*pow(xi1, 30) - 39741270.4156874*pow(xi1, 28) + 86237891.5732345*pow(xi1, 26) - 124983372.13927*pow(xi1, 24) + 127620687.931434*pow(xi1, 22) - 94385785.032511*pow(xi1, 20) + 51182880.666102*pow(xi1, 18) - 20371444.2763663*pow(xi1, 16) + 5898530.05603891*pow(xi1, 14) - 1218646.21992296*pow(xi1, 12) + 173911.651316531*pow(xi1, 10) - 16287.4470273647*pow(xi1, 8) + 922.206549458206*pow(xi1, 6) - 27.3316892422736*pow(xi1, 4) + 0.271957106888294*pow(xi1, 2) + 1373509.47190396*pow(xi2, 32) - 10975517.9743457*pow(xi2, 30) + 39741270.4156874*pow(xi2, 28) - 86237891.5732345*pow(xi2, 26) + 124983372.13927*pow(xi2, 24) - 127620687.931434*pow(xi2, 22) + 94385785.032511*pow(xi2, 20) - 51182880.666102*pow(xi2, 18) + 20371444.2763663*pow(xi2, 16) - 5898530.05603891*pow(xi2, 14) + 1218646.21992296*pow(xi2, 12) - 173911.651316531*pow(xi2, 10) + 16287.4470273647*pow(xi2, 8) - 922.206549458206*pow(xi2, 6) + 27.3316892422736*pow(xi2, 4) - 0.271957106888294*pow(xi2, 2); case 21: return -2593676.57852359*pow(xi1, 33) + 21374698.9817139*pow(xi1, 31) - 80069343.0678237*pow(xi1, 29) + 180409482.926837*pow(xi1, 27) - 272660658.817659*pow(xi1, 25) + 291832705.291657*pow(xi1, 23) - 227646965.371663*pow(xi1, 21) + 131200707.86478*pow(xi1, 19) - 56031543.8303474*pow(xi1, 17) + 17621862.9742209*pow(xi1, 15) - 4018380.24838351*pow(xi1, 13) + 646951.29511781*pow(xi1, 11) - 70530.7633705189*pow(xi1, 9) + 4878.1179368645*pow(xi1, 7) - 192.219283148646*pow(xi1, 5) + 3.44479002058506*pow(xi1, 3) + 2593676.57852359*pow(xi2, 33) - 21374698.9817139*pow(xi2, 31) + 80069343.0678237*pow(xi2, 29) - 180409482.926837*pow(xi2, 27) + 272660658.817659*pow(xi2, 25) - 291832705.291657*pow(xi2, 23) + 227646965.371663*pow(xi2, 21) - 131200707.86478*pow(xi2, 19) + 56031543.8303474*pow(xi2, 17) - 17621862.9742209*pow(xi2, 15) + 4018380.24838351*pow(xi2, 13) - 646951.29511781*pow(xi2, 11) + 70530.7633705189*pow(xi2, 9) - 4878.1179368645*pow(xi2, 7) + 192.219283148646*pow(xi2, 5) - 3.44479002058506*pow(xi2, 3); case 22: return -4908914.34788215*pow(xi1, 34) + 41682976.2934526*pow(xi1, 32) - 161357453.758476*pow(xi1, 30) + 376988466.755545*pow(xi1, 28) - 593164732.277684*pow(xi1, 26) + 664096571.54609*pow(xi1, 24) - 544973436.806207*pow(xi1, 22) + 332715807.100391*pow(xi1, 20) - 151815163.18702*pow(xi1, 18) + 51567840.3122956*pow(xi1, 16) - 12879742.0744171*pow(xi1, 14) + 2314139.34894989*pow(xi1, 12) - 288997.558465965*pow(xi1, 10) + 23796.3634057716*pow(xi1, 8) - 1188.45255710185*pow(xi1, 6) + 31.0031101852655*pow(xi1, 4) - 0.25835925154388*pow(xi1, 2) + 4908914.34788215*pow(xi2, 34) - 41682976.2934526*pow(xi2, 32) + 161357453.758476*pow(xi2, 30) - 376988466.755545*pow(xi2, 28) + 593164732.277684*pow(xi2, 26) - 664096571.54609*pow(xi2, 24) + 544973436.806207*pow(xi2, 22) - 332715807.100391*pow(xi2, 20) + 151815163.18702*pow(xi2, 18) - 51567840.3122956*pow(xi2, 16) + 12879742.0744171*pow(xi2, 14) - 2314139.34894989*pow(xi2, 12) + 288997.558465965*pow(xi2, 10) - 23796.3634057716*pow(xi2, 8) + 1188.45255710185*pow(xi2, 6) - 31.0031101852655*pow(xi2, 4) + 0.25835925154388*pow(xi2, 2); case 23: return -9310240.27339825*pow(xi1, 35) + 81385124.7313643*pow(xi1, 33) - 325225778.020873*pow(xi1, 31) + 786901443.045491*pow(xi1, 29) - 1287010097.68695*pow(xi1, 27) + 1504383534.87654*pow(xi1, 25) - 1295670982.26369*pow(xi1, 23) + 835461875.914782*pow(xi1, 21) - 405754033.635682*pow(xi1, 19) + 148121087.247014*pow(xi1, 17) - 40252478.8666085*pow(xi1, 15) + 7997565.65664124*pow(xi1, 13) - 1129083.48007344*pow(xi1, 11) + 108469.548168182*pow(xi1, 9) - 6634.66557964683*pow(xi1, 7) + 231.489889383316*pow(xi1, 5) - 3.61702952161431*pow(xi1, 3) + 9310240.27339825*pow(xi2, 35) - 81385124.7313643*pow(xi2, 33) + 325225778.020873*pow(xi2, 31) - 786901443.045491*pow(xi2, 29) + 1287010097.68695*pow(xi2, 27) - 1504383534.87654*pow(xi2, 25) + 1295670982.26369*pow(xi2, 23) - 835461875.914782*pow(xi2, 21) + 405754033.635682*pow(xi2, 19) - 148121087.247014*pow(xi2, 17) + 40252478.8666085*pow(xi2, 15) - 7997565.65664124*pow(xi2, 13) + 1129083.48007344*pow(xi2, 11) - 108469.548168182*pow(xi2, 9) + 6634.66557964683*pow(xi2, 7) - 231.489889383316*pow(xi2, 5) + 3.61702952161431*pow(xi2, 3); case 24: return -17691807.5902328*pow(xi1, 36) + 159078150.8532*pow(xi1, 34) - 655592218.992931*pow(xi1, 32) + 1640789841.43268*pow(xi1, 30) - 2785532373.16041*pow(xi1, 28) + 3393496929.74806*pow(xi1, 26) - 3060839533.17806*pow(xi1, 24) + 2078925210.23867*pow(xi1, 22) - 1071003828.3239*pow(xi1, 20) + 418340016.31884*pow(xi1, 18) - 122981940.948562*pow(xi1, 16) + 26809361.5972113*pow(xi1, 14) - 4231892.43185647*pow(xi1, 12) + 466669.101904269*pow(xi1, 10) - 34061.4965434279*pow(xi1, 8) + 1511.47991221398*pow(xi1, 6) - 34.8961143619381*pow(xi1, 4) + 0.246615649200976*pow(xi1, 2) + 17691807.5902328*pow(xi2, 36) - 159078150.8532*pow(xi2, 34) + 655592218.992931*pow(xi2, 32) - 1640789841.43268*pow(xi2, 30) + 2785532373.16041*pow(xi2, 28) - 3393496929.74806*pow(xi2, 26) + 3060839533.17806*pow(xi2, 24) - 2078925210.23867*pow(xi2, 22) + 1071003828.3239*pow(xi2, 20) - 418340016.31884*pow(xi2, 18) + 122981940.948562*pow(xi2, 16) - 26809361.5972113*pow(xi2, 14) + 4231892.43185647*pow(xi2, 12) - 466669.101904269*pow(xi2, 10) + 34061.4965434279*pow(xi2, 8) - 1511.47991221398*pow(xi2, 6) + 34.8961143619381*pow(xi2, 4) - 0.246615649200976*pow(xi2, 2); case 25: return -33678881.6641329*pow(xi1, 37) + 311252740.143991*pow(xi1, 35) - 1321657965.61896*pow(xi1, 33) + 3417770359.80975*pow(xi1, 31) - 6014713509.51296*pow(xi1, 29) + 7624598077.02301*pow(xi1, 27) - 7188030678.28592*pow(xi1, 25) + 5129953639.24709*pow(xi1, 23) - 2794796753.96302*pow(xi1, 21) + 1163525398.80544*pow(xi1, 19) - 368143949.138997*pow(xi1, 17) + 87458596.6151419*pow(xi1, 15) - 15292728.0635515*pow(xi1, 13) + 1910036.75112527*pow(xi1, 11) - 162990.86614944*pow(xi1, 9) + 8880.98183579743*pow(xi1, 7) - 276.045116672292*pow(xi1, 5) + 3.78143995441496*pow(xi1, 3) + 33678881.6641329*pow(xi2, 37) - 311252740.143991*pow(xi2, 35) + 1321657965.61896*pow(xi2, 33) - 3417770359.80975*pow(xi2, 31) + 6014713509.51296*pow(xi2, 29) - 7624598077.02301*pow(xi2, 27) + 7188030678.28592*pow(xi2, 25) - 5129953639.24709*pow(xi2, 23) + 2794796753.96302*pow(xi2, 21) - 1163525398.80544*pow(xi2, 19) + 368143949.138997*pow(xi2, 17) - 87458596.6151419*pow(xi2, 15) + 15292728.0635515*pow(xi2, 13) - 1910036.75112527*pow(xi2, 11) + 162990.86614944*pow(xi2, 9) - 8880.98183579743*pow(xi2, 7) + 276.045116672292*pow(xi2, 5) - 3.78143995441496*pow(xi2, 3); case 26: return -64218832.4714114*pow(xi1, 38) + 609559692.386086*pow(xi1, 36) - 2664571836.57134*pow(xi1, 34) + 7112249072.16354*pow(xi1, 32) - 12958610422.2982*pow(xi1, 30) + 17067705071.5141*pow(xi1, 28) - 16787255145.7937*pow(xi1, 26) + 12560873795.7298*pow(xi1, 24) - 7216667713.14824*pow(xi1, 22) + 3191020712.83802*pow(xi1, 20) - 1081805051.19921*pow(xi1, 18) + 278426210.632151*pow(xi1, 16) - 53501402.6224166*pow(xi1, 14) + 7484344.83168108*pow(xi1, 12) - 734495.95757998*pow(xi1, 10) + 47860.1999373338*pow(xi1, 8) - 1898.99187710776*pow(xi1, 6) + 38.9960995299043*pow(xi1, 4) - 0.236339997150935*pow(xi1, 2) + 64218832.4714114*pow(xi2, 38) - 609559692.386086*pow(xi2, 36) + 2664571836.57134*pow(xi2, 34) - 7112249072.16354*pow(xi2, 32) + 12958610422.2982*pow(xi2, 30) - 17067705071.5141*pow(xi2, 28) + 16787255145.7937*pow(xi2, 26) - 12560873795.7298*pow(xi2, 24) + 7216667713.14824*pow(xi2, 22) - 3191020712.83802*pow(xi2, 20) + 1081805051.19921*pow(xi2, 18) - 278426210.632151*pow(xi2, 16) + 53501402.6224166*pow(xi2, 14) - 7484344.83168108*pow(xi2, 12) + 734495.95757998*pow(xi2, 10) - 47860.1999373338*pow(xi2, 8) + 1898.99187710776*pow(xi2, 6) - 38.9960995299043*pow(xi2, 4) + 0.236339997150935*pow(xi2, 2); case 27: return -122641503.653095*pow(xi1, 39) + 1194778534.36411*pow(xi1, 37) - 5372147407.37006*pow(xi1, 35) + 14786375338.0881*pow(xi1, 33) - 27860617378.6798*pow(xi1, 31) + 38073285463.0875*pow(xi1, 29) - 39004003866.1513*pow(xi1, 27) + 30535049585.1998*pow(xi1, 25) - 18454438615.023*pow(xi1, 23) + 8639576881.10214*pow(xi1, 21) - 3125725551.60628*pow(xi1, 19) + 867032659.727804*pow(xi1, 17) - 181832151.94781*pow(xi1, 15) + 28221925.8980201*pow(xi1, 13) - 3142373.53276822*pow(xi1, 11) + 239854.335394284*pow(xi1, 9) - 11716.0489159066*pow(xi1, 7) + 326.149196068291*pow(xi1, 5) - 3.93899995251559*pow(xi1, 3) + 122641503.653095*pow(xi2, 39) - 1194778534.36411*pow(xi2, 37) + 5372147407.37006*pow(xi2, 35) - 14786375338.0881*pow(xi2, 33) + 27860617378.6798*pow(xi2, 31) - 38073285463.0875*pow(xi2, 29) + 39004003866.1513*pow(xi2, 27) - 30535049585.1998*pow(xi2, 25) + 18454438615.023*pow(xi2, 23) - 8639576881.10214*pow(xi2, 21) + 3125725551.60628*pow(xi2, 19) - 867032659.727804*pow(xi2, 17) + 181832151.94781*pow(xi2, 15) - 28221925.8980201*pow(xi2, 13) + 3142373.53276822*pow(xi2, 11) - 239854.335394284*pow(xi2, 9) + 11716.0489159066*pow(xi2, 7) - 326.149196068291*pow(xi2, 5) + 3.93899995251559*pow(xi2, 3); case 28: return -234551875.736545*pow(xi1, 40) + 2343679134.81065*pow(xi1, 38) - 10831075689.4263*pow(xi1, 36) + 30713072121.1401*pow(xi1, 34) - 59780571314.211*pow(xi1, 32) + 84653008995.6795*pow(xi1, 30) - 90186685266.1405*pow(xi1, 28) + 73733585896.2953*pow(xi1, 26) - 46768558930.8651*pow(xi1, 24) + 23115653989.3216*pow(xi1, 22) - 8892958492.16441*pow(xi1, 20) + 2646430745.77703*pow(xi1, 18) - 602096347.338786*pow(xi1, 16) + 102847878.539102*pow(xi1, 14) - 12846714.7480362*pow(xi1, 12) + 1129681.26669604*pow(xi1, 10) - 66128.2185117568*pow(xi1, 8) + 2359.0822215614*pow(xi1, 6) - 43.291124478128*pow(xi1, 4) + 0.227249997260515*pow(xi1, 2) + 234551875.736545*pow(xi2, 40) - 2343679134.81065*pow(xi2, 38) + 10831075689.4263*pow(xi2, 36) - 30713072121.1401*pow(xi2, 34) + 59780571314.211*pow(xi2, 32) - 84653008995.6795*pow(xi2, 30) + 90186685266.1405*pow(xi2, 28) - 73733585896.2953*pow(xi2, 26) + 46768558930.8651*pow(xi2, 24) - 23115653989.3216*pow(xi2, 22) + 8892958492.16441*pow(xi2, 20) - 2646430745.77703*pow(xi2, 18) + 602096347.338786*pow(xi2, 16) - 102847878.539102*pow(xi2, 14) + 12846714.7480362*pow(xi2, 12) - 1129681.26669604*pow(xi2, 10) + 66128.2185117568*pow(xi2, 8) - 2359.0822215614*pow(xi2, 6) + 43.291124478128*pow(xi2, 4) - 0.227249997260515*pow(xi2, 2); case 29: return -449186970.696906*pow(xi1, 41) + 4600691607.03978*pow(xi1, 39) - 21836906271.7554*pow(xi1, 37) + 63739269950.2658*pow(xi1, 35) - 128029808068.442*pow(xi1, 33) + 187639118172.457*pow(xi1, 31) - 207591696263.244*pow(xi1, 29) + 176935105732.693*pow(xi1, 27) - 117536872874.726*pow(xi1, 25) + 61173279940.9544*pow(xi1, 23) - 24944876505.7779*pow(xi1, 21) + 7931390553.5376*pow(xi1, 19) - 1947290061.31368*pow(xi1, 17) + 363525099.100395*pow(xi1, 15) - 50454477.3027972*pow(xi1, 13) + 5041918.86101217*pow(xi1, 11) - 346355.058153282*pow(xi1, 9) + 15251.3706304313*pow(xi1, 7) - 382.052695394377*pow(xi1, 5) + 4.09049995068926*pow(xi1, 3) + 449186970.696906*pow(xi2, 41) - 4600691607.03978*pow(xi2, 39) + 21836906271.7554*pow(xi2, 37) - 63739269950.2658*pow(xi2, 35) + 128029808068.442*pow(xi2, 33) - 187639118172.457*pow(xi2, 31) + 207591696263.244*pow(xi2, 29) - 176935105732.693*pow(xi2, 27) + 117536872874.726*pow(xi2, 25) - 61173279940.9544*pow(xi2, 23) + 24944876505.7779*pow(xi2, 21) - 7931390553.5376*pow(xi2, 19) + 1947290061.31368*pow(xi2, 17) - 363525099.100395*pow(xi2, 15) + 50454477.3027972*pow(xi2, 13) - 5041918.86101217*pow(xi2, 11) + 346355.058153282*pow(xi2, 9) - 15251.3706304313*pow(xi2, 7) + 382.052695394377*pow(xi2, 5) - 4.09049995068926*pow(xi2, 3); default: return 0.; } case 16: switch(j) { case 0: return -229.549026489258*pow(xi1, 16)*y1t + 884.188842773438*pow(xi1, 14)*y1t - 1361.65081787109*pow(xi1, 12)*y1t + 1065.63977050781*pow(xi1, 10)*y1t - 444.016571044922*pow(xi1, 8)*y1t + 93.4771728515625*pow(xi1, 6)*y1t - 8.24798583984375*pow(xi1, 4)*y1t + 0.1571044921875*pow(xi1, 2)*y1t + 229.549026489258*pow(xi2, 16)*y1t - 884.188842773438*pow(xi2, 14)*y1t + 1361.65081787109*pow(xi2, 12)*y1t - 1065.63977050781*pow(xi2, 10)*y1t + 444.016571044922*pow(xi2, 8)*y1t - 93.4771728515625*pow(xi2, 6)*y1t + 8.24798583984375*pow(xi2, 4)*y1t - 0.1571044921875*pow(xi2, 2)*y1t; case 1: return -114.774513244629*pow(xi1, 16)*y1r + 40.8087158203125*pow(xi1, 15)*y1r + 442.094421386719*pow(xi1, 14)*y1r - 158.700561523438*pow(xi1, 13)*y1r - 680.825408935547*pow(xi1, 12)*y1r + 247.572875976563*pow(xi1, 11)*y1r + 532.819885253906*pow(xi1, 10)*y1r - 197.340698242188*pow(xi1, 9)*y1r - 222.008285522461*pow(xi1, 8)*y1r + 84.5745849609375*pow(xi1, 7)*y1r + 46.7385864257813*pow(xi1, 6)*y1r - 18.6954345703125*pow(xi1, 5)*y1r - 4.12399291992188*pow(xi1, 4)*y1r + 1.8328857421875*pow(xi1, 3)*y1r + 0.07855224609375*pow(xi1, 2)*y1r - 0.0523681640625*xi1*y1r + 114.774513244629*pow(xi2, 16)*y1r - 40.8087158203125*pow(xi2, 15)*y1r - 442.094421386719*pow(xi2, 14)*y1r + 158.700561523438*pow(xi2, 13)*y1r + 680.825408935547*pow(xi2, 12)*y1r - 247.572875976563*pow(xi2, 11)*y1r - 532.819885253906*pow(xi2, 10)*y1r + 197.340698242188*pow(xi2, 9)*y1r + 222.008285522461*pow(xi2, 8)*y1r - 84.5745849609375*pow(xi2, 7)*y1r - 46.7385864257813*pow(xi2, 6)*y1r + 18.6954345703125*pow(xi2, 5)*y1r + 4.12399291992188*pow(xi2, 4)*y1r - 1.8328857421875*pow(xi2, 3)*y1r - 0.07855224609375*pow(xi2, 2)*y1r + 0.0523681640625*xi2*y1r; case 2: return 229.549026489258*pow(xi1, 16)*y2t - 884.188842773438*pow(xi1, 14)*y2t + 1361.65081787109*pow(xi1, 12)*y2t - 1065.63977050781*pow(xi1, 10)*y2t + 444.016571044922*pow(xi1, 8)*y2t - 93.4771728515625*pow(xi1, 6)*y2t + 8.24798583984375*pow(xi1, 4)*y2t - 0.1571044921875*pow(xi1, 2)*y2t - 229.549026489258*pow(xi2, 16)*y2t + 884.188842773438*pow(xi2, 14)*y2t - 1361.65081787109*pow(xi2, 12)*y2t + 1065.63977050781*pow(xi2, 10)*y2t - 444.016571044922*pow(xi2, 8)*y2t + 93.4771728515625*pow(xi2, 6)*y2t - 8.24798583984375*pow(xi2, 4)*y2t + 0.1571044921875*pow(xi2, 2)*y2t; case 3: return -114.774513244629*pow(xi1, 16)*y2r - 40.8087158203125*pow(xi1, 15)*y2r + 442.094421386719*pow(xi1, 14)*y2r + 158.700561523438*pow(xi1, 13)*y2r - 680.825408935547*pow(xi1, 12)*y2r - 247.572875976563*pow(xi1, 11)*y2r + 532.819885253906*pow(xi1, 10)*y2r + 197.340698242188*pow(xi1, 9)*y2r - 222.008285522461*pow(xi1, 8)*y2r - 84.5745849609375*pow(xi1, 7)*y2r + 46.7385864257813*pow(xi1, 6)*y2r + 18.6954345703125*pow(xi1, 5)*y2r - 4.12399291992188*pow(xi1, 4)*y2r - 1.8328857421875*pow(xi1, 3)*y2r + 0.07855224609375*pow(xi1, 2)*y2r + 0.0523681640625*xi1*y2r + 114.774513244629*pow(xi2, 16)*y2r + 40.8087158203125*pow(xi2, 15)*y2r - 442.094421386719*pow(xi2, 14)*y2r - 158.700561523438*pow(xi2, 13)*y2r + 680.825408935547*pow(xi2, 12)*y2r + 247.572875976563*pow(xi2, 11)*y2r - 532.819885253906*pow(xi2, 10)*y2r - 197.340698242188*pow(xi2, 9)*y2r + 222.008285522461*pow(xi2, 8)*y2r + 84.5745849609375*pow(xi2, 7)*y2r - 46.7385864257813*pow(xi2, 6)*y2r - 18.6954345703125*pow(xi2, 5)*y2r + 4.12399291992188*pow(xi2, 4)*y2r + 1.8328857421875*pow(xi2, 3)*y2r - 0.07855224609375*pow(xi2, 2)*y2r - 0.0523681640625*xi2*y2r; case 4: return -216.046142578125*pow(xi1, 17) + 906.8603515625*pow(xi1, 15) - 1574.3095703125*pow(xi1, 13) + 1463.9091796875*pow(xi1, 11) - 789.36279296875*pow(xi1, 9) + 249.2724609375*pow(xi1, 7) - 43.9892578125*pow(xi1, 5) + 3.7705078125*pow(xi1, 3) - 0.104736328125*xi1 + 216.046142578125*pow(xi2, 17) - 906.8603515625*pow(xi2, 15) + 1574.3095703125*pow(xi2, 13) - 1463.9091796875*pow(xi2, 11) + 789.36279296875*pow(xi2, 9) - 249.2724609375*pow(xi2, 7) + 43.9892578125*pow(xi2, 5) - 3.7705078125*pow(xi2, 3) + 0.104736328125*xi2; case 5: return -340.072631835938*pow(xi1, 18) + 1518.99108886719*pow(xi1, 16) - 2829.404296875*pow(xi1, 14) + 2841.7060546875*pow(xi1, 12) - 1657.66186523438*pow(xi1, 10) + 560.863037109375*pow(xi1, 8) - 102.6416015625*pow(xi1, 6) + 8.37890625*pow(xi1, 4) - 0.1571044921875*pow(xi1, 2) + 340.072631835938*pow(xi2, 18) - 1518.99108886719*pow(xi2, 16) + 2829.404296875*pow(xi2, 14) - 2841.7060546875*pow(xi2, 12) + 1657.66186523438*pow(xi2, 10) - 560.863037109375*pow(xi2, 8) + 102.6416015625*pow(xi2, 6) - 8.37890625*pow(xi2, 4) + 0.1571044921875*pow(xi2, 2); case 6: return -563.804626464844*pow(xi1, 19) + 2663.90228271484*pow(xi1, 17) - 5301.50561523438*pow(xi1, 15) + 5771.18041992188*pow(xi1, 13) - 3735.12121582031*pow(xi1, 11) + 1464.47570800781*pow(xi1, 9) - 340.916748046875*pow(xi1, 7) + 44.722412109375*pow(xi1, 5) - 3.01116943359375*pow(xi1, 3) + 0.07855224609375*xi1 + 563.804626464844*pow(xi2, 19) - 2663.90228271484*pow(xi2, 17) + 5301.50561523438*pow(xi2, 15) - 5771.18041992188*pow(xi2, 13) + 3735.12121582031*pow(xi2, 11) - 1464.47570800781*pow(xi2, 9) + 340.916748046875*pow(xi2, 7) - 44.722412109375*pow(xi2, 5) + 3.01116943359375*pow(xi2, 3) - 0.07855224609375*xi2; case 7: return -964.105911254883*pow(xi1, 20) + 4800.69198608398*pow(xi1, 18) - 10161.4835968018*pow(xi1, 16) + 11909.6392822266*pow(xi1, 14) - 8436.31484985352*pow(xi1, 12) + 3698.58013916016*pow(xi1, 10) - 985.634307861328*pow(xi1, 8) + 149.196899414063*pow(xi1, 6) - 10.7682037353516*pow(xi1, 4) + 0.196380615234375*pow(xi1, 2) + 964.105911254883*pow(xi2, 20) - 4800.69198608398*pow(xi2, 18) + 10161.4835968018*pow(xi2, 16) - 11909.6392822266*pow(xi2, 14) + 8436.31484985352*pow(xi2, 12) - 3698.58013916016*pow(xi2, 10) + 985.634307861328*pow(xi2, 8) - 149.196899414063*pow(xi2, 6) + 10.7682037353516*pow(xi2, 4) - 0.196380615234375*pow(xi2, 2); case 8: return -1683.35952758789*pow(xi1, 21) + 8807.88116455078*pow(xi1, 19) - 19753.4588928223*pow(xi1, 17) + 24796.6374511719*pow(xi1, 15) - 19086.1575317383*pow(xi1, 13) + 9276.90124511719*pow(xi1, 11) - 2826.61529541016*pow(xi1, 9) + 518.549560546875*pow(xi1, 7) - 53.0620422363281*pow(xi1, 5) + 2.74932861328125*pow(xi1, 3) - 0.065460205078125*xi1 + 1683.35952758789*pow(xi2, 21) - 8807.88116455078*pow(xi2, 19) + 19753.4588928223*pow(xi2, 17) - 24796.6374511719*pow(xi2, 15) + 19086.1575317383*pow(xi2, 13) - 9276.90124511719*pow(xi2, 11) + 2826.61529541016*pow(xi2, 9) - 518.549560546875*pow(xi2, 7) + 53.0620422363281*pow(xi2, 5) - 2.74932861328125*pow(xi2, 3) + 0.065460205078125*xi2; case 9: return -2984.13734436035*pow(xi1, 22) + 16365.9954071045*pow(xi1, 20) - 38761.818649292*pow(xi1, 18) + 51882.5600738525*pow(xi1, 16) - 43122.1461486816*pow(xi1, 14) + 23023.9469909668*pow(xi1, 12) - 7894.69711303711*pow(xi1, 10) + 1687.47244262695*pow(xi1, 8) - 210.002883911133*pow(xi1, 6) + 13.0593109130859*pow(xi1, 4) - 0.229110717773438*pow(xi1, 2) + 2984.13734436035*pow(xi2, 22) - 16365.9954071045*pow(xi2, 20) + 38761.818649292*pow(xi2, 18) - 51882.5600738525*pow(xi2, 16) + 43122.1461486816*pow(xi2, 14) - 23023.9469909668*pow(xi2, 12) + 7894.69711303711*pow(xi2, 10) - 1687.47244262695*pow(xi2, 8) + 210.002883911133*pow(xi2, 6) - 13.0593109130859*pow(xi2, 4) + 0.229110717773438*pow(xi2, 2); case 10: return -5351.98545455933*pow(xi1, 23) + 30697.9313850403*pow(xi1, 21) - 76560.1265144348*pow(xi1, 19) + 108841.735485077*pow(xi1, 17) - 97160.8135299683*pow(xi1, 15) + 56549.5268630981*pow(xi1, 13) - 21574.1586685181*pow(xi1, 11) + 5285.74245452881*pow(xi1, 9) - 791.235500335693*pow(xi1, 7) + 66.018253326416*pow(xi1, 5) - 2.69205093383789*pow(xi1, 3) + 0.0572776794433594*xi1 + 5351.98545455933*pow(xi2, 23) - 30697.9313850403*pow(xi2, 21) + 76560.1265144348*pow(xi2, 19) - 108841.735485077*pow(xi2, 17) + 97160.8135299683*pow(xi2, 15) - 56549.5268630981*pow(xi2, 13) + 21574.1586685181*pow(xi2, 11) - 5285.74245452881*pow(xi2, 9) + 791.235500335693*pow(xi2, 7) - 66.018253326416*pow(xi2, 5) + 2.69205093383789*pow(xi2, 3) - 0.0572776794433594*xi2; case 11: return -9688.08478116989*pow(xi1, 24) + 58001.8670558929*pow(xi1, 22) - 151930.445162773*pow(xi1, 20) + 228623.231115341*pow(xi1, 18) - 218173.43846941*pow(xi1, 16) + 137516.871471405*pow(xi1, 14) - 57820.9868717194*pow(xi1, 12) + 16003.2707176208*pow(xi1, 10) - 2807.71195650101*pow(xi1, 8) + 290.586851119995*pow(xi1, 6) - 15.4220151901245*pow(xi1, 4) + 0.257749557495117*pow(xi1, 2) + 9688.08478116989*pow(xi2, 24) - 58001.8670558929*pow(xi2, 22) + 151930.445162773*pow(xi2, 20) - 228623.231115341*pow(xi2, 18) + 218173.43846941*pow(xi2, 16) - 137516.871471405*pow(xi2, 14) + 57820.9868717194*pow(xi2, 12) - 16003.2707176208*pow(xi2, 10) + 2807.71195650101*pow(xi2, 8) - 290.586851119995*pow(xi2, 6) + 15.4220151901245*pow(xi2, 4) - 0.257749557495117*pow(xi2, 2); case 12: return -17671.0666408539*pow(xi1, 25) + 110228.875732422*pow(xi1, 23) - 302549.896160126*pow(xi1, 21) + 480425.929870605*pow(xi1, 19) - 488103.004846573*pow(xi1, 17) + 331307.98425293*pow(xi1, 15) - 152303.689613342*pow(xi1, 13) + 47058.755859375*pow(xi1, 11) - 9499.08173561096*pow(xi1, 9) + 1185.35339355469*pow(xi1, 7) - 82.8578910827637*pow(xi1, 5) + 2.74932861328125*pow(xi1, 3) - 0.0515499114990234*xi1 + 17671.0666408539*pow(xi2, 25) - 110228.875732422*pow(xi2, 23) + 302549.896160126*pow(xi2, 21) - 480425.929870605*pow(xi2, 19) + 488103.004846573*pow(xi2, 17) - 331307.98425293*pow(xi2, 15) + 152303.689613342*pow(xi2, 13) - 47058.755859375*pow(xi2, 11) + 9499.08173561096*pow(xi2, 9) - 1185.35339355469*pow(xi2, 7) + 82.8578910827637*pow(xi2, 5) - 2.74932861328125*pow(xi2, 3) + 0.0515499114990234*xi2; case 13: return -32438.1468057632*pow(xi1, 26) + 210476.088356972*pow(xi1, 24) - 604069.896524429*pow(xi1, 22) + 1009436.52295876*pow(xi1, 20) - 1087903.80975246*pow(xi1, 18) + 791305.484061241*pow(xi1, 16) - 395008.242015839*pow(xi1, 14) + 134917.356273651*pow(xi1, 12) - 30869.5774526596*pow(xi1, 10) + 4532.54437923431*pow(xi1, 8) - 395.989236831665*pow(xi1, 6) + 17.9565525054932*pow(xi1, 4) - 0.283524513244629*pow(xi1, 2) + 32438.1468057632*pow(xi2, 26) - 210476.088356972*pow(xi2, 24) + 604069.896524429*pow(xi2, 22) - 1009436.52295876*pow(xi2, 20) + 1087903.80975246*pow(xi2, 18) - 791305.484061241*pow(xi2, 16) + 395008.242015839*pow(xi2, 14) - 134917.356273651*pow(xi2, 12) + 30869.5774526596*pow(xi2, 10) - 4532.54437923431*pow(xi2, 8) + 395.989236831665*pow(xi2, 6) - 17.9565525054932*pow(xi2, 4) + 0.283524513244629*pow(xi2, 2); case 14: return -59870.4067587852*pow(xi1, 27) + 403474.480330944*pow(xi1, 25) - 1208504.61304951*pow(xi1, 23) + 2119959.62926197*pow(xi1, 21) - 2415794.7218442*pow(xi1, 19) + 1874880.78451395*pow(xi1, 17) - 1010324.84072685*pow(xi1, 15) + 378311.653501511*pow(xi1, 13) - 96925.0929780006*pow(xi1, 11) + 16429.6042370796*pow(xi1, 9) - 1737.12769031525*pow(xi1, 7) + 103.48644733429*pow(xi1, 5) - 2.88249921798706*pow(xi1, 3) + 0.0472540855407715*xi1 + 59870.4067587852*pow(xi2, 27) - 403474.480330944*pow(xi2, 25) + 1208504.61304951*pow(xi2, 23) - 2119959.62926197*pow(xi2, 21) + 2415794.7218442*pow(xi2, 19) - 1874880.78451395*pow(xi2, 17) + 1010324.84072685*pow(xi2, 15) - 378311.653501511*pow(xi2, 13) + 96925.0929780006*pow(xi2, 11) - 16429.6042370796*pow(xi2, 9) + 1737.12769031525*pow(xi2, 7) - 103.48644733429*pow(xi2, 5) + 2.88249921798706*pow(xi2, 3) - 0.0472540855407715*xi2; case 15: return -111023.419126868*pow(xi1, 28) + 776012.579911947*pow(xi1, 26) - 2421497.64727652*pow(xi1, 24) + 4449137.26589155*pow(xi1, 22) - 5345258.68610036*pow(xi1, 20) + 4409451.09540582*pow(xi1, 18) - 2551934.9433285*pow(xi1, 16) + 1040179.51673985*pow(xi1, 14) - 295400.64020741*pow(xi1, 12) + 56930.848058939*pow(xi1, 10) - 7106.93852126598*pow(xi1, 8) + 531.372191905975*pow(xi1, 6) - 20.7327300310135*pow(xi1, 4) + 0.307151556015015*pow(xi1, 2) + 111023.419126868*pow(xi2, 28) - 776012.579911947*pow(xi2, 26) + 2421497.64727652*pow(xi2, 24) - 4449137.26589155*pow(xi2, 22) + 5345258.68610036*pow(xi2, 20) - 4409451.09540582*pow(xi2, 18) + 2551934.9433285*pow(xi2, 16) - 1040179.51673985*pow(xi2, 14) + 295400.64020741*pow(xi2, 12) - 56930.848058939*pow(xi2, 10) + 7106.93852126598*pow(xi2, 8) - 531.372191905975*pow(xi2, 6) + 20.7327300310135*pow(xi2, 4) - 0.307151556015015*pow(xi2, 2); case 16: return -206733.263201755*pow(xi1, 29) + 1496760.16896963*pow(xi1, 27) - 4857884.80440784*pow(xi1, 25) + 9329597.56286144*pow(xi1, 23) - 11786356.0179684*pow(xi1, 21) + 10299603.4912133*pow(xi1, 19) - 6373044.32309031*pow(xi1, 17) + 2810481.91080666*pow(xi1, 15) - 877167.455323935*pow(xi1, 13) + 189815.69656992*pow(xi1, 11) - 27439.3842566013*pow(xi1, 9) + 2491.43790721893*pow(xi1, 7) - 128.082198858261*pow(xi1, 5) + 3.07151556015015*pow(xi1, 3) - 0.0438787937164307*xi1 + 206733.263201755*pow(xi2, 29) - 1496760.16896963*pow(xi2, 27) + 4857884.80440784*pow(xi2, 25) - 9329597.56286144*pow(xi2, 23) + 11786356.0179684*pow(xi2, 21) - 10299603.4912133*pow(xi2, 19) + 6373044.32309031*pow(xi2, 17) - 2810481.91080666*pow(xi2, 15) + 877167.455323935*pow(xi2, 13) - 189815.69656992*pow(xi2, 11) + 27439.3842566013*pow(xi2, 9) - 2491.43790721893*pow(xi2, 7) + 128.082198858261*pow(xi2, 5) - 3.07151556015015*pow(xi2, 3) + 0.0438787937164307*xi2; case 17: return -386361.498561502*pow(xi1, 30) + 2894010.4585737*pow(xi1, 28) - 9754961.69816315*pow(xi1, 26) + 19545735.5108708*pow(xi1, 24) - 25903712.4025375*pow(xi1, 22) + 23905846.5192221*pow(xi1, 20) - 15752194.5456511*pow(xi1, 18) + 7475804.41044366*pow(xi1, 16) - 2545558.64732444*pow(xi1, 14) + 612102.859781384*pow(xi1, 12) - 100879.986794829*pow(xi1, 10) + 10847.8250795603*pow(xi1, 8) - 702.302032828331*pow(xi1, 6) + 23.8042455911636*pow(xi1, 4) - 0.32909095287323*pow(xi1, 2) + 386361.498561502*pow(xi2, 30) - 2894010.4585737*pow(xi2, 28) + 9754961.69816315*pow(xi2, 26) - 19545735.5108708*pow(xi2, 24) + 25903712.4025375*pow(xi2, 22) - 23905846.5192221*pow(xi2, 20) + 15752194.5456511*pow(xi2, 18) - 7475804.41044366*pow(xi2, 16) + 2545558.64732444*pow(xi2, 14) - 612102.859781384*pow(xi2, 12) + 100879.986794829*pow(xi2, 10) - 10847.8250795603*pow(xi2, 8) + 702.302032828331*pow(xi2, 6) - 23.8042455911636*pow(xi2, 4) + 0.32909095287323*pow(xi2, 2); case 18: return -724427.809802815*pow(xi1, 31) + 5607607.86106624*pow(xi1, 29) - 19603442.1230375*pow(xi1, 27) + 40909335.0543521*pow(xi1, 25) - 56752834.2872765*pow(xi1, 23) + 55161687.4630291*pow(xi1, 21) - 38569445.8929905*pow(xi1, 19) + 19607078.2719415*pow(xi1, 17) - 7238045.34529294*pow(xi1, 15) + 1917066.91166751*pow(xi1, 13) - 355638.555911556*pow(xi1, 11) + 44406.788155362*pow(xi1, 9) - 3502.04605682194*pow(xi1, 7) + 156.973642095923*pow(xi1, 5) - 3.30462165176868*pow(xi1, 3) + 0.0411363691091537*xi1 + 724427.809802815*pow(xi2, 31) - 5607607.86106624*pow(xi2, 29) + 19603442.1230375*pow(xi2, 27) - 40909335.0543521*pow(xi2, 25) + 56752834.2872765*pow(xi2, 23) - 55161687.4630291*pow(xi2, 21) + 38569445.8929905*pow(xi2, 19) - 19607078.2719415*pow(xi2, 17) + 7238045.34529294*pow(xi2, 15) - 1917066.91166751*pow(xi2, 13) + 355638.555911556*pow(xi2, 11) - 44406.788155362*pow(xi2, 9) + 3502.04605682194*pow(xi2, 7) - 156.973642095923*pow(xi2, 5) + 3.30462165176868*pow(xi2, 3) - 0.0411363691091537*xi2; case 19: return -1362297.14968434*pow(xi1, 32) + 10886145.5732351*pow(xi1, 30) - 39418452.9770324*pow(xi1, 28) + 85539062.1861455*pow(xi1, 26) - 123972950.147591*pow(xi1, 24) + 126591326.678001*pow(xi1, 22) - 93626216.0619297*pow(xi1, 20) + 50771905.0317212*pow(xi1, 18) - 20208229.3198293*pow(xi1, 16) + 5851373.28615982*pow(xi1, 14) - 1208924.23957804*pow(xi1, 12) + 172527.140995972*pow(xi1, 10) - 16158.0459508058*pow(xi1, 8) + 914.918098993599*pow(xi1, 6) - 27.2151361964643*pow(xi1, 4) + 0.349659137427807*pow(xi1, 2) + 1362297.14968434*pow(xi2, 32) - 10886145.5732351*pow(xi2, 30) + 39418452.9770324*pow(xi2, 28) - 85539062.1861455*pow(xi2, 26) + 123972950.147591*pow(xi2, 24) - 126591326.678001*pow(xi2, 22) + 93626216.0619297*pow(xi2, 20) - 50771905.0317212*pow(xi2, 18) + 20208229.3198293*pow(xi2, 16) - 5851373.28615982*pow(xi2, 14) + 1208924.23957804*pow(xi2, 12) - 172527.140995972*pow(xi2, 10) + 16158.0459508058*pow(xi2, 8) - 914.918098993599*pow(xi2, 6) + 27.2151361964643*pow(xi2, 4) - 0.349659137427807*pow(xi2, 2); case 20: return -2568641.0903139*pow(xi1, 33) + 21168864.3506505*pow(xi1, 31) - 79300066.27011*pow(xi1, 29) + 178680095.728121*pow(xi1, 27) - 270052767.826836*pow(xi1, 25) + 289047535.62412*pow(xi1, 23) - 225479030.866805*pow(xi1, 21) + 129953892.378422*pow(xi1, 19) - 55500176.6003122*pow(xi1, 17) + 17455090.6417334*pow(xi1, 15) - 3980427.21410811*pow(xi1, 13) + 640853.077293187*pow(xi1, 11) - 69867.2311975062*pow(xi1, 9) + 4832.35144087672*pow(xi1, 7) - 190.587540507317*pow(xi1, 5) + 3.57429340481758*pow(xi1, 3) - 0.0388510152697563*xi1 + 2568641.0903139*pow(xi2, 33) - 21168864.3506505*pow(xi2, 31) + 79300066.27011*pow(xi2, 29) - 178680095.728121*pow(xi2, 27) + 270052767.826836*pow(xi2, 25) - 289047535.62412*pow(xi2, 23) + 225479030.866805*pow(xi2, 21) - 129953892.378422*pow(xi2, 19) + 55500176.6003122*pow(xi2, 17) - 17455090.6417334*pow(xi2, 15) + 3980427.21410811*pow(xi2, 13) - 640853.077293187*pow(xi2, 11) + 69867.2311975062*pow(xi2, 9) - 4832.35144087672*pow(xi2, 7) + 190.587540507317*pow(xi2, 5) - 3.57429340481758*pow(xi2, 3) + 0.0388510152697563*xi2; case 21: return -4854970.23416916*pow(xi1, 34) + 41225938.4348919*pow(xi1, 32) - 159592087.223465*pow(xi1, 30) + 372872774.309806*pow(xi1, 28) - 586702614.054534*pow(xi1, 26) + 656876682.631329*pow(xi1, 24) - 539060699.397119*pow(xi1, 22) + 329113221.379803*pow(xi1, 20) - 150174585.707234*pow(xi1, 18) + 51011662.3364239*pow(xi1, 16) - 12741096.0830762*pow(xi1, 14) + 2289275.60617186*pow(xi1, 12) - 285898.280884445*pow(xi1, 10) + 23541.6950006783*pow(xi1, 8) - 1176.05131302774*pow(xi1, 6) + 31.0031101852655*pow(xi1, 4) - 0.369084645062685*pow(xi1, 2) + 4854970.23416916*pow(xi2, 34) - 41225938.4348919*pow(xi2, 32) + 159592087.223465*pow(xi2, 30) - 372872774.309806*pow(xi2, 28) + 586702614.054534*pow(xi2, 26) - 656876682.631329*pow(xi2, 24) + 539060699.397119*pow(xi2, 22) - 329113221.379803*pow(xi2, 20) + 150174585.707234*pow(xi2, 18) - 51011662.3364239*pow(xi2, 16) + 12741096.0830762*pow(xi2, 14) - 2289275.60617186*pow(xi2, 12) + 285898.280884445*pow(xi2, 10) - 23541.6950006783*pow(xi2, 8) + 1176.05131302774*pow(xi2, 6) - 31.0031101852655*pow(xi2, 4) + 0.369084645062685*pow(xi2, 2); case 22: return -9196700.75786901*pow(xi1, 35) + 80394710.8035937*pow(xi1, 33) - 321276134.119334*pow(xi1, 31) + 777364493.20886*pow(xi1, 29) - 1271443221.77745*pow(xi1, 27) + 1486223279.32134*pow(xi1, 25) - 1280060550.32711*pow(xi1, 23) + 825415347.600242*pow(xi1, 21) - 400883985.039707*pow(xi1, 19) + 146346571.587733*pow(xi1, 17) - 39771130.9808454*pow(xi1, 15) + 7902101.94451205*pow(xi1, 13) - 1115630.10317823*pow(xi1, 11) + 107179.474305473*pow(xi1, 9) - 6556.41963489354*pow(xi1, 7) + 229.423015370965*pow(xi1, 5) - 3.87538877315819*pow(xi1, 3) + 0.0369084645062685*xi1 + 9196700.75786901*pow(xi2, 35) - 80394710.8035937*pow(xi2, 33) + 321276134.119334*pow(xi2, 31) - 777364493.20886*pow(xi2, 29) + 1271443221.77745*pow(xi2, 27) - 1486223279.32134*pow(xi2, 25) + 1280060550.32711*pow(xi2, 23) - 825415347.600242*pow(xi2, 21) + 400883985.039707*pow(xi2, 19) - 146346571.587733*pow(xi2, 17) + 39771130.9808454*pow(xi2, 15) - 7902101.94451205*pow(xi2, 13) + 1115630.10317823*pow(xi2, 11) - 107179.474305473*pow(xi2, 9) + 6556.41963489354*pow(xi2, 7) - 229.423015370965*pow(xi2, 5) + 3.87538877315819*pow(xi2, 3) - 0.0369084645062685*xi2; case 23: return -17456700.5126217*pow(xi1, 36) + 156968380.219184*pow(xi1, 34) - 646914534.321435*pow(xi1, 32) + 1619113705.96732*pow(xi1, 30) - 2748803401.56655*pow(xi1, 28) + 3348835568.88779*pow(xi1, 26) - 3020630767.10615*pow(xi1, 24) + 2051665199.17433*pow(xi1, 22) - 1056985506.89965*pow(xi1, 20) + 412874103.839298*pow(xi1, 18) - 121377909.228796*pow(xi1, 16) + 26460296.7336268*pow(xi1, 14) - 4176886.19847074*pow(xi1, 12) + 460613.724740993*pow(xi1, 10) - 33621.2121150177*pow(xi1, 8) + 1493.31647392362*pow(xi1, 6) - 35.2014480228536*pow(xi1, 4) + 0.387538877315819*pow(xi1, 2) + 17456700.5126217*pow(xi2, 36) - 156968380.219184*pow(xi2, 34) + 646914534.321435*pow(xi2, 32) - 1619113705.96732*pow(xi2, 30) + 2748803401.56655*pow(xi2, 28) - 3348835568.88779*pow(xi2, 26) + 3020630767.10615*pow(xi2, 24) - 2051665199.17433*pow(xi2, 22) + 1056985506.89965*pow(xi2, 20) - 412874103.839298*pow(xi2, 18) + 121377909.228796*pow(xi2, 16) - 26460296.7336268*pow(xi2, 14) + 4176886.19847074*pow(xi2, 12) - 460613.724740993*pow(xi2, 10) + 33621.2121150177*pow(xi2, 8) - 1493.31647392362*pow(xi2, 6) + 35.2014480228536*pow(xi2, 4) - 0.387538877315819*pow(xi2, 2); case 24: return -33197754.7832167*pow(xi1, 37) + 306814736.282442*pow(xi1, 35) - 1302848393.68207*pow(xi1, 33) + 3369219126.11369*pow(xi1, 31) - 5929426758.38608*pow(xi1, 29) + 7516677563.57637*pow(xi1, 27) - 7086469405.995*pow(xi1, 25) + 5057597873.96622*pow(xi1, 23) - 2755445247.24114*pow(xi1, 21) + 1147170493.78579*pow(xi1, 19) - 362977881.300088*pow(xi1, 17) + 86233348.1594231*pow(xi1, 15) - 15078836.0463731*pow(xi1, 13) + 1883365.51848263*pow(xi1, 11) - 160720.290966164*pow(xi1, 9) + 8760.19049741328*pow(xi1, 7) - 274.036960671656*pow(xi1, 5) + 4.20420963875949*pow(xi1, 3) - 0.0352308070287108*xi1 + 33197754.7832167*pow(xi2, 37) - 306814736.282442*pow(xi2, 35) + 1302848393.68207*pow(xi2, 33) - 3369219126.11369*pow(xi2, 31) + 5929426758.38608*pow(xi2, 29) - 7516677563.57637*pow(xi2, 27) + 7086469405.995*pow(xi2, 25) - 5057597873.96622*pow(xi2, 23) + 2755445247.24114*pow(xi2, 21) - 1147170493.78579*pow(xi2, 19) + 362977881.300088*pow(xi2, 17) - 86233348.1594231*pow(xi2, 15) + 15078836.0463731*pow(xi2, 13) - 1883365.51848263*pow(xi2, 11) + 160720.290966164*pow(xi2, 9) - 8760.19049741328*pow(xi2, 7) + 274.036960671656*pow(xi2, 5) - 4.20420963875949*pow(xi2, 3) + 0.0352308070287108*xi2; case 25: return -63242862.3730616*pow(xi1, 38) + 600312701.027588*pow(xi1, 36) - 2624222778.80029*pow(xi1, 34) + 7004739827.56913*pow(xi1, 32) - 12763068066.1337*pow(xi1, 30) + 16810599588.6806*pow(xi1, 28) - 16534802720.9836*pow(xi1, 26) + 12372295008.3099*pow(xi1, 24) - 7108501413.12895*pow(xi1, 22) + 3143270424.39716*pow(xi1, 20) - 1065643053.90079*pow(xi1, 18) + 274273190.369964*pow(xi1, 16) - 52704628.8232462*pow(xi1, 14) + 7373057.56538108*pow(xi1, 12) - 723594.509931805*pow(xi1, 10) + 47156.4855376538*pow(xi1, 8) - 1875.18906310899*pow(xi1, 6) + 39.8401709483005*pow(xi1, 4) - 0.405154280830175*pow(xi1, 2) + 63242862.3730616*pow(xi2, 38) - 600312701.027588*pow(xi2, 36) + 2624222778.80029*pow(xi2, 34) - 7004739827.56913*pow(xi2, 32) + 12763068066.1337*pow(xi2, 30) - 16810599588.6806*pow(xi2, 28) + 16534802720.9836*pow(xi2, 26) - 12372295008.3099*pow(xi2, 24) + 7108501413.12895*pow(xi2, 22) - 3143270424.39716*pow(xi2, 20) + 1065643053.90079*pow(xi2, 18) - 274273190.369964*pow(xi2, 16) + 52704628.8232462*pow(xi2, 14) - 7373057.56538108*pow(xi2, 12) + 723594.509931805*pow(xi2, 10) - 47156.4855376538*pow(xi2, 8) + 1875.18906310899*pow(xi2, 6) - 39.8401709483005*pow(xi2, 4) + 0.405154280830175*pow(xi2, 2); case 26: return -120674948.929795*pow(xi1, 39) + 1175653580.47207*pow(xi1, 37) - 5286302218.13123*pow(xi1, 35) + 14550493221.5513*pow(xi1, 33) - 27416907540.5478*pow(xi1, 31) + 37467926302.5102*pow(xi1, 29) - 38384854462.9983*pow(xi1, 27) + 30051114463.0346*pow(xi1, 25) - 18162427058.8831*pow(xi1, 23) + 8503083836.0135*pow(xi1, 21) - 3076420020.57996*pow(xi1, 19) + 853376938.104283*pow(xi1, 17) - 178972641.335269*pow(xi1, 15) + 27778770.6562195*pow(xi1, 13) - 3093109.45395475*pow(xi1, 11) + 236110.827741453*pow(xi1, 9) - 11542.8213445254*pow(xi1, 7) + 325.035021796008*pow(xi1, 5) - 4.55798565933947*pow(xi1, 3) + 0.0337628567358479*xi1 + 120674948.929795*pow(xi2, 39) - 1175653580.47207*pow(xi2, 37) + 5286302218.13123*pow(xi2, 35) - 14550493221.5513*pow(xi2, 33) + 27416907540.5478*pow(xi2, 31) - 37467926302.5102*pow(xi2, 29) + 38384854462.9983*pow(xi2, 27) - 30051114463.0346*pow(xi2, 25) + 18162427058.8831*pow(xi2, 23) - 8503083836.0135*pow(xi2, 21) + 3076420020.57996*pow(xi2, 19) - 853376938.104283*pow(xi2, 17) + 178972641.335269*pow(xi2, 15) - 27778770.6562195*pow(xi2, 13) + 3093109.45395475*pow(xi2, 11) - 236110.827741453*pow(xi2, 9) + 11542.8213445254*pow(xi2, 7) - 325.035021796008*pow(xi2, 5) + 4.55798565933947*pow(xi2, 3) - 0.0337628567358479*xi2; case 27: return -230609827.404838*pow(xi1, 40) + 2304355191.45273*pow(xi1, 38) - 10649642753.0921*pow(xi1, 36) + 30199427443.2348*pow(xi1, 34) - 58782403427.0816*pow(xi1, 32) + 83241776377.9778*pow(xi1, 30) - 88685550540.2*pow(xi1, 28) + 72508203254.0171*pow(xi1, 26) - 45992495366.913*pow(xi1, 24) + 22732658206.1636*pow(xi1, 22) - 8745833685.74116*pow(xi1, 20) + 2602712863.83558*pow(xi1, 18) - 592164491.208723*pow(xi1, 16) + 101153806.264636*pow(xi1, 14) - 12635421.9150379*pow(xi1, 12) + 1111150.22967046*pow(xi1, 10) - 65066.1647220088*pow(xi1, 8) + 2331.07203618478*pow(xi1, 6) - 44.9468030295975*pow(xi1, 4) + 0.422035709198099*pow(xi1, 2) + 230609827.404838*pow(xi2, 40) - 2304355191.45273*pow(xi2, 38) + 10649642753.0921*pow(xi2, 36) - 30199427443.2348*pow(xi2, 34) + 58782403427.0816*pow(xi2, 32) - 83241776377.9778*pow(xi2, 30) + 88685550540.2*pow(xi2, 28) - 72508203254.0171*pow(xi2, 26) + 45992495366.913*pow(xi2, 24) - 22732658206.1636*pow(xi2, 22) + 8745833685.74116*pow(xi2, 20) - 2602712863.83558*pow(xi2, 18) + 592164491.208723*pow(xi2, 16) - 101153806.264636*pow(xi2, 14) + 12635421.9150379*pow(xi2, 12) - 1111150.22967046*pow(xi2, 10) + 65066.1647220088*pow(xi2, 8) - 2331.07203618478*pow(xi2, 6) + 44.9468030295975*pow(xi2, 4) - 0.422035709198099*pow(xi2, 2); case 28: return -441317118.110572*pow(xi1, 41) + 4520215420.35694*pow(xi1, 39) - 21455533946.584*pow(xi1, 37) + 62627825964.2131*pow(xi1, 35) - 125800745105.801*pow(xi1, 33) + 184377197521.378*pow(xi1, 31) - 203988345809.981*pow(xi1, 29) + 173868453386.539*pow(xi1, 27) - 115502709028.459*pow(xi1, 25) + 60116117167.5139*pow(xi1, 23) - 24514412771.7272*pow(xi1, 21) + 7794716434.77033*pow(xi1, 19) - 1913781501.17792*pow(xi1, 17) + 357278354.291477*pow(xi1, 15) - 49588694.3055459*pow(xi1, 13) + 4955565.44394926*pow(xi1, 11) - 340478.339523105*pow(xi1, 9) + 15018.1416393653*pow(xi1, 7) - 383.065581096453*pow(xi1, 5) + 4.93457136908546*pow(xi1, 3) - 0.0324642853229307*xi1 + 441317118.110572*pow(xi2, 41) - 4520215420.35694*pow(xi2, 39) + 21455533946.584*pow(xi2, 37) - 62627825964.2131*pow(xi2, 35) + 125800745105.801*pow(xi2, 33) - 184377197521.378*pow(xi2, 31) + 203988345809.981*pow(xi2, 29) - 173868453386.539*pow(xi2, 27) + 115502709028.459*pow(xi2, 25) - 60116117167.5139*pow(xi2, 23) + 24514412771.7272*pow(xi2, 21) - 7794716434.77033*pow(xi2, 19) + 1913781501.17792*pow(xi2, 17) - 357278354.291477*pow(xi2, 15) + 49588694.3055459*pow(xi2, 13) - 4955565.44394926*pow(xi2, 11) + 340478.339523105*pow(xi2, 9) - 15018.1416393653*pow(xi2, 7) + 383.065581096453*pow(xi2, 5) - 4.93457136908546*pow(xi2, 3) + 0.0324642853229307*xi2; case 29: return -845663225.444685*pow(xi1, 42) + 8873258791.09151*pow(xi1, 40) - 43227100388.3104*pow(xi1, 38) + 129776422613.693*pow(xi1, 36) - 268760127505.3*pow(xi1, 34) + 407220712012.68*pow(xi1, 32) - 467232929734.276*pow(xi1, 30) + 414509044430.427*pow(xi1, 28) - 287829964191.486*pow(xi1, 26) + 157377876444.681*pow(xi1, 24) - 67824279307.8417*pow(xi1, 22) + 22957616604.4428*pow(xi1, 20) - 6054293730.11595*pow(xi1, 18) + 1227723888.89943*pow(xi1, 16) - 187795227.13452*pow(xi1, 14) + 21084402.1336859*pow(xi1, 12) - 1671508.25061792*pow(xi1, 10) + 88451.3556036221*pow(xi1, 8) - 2871.35565824312*pow(xi1, 6) + 50.546892247803*pow(xi1, 4) - 0.438267851859564*pow(xi1, 2) + 845663225.444685*pow(xi2, 42) - 8873258791.09151*pow(xi2, 40) + 43227100388.3104*pow(xi2, 38) - 129776422613.693*pow(xi2, 36) + 268760127505.3*pow(xi2, 34) - 407220712012.68*pow(xi2, 32) + 467232929734.276*pow(xi2, 30) - 414509044430.427*pow(xi2, 28) + 287829964191.486*pow(xi2, 26) - 157377876444.681*pow(xi2, 24) + 67824279307.8417*pow(xi2, 22) - 22957616604.4428*pow(xi2, 20) + 6054293730.11595*pow(xi2, 18) - 1227723888.89943*pow(xi2, 16) + 187795227.13452*pow(xi2, 14) - 21084402.1336859*pow(xi2, 12) + 1671508.25061792*pow(xi2, 10) - 88451.3556036221*pow(xi2, 8) + 2871.35565824312*pow(xi2, 6) - 50.546892247803*pow(xi2, 4) + 0.438267851859564*pow(xi2, 2); default: return 0.; } case 17: switch(j) { case 0: return -417.689208984375*pow(xi1, 17)*y1t + 1713.96606445313*pow(xi1, 15)*y1t - 2856.61010742188*pow(xi1, 13)*y1t + 2475.72875976563*pow(xi1, 11)*y1t - 1184.04418945313*pow(xi1, 9)*y1t + 304.468505859375*pow(xi1, 7)*y1t - 37.390869140625*pow(xi1, 5)*y1t + 1.571044921875*pow(xi1, 3)*y1t + 417.689208984375*pow(xi2, 17)*y1t - 1713.96606445313*pow(xi2, 15)*y1t + 2856.61010742188*pow(xi2, 13)*y1t - 2475.72875976563*pow(xi2, 11)*y1t + 1184.04418945313*pow(xi2, 9)*y1t - 304.468505859375*pow(xi2, 7)*y1t + 37.390869140625*pow(xi2, 5)*y1t - 1.571044921875*pow(xi2, 3)*y1t; case 1: return -208.844604492188*pow(xi1, 17)*y1r + 73.9657974243164*pow(xi1, 16)*y1r + 856.983032226563*pow(xi1, 15)*y1r - 306.065368652344*pow(xi1, 14)*y1r - 1428.30505371094*pow(xi1, 13)*y1r + 515.776824951172*pow(xi1, 12)*y1r + 1237.86437988281*pow(xi1, 11)*y1r - 453.883605957031*pow(xi1, 10)*y1r - 592.022094726563*pow(xi1, 9)*y1r + 222.008285522461*pow(xi1, 8)*y1r + 152.234252929688*pow(xi1, 7)*y1r - 59.2022094726563*pow(xi1, 6)*y1r - 18.6954345703125*pow(xi1, 5)*y1r + 7.78976440429688*pow(xi1, 4)*y1r + 0.7855224609375*pow(xi1, 3)*y1r - 0.39276123046875*pow(xi1, 2)*y1r + 208.844604492188*pow(xi2, 17)*y1r - 73.9657974243164*pow(xi2, 16)*y1r - 856.983032226563*pow(xi2, 15)*y1r + 306.065368652344*pow(xi2, 14)*y1r + 1428.30505371094*pow(xi2, 13)*y1r - 515.776824951172*pow(xi2, 12)*y1r - 1237.86437988281*pow(xi2, 11)*y1r + 453.883605957031*pow(xi2, 10)*y1r + 592.022094726563*pow(xi2, 9)*y1r - 222.008285522461*pow(xi2, 8)*y1r - 152.234252929688*pow(xi2, 7)*y1r + 59.2022094726563*pow(xi2, 6)*y1r + 18.6954345703125*pow(xi2, 5)*y1r - 7.78976440429688*pow(xi2, 4)*y1r - 0.7855224609375*pow(xi2, 3)*y1r + 0.39276123046875*pow(xi2, 2)*y1r; case 2: return 417.689208984375*pow(xi1, 17)*y2t - 1713.96606445313*pow(xi1, 15)*y2t + 2856.61010742188*pow(xi1, 13)*y2t - 2475.72875976563*pow(xi1, 11)*y2t + 1184.04418945313*pow(xi1, 9)*y2t - 304.468505859375*pow(xi1, 7)*y2t + 37.390869140625*pow(xi1, 5)*y2t - 1.571044921875*pow(xi1, 3)*y2t - 417.689208984375*pow(xi2, 17)*y2t + 1713.96606445313*pow(xi2, 15)*y2t - 2856.61010742188*pow(xi2, 13)*y2t + 2475.72875976563*pow(xi2, 11)*y2t - 1184.04418945313*pow(xi2, 9)*y2t + 304.468505859375*pow(xi2, 7)*y2t - 37.390869140625*pow(xi2, 5)*y2t + 1.571044921875*pow(xi2, 3)*y2t; case 3: return -208.844604492188*pow(xi1, 17)*y2r - 73.9657974243164*pow(xi1, 16)*y2r + 856.983032226563*pow(xi1, 15)*y2r + 306.065368652344*pow(xi1, 14)*y2r - 1428.30505371094*pow(xi1, 13)*y2r - 515.776824951172*pow(xi1, 12)*y2r + 1237.86437988281*pow(xi1, 11)*y2r + 453.883605957031*pow(xi1, 10)*y2r - 592.022094726563*pow(xi1, 9)*y2r - 222.008285522461*pow(xi1, 8)*y2r + 152.234252929688*pow(xi1, 7)*y2r + 59.2022094726563*pow(xi1, 6)*y2r - 18.6954345703125*pow(xi1, 5)*y2r - 7.78976440429688*pow(xi1, 4)*y2r + 0.7855224609375*pow(xi1, 3)*y2r + 0.39276123046875*pow(xi1, 2)*y2r + 208.844604492188*pow(xi2, 17)*y2r + 73.9657974243164*pow(xi2, 16)*y2r - 856.983032226563*pow(xi2, 15)*y2r - 306.065368652344*pow(xi2, 14)*y2r + 1428.30505371094*pow(xi2, 13)*y2r + 515.776824951172*pow(xi2, 12)*y2r - 1237.86437988281*pow(xi2, 11)*y2r - 453.883605957031*pow(xi2, 10)*y2r + 592.022094726563*pow(xi2, 9)*y2r + 222.008285522461*pow(xi2, 8)*y2r - 152.234252929688*pow(xi2, 7)*y2r - 59.2022094726563*pow(xi2, 6)*y2r + 18.6954345703125*pow(xi2, 5)*y2r + 7.78976440429688*pow(xi2, 4)*y2r - 0.7855224609375*pow(xi2, 3)*y2r - 0.39276123046875*pow(xi2, 2)*y2r; case 4: return -394.484252929688*pow(xi1, 18) + 1754.77478027344*pow(xi1, 16) - 3264.697265625*pow(xi1, 14) + 3300.9716796875*pow(xi1, 12) - 1973.40698242188*pow(xi1, 10) + 710.426513671875*pow(xi1, 8) - 149.5634765625*pow(xi1, 6) + 16.7578125*pow(xi1, 4) - 0.7855224609375*pow(xi1, 2) + 394.484252929688*pow(xi2, 18) - 1754.77478027344*pow(xi2, 16) + 3264.697265625*pow(xi2, 14) - 3300.9716796875*pow(xi2, 12) + 1973.40698242188*pow(xi2, 10) - 710.426513671875*pow(xi2, 8) + 149.5634765625*pow(xi2, 6) - 16.7578125*pow(xi2, 4) + 0.7855224609375*pow(xi2, 2); case 5: return -622.869873046875*pow(xi1, 19) + 2938.2275390625*pow(xi1, 17) - 5840.1806640625*pow(xi1, 15) + 6348.0224609375*pow(xi1, 13) - 4090.33447265625*pow(xi1, 11) + 1578.7255859375*pow(xi1, 9) - 348.9814453125*pow(xi1, 7) + 38.9619140625*pow(xi1, 5) - 1.571044921875*pow(xi1, 3) + 622.869873046875*pow(xi2, 19) - 2938.2275390625*pow(xi2, 17) + 5840.1806640625*pow(xi2, 15) - 6348.0224609375*pow(xi2, 13) + 4090.33447265625*pow(xi2, 11) - 1578.7255859375*pow(xi2, 9) + 348.9814453125*pow(xi2, 7) - 38.9619140625*pow(xi2, 5) + 1.571044921875*pow(xi2, 3); case 6: return -1035.52116394043*pow(xi1, 20) + 5152.10037231445*pow(xi1, 18) - 10897.6274871826*pow(xi1, 16) + 12764.0594482422*pow(xi1, 14) - 9037.30697631836*pow(xi1, 12) + 3966.54803466797*pow(xi1, 10) - 1067.19772338867*pow(xi1, 8) + 168.992065429688*pow(xi1, 6) - 14.6303558349609*pow(xi1, 4) + 0.589141845703125*pow(xi1, 2) + 1035.52116394043*pow(xi2, 20) - 5152.10037231445*pow(xi2, 18) + 10897.6274871826*pow(xi2, 16) - 12764.0594482422*pow(xi2, 14) + 9037.30697631836*pow(xi2, 12) - 3966.54803466797*pow(xi2, 10) + 1067.19772338867*pow(xi2, 8) - 168.992065429688*pow(xi2, 6) + 14.6303558349609*pow(xi2, 4) - 0.589141845703125*pow(xi2, 2); case 7: return -1775.17913818359*pow(xi1, 21) + 9283.98284912109*pow(xi1, 19) - 20812.4450683594*pow(xi1, 17) + 26115.7644042969*pow(xi1, 15) - 20094.2510986328*pow(xi1, 13) + 9762.98254394531*pow(xi1, 11) - 2970.49682617188*pow(xi1, 9) + 539.915771484375*pow(xi1, 7) - 52.2372436523438*pow(xi1, 5) + 1.96380615234375*pow(xi1, 3) + 1775.17913818359*pow(xi2, 21) - 9283.98284912109*pow(xi2, 19) + 20812.4450683594*pow(xi2, 17) - 26115.7644042969*pow(xi2, 15) + 20094.2510986328*pow(xi2, 13) - 9762.98254394531*pow(xi2, 11) + 2970.49682617188*pow(xi2, 9) - 539.915771484375*pow(xi2, 7) + 52.2372436523438*pow(xi2, 5) - 1.96380615234375*pow(xi2, 3); case 8: return -3106.56349182129*pow(xi1, 22) + 17032.5377655029*pow(xi1, 20) - 40329.7801971436*pow(xi1, 18) + 53967.8263092041*pow(xi1, 16) - 44844.786529541*pow(xi1, 14) + 23938.3236999512*pow(xi1, 12) - 8206.77645874023*pow(xi1, 10) + 1755.44631958008*pow(xi1, 8) - 220.63362121582*pow(xi1, 6) + 14.8921966552734*pow(xi1, 4) - 0.490951538085938*pow(xi1, 2) + 3106.56349182129*pow(xi2, 22) - 17032.5377655029*pow(xi2, 20) + 40329.7801971436*pow(xi2, 18) - 53967.8263092041*pow(xi2, 16) + 44844.786529541*pow(xi2, 14) - 23938.3236999512*pow(xi2, 12) + 8206.77645874023*pow(xi2, 10) - 1755.44631958008*pow(xi2, 8) + 220.63362121582*pow(xi2, 6) - 14.8921966552734*pow(xi2, 4) + 0.490951538085938*pow(xi2, 2); case 9: return -5518.49166870117*pow(xi1, 23) + 31647.1591186523*pow(xi1, 21) - 78913.8542175293*pow(xi1, 19) + 112169.556884766*pow(xi1, 17) - 100115.90423584*pow(xi1, 15) + 58260.7701416016*pow(xi1, 13) - 22223.8673706055*pow(xi1, 11) + 5444.01977539063*pow(xi1, 9) - 813.997650146484*pow(xi1, 7) + 66.9003295898438*pow(xi1, 5) - 2.29110717773438*pow(xi1, 3) + 5518.49166870117*pow(xi2, 23) - 31647.1591186523*pow(xi2, 21) + 78913.8542175293*pow(xi2, 19) - 112169.556884766*pow(xi2, 17) + 100115.90423584*pow(xi2, 15) - 58260.7701416016*pow(xi2, 13) + 22223.8673706055*pow(xi2, 11) - 5444.01977539063*pow(xi2, 9) + 813.997650146484*pow(xi2, 7) - 66.9003295898438*pow(xi2, 5) + 2.29110717773438*pow(xi2, 3); case 10: return -9916.03971719742*pow(xi1, 24) + 59359.465341568*pow(xi1, 22) - 155468.773369789*pow(xi1, 20) + 233922.147989273*pow(xi1, 18) - 223206.835935116*pow(xi1, 16) + 140675.350513458*pow(xi1, 14) - 59143.3052806854*pow(xi1, 12) + 16367.7127723694*pow(xi1, 10) - 2871.48042440414*pow(xi1, 8) + 297.586183547974*pow(xi1, 6) - 16.2525415420532*pow(xi1, 4) + 0.429582595825195*pow(xi1, 2) + 9916.03971719742*pow(xi2, 24) - 59359.465341568*pow(xi2, 22) + 155468.773369789*pow(xi2, 20) - 233922.147989273*pow(xi2, 18) + 223206.835935116*pow(xi2, 16) - 140675.350513458*pow(xi2, 14) + 59143.3052806854*pow(xi2, 12) - 16367.7127723694*pow(xi2, 10) + 2871.48042440414*pow(xi2, 8) - 297.586183547974*pow(xi2, 6) + 16.2525415420532*pow(xi2, 4) - 0.429582595825195*pow(xi2, 2); case 11: return -17981.0853538513*pow(xi1, 25) + 112153.828525543*pow(xi1, 23) - 307810.082950592*pow(xi1, 21) + 488743.176174164*pow(xi1, 19) - 496518.425559998*pow(xi1, 17) + 336997.347633362*pow(xi1, 15) - 154909.011726379*pow(xi1, 13) + 47860.7222213745*pow(xi1, 11) - 9660.37977218628*pow(xi1, 9) + 1205.35966873169*pow(xi1, 7) - 84.0263557434082*pow(xi1, 5) + 2.57749557495117*pow(xi1, 3) + 17981.0853538513*pow(xi2, 25) - 112153.828525543*pow(xi2, 23) + 307810.082950592*pow(xi2, 21) - 488743.176174164*pow(xi2, 19) + 496518.425559998*pow(xi2, 17) - 336997.347633362*pow(xi2, 15) + 154909.011726379*pow(xi2, 13) - 47860.7222213745*pow(xi2, 11) + 9660.37977218628*pow(xi2, 9) - 1205.35966873169*pow(xi2, 7) + 84.0263557434082*pow(xi2, 5) - 2.57749557495117*pow(xi2, 3); case 12: return -32850.0597810745*pow(xi1, 26) + 213137.865185738*pow(xi1, 24) - 611679.07834053*pow(xi1, 22) + 1022103.32902718*pow(xi1, 20) - 1101504.66350079*pow(xi1, 18) + 801162.67781353*pow(xi1, 16) - 399911.571865082*pow(xi1, 14) + 136586.399288177*pow(xi1, 12) - 31250.190905571*pow(xi1, 10) + 4588.24283123016*pow(xi1, 8) - 400.869295120239*pow(xi1, 6) + 18.3002185821533*pow(xi1, 4) - 0.386624336242676*pow(xi1, 2) + 32850.0597810745*pow(xi2, 26) - 213137.865185738*pow(xi2, 24) + 611679.07834053*pow(xi2, 22) - 1022103.32902718*pow(xi2, 20) + 1101504.66350079*pow(xi2, 18) - 801162.67781353*pow(xi2, 16) + 399911.571865082*pow(xi2, 14) - 136586.399288177*pow(xi2, 12) + 31250.190905571*pow(xi2, 10) - 4588.24283123016*pow(xi2, 8) + 400.869295120239*pow(xi2, 6) - 18.3002185821533*pow(xi2, 4) + 0.386624336242676*pow(xi2, 2); case 13: return -60391.0189914703*pow(xi1, 27) + 406970.019607544*pow(xi1, 25) - 1218937.21246719*pow(xi1, 23) + 2138197.03727722*pow(xi1, 21) - 2436507.0156765*pow(xi1, 19) + 1890902.63150024*pow(xi1, 17) - 1018930.93498993*pow(xi1, 15) + 381524.08493042*pow(xi1, 13) - 97745.6159877777*pow(xi1, 11) + 16568.2724761963*pow(xi1, 9) - 1751.74945449829*pow(xi1, 7) + 104.337020874023*pow(xi1, 5) - 2.83524513244629*pow(xi1, 3) + 60391.0189914703*pow(xi2, 27) - 406970.019607544*pow(xi2, 25) + 1218937.21246719*pow(xi2, 23) - 2138197.03727722*pow(xi2, 21) + 2436507.0156765*pow(xi2, 19) - 1890902.63150024*pow(xi2, 17) + 1018930.93498993*pow(xi2, 15) - 381524.08493042*pow(xi2, 13) + 97745.6159877777*pow(xi2, 11) - 16568.2724761963*pow(xi2, 9) + 1751.74945449829*pow(xi2, 7) - 104.337020874023*pow(xi2, 5) + 2.83524513244629*pow(xi2, 3); case 14: return -111615.544028878*pow(xi1, 28) + 780137.430678606*pow(xi1, 26) - 2434327.0201534*pow(xi1, 24) + 4472634.49228525*pow(xi1, 22) - 5373401.24265254*pow(xi1, 20) + 4432596.53837848*pow(xi1, 18) - 2565290.6451391*pow(xi1, 16) + 1045607.6396513*pow(xi1, 14) - 296937.816326022*pow(xi1, 12) + 57226.2783515453*pow(xi1, 10) - 7143.71907627583*pow(xi1, 8) + 534.11292886734*pow(xi1, 6) - 20.8508652448654*pow(xi1, 4) + 0.354405641555786*pow(xi1, 2) + 111615.544028878*pow(xi2, 28) - 780137.430678606*pow(xi2, 26) + 2434327.0201534*pow(xi2, 24) - 4472634.49228525*pow(xi2, 22) + 5373401.24265254*pow(xi2, 20) - 4432596.53837848*pow(xi2, 18) + 2565290.6451391*pow(xi2, 16) - 1045607.6396513*pow(xi2, 14) + 296937.816326022*pow(xi2, 12) - 57226.2783515453*pow(xi2, 10) + 7143.71907627583*pow(xi2, 8) - 534.11292886734*pow(xi2, 6) + 20.8508652448654*pow(xi2, 4) - 0.354405641555786*pow(xi2, 2); case 15: return -207243.715703487*pow(xi1, 29) + 1500444.50169325*pow(xi1, 27) - 4869806.82453632*pow(xi1, 25) + 9352426.89430714*pow(xi1, 23) - 11815114.5594144*pow(xi1, 21) + 10324664.1370225*pow(xi1, 19) - 6388508.57412529*pow(xi1, 17) + 2817283.29321098*pow(xi1, 15) - 879284.628088474*pow(xi1, 13) + 190272.663624287*pow(xi1, 11) - 27505.2755784988*pow(xi1, 9) + 2497.40542316437*pow(xi1, 7) - 128.389350414276*pow(xi1, 5) + 3.07151556015015*pow(xi1, 3) + 207243.715703487*pow(xi2, 29) - 1500444.50169325*pow(xi2, 27) + 4869806.82453632*pow(xi2, 25) - 9352426.89430714*pow(xi2, 23) + 11815114.5594144*pow(xi2, 21) - 10324664.1370225*pow(xi2, 19) + 6388508.57412529*pow(xi2, 17) - 2817283.29321098*pow(xi2, 15) + 879284.628088474*pow(xi2, 13) - 190272.663624287*pow(xi2, 11) + 27505.2755784988*pow(xi2, 9) - 2497.40542316437*pow(xi2, 7) + 128.389350414276*pow(xi2, 5) - 3.07151556015015*pow(xi2, 3); case 16: return -386361.498561502*pow(xi1, 30) + 2894010.4585737*pow(xi1, 28) - 9754961.69816315*pow(xi1, 26) + 19545735.5108708*pow(xi1, 24) - 25903712.4025375*pow(xi1, 22) + 23905846.5192221*pow(xi1, 20) - 15752194.5456511*pow(xi1, 18) + 7475804.41044366*pow(xi1, 16) - 2545558.64732444*pow(xi1, 14) + 612102.859781384*pow(xi1, 12) - 100879.986794829*pow(xi1, 10) + 10847.8250795603*pow(xi1, 8) - 702.302032828331*pow(xi1, 6) + 23.8042455911636*pow(xi1, 4) - 0.32909095287323*pow(xi1, 2) + 386361.498561502*pow(xi2, 30) - 2894010.4585737*pow(xi2, 28) + 9754961.69816315*pow(xi2, 26) - 19545735.5108708*pow(xi2, 24) + 25903712.4025375*pow(xi2, 22) - 23905846.5192221*pow(xi2, 20) + 15752194.5456511*pow(xi2, 18) - 7475804.41044366*pow(xi2, 16) + 2545558.64732444*pow(xi2, 14) - 612102.859781384*pow(xi2, 12) + 100879.986794829*pow(xi2, 10) - 10847.8250795603*pow(xi2, 8) + 702.302032828331*pow(xi2, 6) - 23.8042455911636*pow(xi2, 4) + 0.32909095287323*pow(xi2, 2); case 17: return -722869.900534422*pow(xi1, 31) + 5595580.32399416*pow(xi1, 29) - 19561504.0544569*pow(xi1, 27) + 40822038.1444101*pow(xi1, 25) - 56632028.9066255*pow(xi1, 23) + 55044554.4813228*pow(xi1, 21) - 38487741.0992205*pow(xi1, 19) + 19565640.3415203*pow(xi1, 17) - 7222783.56616902*pow(xi1, 15) + 1913033.83341551*pow(xi1, 13) - 354892.038597822*pow(xi1, 11) + 44313.7788248062*pow(xi1, 9) - 3494.72652554512*pow(xi1, 7) + 156.647293567657*pow(xi1, 5) - 3.2909095287323*pow(xi1, 3) + 722869.900534422*pow(xi2, 31) - 5595580.32399416*pow(xi2, 29) + 19561504.0544569*pow(xi2, 27) - 40822038.1444101*pow(xi2, 25) + 56632028.9066255*pow(xi2, 23) - 55044554.4813228*pow(xi2, 21) + 38487741.0992205*pow(xi2, 19) - 19565640.3415203*pow(xi2, 17) + 7222783.56616902*pow(xi2, 15) - 1913033.83341551*pow(xi2, 13) + 354892.038597822*pow(xi2, 11) - 44313.7788248062*pow(xi2, 9) + 3494.72652554512*pow(xi2, 7) - 156.647293567657*pow(xi2, 5) + 3.2909095287323*pow(xi2, 3); case 18: return -1356792.91877652*pow(xi1, 32) + 10842269.5533821*pow(xi1, 30) - 39259962.6923692*pow(xi1, 28) + 85195948.6158689*pow(xi1, 26) - 123476826.547754*pow(xi1, 24) + 126085880.85278*pow(xi1, 22) - 93253229.5725235*pow(xi1, 20) + 50570086.7614826*pow(xi1, 18) - 20128075.8467776*pow(xi1, 16) + 5828214.06609189*pow(xi1, 14) - 1204149.47876306*pow(xi1, 12) + 171847.139445908*pow(xi1, 10) - 16094.489574926*pow(xi1, 8) + 911.328265182674*pow(xi1, 6) - 27.098583150655*pow(xi1, 4) + 0.308522768318653*pow(xi1, 2) + 1356792.91877652*pow(xi2, 32) - 10842269.5533821*pow(xi2, 30) + 39259962.6923692*pow(xi2, 28) - 85195948.6158689*pow(xi2, 26) + 123476826.547754*pow(xi2, 24) - 126085880.85278*pow(xi2, 22) + 93253229.5725235*pow(xi2, 20) - 50570086.7614826*pow(xi2, 18) + 20128075.8467776*pow(xi2, 16) - 5828214.06609189*pow(xi2, 14) + 1204149.47876306*pow(xi2, 12) - 171847.139445908*pow(xi2, 10) + 16094.489574926*pow(xi2, 8) - 911.328265182674*pow(xi2, 6) + 27.098583150655*pow(xi2, 4) - 0.308522768318653*pow(xi2, 2); case 19: return -2553963.1412264*pow(xi1, 33) + 21048178.9914865*pow(xi1, 31) - 78848995.5336358*pow(xi1, 29) + 177665999.267845*pow(xi1, 27) - 268523439.726083*pow(xi1, 25) + 287414158.917535*pow(xi1, 23) - 224207568.133305*pow(xi1, 21) + 129222615.574253*pow(xi1, 19) - 55188505.9515298*pow(xi1, 17) + 17357266.487902*pow(xi1, 15) - 3958163.94090767*pow(xi1, 13) + 637275.694173083*pow(xi1, 11) - 69477.9699251801*pow(xi1, 9) + 4805.48207871616*pow(xi1, 7) - 189.515252485871*pow(xi1, 5) + 3.49659137427807*pow(xi1, 3) + 2553963.1412264*pow(xi2, 33) - 21048178.9914865*pow(xi2, 31) + 78848995.5336358*pow(xi2, 29) - 177665999.267845*pow(xi2, 27) + 268523439.726083*pow(xi2, 25) - 287414158.917535*pow(xi2, 23) + 224207568.133305*pow(xi2, 21) - 129222615.574253*pow(xi2, 19) + 55188505.9515298*pow(xi2, 17) - 17357266.487902*pow(xi2, 15) + 3958163.94090767*pow(xi2, 13) - 637275.694173083*pow(xi2, 11) + 69477.9699251801*pow(xi2, 9) - 4805.48207871616*pow(xi2, 7) + 189.515252485871*pow(xi2, 5) - 3.49659137427807*pow(xi2, 3); case 20: return -4819979.45770668*pow(xi1, 34) + 40929461.0305161*pow(xi1, 32) - 158446829.516417*pow(xi1, 30) + 370202602.281114*pow(xi1, 28) - 582509869.76183*pow(xi1, 26) + 652191998.055786*pow(xi1, 24) - 535223944.487169*pow(xi1, 22) + 326775381.698712*pow(xi1, 20) - 149109899.969673*pow(xi1, 18) + 50650699.779417*pow(xi1, 16) - 12651109.289059*pow(xi1, 14) + 2273137.20335324*pow(xi1, 12) - 283886.523512423*pow(xi1, 10) + 23376.3450796902*pow(xi1, 8) - 1167.78381697834*pow(xi1, 6) + 30.6923020631075*pow(xi1, 4) - 0.291382614523172*pow(xi1, 2) + 4819979.45770668*pow(xi2, 34) - 40929461.0305161*pow(xi2, 32) + 158446829.516417*pow(xi2, 30) - 370202602.281114*pow(xi2, 28) + 582509869.76183*pow(xi2, 26) - 652191998.055786*pow(xi2, 24) + 535223944.487169*pow(xi2, 22) - 326775381.698712*pow(xi2, 20) + 149109899.969673*pow(xi2, 18) - 50650699.779417*pow(xi2, 16) + 12651109.289059*pow(xi2, 14) - 2273137.20335324*pow(xi2, 12) + 283886.523512423*pow(xi2, 10) - 23376.3450796902*pow(xi2, 8) + 1167.78381697834*pow(xi2, 6) - 30.6923020631075*pow(xi2, 4) + 0.291382614523172*pow(xi2, 2); case 21: return -9118096.47788722*pow(xi1, 35) + 79708988.7815304*pow(xi1, 33) - 318541366.112857*pow(xi1, 31) + 770760565.57494*pow(xi1, 29) - 1260663100.10732*pow(xi1, 27) + 1473646404.52689*pow(xi1, 25) - 1269248861.795*pow(xi1, 23) + 818456749.903348*pow(xi1, 21) - 397510603.618273*pow(xi1, 19) + 145117328.453817*pow(xi1, 17) - 39437672.1525126*pow(xi1, 15) + 7835964.69822362*pow(xi1, 13) - 1106309.09639171*pow(xi1, 11) + 106285.551295131*pow(xi1, 9) - 6501.79510742426*pow(xi1, 7) + 227.356141358614*pow(xi1, 5) - 3.69084645062685*pow(xi1, 3) + 9118096.47788722*pow(xi2, 35) - 79708988.7815304*pow(xi2, 33) + 318541366.112857*pow(xi2, 31) - 770760565.57494*pow(xi2, 29) + 1260663100.10732*pow(xi2, 27) - 1473646404.52689*pow(xi2, 25) + 1269248861.795*pow(xi2, 23) - 818456749.903348*pow(xi2, 21) + 397510603.618273*pow(xi2, 19) - 145117328.453817*pow(xi2, 17) + 39437672.1525126*pow(xi2, 15) - 7835964.69822362*pow(xi2, 13) + 1106309.09639171*pow(xi2, 11) - 106285.551295131*pow(xi2, 9) + 6501.79510742426*pow(xi2, 7) - 227.356141358614*pow(xi2, 5) + 3.69084645062685*pow(xi2, 3); case 22: return -17286391.2393279*pow(xi1, 36) + 155439963.663983*pow(xi1, 34) - 640627537.401558*pow(xi1, 32) + 1603408154.14936*pow(xi1, 30) - 2722189337.19028*pow(xi1, 28) + 3316471384.76167*pow(xi1, 26) - 2991491208.6324*pow(xi1, 24) + 2031908379.46927*pow(xi1, 22) - 1046825005.81663*pow(xi1, 20) + 408912151.540302*pow(xi1, 18) - 120215159.194258*pow(xi1, 16) + 26207247.0460324*pow(xi1, 14) - 4137007.85298576*pow(xi1, 12) + 456223.339859758*pow(xi1, 10) - 33301.2157277483*pow(xi1, 8) + 1478.84835583717*pow(xi1, 6) - 34.5555498939939*pow(xi1, 4) + 0.276813483797014*pow(xi1, 2) + 17286391.2393279*pow(xi2, 36) - 155439963.663983*pow(xi2, 34) + 640627537.401558*pow(xi2, 32) - 1603408154.14936*pow(xi2, 30) + 2722189337.19028*pow(xi2, 28) - 3316471384.76167*pow(xi2, 26) + 2991491208.6324*pow(xi2, 24) - 2031908379.46927*pow(xi2, 22) + 1046825005.81663*pow(xi2, 20) - 408912151.540302*pow(xi2, 18) + 120215159.194258*pow(xi2, 16) - 26207247.0460324*pow(xi2, 14) + 4137007.85298576*pow(xi2, 12) - 456223.339859758*pow(xi2, 10) + 33301.2157277483*pow(xi2, 8) - 1478.84835583717*pow(xi2, 6) + 34.5555498939939*pow(xi2, 4) - 0.276813483797014*pow(xi2, 2); case 23: return -32837469.0723911*pow(xi1, 37) + 303491125.009677*pow(xi1, 35) - 1288760839.34582*pow(xi1, 33) + 3332853573.87662*pow(xi1, 31) - 5865541029.76668*pow(xi1, 29) + 7435831693.49892*pow(xi1, 27) - 7010382002.96711*pow(xi1, 25) + 5003386821.33951*pow(xi1, 23) - 2725959954.0341*pow(xi1, 21) + 1134915281.2323*pow(xi1, 19) - 359106543.713533*pow(xi1, 17) + 85315115.7148456*pow(xi1, 15) - 14918529.9824437*pow(xi1, 13) + 1863374.76427998*pow(xi1, 11) - 159016.920591667*pow(xi1, 9) + 8666.99326921999*pow(xi1, 7) - 270.502136366442*pow(xi1, 5) + 3.87538877315819*pow(xi1, 3) + 32837469.0723911*pow(xi2, 37) - 303491125.009677*pow(xi2, 35) + 1288760839.34582*pow(xi2, 33) - 3332853573.87662*pow(xi2, 31) + 5865541029.76668*pow(xi2, 29) - 7435831693.49892*pow(xi2, 27) + 7010382002.96711*pow(xi2, 25) - 5003386821.33951*pow(xi2, 23) + 2725959954.0341*pow(xi2, 21) - 1134915281.2323*pow(xi2, 19) + 359106543.713533*pow(xi2, 17) - 85315115.7148456*pow(xi2, 15) + 14918529.9824437*pow(xi2, 13) - 1863374.76427998*pow(xi2, 11) + 159016.920591667*pow(xi2, 9) - 8666.99326921999*pow(xi2, 7) + 270.502136366442*pow(xi2, 5) - 3.87538877315819*pow(xi2, 3); case 24: return -62493317.3375291*pow(xi1, 38) + 593210422.874364*pow(xi1, 36) - 2593229632.47033*pow(xi1, 34) + 6922152726.01049*pow(xi1, 32) - 12612843638.232*pow(xi1, 30) + 16613064815.6171*pow(xi1, 28) - 16340828722.4991*pow(xi1, 26) + 12227388514.1203*pow(xi1, 24) - 7025379152.49504*pow(xi1, 22) + 3106573380.0222*pow(xi1, 20) - 1053221405.90108*pow(xi1, 18) + 271081088.424279*pow(xi1, 16) - 52092171.7263622*pow(xi1, 14) + 7287508.49415471*pow(xi1, 12) - 715211.134725111*pow(xi1, 10) + 46610.0523653235*pow(xi1, 8) - 1852.21857692627*pow(xi1, 6) + 38.6658107140101*pow(xi1, 4) - 0.264231052715331*pow(xi1, 2) + 62493317.3375291*pow(xi2, 38) - 593210422.874364*pow(xi2, 36) + 2593229632.47033*pow(xi2, 34) - 6922152726.01049*pow(xi2, 32) + 12612843638.232*pow(xi2, 30) - 16613064815.6171*pow(xi2, 28) + 16340828722.4991*pow(xi2, 26) - 12227388514.1203*pow(xi2, 24) + 7025379152.49504*pow(xi2, 22) - 3106573380.0222*pow(xi2, 20) + 1053221405.90108*pow(xi2, 18) - 271081088.424279*pow(xi2, 16) + 52092171.7263622*pow(xi2, 14) - 7287508.49415471*pow(xi2, 12) + 715211.134725111*pow(xi2, 10) - 46610.0523653235*pow(xi2, 8) + 1852.21857692627*pow(xi2, 6) - 38.6658107140101*pow(xi2, 4) + 0.264231052715331*pow(xi2, 2); case 25: return -119134417.666861*pow(xi1, 39) + 1160670487.5222*pow(xi1, 37) - 5219042862.03361*pow(xi1, 35) + 14365665737.576*pow(xi1, 33) - 27069207642.3522*pow(xi1, 31) + 36993518507.7491*pow(xi1, 29) - 37899603270.9539*pow(xi1, 27) + 29671808168.4901*pow(xi1, 25) - 17933533256.272*pow(xi1, 23) + 8396086005.76344*pow(xi1, 21) - 3037766421.81916*pow(xi1, 19) + 842670667.555862*pow(xi1, 17) - 176730598.184079*pow(xi1, 15) + 27431284.8221486*pow(xi1, 13) - 3054473.13668797*pow(xi1, 11) + 233164.102070853*pow(xi1, 9) - 11396.3725418011*pow(xi1, 7) + 319.261573294178*pow(xi1, 5) - 4.05154280830175*pow(xi1, 3) + 119134417.666861*pow(xi2, 39) - 1160670487.5222*pow(xi2, 37) + 5219042862.03361*pow(xi2, 35) - 14365665737.576*pow(xi2, 33) + 27069207642.3522*pow(xi2, 31) - 36993518507.7491*pow(xi2, 29) + 37899603270.9539*pow(xi2, 27) - 29671808168.4901*pow(xi2, 25) + 17933533256.272*pow(xi2, 23) - 8396086005.76344*pow(xi2, 21) + 3037766421.81916*pow(xi2, 19) - 842670667.555862*pow(xi2, 17) + 176730598.184079*pow(xi2, 15) - 27431284.8221486*pow(xi2, 13) + 3054473.13668797*pow(xi2, 11) - 233164.102070853*pow(xi2, 9) + 11396.3725418011*pow(xi2, 7) - 319.261573294178*pow(xi2, 5) + 4.05154280830175*pow(xi2, 3); case 26: return -227472278.732664*pow(xi1, 40) + 2273053878.45846*pow(xi1, 38) - 10505212659.9366*pow(xi1, 36) + 29790506288.6914*pow(xi1, 34) - 57987682215.1704*pow(xi1, 32) + 82118094217.2808*pow(xi1, 30) - 87490193887.0504*pow(xi1, 28) + 71532356048.1256*pow(xi1, 26) - 45374423454.5563*pow(xi1, 24) + 22427611247.8239*pow(xi1, 22) - 8628644103.11401*pow(xi1, 20) + 2567887790.32449*pow(xi1, 18) - 584252375.676849*pow(xi1, 16) + 99804149.7685162*pow(xi1, 14) - 12467065.8196333*pow(xi1, 12) + 1096362.40067811*pow(xi1, 10) - 64196.1260493338*pow(xi1, 8) + 2296.0599537497*pow(xi1, 6) - 43.0054387672863*pow(xi1, 4) + 0.253221425518859*pow(xi1, 2) + 227472278.732664*pow(xi2, 40) - 2273053878.45846*pow(xi2, 38) + 10505212659.9366*pow(xi2, 36) - 29790506288.6914*pow(xi2, 34) + 57987682215.1704*pow(xi2, 32) - 82118094217.2808*pow(xi2, 30) + 87490193887.0504*pow(xi2, 28) - 71532356048.1256*pow(xi2, 26) + 45374423454.5563*pow(xi2, 24) - 22427611247.8239*pow(xi2, 22) + 8628644103.11401*pow(xi2, 20) - 2567887790.32449*pow(xi2, 18) + 584252375.676849*pow(xi2, 16) - 99804149.7685162*pow(xi2, 14) + 12467065.8196333*pow(xi2, 12) - 1096362.40067811*pow(xi2, 10) + 64196.1260493338*pow(xi2, 8) - 2296.0599537497*pow(xi2, 6) + 43.0054387672863*pow(xi2, 4) - 0.253221425518859*pow(xi2, 2); case 27: return -434971381.771727*pow(xi1, 41) + 4455319114.48803*pow(xi1, 39) - 21147968135.187*pow(xi1, 37) + 61731405121.2206*pow(xi1, 35) - 124002779366.724*pow(xi1, 33) + 181745921271.371*pow(xi1, 31) - 201081427440.588*pow(xi1, 29) + 171394317814.652*pow(xi1, 27) - 113861451013.844*pow(xi1, 25) + 59263087448.0283*pow(xi1, 23) - 24167044891.3457*pow(xi1, 21) + 7684417935.61208*pow(xi1, 19) - 1886737635.04339*pow(xi1, 17) + 352236432.233255*pow(xi1, 15) - 48889832.5121684*pow(xi1, 13) + 4885812.67061053*pow(xi1, 11) - 335681.455371747*pow(xi1, 9) + 14797.8983624285*pow(xi1, 7) - 373.923638349515*pow(xi1, 5) + 4.22035709198099*pow(xi1, 3) + 434971381.771727*pow(xi2, 41) - 4455319114.48803*pow(xi2, 39) + 21147968135.187*pow(xi2, 37) - 61731405121.2206*pow(xi2, 35) + 124002779366.724*pow(xi2, 33) - 181745921271.371*pow(xi2, 31) + 201081427440.588*pow(xi2, 29) - 171394317814.652*pow(xi2, 27) + 113861451013.844*pow(xi2, 25) - 59263087448.0283*pow(xi2, 23) + 24167044891.3457*pow(xi2, 21) - 7684417935.61208*pow(xi2, 19) + 1886737635.04339*pow(xi2, 17) - 352236432.233255*pow(xi2, 15) + 48889832.5121684*pow(xi2, 13) - 4885812.67061053*pow(xi2, 11) + 335681.455371747*pow(xi2, 9) - 14797.8983624285*pow(xi2, 7) + 373.923638349515*pow(xi2, 5) - 4.22035709198099*pow(xi2, 3); case 28: return -832898497.513445*pow(xi1, 42) + 8739521151.39361*pow(xi1, 40) - 42576535481.4103*pow(xi1, 38) + 127826121298.421*pow(xi1, 36) - 264726932148.851*pow(xi1, 34) + 401118326084.344*pow(xi1, 32) - 460241028009.732*pow(xi1, 30) + 408314713395.208*pow(xi1, 28) - 283534587979.19*pow(xi1, 26) + 155032460976.396*pow(xi1, 24) - 66814844868.7664*pow(xi1, 22) + 22616390444.5483*pow(xi1, 20) - 5964425288.95009*pow(xi1, 18) + 1209523608.00284*pow(xi1, 16) - 185014866.413594*pow(xi1, 14) + 20772630.3016105*pow(xi1, 12) - 1646801.49301984*pow(xi1, 10) + 87125.360217566*pow(xi1, 8) - 2818.97128744604*pow(xi1, 6) + 47.5601779980934*pow(xi1, 4) - 0.24348213992198*pow(xi1, 2) + 832898497.513445*pow(xi2, 42) - 8739521151.39361*pow(xi2, 40) + 42576535481.4103*pow(xi2, 38) - 127826121298.421*pow(xi2, 36) + 264726932148.851*pow(xi2, 34) - 401118326084.344*pow(xi2, 32) + 460241028009.732*pow(xi2, 30) - 408314713395.208*pow(xi2, 28) + 283534587979.19*pow(xi2, 26) - 155032460976.396*pow(xi2, 24) + 66814844868.7664*pow(xi2, 22) - 22616390444.5483*pow(xi2, 20) + 5964425288.95009*pow(xi2, 18) - 1209523608.00284*pow(xi2, 16) + 185014866.413594*pow(xi2, 14) - 20772630.3016105*pow(xi2, 12) + 1646801.49301984*pow(xi2, 10) - 87125.360217566*pow(xi2, 8) + 2818.97128744604*pow(xi2, 6) - 47.5601779980934*pow(xi2, 4) + 0.24348213992198*pow(xi2, 2); case 29: return -1596926835.02578*pow(xi1, 43) + 17155794339.5873*pow(xi1, 41) - 85723491017.7124*pow(xi1, 39) + 264501085869.306*pow(xi1, 37) - 564247100944.487*pow(xi1, 35) + 882930489041.186*pow(xi1, 33) - 1049307583130.46*pow(xi1, 31) + 967502466115.826*pow(xi1, 29) - 701000649302.07*pow(xi1, 27) + 401794420031.072*pow(xi1, 25) - 182520829969.247*pow(xi1, 23) + 65553051819.9223*pow(xi1, 21) - 18491548120.5668*pow(xi1, 19) + 4051446741.34114*pow(xi1, 17) - 678156146.789769*pow(xi1, 15) + 84718393.9058041*pow(xi1, 13) - 7643593.31681862*pow(xi1, 11) + 475270.013535954*pow(xi1, 9) - 18992.8591077769*pow(xi1, 7) + 434.761709044687*pow(xi1, 5) - 4.38267851859564*pow(xi1, 3) + 1596926835.02578*pow(xi2, 43) - 17155794339.5873*pow(xi2, 41) + 85723491017.7124*pow(xi2, 39) - 264501085869.306*pow(xi2, 37) + 564247100944.487*pow(xi2, 35) - 882930489041.186*pow(xi2, 33) + 1049307583130.46*pow(xi2, 31) - 967502466115.826*pow(xi2, 29) + 701000649302.07*pow(xi2, 27) - 401794420031.072*pow(xi2, 25) + 182520829969.247*pow(xi2, 23) - 65553051819.9223*pow(xi2, 21) + 18491548120.5668*pow(xi2, 19) - 4051446741.34114*pow(xi2, 17) + 678156146.789769*pow(xi2, 15) - 84718393.9058041*pow(xi2, 13) + 7643593.31681862*pow(xi2, 11) - 475270.013535954*pow(xi2, 9) + 18992.8591077769*pow(xi2, 7) - 434.761709044687*pow(xi2, 5) + 4.38267851859564*pow(xi2, 3); default: return 0.; } case 18: switch(j) { case 0: return -764.31324005127*pow(xi1, 18)*y1t + 3328.46088409424*pow(xi1, 16)*y1t - 5968.2746887207*pow(xi1, 14)*y1t + 5673.54507446289*pow(xi1, 12)*y1t - 3063.71434020996*pow(xi1, 10)*y1t + 932.434799194336*pow(xi1, 8)*y1t - 148.005523681641*pow(xi1, 6)*y1t + 10.0154113769531*pow(xi1, 4)*y1t - 0.147285461425781*pow(xi1, 2)*y1t + 764.31324005127*pow(xi2, 18)*y1t - 3328.46088409424*pow(xi2, 16)*y1t + 5968.2746887207*pow(xi2, 14)*y1t - 5673.54507446289*pow(xi2, 12)*y1t + 3063.71434020996*pow(xi2, 10)*y1t - 932.434799194336*pow(xi2, 8)*y1t + 148.005523681641*pow(xi2, 6)*y1t - 10.0154113769531*pow(xi2, 4)*y1t + 0.147285461425781*pow(xi2, 2)*y1t; case 1: return -382.156620025635*pow(xi1, 18)*y1r + 134.878807067871*pow(xi1, 17)*y1r + 1664.23044204712*pow(xi1, 16)*y1r - 591.726379394531*pow(xi1, 15)*y1r - 2984.13734436035*pow(xi1, 14)*y1r + 1071.2287902832*pow(xi1, 13)*y1r + 2836.77253723145*pow(xi1, 12)*y1r - 1031.55364990234*pow(xi1, 11)*y1r - 1531.85717010498*pow(xi1, 10)*y1r + 567.354507446289*pow(xi1, 9)*y1r + 466.217399597168*pow(xi1, 8)*y1r - 177.606628417969*pow(xi1, 7)*y1r - 74.0027618408203*pow(xi1, 6)*y1r + 29.6011047363281*pow(xi1, 5)*y1r + 5.00770568847656*pow(xi1, 4)*y1r - 2.22564697265625*pow(xi1, 3)*y1r - 0.0736427307128906*pow(xi1, 2)*y1r + 0.0490951538085938*xi1*y1r + 382.156620025635*pow(xi2, 18)*y1r - 134.878807067871*pow(xi2, 17)*y1r - 1664.23044204712*pow(xi2, 16)*y1r + 591.726379394531*pow(xi2, 15)*y1r + 2984.13734436035*pow(xi2, 14)*y1r - 1071.2287902832*pow(xi2, 13)*y1r - 2836.77253723145*pow(xi2, 12)*y1r + 1031.55364990234*pow(xi2, 11)*y1r + 1531.85717010498*pow(xi2, 10)*y1r - 567.354507446289*pow(xi2, 9)*y1r - 466.217399597168*pow(xi2, 8)*y1r + 177.606628417969*pow(xi2, 7)*y1r + 74.0027618408203*pow(xi2, 6)*y1r - 29.6011047363281*pow(xi2, 5)*y1r - 5.00770568847656*pow(xi2, 4)*y1r + 2.22564697265625*pow(xi2, 3)*y1r + 0.0736427307128906*pow(xi2, 2)*y1r - 0.0490951538085938*xi2*y1r; case 2: return 764.31324005127*pow(xi1, 18)*y2t - 3328.46088409424*pow(xi1, 16)*y2t + 5968.2746887207*pow(xi1, 14)*y2t - 5673.54507446289*pow(xi1, 12)*y2t + 3063.71434020996*pow(xi1, 10)*y2t - 932.434799194336*pow(xi1, 8)*y2t + 148.005523681641*pow(xi1, 6)*y2t - 10.0154113769531*pow(xi1, 4)*y2t + 0.147285461425781*pow(xi1, 2)*y2t - 764.31324005127*pow(xi2, 18)*y2t + 3328.46088409424*pow(xi2, 16)*y2t - 5968.2746887207*pow(xi2, 14)*y2t + 5673.54507446289*pow(xi2, 12)*y2t - 3063.71434020996*pow(xi2, 10)*y2t + 932.434799194336*pow(xi2, 8)*y2t - 148.005523681641*pow(xi2, 6)*y2t + 10.0154113769531*pow(xi2, 4)*y2t - 0.147285461425781*pow(xi2, 2)*y2t; case 3: return -382.156620025635*pow(xi1, 18)*y2r - 134.878807067871*pow(xi1, 17)*y2r + 1664.23044204712*pow(xi1, 16)*y2r + 591.726379394531*pow(xi1, 15)*y2r - 2984.13734436035*pow(xi1, 14)*y2r - 1071.2287902832*pow(xi1, 13)*y2r + 2836.77253723145*pow(xi1, 12)*y2r + 1031.55364990234*pow(xi1, 11)*y2r - 1531.85717010498*pow(xi1, 10)*y2r - 567.354507446289*pow(xi1, 9)*y2r + 466.217399597168*pow(xi1, 8)*y2r + 177.606628417969*pow(xi1, 7)*y2r - 74.0027618408203*pow(xi1, 6)*y2r - 29.6011047363281*pow(xi1, 5)*y2r + 5.00770568847656*pow(xi1, 4)*y2r + 2.22564697265625*pow(xi1, 3)*y2r - 0.0736427307128906*pow(xi1, 2)*y2r - 0.0490951538085938*xi1*y2r + 382.156620025635*pow(xi2, 18)*y2r + 134.878807067871*pow(xi2, 17)*y2r - 1664.23044204712*pow(xi2, 16)*y2r - 591.726379394531*pow(xi2, 15)*y2r + 2984.13734436035*pow(xi2, 14)*y2r + 1071.2287902832*pow(xi2, 13)*y2r - 2836.77253723145*pow(xi2, 12)*y2r - 1031.55364990234*pow(xi2, 11)*y2r + 1531.85717010498*pow(xi2, 10)*y2r + 567.354507446289*pow(xi2, 9)*y2r - 466.217399597168*pow(xi2, 8)*y2r - 177.606628417969*pow(xi2, 7)*y2r + 74.0027618408203*pow(xi2, 6)*y2r + 29.6011047363281*pow(xi2, 5)*y2r - 5.00770568847656*pow(xi2, 4)*y2r - 2.22564697265625*pow(xi2, 3)*y2r + 0.0736427307128906*pow(xi2, 2)*y2r + 0.0490951538085938*xi2*y2r; case 4: return -724.086227416992*pow(xi1, 19) + 3402.42668151855*pow(xi1, 17) - 6753.84246826172*pow(xi1, 15) + 7379.57611083984*pow(xi1, 13) - 4848.30215454102*pow(xi1, 11) + 1963.53994750977*pow(xi1, 9) - 482.075134277344*pow(xi1, 7) + 67.2145385742188*pow(xi1, 5) - 4.54948425292969*pow(xi1, 3) + 0.0981903076171875*xi1 + 724.086227416992*pow(xi2, 19) - 3402.42668151855*pow(xi2, 17) + 6753.84246826172*pow(xi2, 15) - 7379.57611083984*pow(xi2, 13) + 4848.30215454102*pow(xi2, 11) - 1963.53994750977*pow(xi2, 9) + 482.075134277344*pow(xi2, 7) - 67.2145385742188*pow(xi2, 5) + 4.54948425292969*pow(xi2, 3) - 0.0981903076171875*xi2; case 5: return -1146.4698600769*pow(xi1, 20) + 5695.36640167236*pow(xi1, 18) - 12032.1948051453*pow(xi1, 16) + 14073.3390808105*pow(xi1, 14) - 9928.70388031006*pow(xi1, 12) + 4306.96073913574*pow(xi1, 10) - 1117.44170379639*pow(xi1, 8) + 159.133758544922*pow(xi1, 6) - 10.1381492614746*pow(xi1, 4) + 0.147285461425781*pow(xi1, 2) + 1146.4698600769*pow(xi2, 20) - 5695.36640167236*pow(xi2, 18) + 12032.1948051453*pow(xi2, 16) - 14073.3390808105*pow(xi2, 14) + 9928.70388031006*pow(xi2, 12) - 4306.96073913574*pow(xi2, 10) + 1117.44170379639*pow(xi2, 8) - 159.133758544922*pow(xi2, 6) + 10.1381492614746*pow(xi2, 4) - 0.147285461425781*pow(xi2, 2); case 6: return -1910.78310012817*pow(xi1, 21) + 9985.38265228271*pow(xi1, 19) - 22369.5526313782*pow(xi1, 17) + 28051.8356831868*pow(xi1, 15) - 21573.3575820923*pow(xi1, 13) + 10488.2096099854*pow(xi1, 11) - 3210.89761098226*pow(xi1, 9) + 600.256988525391*pow(xi1, 7) - 64.6043128967285*pow(xi1, 5) + 3.58394622802734*pow(xi1, 3) - 0.0736427307128906*xi1 + 1910.78310012817*pow(xi2, 21) - 9985.38265228271*pow(xi2, 19) + 22369.5526313782*pow(xi2, 17) - 28051.8356831868*pow(xi2, 15) + 21573.3575820923*pow(xi2, 13) - 10488.2096099854*pow(xi2, 11) + 3210.89761098226*pow(xi2, 9) - 600.256988525391*pow(xi2, 7) + 64.6043128967285*pow(xi2, 5) - 3.58394622802734*pow(xi2, 3) + 0.0736427307128906*xi2; case 7: return -3283.07278112932*pow(xi1, 22) + 17992.180223465*pow(xi1, 20) - 42584.5325946808*pow(xi1, 18) + 56963.228559494*pow(xi1, 16) - 47316.9975090027*pow(xi1, 14) + 25248.5089607239*pow(xi1, 12) - 8647.22272109985*pow(xi1, 10) + 1839.3581199646*pow(xi1, 8) - 224.21347618103*pow(xi1, 6) + 12.9488468170166*pow(xi1, 4) - 0.184106826782227*pow(xi1, 2) + 3283.07278112932*pow(xi2, 22) - 17992.180223465*pow(xi2, 20) + 42584.5325946808*pow(xi2, 18) - 56963.228559494*pow(xi2, 16) + 47316.9975090027*pow(xi2, 14) - 25248.5089607239*pow(xi2, 12) + 8647.22272109985*pow(xi2, 10) - 1839.3581199646*pow(xi2, 8) + 224.21347618103*pow(xi2, 6) - 12.9488468170166*pow(xi2, 4) + 0.184106826782227*pow(xi2, 2); case 8: return -5757.27255821228*pow(xi1, 23) + 33007.2371006012*pow(xi1, 21) - 82283.7614536285*pow(xi1, 19) + 116930.786275864*pow(xi1, 17) - 104341.16991806*pow(xi1, 15) + 60706.0439186096*pow(xi1, 13) - 23152.2125434875*pow(xi1, 11) + 5673.22050094604*pow(xi1, 9) - 852.549619674683*pow(xi1, 7) + 72.8285694122314*pow(xi1, 5) - 3.21164131164551*pow(xi1, 3) + 0.0613689422607422*xi1 + 5757.27255821228*pow(xi2, 23) - 33007.2371006012*pow(xi2, 21) + 82283.7614536285*pow(xi2, 19) - 116930.786275864*pow(xi2, 17) + 104341.16991806*pow(xi2, 15) - 60706.0439186096*pow(xi2, 13) + 23152.2125434875*pow(xi2, 11) - 5673.22050094604*pow(xi2, 9) + 852.549619674683*pow(xi2, 7) - 72.8285694122314*pow(xi2, 5) + 3.21164131164551*pow(xi2, 3) - 0.0613689422607422*xi2; case 9: return -10246.5743744373*pow(xi1, 24) + 61326.8917894363*pow(xi1, 22) - 160593.9336133*pow(xi1, 20) + 241593.914977709*pow(xi1, 18) - 230491.054247618*pow(xi1, 16) + 145244.379724503*pow(xi1, 14) - 61055.4647487005*pow(xi1, 12) + 16894.2880268097*pow(xi1, 10) - 2961.98580622673*pow(xi1, 8) + 304.893860816956*pow(xi1, 6) - 15.5723690986633*pow(xi1, 4) + 0.214791297912598*pow(xi1, 2) + 10246.5743744373*pow(xi2, 24) - 61326.8917894363*pow(xi2, 22) + 160593.9336133*pow(xi2, 20) - 241593.914977709*pow(xi2, 18) + 230491.054247618*pow(xi2, 16) - 145244.379724503*pow(xi2, 14) + 61055.4647487005*pow(xi2, 12) - 16894.2880268097*pow(xi2, 10) + 2961.98580622673*pow(xi2, 8) - 304.893860816956*pow(xi2, 6) + 15.5723690986633*pow(xi2, 4) - 0.214791297912598*pow(xi2, 2); case 10: return -18443.8338739872*pow(xi1, 25) + 115026.06071949*pow(xi1, 23) - 315656.213915348*pow(xi1, 21) + 501145.377087593*pow(xi1, 19) - 509063.357251883*pow(xi1, 17) + 345476.188196182*pow(xi1, 15) - 158790.70818615*pow(xi1, 13) + 49055.2678394318*pow(xi1, 11) - 9900.71094870567*pow(xi1, 9) + 1235.98890781403*pow(xi1, 7) - 87.0835518836975*pow(xi1, 5) + 3.07867527008057*pow(xi1, 3) - 0.0536978244781494*xi1 + 18443.8338739872*pow(xi2, 25) - 115026.06071949*pow(xi2, 23) + 315656.213915348*pow(xi2, 21) - 501145.377087593*pow(xi2, 19) + 509063.357251883*pow(xi2, 17) - 345476.188196182*pow(xi2, 15) + 158790.70818615*pow(xi2, 13) - 49055.2678394318*pow(xi2, 11) + 9900.71094870567*pow(xi2, 9) - 1235.98890781403*pow(xi2, 7) + 87.0835518836975*pow(xi2, 5) - 3.07867527008057*pow(xi2, 3) + 0.0536978244781494*xi2; case 11: return -33498.416224122*pow(xi1, 26) + 217326.537135243*pow(xi1, 24) - 623650.511730909*pow(xi1, 22) + 1042027.70098567*pow(xi1, 20) - 1122894.03705299*pow(xi1, 18) + 816661.687039733*pow(xi1, 16) - 407619.976494312*pow(xi1, 14) + 139209.812054157*pow(xi1, 12) - 31848.3535255194*pow(xi1, 10) + 4675.69127261639*pow(xi1, 8) - 408.09272646904*pow(xi1, 6) + 18.2035624980927*pow(xi1, 4) - 0.241640210151672*pow(xi1, 2) + 33498.416224122*pow(xi2, 26) - 217326.537135243*pow(xi2, 24) + 623650.511730909*pow(xi2, 22) - 1042027.70098567*pow(xi2, 20) + 1122894.03705299*pow(xi2, 18) - 816661.687039733*pow(xi2, 16) + 407619.976494312*pow(xi2, 14) - 139209.812054157*pow(xi2, 12) + 31848.3535255194*pow(xi2, 10) - 4675.69127261639*pow(xi2, 8) + 408.09272646904*pow(xi2, 6) - 18.2035624980927*pow(xi2, 4) + 0.241640210151672*pow(xi2, 2); case 12: return -61289.6948693196*pow(xi1, 27) + 413003.054221272*pow(xi1, 25) - 1236940.47161937*pow(xi1, 23) + 2169664.52764074*pow(xi1, 21) - 2472240.10607421*pow(xi1, 19) + 1918540.2736448*pow(xi1, 17) - 1033774.66102648*pow(xi1, 15) + 387064.230816364*pow(xi1, 13) - 99160.5335086584*pow(xi1, 11) + 16807.3628920317*pow(xi1, 9) - 1776.99817156792*pow(xi1, 7) + 106.044611692429*pow(xi1, 5) - 3.07688534259796*pow(xi1, 3) + 0.0483280420303345*xi1 + 61289.6948693196*pow(xi2, 27) - 413003.054221272*pow(xi2, 25) + 1236940.47161937*pow(xi2, 23) - 2169664.52764074*pow(xi2, 21) + 2472240.10607421*pow(xi2, 19) - 1918540.2736448*pow(xi2, 17) + 1033774.66102648*pow(xi2, 15) - 387064.230816364*pow(xi2, 13) + 99160.5335086584*pow(xi2, 11) - 16807.3628920317*pow(xi2, 9) + 1776.99817156792*pow(xi2, 7) - 106.044611692429*pow(xi2, 5) + 3.07688534259796*pow(xi2, 3) - 0.0483280420303345*xi2; case 13: return -112828.756463975*pow(xi1, 28) + 788588.082812726*pow(xi1, 26) - 2460608.39660838*pow(xi1, 24) + 4520765.16227424*pow(xi1, 22) - 5431042.46600339*pow(xi1, 20) + 4479999.0119229*pow(xi1, 18) - 2592641.40994146*pow(xi1, 16) + 1056722.9332602*pow(xi1, 14) - 300085.308234841*pow(xi1, 12) + 57831.1539922357*pow(xi1, 10) - 7219.0231026113*pow(xi1, 8) + 539.700724482536*pow(xi1, 6) - 20.9542335569859*pow(xi1, 4) + 0.26580423116684*pow(xi1, 2) + 112828.756463975*pow(xi2, 28) - 788588.082812726*pow(xi2, 26) + 2460608.39660838*pow(xi2, 24) - 4520765.16227424*pow(xi2, 22) + 5431042.46600339*pow(xi2, 20) - 4479999.0119229*pow(xi2, 18) + 2592641.40994146*pow(xi2, 16) - 1056722.9332602*pow(xi2, 14) + 300085.308234841*pow(xi2, 12) - 57831.1539922357*pow(xi2, 10) + 7219.0231026113*pow(xi2, 8) - 539.700724482536*pow(xi2, 6) + 20.9542335569859*pow(xi2, 4) - 0.26580423116684*pow(xi2, 2); case 14: return -208798.043571264*pow(xi1, 29) + 1511662.69413024*pow(xi1, 27) - 4906105.58279559*pow(xi1, 25) + 9421931.56315386*pow(xi1, 23) - 11902666.8263753*pow(xi1, 21) + 10400955.1452*pow(xi1, 19) - 6435583.67661783*pow(xi1, 17) + 2837986.68655086*pow(xi1, 15) - 885729.038971514*pow(xi1, 13) + 191663.560399711*pow(xi1, 11) - 27705.8257147372*pow(xi1, 9) + 2515.56618082523*pow(xi1, 7) - 129.337385505438*pow(xi1, 5) + 3.16011697053909*pow(xi1, 3) - 0.0443007051944733*xi1 + 208798.043571264*pow(xi2, 29) - 1511662.69413024*pow(xi2, 27) + 4906105.58279559*pow(xi2, 25) - 9421931.56315386*pow(xi2, 23) + 11902666.8263753*pow(xi2, 21) - 10400955.1452*pow(xi2, 19) + 6435583.67661783*pow(xi2, 17) - 2837986.68655086*pow(xi2, 15) + 885729.038971514*pow(xi2, 13) - 191663.560399711*pow(xi2, 11) + 27705.8257147372*pow(xi2, 9) - 2515.56618082523*pow(xi2, 7) + 129.337385505438*pow(xi2, 5) - 3.16011697053909*pow(xi2, 3) + 0.0443007051944733*xi2; case 15: return -388150.20920299*pow(xi1, 30) + 2907370.2766753*pow(xi1, 28) - 9799868.25764738*pow(xi1, 26) + 19635467.5225535*pow(xi1, 24) - 26022314.9884176*pow(xi1, 22) + 24015014.9454261*pow(xi1, 20) - 15823943.7997347*pow(xi1, 18) + 7509769.99117948*pow(xi1, 16) - 2557095.55194207*pow(xi1, 14) + 614870.278818831*pow(xi1, 12) - 101334.994345263*pow(xi1, 10) + 10896.6374951452*pow(xi1, 8) - 705.456735268235*pow(xi1, 6) + 23.9002304524183*pow(xi1, 4) - 0.287954583764076*pow(xi1, 2) + 388150.20920299*pow(xi2, 30) - 2907370.2766753*pow(xi2, 28) + 9799868.25764738*pow(xi2, 26) - 19635467.5225535*pow(xi2, 24) + 26022314.9884176*pow(xi2, 22) - 24015014.9454261*pow(xi2, 20) + 15823943.7997347*pow(xi2, 18) - 7509769.99117948*pow(xi2, 16) + 2557095.55194207*pow(xi2, 14) - 614870.278818831*pow(xi2, 12) + 101334.994345263*pow(xi2, 10) - 10896.6374951452*pow(xi2, 8) + 705.456735268235*pow(xi2, 6) - 23.9002304524183*pow(xi2, 4) + 0.287954583764076*pow(xi2, 2); case 16: return -724427.809802815*pow(xi1, 31) + 5607607.86106624*pow(xi1, 29) - 19603442.1230375*pow(xi1, 27) + 40909335.0543521*pow(xi1, 25) - 56752834.2872765*pow(xi1, 23) + 55161687.4630291*pow(xi1, 21) - 38569445.8929905*pow(xi1, 19) + 19607078.2719415*pow(xi1, 17) - 7238045.34529294*pow(xi1, 15) + 1917066.91166751*pow(xi1, 13) - 355638.555911556*pow(xi1, 11) + 44406.788155362*pow(xi1, 9) - 3502.04605682194*pow(xi1, 7) + 156.973642095923*pow(xi1, 5) - 3.30462165176868*pow(xi1, 3) + 0.0411363691091537*xi1 + 724427.809802815*pow(xi2, 31) - 5607607.86106624*pow(xi2, 29) + 19603442.1230375*pow(xi2, 27) - 40909335.0543521*pow(xi2, 25) + 56752834.2872765*pow(xi2, 23) - 55161687.4630291*pow(xi2, 21) + 38569445.8929905*pow(xi2, 19) - 19607078.2719415*pow(xi2, 17) + 7238045.34529294*pow(xi2, 15) - 1917066.91166751*pow(xi2, 13) + 355638.555911556*pow(xi2, 11) - 44406.788155362*pow(xi2, 9) + 3502.04605682194*pow(xi2, 7) - 156.973642095923*pow(xi2, 5) + 3.30462165176868*pow(xi2, 3) - 0.0411363691091537*xi2; case 17: return -1356792.91877652*pow(xi1, 32) + 10842269.5533821*pow(xi1, 30) - 39259962.6923692*pow(xi1, 28) + 85195948.6158689*pow(xi1, 26) - 123476826.547754*pow(xi1, 24) + 126085880.85278*pow(xi1, 22) - 93253229.5725235*pow(xi1, 20) + 50570086.7614826*pow(xi1, 18) - 20128075.8467776*pow(xi1, 16) + 5828214.06609189*pow(xi1, 14) - 1204149.47876306*pow(xi1, 12) + 171847.139445908*pow(xi1, 10) - 16094.489574926*pow(xi1, 8) + 911.328265182674*pow(xi1, 6) - 27.098583150655*pow(xi1, 4) + 0.308522768318653*pow(xi1, 2) + 1356792.91877652*pow(xi2, 32) - 10842269.5533821*pow(xi2, 30) + 39259962.6923692*pow(xi2, 28) - 85195948.6158689*pow(xi2, 26) + 123476826.547754*pow(xi2, 24) - 126085880.85278*pow(xi2, 22) + 93253229.5725235*pow(xi2, 20) - 50570086.7614826*pow(xi2, 18) + 20128075.8467776*pow(xi2, 16) - 5828214.06609189*pow(xi2, 14) + 1204149.47876306*pow(xi2, 12) - 171847.139445908*pow(xi2, 10) + 16094.489574926*pow(xi2, 8) - 911.328265182674*pow(xi2, 6) + 27.098583150655*pow(xi2, 4) - 0.308522768318653*pow(xi2, 2); case 18: return -2549126.08982256*pow(xi1, 33) + 21008406.4842816*pow(xi1, 31) - 78700338.4408196*pow(xi1, 29) + 177331779.269029*pow(xi1, 27) - 268019398.992277*pow(xi1, 25) + 286875811.333441*pow(xi1, 23) - 223788493.707794*pow(xi1, 21) + 128981580.567137*pow(xi1, 19) - 55085774.188775*pow(xi1, 17) + 17325021.2807283*pow(xi1, 15) - 3950825.25901452*pow(xi1, 13) + 636096.448600218*pow(xi1, 11) - 69349.6514969133*pow(xi1, 9) + 4796.62404723465*pow(xi1, 7) - 189.165593348444*pow(xi1, 5) + 3.49659137427807*pow(xi1, 3) - 0.0385653460398316*xi1 + 2549126.08982256*pow(xi2, 33) - 21008406.4842816*pow(xi2, 31) + 78700338.4408196*pow(xi2, 29) - 177331779.269029*pow(xi2, 27) + 268019398.992277*pow(xi2, 25) - 286875811.333441*pow(xi2, 23) + 223788493.707794*pow(xi2, 21) - 128981580.567137*pow(xi2, 19) + 55085774.188775*pow(xi2, 17) - 17325021.2807283*pow(xi2, 15) + 3950825.25901452*pow(xi2, 13) - 636096.448600218*pow(xi2, 11) + 69349.6514969133*pow(xi2, 9) - 4796.62404723465*pow(xi2, 7) + 189.165593348444*pow(xi2, 5) - 3.49659137427807*pow(xi2, 3) + 0.0385653460398316*xi2; case 19: return -4802765.24535773*pow(xi1, 34) + 40783598.911459*pow(xi1, 32) - 157883359.35978*pow(xi1, 30) + 368888820.619509*pow(xi1, 28) - 580446875.096901*pow(xi1, 26) + 649886868.128478*pow(xi1, 24) - 533335979.143528*pow(xi1, 22) + 325624954.349418*pow(xi1, 20) - 148585961.788267*pow(xi1, 18) + 50473062.3188808*pow(xi1, 16) - 12606823.4744614*pow(xi1, 14) + 2265194.66060973*pow(xi1, 12) - 282896.404740756*pow(xi1, 10) + 23294.9619154539*pow(xi1, 8) - 1163.72388588265*pow(xi1, 6) + 30.5951745249331*pow(xi1, 4) - 0.327805441338569*pow(xi1, 2) + 4802765.24535773*pow(xi2, 34) - 40783598.911459*pow(xi2, 32) + 157883359.35978*pow(xi2, 30) - 368888820.619509*pow(xi2, 28) + 580446875.096901*pow(xi2, 26) - 649886868.128478*pow(xi2, 24) + 533335979.143528*pow(xi2, 22) - 325624954.349418*pow(xi2, 20) + 148585961.788267*pow(xi2, 18) - 50473062.3188808*pow(xi2, 16) + 12606823.4744614*pow(xi2, 14) - 2265194.66060973*pow(xi2, 12) + 282896.404740756*pow(xi2, 10) - 23294.9619154539*pow(xi2, 8) + 1163.72388588265*pow(xi2, 6) - 30.5951745249331*pow(xi2, 4) + 0.327805441338569*pow(xi2, 2); case 20: return -9071889.90789793*pow(xi1, 35) + 79305876.2916238*pow(xi1, 33) - 316933615.672017*pow(xi1, 31) + 766877990.533416*pow(xi1, 29) - 1254324985.64334*pow(xi1, 27) + 1466251586.22142*pow(xi1, 25) - 1262891657.42003*pow(xi1, 23) + 814364974.334062*pow(xi1, 21) - 395526919.443841*pow(xi1, 19) + 144394456.337024*pow(xi1, 17) - 39241570.1076733*pow(xi1, 15) + 7797068.97306965*pow(xi1, 13) - 1100827.15933084*pow(xi1, 11) + 105759.79021824*pow(xi1, 9) - 6469.68474330381*pow(xi1, 7) + 226.248887423426*pow(xi1, 5) - 3.72726927744225*pow(xi1, 3) + 0.0364228268153965*xi1 + 9071889.90789793*pow(xi2, 35) - 79305876.2916238*pow(xi2, 33) + 316933615.672017*pow(xi2, 31) - 766877990.533416*pow(xi2, 29) + 1254324985.64334*pow(xi2, 27) - 1466251586.22142*pow(xi2, 25) + 1262891657.42003*pow(xi2, 23) - 814364974.334062*pow(xi2, 21) + 395526919.443841*pow(xi2, 19) - 144394456.337024*pow(xi2, 17) + 39241570.1076733*pow(xi2, 15) - 7797068.97306965*pow(xi2, 13) + 1100827.15933084*pow(xi2, 11) - 105759.79021824*pow(xi2, 9) + 6469.68474330381*pow(xi2, 7) - 226.248887423426*pow(xi2, 5) + 3.72726927744225*pow(xi2, 3) - 0.0364228268153965*xi2; case 21: return -17175581.0390758*pow(xi1, 36) + 154445460.189213*pow(xi1, 34) - 636536529.850006*pow(xi1, 32) + 1593187891.04673*pow(xi1, 30) - 2704869598.21416*pow(xi1, 28) + 3295408612.9558*pow(xi1, 26) - 2972526156.78936*pow(xi1, 24) + 2019049360.76173*pow(xi1, 22) - 1040211599.82845*pow(xi1, 20) + 406333229.98651*pow(xi1, 18) - 119458267.623672*pow(xi1, 16) + 26042517.6376345*pow(xi1, 14) - 4111046.93219014*pow(xi1, 12) + 453365.068400052*pow(xi1, 10) - 33092.9135811911*pow(xi1, 8) + 1469.6335425321*pow(xi1, 6) - 34.4286770472536*pow(xi1, 4) + 0.346016854746267*pow(xi1, 2) + 17175581.0390758*pow(xi2, 36) - 154445460.189213*pow(xi2, 34) + 636536529.850006*pow(xi2, 32) - 1593187891.04673*pow(xi2, 30) + 2704869598.21416*pow(xi2, 28) - 3295408612.9558*pow(xi2, 26) + 2972526156.78936*pow(xi2, 24) - 2019049360.76173*pow(xi2, 22) + 1040211599.82845*pow(xi2, 20) - 406333229.98651*pow(xi2, 18) + 119458267.623672*pow(xi2, 16) - 26042517.6376345*pow(xi2, 14) + 4111046.93219014*pow(xi2, 12) - 453365.068400052*pow(xi2, 10) + 33092.9135811911*pow(xi2, 8) - 1469.6335425321*pow(xi2, 6) + 34.4286770472536*pow(xi2, 4) - 0.346016854746267*pow(xi2, 2); case 22: return -32587183.4849491*pow(xi1, 37) + 301182124.285212*pow(xi1, 35) - 1278973293.46615*pow(xi1, 33) + 3307586664.76692*pow(xi1, 31) - 5821150644.88581*pow(xi1, 29) + 7379653798.46706*pow(xi1, 27) - 6957507972.42003*pow(xi1, 25) + 4965713056.14373*pow(xi1, 23) - 2705468268.15591*pow(xi1, 21) + 1126397750.97304*pow(xi1, 19) - 356415789.394206*pow(xi1, 17) + 84676873.7027844*pow(xi1, 15) - 14807100.0023584*pow(xi1, 13) + 1849478.42261893*pow(xi1, 11) - 157832.850914726*pow(xi1, 9) + 8602.58799865656*pow(xi1, 7) - 268.64517924597*pow(xi1, 5) + 3.99072772474028*pow(xi1, 3) - 0.0346016854746267*xi1 + 32587183.4849491*pow(xi2, 37) - 301182124.285212*pow(xi2, 35) + 1278973293.46615*pow(xi2, 33) - 3307586664.76692*pow(xi2, 31) + 5821150644.88581*pow(xi2, 29) - 7379653798.46706*pow(xi2, 27) + 6957507972.42003*pow(xi2, 25) - 4965713056.14373*pow(xi2, 23) + 2705468268.15591*pow(xi2, 21) - 1126397750.97304*pow(xi2, 19) + 356415789.394206*pow(xi2, 17) - 84676873.7027844*pow(xi2, 15) + 14807100.0023584*pow(xi2, 13) - 1849478.42261893*pow(xi2, 11) + 157832.850914726*pow(xi2, 9) - 8602.58799865656*pow(xi2, 7) + 268.64517924597*pow(xi2, 5) - 3.99072772474028*pow(xi2, 3) + 0.0346016854746267*xi2; case 23: return -61948317.4770274*pow(xi1, 38) + 588045987.694992*pow(xi1, 36) - 2570691567.21059*pow(xi1, 34) + 6862092306.58149*pow(xi1, 32) - 12503588653.0115*pow(xi1, 30) + 16469394098.4744*pow(xi1, 28) - 16199740202.3215*pow(xi1, 26) + 12121984061.9096*pow(xi1, 24) - 6964913198.30605*pow(xi1, 22) + 3079877352.23662*pow(xi1, 20) - 1044184571.43626*pow(xi1, 18) + 268758699.305915*pow(xi1, 16) - 51646562.040118*pow(xi1, 14) + 7225262.03304275*pow(xi1, 12) - 709111.122226401*pow(xi1, 10) + 46213.1483845536*pow(xi1, 8) - 1836.73243531171*pow(xi1, 6) + 38.6327818324207*pow(xi1, 4) - 0.363317697483581*pow(xi1, 2) + 61948317.4770274*pow(xi2, 38) - 588045987.694992*pow(xi2, 36) + 2570691567.21059*pow(xi2, 34) - 6862092306.58149*pow(xi2, 32) + 12503588653.0115*pow(xi2, 30) - 16469394098.4744*pow(xi2, 28) + 16199740202.3215*pow(xi2, 26) - 12121984061.9096*pow(xi2, 24) + 6964913198.30605*pow(xi2, 22) - 3079877352.23662*pow(xi2, 20) + 1044184571.43626*pow(xi2, 18) - 268758699.305915*pow(xi2, 16) + 51646562.040118*pow(xi2, 14) - 7225262.03304275*pow(xi2, 12) + 709111.122226401*pow(xi2, 10) - 46213.1483845536*pow(xi2, 8) + 1836.73243531171*pow(xi2, 6) - 38.6327818324207*pow(xi2, 4) + 0.363317697483581*pow(xi2, 2); case 24: return -117976166.383989*pow(xi1, 39) + 1149404705.7981*pow(xi1, 37) - 5168467444.95001*pow(xi1, 35) + 14226677005.8239*pow(xi1, 33) - 26807724752.4166*pow(xi1, 31) + 36636726077.2706*pow(xi1, 29) - 37534635100.886*pow(xi1, 27) + 29386507704.384*pow(xi1, 25) - 17761358284.0216*pow(xi1, 23) + 8315597465.75811*pow(xi1, 21) - 3008687944.80839*pow(xi1, 19) + 834616101.433694*pow(xi1, 17) - 175043774.437964*pow(xi1, 15) + 27169837.4464822*pow(xi1, 13) - 3025402.05860465*pow(xi1, 11) + 230948.140743281*pow(xi1, 9) - 11288.6844422918*pow(xi1, 7) + 316.841657236393*pow(xi1, 5) - 4.28274497942766*pow(xi1, 3) + 0.0330288815894164*xi1 + 117976166.383989*pow(xi2, 39) - 1149404705.7981*pow(xi2, 37) + 5168467444.95001*pow(xi2, 35) - 14226677005.8239*pow(xi2, 33) + 26807724752.4166*pow(xi2, 31) - 36636726077.2706*pow(xi2, 29) + 37534635100.886*pow(xi2, 27) - 29386507704.384*pow(xi2, 25) + 17761358284.0216*pow(xi2, 23) - 8315597465.75811*pow(xi2, 21) + 3008687944.80839*pow(xi2, 19) - 834616101.433694*pow(xi2, 17) + 175043774.437964*pow(xi2, 15) - 27169837.4464822*pow(xi2, 13) + 3025402.05860465*pow(xi2, 11) - 230948.140743281*pow(xi2, 9) + 11288.6844422918*pow(xi2, 7) - 316.841657236393*pow(xi2, 5) + 4.28274497942766*pow(xi2, 3) - 0.0330288815894164*xi2; case 25: return -225052360.873805*pow(xi1, 40) + 2248910330.16548*pow(xi1, 38) - 10393802715.0371*pow(xi1, 36) + 29475054534.4272*pow(xi1, 34) - 57374577463.9329*pow(xi1, 32) + 81251153683.8055*pow(xi1, 30) - 86567901261.2371*pow(xi1, 28) + 70779385557.1236*pow(xi1, 26) - 44897488059.1497*pow(xi1, 24) + 22192208682.0584*pow(xi1, 22) - 8538204843.03323*pow(xi1, 20) + 2541010647.06651*pow(xi1, 18) - 578145679.079641*pow(xi1, 16) + 98762409.9830697*pow(xi1, 14) - 12337113.0280166*pow(xi1, 12) + 1084949.75604712*pow(xi1, 10) - 63529.6180163226*pow(xi1, 8) + 2273.46416187924*pow(xi1, 6) - 43.2375584073452*pow(xi1, 4) + 0.379832138278289*pow(xi1, 2) + 225052360.873805*pow(xi2, 40) - 2248910330.16548*pow(xi2, 38) + 10393802715.0371*pow(xi2, 36) - 29475054534.4272*pow(xi2, 34) + 57374577463.9329*pow(xi2, 32) - 81251153683.8055*pow(xi2, 30) + 86567901261.2371*pow(xi2, 28) - 70779385557.1236*pow(xi2, 26) + 44897488059.1497*pow(xi2, 24) - 22192208682.0584*pow(xi2, 22) + 8538204843.03323*pow(xi2, 20) - 2541010647.06651*pow(xi2, 18) + 578145679.079641*pow(xi2, 16) - 98762409.9830697*pow(xi2, 14) + 12337113.0280166*pow(xi2, 12) - 1084949.75604712*pow(xi2, 10) + 63529.6180163226*pow(xi2, 8) - 2273.46416187924*pow(xi2, 6) + 43.2375584073452*pow(xi2, 4) - 0.379832138278289*pow(xi2, 2); case 26: return -429978087.848327*pow(xi1, 41) + 4404250503.12178*pow(xi1, 39) - 20905920719.0056*pow(xi1, 37) + 61025896951.4279*pow(xi1, 35) - 122587641860.07*pow(xi1, 33) + 179674777476.665*pow(xi1, 31) - 198793181542.137*pow(xi1, 29) + 169446632019.221*pow(xi1, 27) - 112569347434.57*pow(xi1, 25) + 58591489691.1156*pow(xi1, 23) - 23893543905.5802*pow(xi1, 21) + 7597569384.4288*pow(xi1, 19) - 1865442270.4129*pow(xi1, 17) + 348266022.083215*pow(xi1, 15) - 48339465.2060883*pow(xi1, 13) + 4830882.97791334*pow(xi1, 11) - 331913.895870354*pow(xi1, 9) + 14634.4945765412*pow(xi1, 7) - 371.378763023051*pow(xi1, 5) + 4.60018923025928*pow(xi1, 3) - 0.0316526781898574*xi1 + 429978087.848327*pow(xi2, 41) - 4404250503.12178*pow(xi2, 39) + 20905920719.0056*pow(xi2, 37) - 61025896951.4279*pow(xi2, 35) + 122587641860.07*pow(xi2, 33) - 179674777476.665*pow(xi2, 31) + 198793181542.137*pow(xi2, 29) - 169446632019.221*pow(xi2, 27) + 112569347434.57*pow(xi2, 25) - 58591489691.1156*pow(xi2, 23) + 23893543905.5802*pow(xi2, 21) - 7597569384.4288*pow(xi2, 19) + 1865442270.4129*pow(xi2, 17) - 348266022.083215*pow(xi2, 15) + 48339465.2060883*pow(xi2, 13) - 4830882.97791334*pow(xi2, 11) + 331913.895870354*pow(xi2, 9) - 14634.4945765412*pow(xi2, 7) + 371.378763023051*pow(xi2, 5) - 4.60018923025928*pow(xi2, 3) + 0.0316526781898574*xi2; case 27: return -822691408.083133*pow(xi1, 42) + 8632572977.90458*pow(xi1, 40) - 42056253141.7558*pow(xi1, 38) + 126266287574.99*pow(xi1, 36) - 261501013397.442*pow(xi1, 34) + 396237078099.193*pow(xi1, 32) - 454647922164.956*pow(xi1, 30) + 403359319727.115*pow(xi1, 28) - 280098134146.143*pow(xi1, 26) + 153155936673.263*pow(xi1, 24) - 66007168841.7615*pow(xi1, 22) + 22343350843.1183*pow(xi1, 20) - 5892511135.08151*pow(xi1, 18) + 1194958667.49436*pow(xi1, 16) - 182789740.258828*pow(xi1, 14) + 20523114.9238803*pow(xi1, 12) - 1627047.87812054*pow(xi1, 10) + 86086.5914944378*pow(xi1, 8) - 2789.11090834172*pow(xi1, 6) + 48.2703342395325*pow(xi1, 4) - 0.395658477373217*pow(xi1, 2) + 822691408.083133*pow(xi2, 42) - 8632572977.90458*pow(xi2, 40) + 42056253141.7558*pow(xi2, 38) - 126266287574.99*pow(xi2, 36) + 261501013397.442*pow(xi2, 34) - 396237078099.193*pow(xi2, 32) + 454647922164.956*pow(xi2, 30) - 403359319727.115*pow(xi2, 28) + 280098134146.143*pow(xi2, 26) - 153155936673.263*pow(xi2, 24) + 66007168841.7615*pow(xi2, 22) - 22343350843.1183*pow(xi2, 20) + 5892511135.08151*pow(xi2, 18) - 1194958667.49436*pow(xi2, 16) + 182789740.258828*pow(xi2, 14) - 20523114.9238803*pow(xi2, 12) + 1627047.87812054*pow(xi2, 10) - 86086.5914944378*pow(xi2, 8) + 2789.11090834172*pow(xi2, 6) - 48.2703342395325*pow(xi2, 4) + 0.395658477373217*pow(xi2, 2); case 28: return -1576211982.21294*pow(xi1, 43) + 16933561364.8873*pow(xi1, 41) - 84614559003.2213*pow(xi1, 39) + 261084075522.621*pow(xi1, 37) - 556967491278.751*pow(xi1, 35) + 871554447543.638*pow(xi1, 33) - 1035805550194.54*pow(xi1, 31) + 955069184599.961*pow(xi1, 29) - 692003707251.794*pow(xi1, 27) + 396644167130.276*pow(xi1, 25) - 180184197345.899*pow(xi1, 23) + 64714887198.5536*pow(xi1, 21) - 18255406234.0253*pow(xi1, 19) + 3999772030.77123*pow(xi1, 17) - 669517007.246176*pow(xi1, 15) + 83640451.2585604*pow(xi1, 13) - 7546458.86981693*pow(xi1, 11) + 469247.674788719*pow(xi1, 9) - 18761.013674985*pow(xi1, 7) + 432.842258174969*pow(xi1, 5) - 4.94065842258351*pow(xi1, 3) + 0.0304352674902475*xi1 + 1576211982.21294*pow(xi2, 43) - 16933561364.8873*pow(xi2, 41) + 84614559003.2213*pow(xi2, 39) - 261084075522.621*pow(xi2, 37) + 556967491278.751*pow(xi2, 35) - 871554447543.638*pow(xi2, 33) + 1035805550194.54*pow(xi2, 31) - 955069184599.961*pow(xi2, 29) + 692003707251.794*pow(xi2, 27) - 396644167130.276*pow(xi2, 25) + 180184197345.899*pow(xi2, 23) - 64714887198.5536*pow(xi2, 21) + 18255406234.0253*pow(xi2, 19) - 3999772030.77123*pow(xi2, 17) + 669517007.246176*pow(xi2, 15) - 83640451.2585604*pow(xi2, 13) + 7546458.86981693*pow(xi2, 11) - 469247.674788719*pow(xi2, 9) + 18761.013674985*pow(xi2, 7) - 432.842258174969*pow(xi2, 5) + 4.94065842258351*pow(xi2, 3) - 0.0304352674902475*xi2; case 29: return -3023726521.43375*pow(xi1, 44) + 33240747675.0678*pow(xi1, 42) - 170255712367.296*pow(xi1, 40) + 539510185383.932*pow(xi1, 38) - 1184526688778.06*pow(xi1, 36) + 1912326388450.07*pow(xi1, 34) - 2351270564754.81*pow(xi1, 32) + 2250082365455.32*pow(xi1, 30) - 1698284245818.33*pow(xi1, 28) + 1018375869131.64*pow(xi1, 26) - 486441112729.579*pow(xi1, 24) + 184821161665.788*pow(xi1, 22) - 55558771326.0834*pow(xi1, 20) + 13089485207.7017*pow(xi1, 18) - 2382798209.34807*pow(xi1, 16) + 328475493.04593*pow(xi1, 14) - 33341967.2140553*pow(xi1, 12) + 2395791.07105762*pow(xi1, 10) - 115121.977334549*pow(xi1, 8) + 3393.85493899799*pow(xi1, 6) - 53.7562912046496*pow(xi1, 4) + 0.410876111118341*pow(xi1, 2) + 3023726521.43375*pow(xi2, 44) - 33240747675.0678*pow(xi2, 42) + 170255712367.296*pow(xi2, 40) - 539510185383.932*pow(xi2, 38) + 1184526688778.06*pow(xi2, 36) - 1912326388450.07*pow(xi2, 34) + 2351270564754.81*pow(xi2, 32) - 2250082365455.32*pow(xi2, 30) + 1698284245818.33*pow(xi2, 28) - 1018375869131.64*pow(xi2, 26) + 486441112729.579*pow(xi2, 24) - 184821161665.788*pow(xi2, 22) + 55558771326.0834*pow(xi2, 20) - 13089485207.7017*pow(xi2, 18) + 2382798209.34807*pow(xi2, 16) - 328475493.04593*pow(xi2, 14) + 33341967.2140553*pow(xi2, 12) - 2395791.07105762*pow(xi2, 10) + 115121.977334549*pow(xi2, 8) - 3393.85493899799*pow(xi2, 6) + 53.7562912046496*pow(xi2, 4) - 0.410876111118341*pow(xi2, 2); default: return 0.; } case 19: switch(j) { case 0: return -1405.57914733887*pow(xi1, 19)*y1t + 6474.18273925781*pow(xi1, 17)*y1t - 12426.2539672852*pow(xi1, 15)*y1t + 12854.7454833984*pow(xi1, 13)*y1t - 7736.65237426758*pow(xi1, 11)*y1t + 2723.30163574219*pow(xi1, 9)*y1t - 532.819885253906*pow(xi1, 7)*y1t + 50.7447509765625*pow(xi1, 5)*y1t - 1.66923522949219*pow(xi1, 3)*y1t + 1405.57914733887*pow(xi2, 19)*y1t - 6474.18273925781*pow(xi2, 17)*y1t + 12426.2539672852*pow(xi2, 15)*y1t - 12854.7454833984*pow(xi2, 13)*y1t + 7736.65237426758*pow(xi2, 11)*y1t - 2723.30163574219*pow(xi2, 9)*y1t + 532.819885253906*pow(xi2, 7)*y1t - 50.7447509765625*pow(xi2, 5)*y1t + 1.66923522949219*pow(xi2, 3)*y1t; case 1: return -702.789573669434*pow(xi1, 19)*y1r + 247.277812957764*pow(xi1, 18)*y1r + 3237.09136962891*pow(xi1, 17)*y1r - 1146.4698600769*pow(xi1, 16)*y1r - 6213.12698364258*pow(xi1, 15)*y1r + 2218.97392272949*pow(xi1, 14)*y1r + 6427.37274169922*pow(xi1, 13)*y1r - 2320.99571228027*pow(xi1, 12)*y1r - 3868.32618713379*pow(xi1, 11)*y1r + 1418.38626861572*pow(xi1, 10)*y1r + 1361.65081787109*pow(xi1, 9)*y1r - 510.61905670166*pow(xi1, 8)*y1r - 266.409942626953*pow(xi1, 7)*y1r + 103.603866577148*pow(xi1, 6)*y1r + 25.3723754882813*pow(xi1, 5)*y1r - 10.5718231201172*pow(xi1, 4)*y1r - 0.834617614746094*pow(xi1, 3)*y1r + 0.417308807373047*pow(xi1, 2)*y1r + 702.789573669434*pow(xi2, 19)*y1r - 247.277812957764*pow(xi2, 18)*y1r - 3237.09136962891*pow(xi2, 17)*y1r + 1146.4698600769*pow(xi2, 16)*y1r + 6213.12698364258*pow(xi2, 15)*y1r - 2218.97392272949*pow(xi2, 14)*y1r - 6427.37274169922*pow(xi2, 13)*y1r + 2320.99571228027*pow(xi2, 12)*y1r + 3868.32618713379*pow(xi2, 11)*y1r - 1418.38626861572*pow(xi2, 10)*y1r - 1361.65081787109*pow(xi2, 9)*y1r + 510.61905670166*pow(xi2, 8)*y1r + 266.409942626953*pow(xi2, 7)*y1r - 103.603866577148*pow(xi2, 6)*y1r - 25.3723754882813*pow(xi2, 5)*y1r + 10.5718231201172*pow(xi2, 4)*y1r + 0.834617614746094*pow(xi2, 3)*y1r - 0.417308807373047*pow(xi2, 2)*y1r; case 2: return 1405.57914733887*pow(xi1, 19)*y2t - 6474.18273925781*pow(xi1, 17)*y2t + 12426.2539672852*pow(xi1, 15)*y2t - 12854.7454833984*pow(xi1, 13)*y2t + 7736.65237426758*pow(xi1, 11)*y2t - 2723.30163574219*pow(xi1, 9)*y2t + 532.819885253906*pow(xi1, 7)*y2t - 50.7447509765625*pow(xi1, 5)*y2t + 1.66923522949219*pow(xi1, 3)*y2t - 1405.57914733887*pow(xi2, 19)*y2t + 6474.18273925781*pow(xi2, 17)*y2t - 12426.2539672852*pow(xi2, 15)*y2t + 12854.7454833984*pow(xi2, 13)*y2t - 7736.65237426758*pow(xi2, 11)*y2t + 2723.30163574219*pow(xi2, 9)*y2t - 532.819885253906*pow(xi2, 7)*y2t + 50.7447509765625*pow(xi2, 5)*y2t - 1.66923522949219*pow(xi2, 3)*y2t; case 3: return -702.789573669434*pow(xi1, 19)*y2r - 247.277812957764*pow(xi1, 18)*y2r + 3237.09136962891*pow(xi1, 17)*y2r + 1146.4698600769*pow(xi1, 16)*y2r - 6213.12698364258*pow(xi1, 15)*y2r - 2218.97392272949*pow(xi1, 14)*y2r + 6427.37274169922*pow(xi1, 13)*y2r + 2320.99571228027*pow(xi1, 12)*y2r - 3868.32618713379*pow(xi1, 11)*y2r - 1418.38626861572*pow(xi1, 10)*y2r + 1361.65081787109*pow(xi1, 9)*y2r + 510.61905670166*pow(xi1, 8)*y2r - 266.409942626953*pow(xi1, 7)*y2r - 103.603866577148*pow(xi1, 6)*y2r + 25.3723754882813*pow(xi1, 5)*y2r + 10.5718231201172*pow(xi1, 4)*y2r - 0.834617614746094*pow(xi1, 3)*y2r - 0.417308807373047*pow(xi1, 2)*y2r + 702.789573669434*pow(xi2, 19)*y2r + 247.277812957764*pow(xi2, 18)*y2r - 3237.09136962891*pow(xi2, 17)*y2r - 1146.4698600769*pow(xi2, 16)*y2r + 6213.12698364258*pow(xi2, 15)*y2r + 2218.97392272949*pow(xi2, 14)*y2r - 6427.37274169922*pow(xi2, 13)*y2r - 2320.99571228027*pow(xi2, 12)*y2r + 3868.32618713379*pow(xi2, 11)*y2r + 1418.38626861572*pow(xi2, 10)*y2r - 1361.65081787109*pow(xi2, 9)*y2r - 510.61905670166*pow(xi2, 8)*y2r + 266.409942626953*pow(xi2, 7)*y2r + 103.603866577148*pow(xi2, 6)*y2r - 25.3723754882813*pow(xi2, 5)*y2r - 10.5718231201172*pow(xi2, 4)*y2r + 0.834617614746094*pow(xi2, 3)*y2r + 0.417308807373047*pow(xi2, 2)*y2r; case 4: return -1335.30018997192*pow(xi1, 20) + 6609.06154632568*pow(xi1, 18) - 13942.5528144836*pow(xi1, 16) + 16374.4972229004*pow(xi1, 14) - 11733.9227676392*pow(xi1, 12) + 5287.74400939941*pow(xi1, 10) - 1487.45551300049*pow(xi1, 8) + 249.495025634766*pow(xi1, 6) - 22.3955726623535*pow(xi1, 4) + 0.834617614746094*pow(xi1, 2) + 1335.30018997192*pow(xi2, 20) - 6609.06154632568*pow(xi2, 18) + 13942.5528144836*pow(xi2, 16) - 16374.4972229004*pow(xi2, 14) + 11733.9227676392*pow(xi2, 12) - 5287.74400939941*pow(xi2, 10) + 1487.45551300049*pow(xi2, 8) - 249.495025634766*pow(xi2, 6) + 22.3955726623535*pow(xi2, 4) - 0.834617614746094*pow(xi2, 2); case 5: return -2119.52411106655*pow(xi1, 21) + 11060.0621795654*pow(xi1, 19) - 24748.0856323242*pow(xi1, 17) + 30994.2196655273*pow(xi1, 15) - 23765.4090881348*pow(xi1, 13) + 11450.245513916*pow(xi1, 11) - 3413.99407958984*pow(xi1, 9) + 593.230303083147*pow(xi1, 7) - 52.4139862060547*pow(xi1, 5) + 1.66923522949219*pow(xi1, 3) + 2119.52411106655*pow(xi2, 21) - 11060.0621795654*pow(xi2, 19) + 24748.0856323242*pow(xi2, 17) - 30994.2196655273*pow(xi2, 15) + 23765.4090881348*pow(xi2, 13) - 11450.245513916*pow(xi2, 11) + 3413.99407958984*pow(xi2, 9) - 593.230303083147*pow(xi2, 7) + 52.4139862060547*pow(xi2, 5) - 1.66923522949219*pow(xi2, 3); case 6: return -3540.56868553162*pow(xi1, 22) + 19388.8285160065*pow(xi1, 20) - 45859.8821353912*pow(xi1, 18) + 61306.8062496185*pow(xi1, 16) - 50899.6626853943*pow(xi1, 14) + 27168.544254303*pow(xi1, 12) - 9342.84868240356*pow(xi1, 10) + 2023.97553634644*pow(xi1, 8) - 263.558332443237*pow(xi1, 6) + 18.9875507354736*pow(xi1, 4) - 0.62596321105957*pow(xi1, 2) + 3540.56868553162*pow(xi2, 22) - 19388.8285160065*pow(xi2, 20) + 45859.8821353912*pow(xi2, 18) - 61306.8062496185*pow(xi2, 16) + 50899.6626853943*pow(xi2, 14) - 27168.544254303*pow(xi2, 12) + 9342.84868240356*pow(xi2, 10) - 2023.97553634644*pow(xi2, 8) + 263.558332443237*pow(xi2, 6) - 18.9875507354736*pow(xi2, 4) + 0.62596321105957*pow(xi2, 2); case 7: return -6095.93564987183*pow(xi1, 23) + 34933.6110305786*pow(xi1, 21) - 87051.21717453*pow(xi1, 19) + 123659.410858154*pow(xi1, 17) - 110306.809043884*pow(xi1, 15) + 64153.908493042*pow(xi1, 13) - 24448.4942550659*pow(xi1, 11) + 5969.55612182617*pow(xi1, 9) - 881.217098236084*pow(xi1, 7) + 69.2732620239258*pow(xi1, 5) - 2.08654403686523*pow(xi1, 3) + 6095.93564987183*pow(xi2, 23) - 34933.6110305786*pow(xi2, 21) + 87051.21717453*pow(xi2, 19) - 123659.410858154*pow(xi2, 17) + 110306.809043884*pow(xi2, 15) - 64153.908493042*pow(xi2, 13) + 24448.4942550659*pow(xi2, 11) - 5969.55612182617*pow(xi2, 9) + 881.217098236084*pow(xi2, 7) - 69.2732620239258*pow(xi2, 5) + 2.08654403686523*pow(xi2, 3); case 8: return -10710.2202737331*pow(xi1, 24) + 64084.2932081223*pow(xi1, 22) - 167771.560342312*pow(xi1, 20) + 252330.548357964*pow(xi1, 18) - 240678.833252192*pow(xi1, 16) + 151630.777410507*pow(xi1, 14) - 63727.5063905716*pow(xi1, 12) + 17635.4748363495*pow(xi1, 10) - 3100.26537537575*pow(xi1, 8) + 325.466094017029*pow(xi1, 6) - 18.6919569969177*pow(xi1, 4) + 0.521636009216309*pow(xi1, 2) + 10710.2202737331*pow(xi2, 24) - 64084.2932081223*pow(xi2, 22) + 167771.560342312*pow(xi2, 20) - 252330.548357964*pow(xi2, 18) + 240678.833252192*pow(xi2, 16) - 151630.777410507*pow(xi2, 14) + 63727.5063905716*pow(xi2, 12) - 17635.4748363495*pow(xi2, 10) + 3100.26537537575*pow(xi2, 8) - 325.466094017029*pow(xi2, 6) + 18.6919569969177*pow(xi2, 4) - 0.521636009216309*pow(xi2, 2); case 9: return -19094.7927165985*pow(xi1, 25) + 119064.266939163*pow(xi1, 23) - 326681.909379959*pow(xi1, 21) + 518565.316343307*pow(xi1, 19) - 526676.111125946*pow(xi1, 17) + 357375.374311066*pow(xi1, 15) - 164236.218235016*pow(xi1, 13) + 50730.0305137634*pow(xi1, 11) - 10234.6607875824*pow(xi1, 9) + 1273.41782569885*pow(xi1, 7) - 87.1479892730713*pow(xi1, 5) + 2.43430137634277*pow(xi1, 3) + 19094.7927165985*pow(xi2, 25) - 119064.266939163*pow(xi2, 23) + 326681.909379959*pow(xi2, 21) - 518565.316343307*pow(xi2, 19) + 526676.111125946*pow(xi2, 17) - 357375.374311066*pow(xi2, 15) + 164236.218235016*pow(xi2, 13) - 50730.0305137634*pow(xi2, 11) + 10234.6607875824*pow(xi2, 9) - 1273.41782569885*pow(xi2, 7) + 87.1479892730713*pow(xi2, 5) - 2.43430137634277*pow(xi2, 3); case 10: return -34425.7080227137*pow(xi1, 26) + 223315.047395825*pow(xi1, 24) - 640760.128458738*pow(xi1, 22) + 1070494.58503604*pow(xi1, 20) - 1153444.84326541*pow(xi1, 18) + 838792.879251838*pow(xi1, 16) - 418623.917339802*pow(xi1, 14) + 142953.808037281*pow(xi1, 12) - 32702.0305608511*pow(xi1, 10) + 4801.93332374096*pow(xi1, 8) - 420.951565504074*pow(xi1, 6) + 19.778698682785*pow(xi1, 4) - 0.45643150806427*pow(xi1, 2) + 34425.7080227137*pow(xi2, 26) - 223315.047395825*pow(xi2, 24) + 640760.128458738*pow(xi2, 22) - 1070494.58503604*pow(xi2, 20) + 1153444.84326541*pow(xi2, 18) - 838792.879251838*pow(xi2, 16) + 418623.917339802*pow(xi2, 14) - 142953.808037281*pow(xi2, 12) + 32702.0305608511*pow(xi2, 10) - 4801.93332374096*pow(xi2, 8) + 420.951565504074*pow(xi2, 6) - 19.778698682785*pow(xi2, 4) + 0.45643150806427*pow(xi2, 2); case 11: return -62617.9545104504*pow(xi1, 27) + 421917.768359184*pow(xi1, 25) - 1263536.77855253*pow(xi1, 23) + 2216141.37401104*pow(xi1, 21) - 2525006.14107251*pow(xi1, 19) + 1959343.88411522*pow(xi1, 17) - 1055685.46106815*pow(xi1, 15) + 395240.543043137*pow(xi1, 13) - 101248.362429857*pow(xi1, 11) + 17159.9815893173*pow(xi1, 9) - 1813.4675860405*pow(xi1, 7) + 107.352690696716*pow(xi1, 5) - 2.73858904838562*pow(xi1, 3) + 62617.9545104504*pow(xi2, 27) - 421917.768359184*pow(xi2, 25) + 1263536.77855253*pow(xi2, 23) - 2216141.37401104*pow(xi2, 21) + 2525006.14107251*pow(xi2, 19) - 1959343.88411522*pow(xi2, 17) + 1055685.46106815*pow(xi2, 15) - 395240.543043137*pow(xi2, 13) + 101248.362429857*pow(xi2, 11) - 17159.9815893173*pow(xi2, 9) + 1813.4675860405*pow(xi2, 7) - 107.352690696716*pow(xi2, 5) + 2.73858904838562*pow(xi2, 3); case 12: return -114725.038085218*pow(xi1, 28) + 801794.444799721*pow(xi1, 26) - 2501673.42693731*pow(xi1, 24) + 4595958.69847834*pow(xi1, 22) - 5521081.21116832*pow(xi1, 20) + 4554034.10654563*pow(xi1, 18) - 2635353.3188543*pow(xi1, 16) + 1074078.76940336*pow(xi1, 14) - 304999.325132221*pow(xi1, 12) + 58775.3960224986*pow(xi1, 10) - 7336.62985315919*pow(xi1, 8) + 548.831502556801*pow(xi1, 6) - 21.703318208456*pow(xi1, 4) + 0.410788357257843*pow(xi1, 2) + 114725.038085218*pow(xi2, 28) - 801794.444799721*pow(xi2, 26) + 2501673.42693731*pow(xi2, 24) - 4595958.69847834*pow(xi2, 22) + 5521081.21116832*pow(xi2, 20) - 4554034.10654563*pow(xi2, 18) + 2635353.3188543*pow(xi2, 16) - 1074078.76940336*pow(xi2, 14) + 304999.325132221*pow(xi2, 12) - 58775.3960224986*pow(xi2, 10) + 7336.62985315919*pow(xi2, 8) - 548.831502556801*pow(xi2, 6) + 21.703318208456*pow(xi2, 4) - 0.410788357257843*pow(xi2, 2); case 13: return -211468.095279336*pow(xi1, 29) + 1530931.36221707*pow(xi1, 27) - 4968446.72460437*pow(xi1, 25) + 9541290.03068805*pow(xi1, 23) - 12053003.4512252*pow(xi1, 21) + 10531942.866402*pow(xi1, 19) - 6516402.00767183*pow(xi1, 17) + 2873527.1355443*pow(xi1, 15) - 896790.912789702*pow(xi1, 13) + 194050.851504207*pow(xi1, 11) - 28050.0218017101*pow(xi1, 9) + 2546.69480967522*pow(xi1, 7) - 130.74024116993*pow(xi1, 5) + 3.01244795322418*pow(xi1, 3) + 211468.095279336*pow(xi2, 29) - 1530931.36221707*pow(xi2, 27) + 4968446.72460437*pow(xi2, 25) - 9541290.03068805*pow(xi2, 23) + 12053003.4512252*pow(xi2, 21) - 10531942.866402*pow(xi2, 19) + 6516402.00767183*pow(xi2, 17) - 2873527.1355443*pow(xi2, 15) + 896790.912789702*pow(xi2, 13) - 194050.851504207*pow(xi2, 11) + 28050.0218017101*pow(xi2, 9) - 2546.69480967522*pow(xi2, 7) + 130.74024116993*pow(xi2, 5) - 3.01244795322418*pow(xi2, 3); case 14: return -391803.387642547*pow(xi1, 30) + 2934653.8323424*pow(xi1, 28) - 9891570.76237254*pow(xi1, 26) + 19818695.1768938*pow(xi1, 24) - 26264479.8180815*pow(xi1, 22) + 24237903.7461447*pow(xi1, 20) - 15970425.639332*pow(xi1, 18) + 7579109.61396427*pow(xi1, 16) - 2580646.50840618*pow(xi1, 14) + 620519.280194566*pow(xi1, 12) - 102263.733961907*pow(xi1, 10) + 10996.2634524554*pow(xi1, 8) - 711.916762545705*pow(xi1, 6) + 24.2251022905111*pow(xi1, 4) - 0.376555994153023*pow(xi1, 2) + 391803.387642547*pow(xi2, 30) - 2934653.8323424*pow(xi2, 28) + 9891570.76237254*pow(xi2, 26) - 19818695.1768938*pow(xi2, 24) + 26264479.8180815*pow(xi2, 22) - 24237903.7461447*pow(xi2, 20) + 15970425.639332*pow(xi2, 18) - 7579109.61396427*pow(xi2, 16) + 2580646.50840618*pow(xi2, 14) - 620519.280194566*pow(xi2, 12) + 102263.733961907*pow(xi2, 10) - 10996.2634524554*pow(xi2, 8) + 711.916762545705*pow(xi2, 6) - 24.2251022905111*pow(xi2, 4) + 0.376555994153023*pow(xi2, 2); case 15: return -729162.632089108*pow(xi1, 31) + 5644160.68911642*pow(xi1, 29) - 19730891.0453005*pow(xi1, 27) + 41174618.8415927*pow(xi1, 25) - 57119932.9378419*pow(xi1, 23) + 55517614.4424215*pow(xi1, 21) - 38817710.5718181*pow(xi1, 19) + 19732985.769913*pow(xi1, 17) - 7284416.2171289*pow(xi1, 15) + 1929320.51155955*pow(xi1, 13) - 357906.614608616*pow(xi1, 11) + 44689.359359622*pow(xi1, 9) - 3524.28437796235*pow(xi1, 7) + 157.952687680721*pow(xi1, 5) - 3.26348528265953*pow(xi1, 3) + 729162.632089108*pow(xi2, 31) - 5644160.68911642*pow(xi2, 29) + 19730891.0453005*pow(xi2, 27) - 41174618.8415927*pow(xi2, 25) + 57119932.9378419*pow(xi2, 23) - 55517614.4424215*pow(xi2, 21) + 38817710.5718181*pow(xi2, 19) - 19732985.769913*pow(xi2, 17) + 7284416.2171289*pow(xi2, 15) - 1929320.51155955*pow(xi2, 13) + 357906.614608616*pow(xi2, 11) - 44689.359359622*pow(xi2, 9) + 3524.28437796235*pow(xi2, 7) - 157.952687680721*pow(xi2, 5) + 3.26348528265953*pow(xi2, 3); case 16: return -1362297.14968434*pow(xi1, 32) + 10886145.5732351*pow(xi1, 30) - 39418452.9770324*pow(xi1, 28) + 85539062.1861455*pow(xi1, 26) - 123972950.147591*pow(xi1, 24) + 126591326.678001*pow(xi1, 22) - 93626216.0619297*pow(xi1, 20) + 50771905.0317212*pow(xi1, 18) - 20208229.3198293*pow(xi1, 16) + 5851373.28615982*pow(xi1, 14) - 1208924.23957804*pow(xi1, 12) + 172527.140995972*pow(xi1, 10) - 16158.0459508058*pow(xi1, 8) + 914.918098993599*pow(xi1, 6) - 27.2151361964643*pow(xi1, 4) + 0.349659137427807*pow(xi1, 2) + 1362297.14968434*pow(xi2, 32) - 10886145.5732351*pow(xi2, 30) + 39418452.9770324*pow(xi2, 28) - 85539062.1861455*pow(xi2, 26) + 123972950.147591*pow(xi2, 24) - 126591326.678001*pow(xi2, 22) + 93626216.0619297*pow(xi2, 20) - 50771905.0317212*pow(xi2, 18) + 20208229.3198293*pow(xi2, 16) - 5851373.28615982*pow(xi2, 14) + 1208924.23957804*pow(xi2, 12) - 172527.140995972*pow(xi2, 10) + 16158.0459508058*pow(xi2, 8) - 914.918098993599*pow(xi2, 6) + 27.2151361964643*pow(xi2, 4) - 0.349659137427807*pow(xi2, 2); case 17: return -2553963.1412264*pow(xi1, 33) + 21048178.9914865*pow(xi1, 31) - 78848995.5336358*pow(xi1, 29) + 177665999.267845*pow(xi1, 27) - 268523439.726083*pow(xi1, 25) + 287414158.917535*pow(xi1, 23) - 224207568.133305*pow(xi1, 21) + 129222615.574253*pow(xi1, 19) - 55188505.9515298*pow(xi1, 17) + 17357266.487902*pow(xi1, 15) - 3958163.94090767*pow(xi1, 13) + 637275.694173083*pow(xi1, 11) - 69477.9699251801*pow(xi1, 9) + 4805.48207871616*pow(xi1, 7) - 189.515252485871*pow(xi1, 5) + 3.49659137427807*pow(xi1, 3) + 2553963.1412264*pow(xi2, 33) - 21048178.9914865*pow(xi2, 31) + 78848995.5336358*pow(xi2, 29) - 177665999.267845*pow(xi2, 27) + 268523439.726083*pow(xi2, 25) - 287414158.917535*pow(xi2, 23) + 224207568.133305*pow(xi2, 21) - 129222615.574253*pow(xi2, 19) + 55188505.9515298*pow(xi2, 17) - 17357266.487902*pow(xi2, 15) + 3958163.94090767*pow(xi2, 13) - 637275.694173083*pow(xi2, 11) + 69477.9699251801*pow(xi2, 9) - 4805.48207871616*pow(xi2, 7) + 189.515252485871*pow(xi2, 5) - 3.49659137427807*pow(xi2, 3); case 18: return -4802765.24535773*pow(xi1, 34) + 40783598.911459*pow(xi1, 32) - 157883359.35978*pow(xi1, 30) + 368888820.619509*pow(xi1, 28) - 580446875.096901*pow(xi1, 26) + 649886868.128478*pow(xi1, 24) - 533335979.143528*pow(xi1, 22) + 325624954.349418*pow(xi1, 20) - 148585961.788267*pow(xi1, 18) + 50473062.3188808*pow(xi1, 16) - 12606823.4744614*pow(xi1, 14) + 2265194.66060973*pow(xi1, 12) - 282896.404740756*pow(xi1, 10) + 23294.9619154539*pow(xi1, 8) - 1163.72388588265*pow(xi1, 6) + 30.5951745249331*pow(xi1, 4) - 0.327805441338569*pow(xi1, 2) + 4802765.24535773*pow(xi2, 34) - 40783598.911459*pow(xi2, 32) + 157883359.35978*pow(xi2, 30) - 368888820.619509*pow(xi2, 28) + 580446875.096901*pow(xi2, 26) - 649886868.128478*pow(xi2, 24) + 533335979.143528*pow(xi2, 22) - 325624954.349418*pow(xi2, 20) + 148585961.788267*pow(xi2, 18) - 50473062.3188808*pow(xi2, 16) + 12606823.4744614*pow(xi2, 14) - 2265194.66060973*pow(xi2, 12) + 282896.404740756*pow(xi2, 10) - 23294.9619154539*pow(xi2, 8) + 1163.72388588265*pow(xi2, 6) - 30.5951745249331*pow(xi2, 4) + 0.327805441338569*pow(xi2, 2); case 19: return -9056643.03410314*pow(xi1, 35) + 79172857.3780183*pow(xi1, 33) - 316403078.834838*pow(xi1, 31) + 765596763.042664*pow(xi1, 29) - 1252233399.81885*pow(xi1, 27) + 1463811236.34868*pow(xi1, 25) - 1260793686.29119*pow(xi1, 23) + 813014601.57817*pow(xi1, 21) - 394872249.030352*pow(xi1, 19) + 144155884.163271*pow(xi1, 17) - 39176848.6364614*pow(xi1, 15) + 7784231.60773869*pow(xi1, 13) - 1099017.838176*pow(xi1, 11) + 105586.258920953*pow(xi1, 9) - 6459.08674135272*pow(xi1, 7) + 225.879802778363*pow(xi1, 5) - 3.71512833517045*pow(xi1, 3) + 9056643.03410314*pow(xi2, 35) - 79172857.3780183*pow(xi2, 33) + 316403078.834838*pow(xi2, 31) - 765596763.042664*pow(xi2, 29) + 1252233399.81885*pow(xi2, 27) - 1463811236.34868*pow(xi2, 25) + 1260793686.29119*pow(xi2, 23) - 813014601.57817*pow(xi2, 21) + 394872249.030352*pow(xi2, 19) - 144155884.163271*pow(xi2, 17) + 39176848.6364614*pow(xi2, 15) - 7784231.60773869*pow(xi2, 13) + 1099017.838176*pow(xi2, 11) - 105586.258920953*pow(xi2, 9) + 6459.08674135272*pow(xi2, 7) - 225.879802778363*pow(xi2, 5) + 3.71512833517045*pow(xi2, 3); case 20: return -17120968.6987289*pow(xi1, 36) + 153955308.142856*pow(xi1, 34) - 634520170.735474*pow(xi1, 32) + 1588150421.7811*pow(xi1, 30) - 2696332621.91209*pow(xi1, 28) + 3285026390.1665*pow(xi1, 26) - 2963177684.40006*pow(xi1, 24) + 2012710576.66574*pow(xi1, 22) - 1036951472.45552*pow(xi1, 20) + 405061899.334431*pow(xi1, 18) - 119085133.628048*pow(xi1, 16) + 25961307.0176306*pow(xi1, 14) - 4098248.04843586*pow(xi1, 12) + 451955.890922382*pow(xi1, 10) - 32990.2157787024*pow(xi1, 8) + 1465.08149857633*pow(xi1, 6) - 34.3133380956715*pow(xi1, 4) + 0.309594027930871*pow(xi1, 2) + 17120968.6987289*pow(xi2, 36) - 153955308.142856*pow(xi2, 34) + 634520170.735474*pow(xi2, 32) - 1588150421.7811*pow(xi2, 30) + 2696332621.91209*pow(xi2, 28) - 3285026390.1665*pow(xi2, 26) + 2963177684.40006*pow(xi2, 24) - 2012710576.66574*pow(xi2, 22) + 1036951472.45552*pow(xi2, 20) - 405061899.334431*pow(xi2, 18) + 119085133.628048*pow(xi2, 16) - 25961307.0176306*pow(xi2, 14) + 4098248.04843586*pow(xi2, 12) - 451955.890922382*pow(xi2, 10) + 32990.2157787024*pow(xi2, 8) - 1465.08149857633*pow(xi2, 6) + 34.3133380956715*pow(xi2, 4) - 0.309594027930871*pow(xi2, 2); case 21: return -32439730.1660127*pow(xi1, 37) + 299821748.504057*pow(xi1, 35) - 1273206633.86498*pow(xi1, 33) + 3292699297.39704*pow(xi1, 31) - 5794994748.83702*pow(xi1, 29) + 7346551305.36478*pow(xi1, 27) - 6926351242.32454*pow(xi1, 25) + 4943512575.58459*pow(xi1, 23) - 2693392503.79356*pow(xi1, 21) + 1121378210.87288*pow(xi1, 19) - 354830029.912586*pow(xi1, 17) + 84300723.3929026*pow(xi1, 15) - 14741426.4360987*pow(xi1, 13) + 1841288.09378052*pow(xi1, 11) - 157134.957986493*pow(xi1, 9) + 8564.60918867961*pow(xi1, 7) - 267.447960928548*pow(xi1, 5) + 3.92152435379103*pow(xi1, 3) + 32439730.1660127*pow(xi2, 37) - 299821748.504057*pow(xi2, 35) + 1273206633.86498*pow(xi2, 33) - 3292699297.39704*pow(xi2, 31) + 5794994748.83702*pow(xi2, 29) - 7346551305.36478*pow(xi2, 27) + 6926351242.32454*pow(xi2, 25) - 4943512575.58459*pow(xi2, 23) + 2693392503.79356*pow(xi2, 21) - 1121378210.87288*pow(xi2, 19) + 354830029.912586*pow(xi2, 17) - 84300723.3929026*pow(xi2, 15) + 14741426.4360987*pow(xi2, 13) - 1841288.09378052*pow(xi2, 11) + 157134.957986493*pow(xi2, 9) - 8564.60918867961*pow(xi2, 7) + 267.447960928548*pow(xi2, 5) - 3.92152435379103*pow(xi2, 3); case 22: return -61592803.4599426*pow(xi1, 38) + 584676985.136067*pow(xi1, 36) - 2555988333.59488*pow(xi1, 34) + 6822908928.68779*pow(xi1, 32) - 12432308002.2498*pow(xi1, 30) + 16375656213.2256*pow(xi1, 28) - 16107683650.0167*pow(xi1, 26) + 12053207925.8038*pow(xi1, 24) - 6925457912.8482*pow(xi1, 22) + 3062457034.47476*pow(xi1, 20) - 1038287442.79005*pow(xi1, 18) + 267243136.899296*pow(xi1, 16) - 51355753.1063992*pow(xi1, 14) + 7184638.11364675*pow(xi1, 12) - 705129.947642557*pow(xi1, 10) + 45954.0694179519*pow(xi1, 8) - 1826.4303601564*pow(xi1, 6) + 38.3329005583073*pow(xi1, 4) - 0.294114326534327*pow(xi1, 2) + 61592803.4599426*pow(xi2, 38) - 584676985.136067*pow(xi2, 36) + 2555988333.59488*pow(xi2, 34) - 6822908928.68779*pow(xi2, 32) + 12432308002.2498*pow(xi2, 30) - 16375656213.2256*pow(xi2, 28) + 16107683650.0167*pow(xi2, 26) - 12053207925.8038*pow(xi2, 24) + 6925457912.8482*pow(xi2, 22) - 3062457034.47476*pow(xi2, 20) + 1038287442.79005*pow(xi2, 18) - 267243136.899296*pow(xi2, 16) + 51355753.1063992*pow(xi2, 14) - 7184638.11364675*pow(xi2, 12) + 705129.947642557*pow(xi2, 10) - 45954.0694179519*pow(xi2, 8) + 1826.4303601564*pow(xi2, 6) - 38.3329005583073*pow(xi2, 4) + 0.294114326534327*pow(xi2, 2); case 23: return -117169215.861527*pow(xi1, 39) + 1141555508.85931*pow(xi1, 37) - 5133228518.34571*pow(xi1, 35) + 14129831014.1259*pow(xi1, 33) - 26625518290.5583*pow(xi1, 31) + 36388095709.5377*pow(xi1, 29) - 37280297135.4758*pow(xi1, 27) + 29187680419.3394*pow(xi1, 25) - 17641364021.031*pow(xi1, 23) + 8259500271.79728*pow(xi1, 21) - 2988420683.98686*pow(xi1, 19) + 829001983.126658*pow(xi1, 17) - 173867997.780774*pow(xi1, 15) + 26987592.7666662*pow(xi1, 13) - 3005137.05266305*pow(xi1, 11) + 229403.31855374*pow(xi1, 9) - 11213.2459524736*pow(xi1, 7) + 314.584683661116*pow(xi1, 5) - 4.11760057148058*pow(xi1, 3) + 117169215.861527*pow(xi2, 39) - 1141555508.85931*pow(xi2, 37) + 5133228518.34571*pow(xi2, 35) - 14129831014.1259*pow(xi2, 33) + 26625518290.5583*pow(xi2, 31) - 36388095709.5377*pow(xi2, 29) + 37280297135.4758*pow(xi2, 27) - 29187680419.3394*pow(xi2, 25) + 17641364021.031*pow(xi2, 23) - 8259500271.79728*pow(xi2, 21) + 2988420683.98686*pow(xi2, 19) - 829001983.126658*pow(xi2, 17) + 173867997.780774*pow(xi2, 15) - 26987592.7666662*pow(xi2, 13) + 3005137.05266305*pow(xi2, 11) - 229403.31855374*pow(xi2, 9) + 11213.2459524736*pow(xi2, 7) - 314.584683661116*pow(xi2, 5) + 4.11760057148058*pow(xi2, 3); case 24: return -223287244.317932*pow(xi1, 40) + 2231298889.66052*pow(xi1, 38) - 10312531213.2237*pow(xi1, 36) + 29244927646.0313*pow(xi1, 34) - 56927287899.7051*pow(xi1, 32) + 80618650592.7439*pow(xi1, 30) - 85894985109.8443*pow(xi1, 28) + 70229985530.9422*pow(xi1, 26) - 44549480703.4182*pow(xi1, 24) + 22020434506.5471*pow(xi1, 22) - 8472208302.94696*pow(xi1, 20) + 2521396724.84906*pow(xi1, 18) - 573689069.79194*pow(xi1, 16) + 98002129.1228823*pow(xi1, 14) - 12242267.5399568*pow(xi1, 12) + 1076619.87856925*pow(xi1, 10) - 63042.4471244913*pow(xi1, 8) + 2255.80251793066*pow(xi1, 6) - 42.626524097941*pow(xi1, 4) + 0.28074549351004*pow(xi1, 2) + 223287244.317932*pow(xi2, 40) - 2231298889.66052*pow(xi2, 38) + 10312531213.2237*pow(xi2, 36) - 29244927646.0313*pow(xi2, 34) + 56927287899.7051*pow(xi2, 32) - 80618650592.7439*pow(xi2, 30) + 85894985109.8443*pow(xi2, 28) - 70229985530.9422*pow(xi2, 26) + 44549480703.4182*pow(xi2, 24) - 22020434506.5471*pow(xi2, 22) + 8472208302.94696*pow(xi2, 20) - 2521396724.84906*pow(xi2, 18) + 573689069.79194*pow(xi2, 16) - 98002129.1228823*pow(xi2, 14) + 12242267.5399568*pow(xi2, 12) - 1076619.87856925*pow(xi2, 10) + 63042.4471244913*pow(xi2, 8) - 2255.80251793066*pow(xi2, 6) + 42.626524097941*pow(xi2, 4) - 0.28074549351004*pow(xi2, 2); case 25: return -426211070.808355*pow(xi1, 41) + 4365721614.85918*pow(xi1, 39) - 20723298178.1831*pow(xi1, 37) + 60493571748.5145*pow(xi1, 35) - 121519831214.533*pow(xi1, 33) + 178111895896.725*pow(xi1, 31) - 197066396253.507*pow(xi1, 29) + 167976778695.129*pow(xi1, 27) - 111594197200.571*pow(xi1, 25) + 58084613149.5716*pow(xi1, 23) - 23687115110.1917*pow(xi1, 21) + 7532016460.0326*pow(xi1, 19) - 1849367958.92472*pow(xi1, 17) + 345268929.319048*pow(xi1, 15) - 47924000.009509*pow(xi1, 13) + 4789415.46284829*pow(xi1, 11) - 329068.299702693*pow(xi1, 9) + 14508.7363759144*pow(xi1, 7) - 367.62686556828*pow(xi1, 5) + 4.30476423382061*pow(xi1, 3) + 426211070.808355*pow(xi2, 41) - 4365721614.85918*pow(xi2, 39) + 20723298178.1831*pow(xi2, 37) - 60493571748.5145*pow(xi2, 35) + 121519831214.533*pow(xi2, 33) - 178111895896.725*pow(xi2, 31) + 197066396253.507*pow(xi2, 29) - 167976778695.129*pow(xi2, 27) + 111594197200.571*pow(xi2, 25) - 58084613149.5716*pow(xi2, 23) + 23687115110.1917*pow(xi2, 21) - 7532016460.0326*pow(xi2, 19) + 1849367958.92472*pow(xi2, 17) - 345268929.319048*pow(xi2, 15) + 47924000.009509*pow(xi2, 13) - 4789415.46284829*pow(xi2, 11) + 329068.299702693*pow(xi2, 9) - 14508.7363759144*pow(xi2, 7) + 367.62686556828*pow(xi2, 5) - 4.30476423382061*pow(xi2, 3); case 26: return -814790410.166368*pow(xi1, 42) + 8549783317.50976*pow(xi1, 40) - 41653476712.0875*pow(xi1, 38) + 125058682142.194*pow(xi1, 36) - 259003421118.796*pow(xi1, 34) + 392457703405.874*pow(xi1, 32) - 450317176392.393*pow(xi1, 30) + 399522176450.682*pow(xi1, 28) - 277437040157.331*pow(xi1, 26) + 151702743338.496*pow(xi1, 24) - 65381671352.4093*pow(xi1, 22) + 22131888579.5098*pow(xi1, 20) - 5836813063.12121*pow(xi1, 18) + 1183677533.4723*pow(xi1, 16) - 181066218.998149*pow(xi1, 14) + 20329839.01153*pow(xi1, 12) - 1611743.59518819*pow(xi1, 10) + 85277.0028051157*pow(xi1, 8) - 2761.75736724289*pow(xi1, 6) + 47.1730413956175*pow(xi1, 4) - 0.269047764613788*pow(xi1, 2) + 814790410.166368*pow(xi2, 42) - 8549783317.50976*pow(xi2, 40) + 41653476712.0875*pow(xi2, 38) - 125058682142.194*pow(xi2, 36) + 259003421118.796*pow(xi2, 34) - 392457703405.874*pow(xi2, 32) + 450317176392.393*pow(xi2, 30) - 399522176450.682*pow(xi2, 28) + 277437040157.331*pow(xi2, 26) - 151702743338.496*pow(xi2, 24) + 65381671352.4093*pow(xi2, 22) - 22131888579.5098*pow(xi2, 20) + 5836813063.12121*pow(xi2, 18) - 1183677533.4723*pow(xi2, 16) + 181066218.998149*pow(xi2, 14) - 20329839.01153*pow(xi2, 12) + 1611743.59518819*pow(xi2, 10) - 85277.0028051157*pow(xi2, 8) + 2761.75736724289*pow(xi2, 6) - 47.1730413956175*pow(xi2, 4) + 0.269047764613788*pow(xi2, 2); case 27: return -1559849920.11385*pow(xi1, 43) + 16758016581.4581*pow(xi1, 41) - 83738552891.7078*pow(xi1, 39) + 258384653060.602*pow(xi1, 37) - 551216342688.762*pow(xi1, 35) + 862566527590.693*pow(xi1, 33) - 1025137419153.52*pow(xi1, 31) + 945245017769.346*pow(xi1, 29) - 684894432229.456*pow(xi1, 27) + 392574311178.262*pow(xi1, 25) - 178337649002.54*pow(xi1, 23) + 64052489187.5357*pow(xi1, 21) - 18068776057.7848*pow(xi1, 19) + 3958930149.3731*pow(xi1, 17) - 662688642.100233*pow(xi1, 15) + 82788410.2822969*pow(xi1, 13) - 7469672.88666969*pow(xi1, 11) + 464477.057046165*pow(xi1, 9) - 18568.1392978458*pow(xi1, 7) + 426.889119853877*pow(xi1, 5) - 4.4841294102298*pow(xi1, 3) + 1559849920.11385*pow(xi2, 43) - 16758016581.4581*pow(xi2, 41) + 83738552891.7078*pow(xi2, 39) - 258384653060.602*pow(xi2, 37) + 551216342688.762*pow(xi2, 35) - 862566527590.693*pow(xi2, 33) + 1025137419153.52*pow(xi2, 31) - 945245017769.346*pow(xi2, 29) + 684894432229.456*pow(xi2, 27) - 392574311178.262*pow(xi2, 25) + 178337649002.54*pow(xi2, 23) - 64052489187.5357*pow(xi2, 21) + 18068776057.7848*pow(xi2, 19) - 3958930149.3731*pow(xi2, 17) + 662688642.100233*pow(xi2, 15) - 82788410.2822969*pow(xi2, 13) + 7469672.88666969*pow(xi2, 11) - 464477.057046165*pow(xi2, 9) + 18568.1392978458*pow(xi2, 7) - 426.889119853877*pow(xi2, 5) + 4.4841294102298*pow(xi2, 3); case 28: return -2990166848.60985*pow(xi1, 44) + 32872291760.5344*pow(xi1, 42) - 168370927902.997*pow(xi1, 40) + 533545185426.962*pow(xi1, 38) - 1171446565841.26*pow(xi1, 36) + 1891235717065.74*pow(xi1, 34) - 2325370700007.72*pow(xi1, 32) + 2225327260993.79*pow(xi1, 30) - 1679622467988.24*pow(xi1, 28) + 1007198702447.56*pow(xi1, 26) - 481108506863.906*pow(xi1, 24) + 182797439097.335*pow(xi1, 22) - 54951131326.4392*pow(xi1, 20) + 12946492132.2885*pow(xi1, 18) - 2356797655.27788*pow(xi1, 16) + 324895309.523393*pow(xi1, 14) - 32978968.5669253*pow(xi1, 12) + 2369734.10762014*pow(xi1, 10) - 113866.472549779*pow(xi1, 8) + 3353.33545287931*pow(xi1, 6) - 51.9555378781433*pow(xi1, 4) + 0.258699773667104*pow(xi1, 2) + 2990166848.60985*pow(xi2, 44) - 32872291760.5344*pow(xi2, 42) + 168370927902.997*pow(xi2, 40) - 533545185426.962*pow(xi2, 38) + 1171446565841.26*pow(xi2, 36) - 1891235717065.74*pow(xi2, 34) + 2325370700007.72*pow(xi2, 32) - 2225327260993.79*pow(xi2, 30) + 1679622467988.24*pow(xi2, 28) - 1007198702447.56*pow(xi2, 26) + 481108506863.906*pow(xi2, 24) - 182797439097.335*pow(xi2, 22) + 54951131326.4392*pow(xi2, 20) - 12946492132.2885*pow(xi2, 18) + 2356797655.27788*pow(xi2, 16) - 324895309.523393*pow(xi2, 14) + 32978968.5669253*pow(xi2, 12) - 2369734.10762014*pow(xi2, 10) + 113866.472549779*pow(xi2, 8) - 3353.33545287931*pow(xi2, 6) + 51.9555378781433*pow(xi2, 4) - 0.258699773667104*pow(xi2, 2); case 29: return -5739151515.19191*pow(xi1, 45) + 64528538905.8027*pow(xi1, 43) - 338582125411.19*pow(xi1, 41) + 1101111962091.26*pow(xi1, 39) - 2486172256125.54*pow(xi1, 37) + 4137157284655.27*pow(xi1, 35) - 5256914464518.41*pow(xi1, 33) + 5214493554143.21*pow(xi1, 31) - 4093581718892.25*pow(xi1, 29) + 2563396026608.8*pow(xi1, 27) - 1284656774810.01*pow(xi1, 25) + 514956083882.467*pow(xi1, 23) - 164410684836.72*pow(xi1, 21) + 41475494866.957*pow(xi1, 19) - 8166473938.34107*pow(xi1, 17) + 1233384913.79123*pow(xi1, 15) - 139478936.421598*pow(xi1, 13) + 11421836.7765192*pow(xi1, 11) - 645954.797160119*pow(xi1, 9) + 23522.5504032993*pow(xi1, 7) - 492.667848971632*pow(xi1, 5) + 4.65659592600787*pow(xi1, 3) + 5739151515.19191*pow(xi2, 45) - 64528538905.8027*pow(xi2, 43) + 338582125411.19*pow(xi2, 41) - 1101111962091.26*pow(xi2, 39) + 2486172256125.54*pow(xi2, 37) - 4137157284655.27*pow(xi2, 35) + 5256914464518.41*pow(xi2, 33) - 5214493554143.21*pow(xi2, 31) + 4093581718892.25*pow(xi2, 29) - 2563396026608.8*pow(xi2, 27) + 1284656774810.01*pow(xi2, 25) - 514956083882.467*pow(xi2, 23) + 164410684836.72*pow(xi2, 21) - 41475494866.957*pow(xi2, 19) + 8166473938.34107*pow(xi2, 17) - 1233384913.79123*pow(xi2, 15) + 139478936.421598*pow(xi2, 13) - 11421836.7765192*pow(xi2, 11) + 645954.797160119*pow(xi2, 9) - 23522.5504032993*pow(xi2, 7) + 492.667848971632*pow(xi2, 5) - 4.65659592600787*pow(xi2, 3); default: return 0.; } case 20: switch(j) { case 0: return -2596.41703605652*pow(xi1, 20)*y1t + 12611.1684608459*pow(xi1, 18)*y1t - 25795.5718517303*pow(xi1, 16)*y1t + 28846.6609954834*pow(xi1, 14)*y1t - 19148.2146263123*pow(xi1, 12)*y1t + 7659.2858505249*pow(xi1, 10)*y1t - 1787.16669845581*pow(xi1, 8)*y1t + 222.008285522461*pow(xi1, 6)*y1t - 11.8933010101318*pow(xi1, 4)*y1t + 0.139102935791016*pow(xi1, 2)*y1t + 2596.41703605652*pow(xi2, 20)*y1t - 12611.1684608459*pow(xi2, 18)*y1t + 25795.5718517303*pow(xi2, 16)*y1t - 28846.6609954834*pow(xi2, 14)*y1t + 19148.2146263123*pow(xi2, 12)*y1t - 7659.2858505249*pow(xi2, 10)*y1t + 1787.16669845581*pow(xi2, 8)*y1t - 222.008285522461*pow(xi2, 6)*y1t + 11.8933010101318*pow(xi2, 4)*y1t - 0.139102935791016*pow(xi2, 2)*y1t; case 1: return -1298.20851802826*pow(xi1, 20)*y1r + 455.51176071167*pow(xi1, 19)*y1r + 6305.58423042297*pow(xi1, 18)*y1r - 2225.50031661987*pow(xi1, 17)*y1r - 12897.7859258652*pow(xi1, 16)*y1r + 4585.87944030762*pow(xi1, 15)*y1r + 14423.3304977417*pow(xi1, 14)*y1r - 5177.60581970215*pow(xi1, 13)*y1r - 9574.10731315613*pow(xi1, 12)*y1r + 3481.49356842041*pow(xi1, 11)*y1r + 3829.64292526245*pow(xi1, 10)*y1r - 1418.38626861572*pow(xi1, 9)*y1r - 893.583349227905*pow(xi1, 8)*y1r + 340.412704467773*pow(xi1, 7)*y1r + 111.00414276123*pow(xi1, 6)*y1r - 44.4016571044922*pow(xi1, 5)*y1r - 5.94665050506592*pow(xi1, 4)*y1r + 2.6429557800293*pow(xi1, 3)*y1r + 0.0695514678955078*pow(xi1, 2)*y1r - 0.0463676452636719*xi1*y1r + 1298.20851802826*pow(xi2, 20)*y1r - 455.51176071167*pow(xi2, 19)*y1r - 6305.58423042297*pow(xi2, 18)*y1r + 2225.50031661987*pow(xi2, 17)*y1r + 12897.7859258652*pow(xi2, 16)*y1r - 4585.87944030762*pow(xi2, 15)*y1r - 14423.3304977417*pow(xi2, 14)*y1r + 5177.60581970215*pow(xi2, 13)*y1r + 9574.10731315613*pow(xi2, 12)*y1r - 3481.49356842041*pow(xi2, 11)*y1r - 3829.64292526245*pow(xi2, 10)*y1r + 1418.38626861572*pow(xi2, 9)*y1r + 893.583349227905*pow(xi2, 8)*y1r - 340.412704467773*pow(xi2, 7)*y1r - 111.00414276123*pow(xi2, 6)*y1r + 44.4016571044922*pow(xi2, 5)*y1r + 5.94665050506592*pow(xi2, 4)*y1r - 2.6429557800293*pow(xi2, 3)*y1r - 0.0695514678955078*pow(xi2, 2)*y1r + 0.0463676452636719*xi2*y1r; case 2: return 2596.41703605652*pow(xi1, 20)*y2t - 12611.1684608459*pow(xi1, 18)*y2t + 25795.5718517303*pow(xi1, 16)*y2t - 28846.6609954834*pow(xi1, 14)*y2t + 19148.2146263123*pow(xi1, 12)*y2t - 7659.2858505249*pow(xi1, 10)*y2t + 1787.16669845581*pow(xi1, 8)*y2t - 222.008285522461*pow(xi1, 6)*y2t + 11.8933010101318*pow(xi1, 4)*y2t - 0.139102935791016*pow(xi1, 2)*y2t - 2596.41703605652*pow(xi2, 20)*y2t + 12611.1684608459*pow(xi2, 18)*y2t - 25795.5718517303*pow(xi2, 16)*y2t + 28846.6609954834*pow(xi2, 14)*y2t - 19148.2146263123*pow(xi2, 12)*y2t + 7659.2858505249*pow(xi2, 10)*y2t - 1787.16669845581*pow(xi2, 8)*y2t + 222.008285522461*pow(xi2, 6)*y2t - 11.8933010101318*pow(xi2, 4)*y2t + 0.139102935791016*pow(xi2, 2)*y2t; case 3: return -1298.20851802826*pow(xi1, 20)*y2r - 455.51176071167*pow(xi1, 19)*y2r + 6305.58423042297*pow(xi1, 18)*y2r + 2225.50031661987*pow(xi1, 17)*y2r - 12897.7859258652*pow(xi1, 16)*y2r - 4585.87944030762*pow(xi1, 15)*y2r + 14423.3304977417*pow(xi1, 14)*y2r + 5177.60581970215*pow(xi1, 13)*y2r - 9574.10731315613*pow(xi1, 12)*y2r - 3481.49356842041*pow(xi1, 11)*y2r + 3829.64292526245*pow(xi1, 10)*y2r + 1418.38626861572*pow(xi1, 9)*y2r - 893.583349227905*pow(xi1, 8)*y2r - 340.412704467773*pow(xi1, 7)*y2r + 111.00414276123*pow(xi1, 6)*y2r + 44.4016571044922*pow(xi1, 5)*y2r - 5.94665050506592*pow(xi1, 4)*y2r - 2.6429557800293*pow(xi1, 3)*y2r + 0.0695514678955078*pow(xi1, 2)*y2r + 0.0463676452636719*xi1*y2r + 1298.20851802826*pow(xi2, 20)*y2r + 455.51176071167*pow(xi2, 19)*y2r - 6305.58423042297*pow(xi2, 18)*y2r - 2225.50031661987*pow(xi2, 17)*y2r + 12897.7859258652*pow(xi2, 16)*y2r + 4585.87944030762*pow(xi2, 15)*y2r - 14423.3304977417*pow(xi2, 14)*y2r - 5177.60581970215*pow(xi2, 13)*y2r + 9574.10731315613*pow(xi2, 12)*y2r + 3481.49356842041*pow(xi2, 11)*y2r - 3829.64292526245*pow(xi2, 10)*y2r - 1418.38626861572*pow(xi2, 9)*y2r + 893.583349227905*pow(xi2, 8)*y2r + 340.412704467773*pow(xi2, 7)*y2r - 111.00414276123*pow(xi2, 6)*y2r - 44.4016571044922*pow(xi2, 5)*y2r + 5.94665050506592*pow(xi2, 4)*y2r + 2.6429557800293*pow(xi2, 3)*y2r - 0.0695514678955078*pow(xi2, 2)*y2r - 0.0463676452636719*xi2*y2r; case 4: return -2472.77812957764*pow(xi1, 21) + 12858.4462738037*pow(xi1, 19) - 28729.1859054565*pow(xi1, 17) + 36095.3091430664*pow(xi1, 15) - 28030.4866790771*pow(xi1, 13) + 13925.9742736816*pow(xi1, 11) - 4425.36515808105*pow(xi1, 9) + 871.118225097656*pow(xi1, 7) - 98.3179550170898*pow(xi1, 5) + 5.37864685058594*pow(xi1, 3) - 0.0927352905273438*xi1 + 2472.77812957764*pow(xi2, 21) - 12858.4462738037*pow(xi2, 19) + 28729.1859054565*pow(xi2, 17) - 36095.3091430664*pow(xi2, 15) + 28030.4866790771*pow(xi2, 13) - 13925.9742736816*pow(xi2, 11) + 4425.36515808105*pow(xi2, 9) - 871.118225097656*pow(xi2, 7) + 98.3179550170898*pow(xi2, 5) - 5.37864685058594*pow(xi2, 3) + 0.0927352905273438*xi2; case 5: return -3933.96520614624*pow(xi1, 22) + 21513.1697273254*pow(xi1, 20) - 50826.8304634094*pow(xi1, 18) + 67863.6191368103*pow(xi1, 16) - 56201.2533187866*pow(xi1, 14) + 29786.1116409302*pow(xi1, 12) - 10042.1747817993*pow(xi1, 10) + 2064.67705535889*pow(xi1, 8) - 235.223064422607*pow(xi1, 6) + 12.009220123291*pow(xi1, 4) - 0.139102935791016*pow(xi1, 2) + 3933.96520614624*pow(xi2, 22) - 21513.1697273254*pow(xi2, 20) + 50826.8304634094*pow(xi2, 18) - 67863.6191368103*pow(xi2, 16) + 56201.2533187866*pow(xi2, 14) - 29786.1116409302*pow(xi2, 12) + 10042.1747817993*pow(xi2, 10) - 2064.67705535889*pow(xi2, 8) + 235.223064422607*pow(xi2, 6) - 12.009220123291*pow(xi2, 4) + 0.139102935791016*pow(xi2, 2); case 6: return -6585.11567115784*pow(xi1, 23) + 37709.866476059*pow(xi1, 21) - 93909.3694210052*pow(xi1, 19) + 133322.262125015*pow(xi1, 17) - 118866.862277985*pow(xi1, 15) + 69138.8915061951*pow(xi1, 13) - 26420.6678581238*pow(xi1, 11) + 6530.74373245239*pow(xi1, 9) - 1006.17326545715*pow(xi1, 7) + 90.5513744354248*pow(xi1, 5) - 4.1962718963623*pow(xi1, 3) + 0.0695514678955078*xi1 + 6585.11567115784*pow(xi2, 23) - 37709.866476059*pow(xi2, 21) + 93909.3694210052*pow(xi2, 19) - 133322.262125015*pow(xi2, 17) + 118866.862277985*pow(xi2, 15) - 69138.8915061951*pow(xi2, 13) + 26420.6678581238*pow(xi2, 11) - 6530.74373245239*pow(xi2, 9) + 1006.17326545715*pow(xi2, 7) - 90.5513744354248*pow(xi2, 5) + 4.1962718963623*pow(xi2, 3) - 0.0695514678955078*xi2; case 7: return -11359.3245327473*pow(xi1, 24) + 67939.5791101456*pow(xi1, 22) - 177795.557491779*pow(xi1, 20) + 267309.309983253*pow(xi1, 18) - 254878.725403547*pow(xi1, 16) + 160521.721315384*pow(xi1, 14) - 67422.9912786484*pow(xi1, 12) + 18613.5446720123*pow(xi1, 10) - 3236.46453738213*pow(xi1, 8) + 324.005513191223*pow(xi1, 6) - 15.2723431587219*pow(xi1, 4) + 0.17387866973877*pow(xi1, 2) + 11359.3245327473*pow(xi2, 24) - 67939.5791101456*pow(xi2, 22) + 177795.557491779*pow(xi2, 20) - 267309.309983253*pow(xi2, 18) + 254878.725403547*pow(xi2, 16) - 160521.721315384*pow(xi2, 14) + 67422.9912786484*pow(xi2, 12) - 18613.5446720123*pow(xi2, 10) + 3236.46453738213*pow(xi2, 8) - 324.005513191223*pow(xi2, 6) + 15.2723431587219*pow(xi2, 4) - 0.17387866973877*pow(xi2, 2); case 8: return -19992.4111776352*pow(xi1, 25) + 124628.017730713*pow(xi1, 23) - 341861.576414108*pow(xi1, 21) + 542531.872558594*pow(xi1, 19) - 550892.626976967*pow(xi1, 17) + 373726.219482422*pow(xi1, 15) - 171716.18970108*pow(xi1, 13) + 53039.797668457*pow(xi1, 11) - 10716.5249490738*pow(xi1, 9) + 1347.62924194336*pow(xi1, 7) - 97.8589153289795*pow(xi1, 5) + 3.70941162109375*pow(xi1, 3) - 0.0579595565795898*xi1 + 19992.4111776352*pow(xi2, 25) - 124628.017730713*pow(xi2, 23) + 341861.576414108*pow(xi2, 21) - 542531.872558594*pow(xi2, 19) + 550892.626976967*pow(xi2, 17) - 373726.219482422*pow(xi2, 15) + 171716.18970108*pow(xi2, 13) - 53039.797668457*pow(xi2, 11) + 10716.5249490738*pow(xi2, 9) - 1347.62924194336*pow(xi2, 7) + 97.8589153289795*pow(xi2, 5) - 3.70941162109375*pow(xi2, 3) + 0.0579595565795898*xi2; case 9: return -35700.7342457771*pow(xi1, 26) + 231544.762108326*pow(xi1, 24) - 664261.264958382*pow(xi1, 22) + 1109577.42443562*pow(xi1, 20) - 1195370.44476271*pow(xi1, 18) + 869151.521766186*pow(xi1, 16) - 433712.863775253*pow(xi1, 14) + 148085.07665062*pow(xi1, 12) - 33866.3728480339*pow(xi1, 10) + 4964.00997877121*pow(xi1, 8) - 429.167332649231*pow(xi1, 6) + 18.2572603225708*pow(xi1, 4) - 0.202858448028564*pow(xi1, 2) + 35700.7342457771*pow(xi2, 26) - 231544.762108326*pow(xi2, 24) + 664261.264958382*pow(xi2, 22) - 1109577.42443562*pow(xi2, 20) + 1195370.44476271*pow(xi2, 18) - 869151.521766186*pow(xi2, 16) + 433712.863775253*pow(xi2, 14) - 148085.07665062*pow(xi2, 12) + 33866.3728480339*pow(xi2, 10) - 4964.00997877121*pow(xi2, 8) + 429.167332649231*pow(xi2, 6) - 18.2572603225708*pow(xi2, 4) + 0.202858448028564*pow(xi2, 2); case 10: return -64459.6590548754*pow(xi1, 27) + 434273.931575418*pow(xi1, 25) - 1300387.65375495*pow(xi1, 23) + 2280517.13728309*pow(xi1, 21) - 2598070.78379095*pow(xi1, 19) + 2015827.85172164*pow(xi1, 17) - 1086007.95365381*pow(xi1, 15) + 406552.760191441*pow(xi1, 13) - 104136.594859958*pow(xi1, 11) + 17650.3092950583*pow(xi1, 9) - 1868.9087998867*pow(xi1, 7) + 113.012441396713*pow(xi1, 5) - 3.49930822849274*pow(xi1, 3) + 0.0507146120071411*xi1 + 64459.6590548754*pow(xi2, 27) - 434273.931575418*pow(xi2, 25) + 1300387.65375495*pow(xi2, 23) - 2280517.13728309*pow(xi2, 21) + 2598070.78379095*pow(xi2, 19) - 2015827.85172164*pow(xi2, 17) + 1086007.95365381*pow(xi2, 15) - 406552.760191441*pow(xi2, 13) + 104136.594859958*pow(xi2, 11) - 17650.3092950583*pow(xi2, 9) + 1868.9087998867*pow(xi2, 7) - 113.012441396713*pow(xi2, 5) + 3.49930822849274*pow(xi2, 3) - 0.0507146120071411*xi2; case 11: return -117408.664707094*pow(xi1, 28) + 820479.374541342*pow(xi1, 26) - 2559760.03214344*pow(xi1, 24) + 4702295.96284211*pow(xi1, 22) - 5648384.72818986*pow(xi1, 20) + 4658688.84687275*pow(xi1, 18) - 2695718.21505412*pow(xi1, 16) + 1098603.18051696*pow(xi1, 14) - 311941.764789551*pow(xi1, 12) + 60108.9683331847*pow(xi1, 10) - 7501.34424760938*pow(xi1, 8) + 559.372027516365*pow(xi1, 6) - 21.1860291659832*pow(xi1, 4) + 0.228215754032135*pow(xi1, 2) + 117408.664707094*pow(xi2, 28) - 820479.374541342*pow(xi2, 26) + 2559760.03214344*pow(xi2, 24) - 4702295.96284211*pow(xi2, 22) + 5648384.72818986*pow(xi2, 20) - 4658688.84687275*pow(xi2, 18) + 2695718.21505412*pow(xi2, 16) - 1098603.18051696*pow(xi2, 14) + 311941.764789551*pow(xi2, 12) - 60108.9683331847*pow(xi2, 10) + 7501.34424760938*pow(xi2, 8) - 559.372027516365*pow(xi2, 6) + 21.1860291659832*pow(xi2, 4) - 0.228215754032135*pow(xi2, 2); case 12: return -215384.171117842*pow(xi1, 29) + 1559187.06731021*pow(xi1, 27) - 5059848.83704752*pow(xi1, 25) + 9716260.68171859*pow(xi1, 23) - 12273352.074565*pow(xi1, 21) + 10723903.6297828*pow(xi1, 19) - 6634823.52170509*pow(xi1, 17) + 2925596.79840517*pow(xi1, 15) - 912995.348572433*pow(xi1, 13) + 197547.517040372*pow(xi1, 11) - 28554.2153170705*pow(xi1, 9) + 2592.99522185326*pow(xi1, 7) - 133.913961589336*pow(xi1, 5) + 3.43845069408417*pow(xi1, 3) - 0.045643150806427*xi1 + 215384.171117842*pow(xi2, 29) - 1559187.06731021*pow(xi2, 27) + 5059848.83704752*pow(xi2, 25) - 9716260.68171859*pow(xi2, 23) + 12273352.074565*pow(xi2, 21) - 10723903.6297828*pow(xi2, 19) + 6634823.52170509*pow(xi2, 17) - 2925596.79840517*pow(xi2, 15) + 912995.348572433*pow(xi2, 13) - 197547.517040372*pow(xi2, 11) + 28554.2153170705*pow(xi2, 9) - 2592.99522185326*pow(xi2, 7) + 133.913961589336*pow(xi2, 5) - 3.43845069408417*pow(xi2, 3) + 0.045643150806427*xi2; case 13: return -397481.697608382*pow(xi1, 30) + 2977056.79637298*pow(xi1, 28) - 10034074.3945129*pow(xi1, 26) + 20103395.1400928*pow(xi1, 24) - 26640716.4326794*pow(xi1, 22) + 24584156.7905514*pow(xi1, 20) - 16197959.5438677*pow(xi1, 18) + 7686806.28355846*pow(xi1, 16) - 2617221.91839382*pow(xi1, 14) + 629291.577356607*pow(xi1, 12) - 103705.850256771*pow(xi1, 10) + 11150.8845161498*pow(xi1, 8) - 721.564963907003*pow(xi1, 6) + 24.1832627356052*pow(xi1, 4) - 0.251037329435349*pow(xi1, 2) + 397481.697608382*pow(xi2, 30) - 2977056.79637298*pow(xi2, 28) + 10034074.3945129*pow(xi2, 26) - 20103395.1400928*pow(xi2, 24) + 26640716.4326794*pow(xi2, 22) - 24584156.7905514*pow(xi2, 20) + 16197959.5438677*pow(xi2, 18) - 7686806.28355846*pow(xi2, 16) + 2617221.91839382*pow(xi2, 14) - 629291.577356607*pow(xi2, 12) + 103705.850256771*pow(xi2, 10) - 11150.8845161498*pow(xi2, 8) + 721.564963907003*pow(xi2, 6) - 24.1832627356052*pow(xi2, 4) + 0.251037329435349*pow(xi2, 2); case 14: return -737264.439112321*pow(xi1, 31) + 5706701.51566319*pow(xi1, 29) - 19948935.3299687*pow(xi1, 27) + 41628441.8250643*pow(xi1, 25) - 57747885.7514877*pow(xi1, 23) + 56126414.4955482*pow(xi1, 21) - 39242329.4288853*pow(xi1, 19) + 19948317.2103351*pow(xi1, 17) - 7363716.27477591*pow(xi1, 15) + 1950274.42433514*pow(xi1, 13) - 361784.81152229*pow(xi1, 11) + 45172.5006237179*pow(xi1, 9) - 3562.3404416889*pow(xi1, 7) + 159.835467651486*pow(xi1, 5) - 3.47268305718899*pow(xi1, 3) + 0.0418395549058914*xi1 + 737264.439112321*pow(xi2, 31) - 5706701.51566319*pow(xi2, 29) + 19948935.3299687*pow(xi2, 27) - 41628441.8250643*pow(xi2, 25) + 57747885.7514877*pow(xi2, 23) - 56126414.4955482*pow(xi2, 21) + 39242329.4288853*pow(xi2, 19) - 19948317.2103351*pow(xi2, 17) + 7363716.27477591*pow(xi2, 15) - 1950274.42433514*pow(xi2, 13) + 361784.81152229*pow(xi2, 11) - 45172.5006237179*pow(xi2, 9) + 3562.3404416889*pow(xi2, 7) - 159.835467651486*pow(xi2, 5) + 3.47268305718899*pow(xi2, 3) - 0.0418395549058914*xi2; case 15: return -1373509.47190396*pow(xi1, 32) + 10975517.9743457*pow(xi1, 30) - 39741270.4156874*pow(xi1, 28) + 86237891.5732345*pow(xi1, 26) - 124983372.13927*pow(xi1, 24) + 127620687.931434*pow(xi1, 22) - 94385785.032511*pow(xi1, 20) + 51182880.666102*pow(xi1, 18) - 20371444.2763663*pow(xi1, 16) + 5898530.05603891*pow(xi1, 14) - 1218646.21992296*pow(xi1, 12) + 173911.651316531*pow(xi1, 10) - 16287.4470273647*pow(xi1, 8) + 922.206549458206*pow(xi1, 6) - 27.3316892422736*pow(xi1, 4) + 0.271957106888294*pow(xi1, 2) + 1373509.47190396*pow(xi2, 32) - 10975517.9743457*pow(xi2, 30) + 39741270.4156874*pow(xi2, 28) - 86237891.5732345*pow(xi2, 26) + 124983372.13927*pow(xi2, 24) - 127620687.931434*pow(xi2, 22) + 94385785.032511*pow(xi2, 20) - 51182880.666102*pow(xi2, 18) + 20371444.2763663*pow(xi2, 16) - 5898530.05603891*pow(xi2, 14) + 1218646.21992296*pow(xi2, 12) - 173911.651316531*pow(xi2, 10) + 16287.4470273647*pow(xi2, 8) - 922.206549458206*pow(xi2, 6) + 27.3316892422736*pow(xi2, 4) - 0.271957106888294*pow(xi2, 2); case 16: return -2568641.0903139*pow(xi1, 33) + 21168864.3506505*pow(xi1, 31) - 79300066.27011*pow(xi1, 29) + 178680095.728121*pow(xi1, 27) - 270052767.826836*pow(xi1, 25) + 289047535.62412*pow(xi1, 23) - 225479030.866805*pow(xi1, 21) + 129953892.378422*pow(xi1, 19) - 55500176.6003122*pow(xi1, 17) + 17455090.6417334*pow(xi1, 15) - 3980427.21410811*pow(xi1, 13) + 640853.077293187*pow(xi1, 11) - 69867.2311975062*pow(xi1, 9) + 4832.35144087672*pow(xi1, 7) - 190.587540507317*pow(xi1, 5) + 3.57429340481758*pow(xi1, 3) - 0.0388510152697563*xi1 + 2568641.0903139*pow(xi2, 33) - 21168864.3506505*pow(xi2, 31) + 79300066.27011*pow(xi2, 29) - 178680095.728121*pow(xi2, 27) + 270052767.826836*pow(xi2, 25) - 289047535.62412*pow(xi2, 23) + 225479030.866805*pow(xi2, 21) - 129953892.378422*pow(xi2, 19) + 55500176.6003122*pow(xi2, 17) - 17455090.6417334*pow(xi2, 15) + 3980427.21410811*pow(xi2, 13) - 640853.077293187*pow(xi2, 11) + 69867.2311975062*pow(xi2, 9) - 4832.35144087672*pow(xi2, 7) + 190.587540507317*pow(xi2, 5) - 3.57429340481758*pow(xi2, 3) + 0.0388510152697563*xi2; case 17: return -4819979.45770668*pow(xi1, 34) + 40929461.0305161*pow(xi1, 32) - 158446829.516417*pow(xi1, 30) + 370202602.281114*pow(xi1, 28) - 582509869.76183*pow(xi1, 26) + 652191998.055786*pow(xi1, 24) - 535223944.487169*pow(xi1, 22) + 326775381.698712*pow(xi1, 20) - 149109899.969673*pow(xi1, 18) + 50650699.779417*pow(xi1, 16) - 12651109.289059*pow(xi1, 14) + 2273137.20335324*pow(xi1, 12) - 283886.523512423*pow(xi1, 10) + 23376.3450796902*pow(xi1, 8) - 1167.78381697834*pow(xi1, 6) + 30.6923020631075*pow(xi1, 4) - 0.291382614523172*pow(xi1, 2) + 4819979.45770668*pow(xi2, 34) - 40929461.0305161*pow(xi2, 32) + 158446829.516417*pow(xi2, 30) - 370202602.281114*pow(xi2, 28) + 582509869.76183*pow(xi2, 26) - 652191998.055786*pow(xi2, 24) + 535223944.487169*pow(xi2, 22) - 326775381.698712*pow(xi2, 20) + 149109899.969673*pow(xi2, 18) - 50650699.779417*pow(xi2, 16) + 12651109.289059*pow(xi2, 14) - 2273137.20335324*pow(xi2, 12) + 283886.523512423*pow(xi2, 10) - 23376.3450796902*pow(xi2, 8) + 1167.78381697834*pow(xi2, 6) - 30.6923020631075*pow(xi2, 4) + 0.291382614523172*pow(xi2, 2); case 18: return -9071889.90789793*pow(xi1, 35) + 79305876.2916238*pow(xi1, 33) - 316933615.672017*pow(xi1, 31) + 766877990.533416*pow(xi1, 29) - 1254324985.64334*pow(xi1, 27) + 1466251586.22142*pow(xi1, 25) - 1262891657.42003*pow(xi1, 23) + 814364974.334062*pow(xi1, 21) - 395526919.443841*pow(xi1, 19) + 144394456.337024*pow(xi1, 17) - 39241570.1076733*pow(xi1, 15) + 7797068.97306965*pow(xi1, 13) - 1100827.15933084*pow(xi1, 11) + 105759.79021824*pow(xi1, 9) - 6469.68474330381*pow(xi1, 7) + 226.248887423426*pow(xi1, 5) - 3.72726927744225*pow(xi1, 3) + 0.0364228268153965*xi1 + 9071889.90789793*pow(xi2, 35) - 79305876.2916238*pow(xi2, 33) + 316933615.672017*pow(xi2, 31) - 766877990.533416*pow(xi2, 29) + 1254324985.64334*pow(xi2, 27) - 1466251586.22142*pow(xi2, 25) + 1262891657.42003*pow(xi2, 23) - 814364974.334062*pow(xi2, 21) + 395526919.443841*pow(xi2, 19) - 144394456.337024*pow(xi2, 17) + 39241570.1076733*pow(xi2, 15) - 7797068.97306965*pow(xi2, 13) + 1100827.15933084*pow(xi2, 11) - 105759.79021824*pow(xi2, 9) + 6469.68474330381*pow(xi2, 7) - 226.248887423426*pow(xi2, 5) + 3.72726927744225*pow(xi2, 3) - 0.0364228268153965*xi2; case 19: return -17120968.6987289*pow(xi1, 36) + 153955308.142856*pow(xi1, 34) - 634520170.735474*pow(xi1, 32) + 1588150421.7811*pow(xi1, 30) - 2696332621.91209*pow(xi1, 28) + 3285026390.1665*pow(xi1, 26) - 2963177684.40006*pow(xi1, 24) + 2012710576.66574*pow(xi1, 22) - 1036951472.45552*pow(xi1, 20) + 405061899.334431*pow(xi1, 18) - 119085133.628048*pow(xi1, 16) + 25961307.0176306*pow(xi1, 14) - 4098248.04843586*pow(xi1, 12) + 451955.890922382*pow(xi1, 10) - 32990.2157787024*pow(xi1, 8) + 1465.08149857633*pow(xi1, 6) - 34.3133380956715*pow(xi1, 4) + 0.309594027930871*pow(xi1, 2) + 17120968.6987289*pow(xi2, 36) - 153955308.142856*pow(xi2, 34) + 634520170.735474*pow(xi2, 32) - 1588150421.7811*pow(xi2, 30) + 2696332621.91209*pow(xi2, 28) - 3285026390.1665*pow(xi2, 26) + 2963177684.40006*pow(xi2, 24) - 2012710576.66574*pow(xi2, 22) + 1036951472.45552*pow(xi2, 20) - 405061899.334431*pow(xi2, 18) + 119085133.628048*pow(xi2, 16) - 25961307.0176306*pow(xi2, 14) + 4098248.04843586*pow(xi2, 12) - 451955.890922382*pow(xi2, 10) + 32990.2157787024*pow(xi2, 8) - 1465.08149857633*pow(xi2, 6) + 34.3133380956715*pow(xi2, 4) - 0.309594027930871*pow(xi2, 2); case 20: return -32391021.8624601*pow(xi1, 37) + 299372366.960632*pow(xi1, 35) - 1271301663.00224*pow(xi1, 33) + 3287781287.3285*pow(xi1, 31) - 5786354059.01691*pow(xi1, 29) + 7335615603.83088*pow(xi1, 27) - 6916058175.64479*pow(xi1, 25) + 4936178217.59385*pow(xi1, 23) - 2689402980.3072*pow(xi1, 21) + 1119719858.36565*pow(xi1, 19) - 354306119.977473*pow(xi1, 17) + 84176447.4670211*pow(xi1, 15) - 14719728.3050917*pow(xi1, 13) + 1838582.02332172*pow(xi1, 11) - 156904.37235449*pow(xi1, 9) + 8552.06031074747*pow(xi1, 7) - 267.055808493169*pow(xi1, 5) + 3.92152435379103*pow(xi1, 3) - 0.0343993364367634*xi1 + 32391021.8624601*pow(xi2, 37) - 299372366.960632*pow(xi2, 35) + 1271301663.00224*pow(xi2, 33) - 3287781287.3285*pow(xi2, 31) + 5786354059.01691*pow(xi2, 29) - 7335615603.83088*pow(xi2, 27) + 6916058175.64479*pow(xi2, 25) - 4936178217.59385*pow(xi2, 23) + 2689402980.3072*pow(xi2, 21) - 1119719858.36565*pow(xi2, 19) + 354306119.977473*pow(xi2, 17) - 84176447.4670211*pow(xi2, 15) + 14719728.3050917*pow(xi2, 13) - 1838582.02332172*pow(xi2, 11) + 156904.37235449*pow(xi2, 9) - 8552.06031074747*pow(xi2, 7) + 267.055808493169*pow(xi2, 5) - 3.92152435379103*pow(xi2, 3) + 0.0343993364367634*xi2; case 21: return -61417325.3874071*pow(xi1, 38) + 583014039.372506*pow(xi1, 36) - 2548730617.81604*pow(xi1, 34) + 6803567031.10103*pow(xi1, 32) - 12397121286.1174*pow(xi1, 30) + 16329382762.539*pow(xi1, 28) - 16062239196.4967*pow(xi1, 26) + 12019255313.2307*pow(xi1, 24) - 6905979674.78069*pow(xi1, 22) + 3053856817.14484*pow(xi1, 20) - 1035376037.57364*pow(xi1, 18) + 266494890.885114*pow(xi1, 16) - 51212175.5007219*pow(xi1, 14) + 7164580.97348283*pow(xi1, 12) - 703164.296631967*pow(xi1, 10) + 45826.1492935312*pow(xi1, 8) - 1821.35198611824*pow(xi1, 6) + 38.2348624494625*pow(xi1, 4) - 0.326793696149252*pow(xi1, 2) + 61417325.3874071*pow(xi2, 38) - 583014039.372506*pow(xi2, 36) + 2548730617.81604*pow(xi2, 34) - 6803567031.10103*pow(xi2, 32) + 12397121286.1174*pow(xi2, 30) - 16329382762.539*pow(xi2, 28) + 16062239196.4967*pow(xi2, 26) - 12019255313.2307*pow(xi2, 24) + 6905979674.78069*pow(xi2, 22) - 3053856817.14484*pow(xi2, 20) + 1035376037.57364*pow(xi2, 18) - 266494890.885114*pow(xi2, 16) + 51212175.5007219*pow(xi2, 14) - 7164580.97348283*pow(xi2, 12) + 703164.296631967*pow(xi2, 10) - 45826.1492935312*pow(xi2, 8) + 1821.35198611824*pow(xi2, 6) - 38.2348624494625*pow(xi2, 4) + 0.326793696149252*pow(xi2, 2); case 22: return -116692918.236073*pow(xi1, 39) + 1136922431.95717*pow(xi1, 37) - 5112427747.50414*pow(xi1, 35) + 14072663329.5704*pow(xi1, 33) - 26517959811.2804*pow(xi1, 31) + 36241322522.7774*pow(xi1, 29) - 37130150648.172*pow(xi1, 27) + 29070301213.2304*pow(xi1, 25) - 17570522700.1095*pow(xi1, 23) + 8226381205.98939*pow(xi1, 21) - 2976454861.17552*pow(xi1, 19) + 825687319.603043*pow(xi1, 17) - 173173784.504984*pow(xi1, 15) + 26879987.6421062*pow(xi1, 13) - 2993171.44800321*pow(xi1, 11) + 228491.145845553*pow(xi1, 9) - 11168.7170434363*pow(xi1, 7) + 313.349403489672*pow(xi1, 5) - 4.1502799410955*pow(xi1, 3) + 0.0326793696149252*xi1 + 116692918.236073*pow(xi2, 39) - 1136922431.95717*pow(xi2, 37) + 5112427747.50414*pow(xi2, 35) - 14072663329.5704*pow(xi2, 33) + 26517959811.2804*pow(xi2, 31) - 36241322522.7774*pow(xi2, 29) + 37130150648.172*pow(xi2, 27) - 29070301213.2304*pow(xi2, 25) + 17570522700.1095*pow(xi2, 23) - 8226381205.98939*pow(xi2, 21) + 2976454861.17552*pow(xi2, 19) - 825687319.603043*pow(xi2, 17) + 173173784.504984*pow(xi2, 15) - 26879987.6421062*pow(xi2, 13) + 2993171.44800321*pow(xi2, 11) - 228491.145845553*pow(xi2, 9) + 11168.7170434363*pow(xi2, 7) - 313.349403489672*pow(xi2, 5) + 4.1502799410955*pow(xi2, 3) - 0.0326793696149252*xi2; case 23: return -222133305.070811*pow(xi1, 40) + 2219785083.42539*pow(xi1, 38) - 10259396727.5352*pow(xi1, 36) + 29094468214.3189*pow(xi1, 34) - 56634836041.7293*pow(xi1, 32) + 80205087700.4013*pow(xi1, 30) - 85454984888.6874*pow(xi1, 28) + 69870738325.5301*pow(xi1, 26) - 44321915588.4007*pow(xi1, 24) + 21908106656.4077*pow(xi1, 22) - 8429050151.6992*pow(xi1, 20) + 2508569934.62919*pow(xi1, 18) - 570774531.410123*pow(xi1, 16) + 97504906.6443698*pow(xi1, 14) - 12180237.1297037*pow(xi1, 12) + 1071171.86734953*pow(xi1, 10) - 62723.8433239953*pow(xi1, 8) + 2244.43544483787*pow(xi1, 6) - 42.4913503418065*pow(xi1, 4) + 0.343133380956715*pow(xi1, 2) + 222133305.070811*pow(xi2, 40) - 2219785083.42539*pow(xi2, 38) + 10259396727.5352*pow(xi2, 36) - 29094468214.3189*pow(xi2, 34) + 56634836041.7293*pow(xi2, 32) - 80205087700.4013*pow(xi2, 30) + 85454984888.6874*pow(xi2, 28) - 69870738325.5301*pow(xi2, 26) + 44321915588.4007*pow(xi2, 24) - 21908106656.4077*pow(xi2, 22) + 8429050151.6992*pow(xi2, 20) - 2508569934.62919*pow(xi2, 18) + 570774531.410123*pow(xi2, 16) - 97504906.6443698*pow(xi2, 14) + 12180237.1297037*pow(xi2, 12) - 1071171.86734953*pow(xi2, 10) + 62723.8433239953*pow(xi2, 8) - 2244.43544483787*pow(xi2, 6) + 42.4913503418065*pow(xi2, 4) - 0.343133380956715*pow(xi2, 2); case 24: return -423580138.272501*pow(xi1, 41) + 4338811569.17533*pow(xi1, 39) - 20595743075.9893*pow(xi1, 37) + 60121749251.6231*pow(xi1, 35) - 120773953279.355*pow(xi1, 33) + 177020168578.682*pow(xi1, 31) - 195860136712.149*pow(xi1, 29) + 166949967786.963*pow(xi1, 27) - 110912954589.41*pow(xi1, 25) + 57730496761.096*pow(xi1, 23) - 23542894463.8585*pow(xi1, 21) + 7486216791.89479*pow(xi1, 19) - 1838137033.97982*pow(xi1, 17) + 343174836.118123*pow(xi1, 15) - 47633702.7455318*pow(xi1, 13) + 4760440.11342579*pow(xi1, 11) - 327079.942769009*pow(xi1, 9) + 14421.2061698267*pow(xi1, 7) - 365.547269320057*pow(xi1, 5) + 4.40874404623173*pow(xi1, 3) - 0.0311939437233377*xi1 + 423580138.272501*pow(xi2, 41) - 4338811569.17533*pow(xi2, 39) + 20595743075.9893*pow(xi2, 37) - 60121749251.6231*pow(xi2, 35) + 120773953279.355*pow(xi2, 33) - 177020168578.682*pow(xi2, 31) + 195860136712.149*pow(xi2, 29) - 166949967786.963*pow(xi2, 27) + 110912954589.41*pow(xi2, 25) - 57730496761.096*pow(xi2, 23) + 23542894463.8585*pow(xi2, 21) - 7486216791.89479*pow(xi2, 19) + 1838137033.97982*pow(xi2, 17) - 343174836.118123*pow(xi2, 15) + 47633702.7455318*pow(xi2, 13) - 4760440.11342579*pow(xi2, 11) + 327079.942769009*pow(xi2, 9) - 14421.2061698267*pow(xi2, 7) + 365.547269320057*pow(xi2, 5) - 4.40874404623173*pow(xi2, 3) + 0.0311939437233377*xi2; case 25: return -809011754.775118*pow(xi1, 42) + 8489230013.44023*pow(xi1, 40) - 41358870195.9563*pow(xi1, 38) + 124175359033.23*pow(xi1, 36) - 257176448649.812*pow(xi1, 34) + 389693015951.955*pow(xi1, 32) - 447149038103.796*pow(xi1, 30) + 396715033466.757*pow(xi1, 28) - 275490194373.394*pow(xi1, 26) + 150639557207.264*pow(xi1, 24) - 64924029426.9716*pow(xi1, 22) + 21977168312.6472*pow(xi1, 20) - 5796059239.39062*pow(xi1, 18) + 1175422960.42417*pow(xi1, 16) - 179805053.890068*pow(xi1, 14) + 20188407.4579259*pow(xi1, 12) - 1600544.29407977*pow(xi1, 10) + 84685.1976549923*pow(xi1, 8) - 2742.85227764936*pow(xi1, 6) + 47.1132530034811*pow(xi1, 4) - 0.358730352818384*pow(xi1, 2) + 809011754.775118*pow(xi2, 42) - 8489230013.44023*pow(xi2, 40) + 41358870195.9563*pow(xi2, 38) - 124175359033.23*pow(xi2, 36) + 257176448649.812*pow(xi2, 34) - 389693015951.955*pow(xi2, 32) + 447149038103.796*pow(xi2, 30) - 396715033466.757*pow(xi2, 28) + 275490194373.394*pow(xi2, 26) - 150639557207.264*pow(xi2, 24) + 64924029426.9716*pow(xi2, 22) - 21977168312.6472*pow(xi2, 20) + 5796059239.39062*pow(xi2, 18) - 1175422960.42417*pow(xi2, 16) + 179805053.890068*pow(xi2, 14) - 20188407.4579259*pow(xi2, 12) + 1600544.29407977*pow(xi2, 10) - 84685.1976549923*pow(xi2, 8) + 2742.85227764936*pow(xi2, 6) - 47.1132530034811*pow(xi2, 4) + 0.358730352818384*pow(xi2, 2); case 26: return -1547470158.8431*pow(xi1, 43) + 16625191560.6287*pow(xi1, 41) - 83075701012.3164*pow(xi1, 39) + 256341987434.563*pow(xi1, 37) - 546864253678.519*pow(xi1, 35) + 855764806225.721*pow(xi1, 33) - 1017063876240.53*pow(xi1, 31) + 937809906938.586*pow(xi1, 29) - 679513807901.221*pow(xi1, 27) + 389493949031.175*pow(xi1, 25) - 176939998576.283*pow(xi1, 23) + 63551103650.6587*pow(xi1, 21) - 17927506260.0493*pow(xi1, 19) + 3928013839.52227*pow(xi1, 17) - 657519566.445603*pow(xi1, 15) + 82143393.9973852*pow(xi1, 13) - 7411542.29891748*pow(xi1, 11) + 460866.585516028*pow(xi1, 9) - 18424.3960454715*pow(xi1, 7) + 424.126896137175*pow(xi1, 5) - 4.69338878270719*pow(xi1, 3) + 0.0298941960681987*xi1 + 1547470158.8431*pow(xi2, 43) - 16625191560.6287*pow(xi2, 41) + 83075701012.3164*pow(xi2, 39) - 256341987434.563*pow(xi2, 37) + 546864253678.519*pow(xi2, 35) - 855764806225.721*pow(xi2, 33) + 1017063876240.53*pow(xi2, 31) - 937809906938.586*pow(xi2, 29) + 679513807901.221*pow(xi2, 27) - 389493949031.175*pow(xi2, 25) + 176939998576.283*pow(xi2, 23) - 63551103650.6587*pow(xi2, 21) + 17927506260.0493*pow(xi2, 19) - 3928013839.52227*pow(xi2, 17) + 657519566.445603*pow(xi2, 15) - 82143393.9973852*pow(xi2, 13) + 7411542.29891748*pow(xi2, 11) - 460866.585516028*pow(xi2, 9) + 18424.3960454715*pow(xi2, 7) - 424.126896137175*pow(xi2, 5) + 4.69338878270719*pow(xi2, 3) - 0.0298941960681987*xi2; case 27: return -2964108749.71129*pow(xi1, 44) + 32586184470.587*pow(xi1, 42) - 166907325447.439*pow(xi1, 40) + 528912960881.657*pow(xi1, 38) - 1161288561403.75*pow(xi1, 36) + 1874856086782.63*pow(xi1, 34) - 2305255330325.58*pow(xi1, 32) + 2206100246925.95*pow(xi1, 30) - 1665127529061.39*pow(xi1, 28) + 998516875157.21*pow(xi1, 26) - 476966272244.759*pow(xi1, 24) + 181225405807.216*pow(xi1, 22) - 54479098236.3531*pow(xi1, 20) + 12835406932.7529*pow(xi1, 18) - 2336598245.351*pow(xi1, 16) + 322113828.809707*pow(xi1, 14) - 32696942.1566639*pow(xi1, 12) + 2349491.17916685*pow(xi1, 10) - 112895.628966776*pow(xi1, 8) + 3325.87878356744*pow(xi1, 6) - 52.1280043939214*pow(xi1, 4) + 0.373677450852483*pow(xi1, 2) + 2964108749.71129*pow(xi2, 44) - 32586184470.587*pow(xi2, 42) + 166907325447.439*pow(xi2, 40) - 528912960881.657*pow(xi2, 38) + 1161288561403.75*pow(xi2, 36) - 1874856086782.63*pow(xi2, 34) + 2305255330325.58*pow(xi2, 32) - 2206100246925.95*pow(xi2, 30) + 1665127529061.39*pow(xi2, 28) - 998516875157.21*pow(xi2, 26) + 476966272244.759*pow(xi2, 24) - 181225405807.216*pow(xi2, 22) + 54479098236.3531*pow(xi2, 20) - 12835406932.7529*pow(xi2, 18) + 2336598245.351*pow(xi2, 16) - 322113828.809707*pow(xi2, 14) + 32696942.1566639*pow(xi2, 12) - 2349491.17916685*pow(xi2, 10) + 112895.628966776*pow(xi2, 8) - 3325.87878356744*pow(xi2, 6) + 52.1280043939214*pow(xi2, 4) - 0.373677450852483*pow(xi2, 2); case 28: return -5685008576.36934*pow(xi1, 45) + 63920516598.1696*pow(xi1, 43) - 335395652216.154*pow(xi1, 41) + 1090761466149.57*pow(xi1, 39) - 2462829664359.92*pow(xi1, 37) + 4098358985109.66*pow(xi1, 35) - 5207672102829.33*pow(xi1, 33) + 5165704568093.2*pow(xi1, 31) - 4055323997387.46*pow(xi1, 29) + 2539466092295.99*pow(xi1, 27) - 1272677592880.11*pow(xi1, 25) + 510159539292.741*pow(xi1, 23) - 162880969995.744*pow(xi1, 21) + 41090018295.1226*pow(xi1, 19) - 8090656221.72712*pow(xi1, 17) + 1221946438.94162*pow(xi1, 15) - 138186780.026711*pow(xi1, 13) + 11316135.0824385*pow(xi1, 11) - 639984.608374149*pow(xi1, 9) + 23307.6275589514*pow(xi1, 7) - 489.615191642361*pow(xi1, 5) + 5.00152895756401*pow(xi1, 3) - 0.0287444192963449*xi1 + 5685008576.36934*pow(xi2, 45) - 63920516598.1696*pow(xi2, 43) + 335395652216.154*pow(xi2, 41) - 1090761466149.57*pow(xi2, 39) + 2462829664359.92*pow(xi2, 37) - 4098358985109.66*pow(xi2, 35) + 5207672102829.33*pow(xi2, 33) - 5165704568093.2*pow(xi2, 31) + 4055323997387.46*pow(xi2, 29) - 2539466092295.99*pow(xi2, 27) + 1272677592880.11*pow(xi2, 25) - 510159539292.741*pow(xi2, 23) + 162880969995.744*pow(xi2, 21) - 41090018295.1226*pow(xi2, 19) + 8090656221.72712*pow(xi2, 17) - 1221946438.94162*pow(xi2, 15) + 138186780.026711*pow(xi2, 13) - 11316135.0824385*pow(xi2, 11) + 639984.608374149*pow(xi2, 9) - 23307.6275589514*pow(xi2, 7) + 489.615191642361*pow(xi2, 5) - 5.00152895756401*pow(xi2, 3) + 0.0287444192963449*xi2; case 29: return -10916864295.202*pow(xi1, 46) + 125476260721.295*pow(xi1, 44) - 674073073816.212*pow(xi1, 42) + 2248321823144.9*pow(xi1, 40) - 5216544812047.65*pow(xi1, 38) + 8939734579066.18*pow(xi1, 36) - 11727223625887.1*pow(xi1, 34) + 12043084537277.8*pow(xi1, 32) - 9819495279736.75*pow(xi1, 30) + 6410302670942.14*pow(xi1, 28) - 3363668401955.01*pow(xi1, 26) + 1418999123886.7*pow(xi1, 24) - 479709514691.903*pow(xi1, 22) + 129086628714.985*pow(xi1, 20) - 27359365638.4866*pow(xi1, 18) + 4498778446.81622*pow(xi1, 16) - 562063823.082374*pow(xi1, 14) + 51848002.1788295*pow(xi1, 12) - 3393112.46214019*pow(xi1, 10) + 148747.317821576*pow(xi1, 8) - 4003.61182729473*pow(xi1, 6) + 57.5606996409306*pow(xi1, 4) - 0.388049660500656*pow(xi1, 2) + 10916864295.202*pow(xi2, 46) - 125476260721.295*pow(xi2, 44) + 674073073816.212*pow(xi2, 42) - 2248321823144.9*pow(xi2, 40) + 5216544812047.65*pow(xi2, 38) - 8939734579066.18*pow(xi2, 36) + 11727223625887.1*pow(xi2, 34) - 12043084537277.8*pow(xi2, 32) + 9819495279736.75*pow(xi2, 30) - 6410302670942.14*pow(xi2, 28) + 3363668401955.01*pow(xi2, 26) - 1418999123886.7*pow(xi2, 24) + 479709514691.903*pow(xi2, 22) - 129086628714.985*pow(xi2, 20) + 27359365638.4866*pow(xi2, 18) - 4498778446.81622*pow(xi2, 16) + 562063823.082374*pow(xi2, 14) - 51848002.1788295*pow(xi2, 12) + 3393112.46214019*pow(xi2, 10) - 148747.317821576*pow(xi2, 8) + 4003.61182729473*pow(xi2, 6) - 57.5606996409306*pow(xi2, 4) + 0.388049660500656*pow(xi2, 2); default: return 0.; } case 21: switch(j) { case 0: return -4815.41004180908*pow(xi1, 21)*y1t + 24597.6350784302*pow(xi1, 19)*y1t - 53412.007598877*pow(xi1, 17)*y1t + 64202.3121643066*pow(xi1, 15)*y1t - 46598.4523773193*pow(xi1, 13)*y1t + 20888.9614105225*pow(xi1, 11)*y1t - 5673.54507446289*pow(xi1, 9)*y1t + 875.346954345703*pow(xi1, 7)*y1t - 66.6024856567383*pow(xi1, 5)*y1t + 1.76197052001953*pow(xi1, 3)*y1t + 4815.41004180908*pow(xi2, 21)*y1t - 24597.6350784302*pow(xi2, 19)*y1t + 53412.007598877*pow(xi2, 17)*y1t - 64202.3121643066*pow(xi2, 15)*y1t + 46598.4523773193*pow(xi2, 13)*y1t - 20888.9614105225*pow(xi2, 11)*y1t + 5673.54507446289*pow(xi2, 9)*y1t - 875.346954345703*pow(xi2, 7)*y1t + 66.6024856567383*pow(xi2, 5)*y1t - 1.76197052001953*pow(xi2, 3)*y1t; case 1: return -2407.70502090454*pow(xi1, 21)*y1r + 842.696757316589*pow(xi1, 20)*y1r + 12298.8175392151*pow(xi1, 19)*y1r - 4327.36172676086*pow(xi1, 18)*y1r - 26706.0037994385*pow(xi1, 17)*y1r + 9458.37634563446*pow(xi1, 16)*y1r + 32101.1560821533*pow(xi1, 15)*y1r - 11464.698600769*pow(xi1, 14)*y1r - 23299.2261886597*pow(xi1, 13)*y1r + 8413.60945701599*pow(xi1, 12)*y1r + 10444.4807052612*pow(xi1, 11)*y1r - 3829.64292526245*pow(xi1, 10)*y1r - 2836.77253723145*pow(xi1, 9)*y1r + 1063.78970146179*pow(xi1, 8)*y1r + 437.673477172852*pow(xi1, 7)*y1r - 170.206352233887*pow(xi1, 6)*y1r - 33.3012428283691*pow(xi1, 5)*y1r + 13.8755178451538*pow(xi1, 4)*y1r + 0.880985260009766*pow(xi1, 3)*y1r - 0.440492630004883*pow(xi1, 2)*y1r + 2407.70502090454*pow(xi2, 21)*y1r - 842.696757316589*pow(xi2, 20)*y1r - 12298.8175392151*pow(xi2, 19)*y1r + 4327.36172676086*pow(xi2, 18)*y1r + 26706.0037994385*pow(xi2, 17)*y1r - 9458.37634563446*pow(xi2, 16)*y1r - 32101.1560821533*pow(xi2, 15)*y1r + 11464.698600769*pow(xi2, 14)*y1r + 23299.2261886597*pow(xi2, 13)*y1r - 8413.60945701599*pow(xi2, 12)*y1r - 10444.4807052612*pow(xi2, 11)*y1r + 3829.64292526245*pow(xi2, 10)*y1r + 2836.77253723145*pow(xi2, 9)*y1r - 1063.78970146179*pow(xi2, 8)*y1r - 437.673477172852*pow(xi2, 7)*y1r + 170.206352233887*pow(xi2, 6)*y1r + 33.3012428283691*pow(xi2, 5)*y1r - 13.8755178451538*pow(xi2, 4)*y1r - 0.880985260009766*pow(xi2, 3)*y1r + 0.440492630004883*pow(xi2, 2)*y1r; case 2: return 4815.41004180908*pow(xi1, 21)*y2t - 24597.6350784302*pow(xi1, 19)*y2t + 53412.007598877*pow(xi1, 17)*y2t - 64202.3121643066*pow(xi1, 15)*y2t + 46598.4523773193*pow(xi1, 13)*y2t - 20888.9614105225*pow(xi1, 11)*y2t + 5673.54507446289*pow(xi1, 9)*y2t - 875.346954345703*pow(xi1, 7)*y2t + 66.6024856567383*pow(xi1, 5)*y2t - 1.76197052001953*pow(xi1, 3)*y2t - 4815.41004180908*pow(xi2, 21)*y2t + 24597.6350784302*pow(xi2, 19)*y2t - 53412.007598877*pow(xi2, 17)*y2t + 64202.3121643066*pow(xi2, 15)*y2t - 46598.4523773193*pow(xi2, 13)*y2t + 20888.9614105225*pow(xi2, 11)*y2t - 5673.54507446289*pow(xi2, 9)*y2t + 875.346954345703*pow(xi2, 7)*y2t - 66.6024856567383*pow(xi2, 5)*y2t + 1.76197052001953*pow(xi2, 3)*y2t; case 3: return -2407.70502090454*pow(xi1, 21)*y2r - 842.696757316589*pow(xi1, 20)*y2r + 12298.8175392151*pow(xi1, 19)*y2r + 4327.36172676086*pow(xi1, 18)*y2r - 26706.0037994385*pow(xi1, 17)*y2r - 9458.37634563446*pow(xi1, 16)*y2r + 32101.1560821533*pow(xi1, 15)*y2r + 11464.698600769*pow(xi1, 14)*y2r - 23299.2261886597*pow(xi1, 13)*y2r - 8413.60945701599*pow(xi1, 12)*y2r + 10444.4807052612*pow(xi1, 11)*y2r + 3829.64292526245*pow(xi1, 10)*y2r - 2836.77253723145*pow(xi1, 9)*y2r - 1063.78970146179*pow(xi1, 8)*y2r + 437.673477172852*pow(xi1, 7)*y2r + 170.206352233887*pow(xi1, 6)*y2r - 33.3012428283691*pow(xi1, 5)*y2r - 13.8755178451538*pow(xi1, 4)*y2r + 0.880985260009766*pow(xi1, 3)*y2r + 0.440492630004883*pow(xi1, 2)*y2r + 2407.70502090454*pow(xi2, 21)*y2r + 842.696757316589*pow(xi2, 20)*y2r - 12298.8175392151*pow(xi2, 19)*y2r - 4327.36172676086*pow(xi2, 18)*y2r + 26706.0037994385*pow(xi2, 17)*y2r + 9458.37634563446*pow(xi2, 16)*y2r - 32101.1560821533*pow(xi2, 15)*y2r - 11464.698600769*pow(xi2, 14)*y2r + 23299.2261886597*pow(xi2, 13)*y2r + 8413.60945701599*pow(xi2, 12)*y2r - 10444.4807052612*pow(xi2, 11)*y2r - 3829.64292526245*pow(xi2, 10)*y2r + 2836.77253723145*pow(xi2, 9)*y2r + 1063.78970146179*pow(xi2, 8)*y2r - 437.673477172852*pow(xi2, 7)*y2r - 170.206352233887*pow(xi2, 6)*y2r + 33.3012428283691*pow(xi2, 5)*y2r + 13.8755178451538*pow(xi2, 4)*y2r - 0.880985260009766*pow(xi2, 3)*y2r - 0.440492630004883*pow(xi2, 2)*y2r; case 4: return -4596.5277671814*pow(xi1, 22) + 25053.1468391418*pow(xi1, 20) - 59099.3972969055*pow(xi1, 18) + 79106.4203453064*pow(xi1, 16) - 66199.3886947632*pow(xi1, 14) + 35975.4335403442*pow(xi1, 12) - 12765.4764175415*pow(xi1, 10) + 2893.50798797607*pow(xi1, 8) - 395.914775848389*pow(xi1, 6) + 29.0725135803223*pow(xi1, 4) - 0.880985260009766*pow(xi1, 2) + 4596.5277671814*pow(xi2, 22) - 25053.1468391418*pow(xi2, 20) + 59099.3972969055*pow(xi2, 18) - 79106.4203453064*pow(xi2, 16) + 66199.3886947632*pow(xi2, 14) - 35975.4335403442*pow(xi2, 12) + 12765.4764175415*pow(xi2, 10) - 2893.50798797607*pow(xi2, 8) + 395.914775848389*pow(xi2, 6) - 29.0725135803223*pow(xi2, 4) + 0.880985260009766*pow(xi2, 2); case 5: return -7327.79788970947*pow(xi1, 23) + 41907.0819854736*pow(xi1, 21) - 104247.120094299*pow(xi1, 19) + 147827.172546387*pow(xi1, 17) - 131511.187820435*pow(xi1, 15) + 76057.2441101074*pow(xi1, 13) - 28625.61378479*pow(xi1, 11) + 6808.25408935547*pow(xi1, 9) - 954.635627746582*pow(xi1, 7) + 68.3644561767578*pow(xi1, 5) - 1.76197052001953*pow(xi1, 3) + 7327.79788970947*pow(xi2, 23) - 41907.0819854736*pow(xi2, 21) + 104247.120094299*pow(xi2, 19) - 147827.172546387*pow(xi2, 17) + 131511.187820435*pow(xi2, 15) - 76057.2441101074*pow(xi2, 13) + 28625.61378479*pow(xi2, 11) - 6808.25408935547*pow(xi2, 9) + 954.635627746582*pow(xi2, 7) - 68.3644561767578*pow(xi2, 5) + 1.76197052001953*pow(xi2, 3); case 6: return -12289.3277108669*pow(xi1, 24) + 73451.2714147568*pow(xi1, 22) - 192100.697286129*pow(xi1, 20) + 288650.013709068*pow(xi1, 18) - 275090.35777688*pow(xi1, 16) + 173242.563199997*pow(xi1, 14) - 72901.8306016922*pow(xi1, 12) + 20297.107503891*pow(xi1, 10) - 3631.91679596901*pow(xi1, 8) + 396.634247144063*pow(xi1, 6) - 24.1169714927673*pow(xi1, 4) + 0.660738945007324*pow(xi1, 2) + 12289.3277108669*pow(xi2, 24) - 73451.2714147568*pow(xi2, 22) + 192100.697286129*pow(xi2, 20) - 288650.013709068*pow(xi2, 18) + 275090.35777688*pow(xi2, 16) - 173242.563199997*pow(xi2, 14) + 72901.8306016922*pow(xi2, 12) - 20297.107503891*pow(xi2, 10) + 3631.91679596901*pow(xi2, 8) - 396.634247144063*pow(xi2, 6) + 24.1169714927673*pow(xi2, 4) - 0.660738945007324*pow(xi2, 2); case 7: return -21235.9582843781*pow(xi1, 25) + 132326.16648674*pow(xi1, 23) - 362841.146650314*pow(xi1, 21) + 575621.929979324*pow(xi1, 19) - 584297.167682648*pow(xi1, 17) + 396256.456432343*pow(xi1, 15) - 181974.990749359*pow(xi1, 13) + 56113.9396705627*pow(xi1, 11) - 11257.6701450348*pow(xi1, 9) + 1375.65848350525*pow(xi1, 7) - 89.4200038909912*pow(xi1, 5) + 2.20246315002441*pow(xi1, 3) + 21235.9582843781*pow(xi2, 25) - 132326.16648674*pow(xi2, 23) + 362841.146650314*pow(xi2, 21) - 575621.929979324*pow(xi2, 19) + 584297.167682648*pow(xi2, 17) - 396256.456432343*pow(xi2, 15) + 181974.990749359*pow(xi2, 13) - 56113.9396705627*pow(xi2, 11) + 11257.6701450348*pow(xi2, 9) - 1375.65848350525*pow(xi2, 7) + 89.4200038909912*pow(xi2, 5) - 2.20246315002441*pow(xi2, 3); case 8: return -37435.1828731023*pow(xi1, 26) + 242730.829489231*pow(xi1, 24) - 696181.399483681*pow(xi1, 22) + 1162625.44245243*pow(xi1, 20) - 1252241.40361547*pow(xi1, 18) + 910307.749307156*pow(xi1, 16) - 454159.560728073*pow(xi1, 14) + 155054.118558884*pow(xi1, 12) - 35489.4119925499*pow(xi1, 10) + 5233.38281393051*pow(xi1, 8) - 467.142434120178*pow(xi1, 6) + 23.1258630752563*pow(xi1, 4) - 0.550615787506104*pow(xi1, 2) + 37435.1828731023*pow(xi2, 26) - 242730.829489231*pow(xi2, 24) + 696181.399483681*pow(xi2, 22) - 1162625.44245243*pow(xi2, 20) + 1252241.40361547*pow(xi2, 18) - 910307.749307156*pow(xi2, 16) + 454159.560728073*pow(xi2, 14) - 155054.118558884*pow(xi2, 12) + 35489.4119925499*pow(xi2, 10) - 5233.38281393051*pow(xi2, 8) + 467.142434120178*pow(xi2, 6) - 23.1258630752563*pow(xi2, 4) + 0.550615787506104*pow(xi2, 2); case 9: return -66947.5757201513*pow(xi1, 27) + 450956.643104553*pow(xi1, 25) - 1350117.33681679*pow(xi1, 23) + 2367351.01711273*pow(xi1, 21) - 2696581.86814785*pow(xi1, 19) + 2091952.29377747*pow(xi1, 17) - 1126858.29648972*pow(xi1, 15) + 421785.623886108*pow(xi1, 13) - 108014.851653099*pow(xi1, 11) + 18288.6666742961*pow(xi1, 9) - 1922.75032997131*pow(xi1, 7) + 111.00414276123*pow(xi1, 5) - 2.56954034169515*pow(xi1, 3) + 66947.5757201513*pow(xi2, 27) - 450956.643104553*pow(xi2, 25) + 1350117.33681679*pow(xi2, 23) - 2367351.01711273*pow(xi2, 21) + 2696581.86814785*pow(xi2, 19) - 2091952.29377747*pow(xi2, 17) + 1126858.29648972*pow(xi2, 15) - 421785.623886108*pow(xi2, 13) + 108014.851653099*pow(xi2, 11) - 18288.6666742961*pow(xi2, 9) + 1922.75032997131*pow(xi2, 7) - 111.00414276123*pow(xi2, 5) + 2.56954034169515*pow(xi2, 3); case 10: return -121043.607886881*pow(xi1, 28) + 845778.579072654*pow(xi1, 26) - 2638381.56539574*pow(xi1, 24) + 4846179.01085794*pow(xi1, 22) - 5820583.71478423*pow(xi1, 20) + 4800210.0817278*pow(xi1, 18) - 2777324.87994209*pow(xi1, 16) + 1131748.51436734*pow(xi1, 14) - 321322.880017787*pow(xi1, 12) + 61915.3605063558*pow(xi1, 10) - 7733.72222229838*pow(xi1, 8) + 582.193602919579*pow(xi1, 6) - 23.8485462963581*pow(xi1, 4) + 0.481788814067841*pow(xi1, 2) + 121043.607886881*pow(xi2, 28) - 845778.579072654*pow(xi2, 26) + 2638381.56539574*pow(xi2, 24) - 4846179.01085794*pow(xi2, 22) + 5820583.71478423*pow(xi2, 20) - 4800210.0817278*pow(xi2, 18) + 2777324.87994209*pow(xi2, 16) - 1131748.51436734*pow(xi2, 14) + 321322.880017787*pow(xi2, 12) - 61915.3605063558*pow(xi2, 10) + 7733.72222229838*pow(xi2, 8) - 582.193602919579*pow(xi2, 6) + 23.8485462963581*pow(xi2, 4) - 0.481788814067841*pow(xi2, 2); case 11: return -220753.859594464*pow(xi1, 29) + 1597921.02183402*pow(xi1, 27) - 5185115.58801055*pow(xi1, 25) + 9956002.6088655*pow(xi1, 23) - 12575203.3539766*pow(xi1, 21) + 10986811.2805098*pow(xi1, 19) - 6796979.6032548*pow(xi1, 17) + 2996882.53331995*pow(xi1, 15) - 935175.832545161*pow(xi1, 13) + 202332.507389426*pow(xi1, 11) - 29241.6076886654*pow(xi1, 9) + 2651.71057105064*pow(xi1, 7) - 134.708152413368*pow(xi1, 5) + 2.89073288440704*pow(xi1, 3) + 220753.859594464*pow(xi2, 29) - 1597921.02183402*pow(xi2, 27) + 5185115.58801055*pow(xi2, 25) - 9956002.6088655*pow(xi2, 23) + 12575203.3539766*pow(xi2, 21) - 10986811.2805098*pow(xi2, 19) + 6796979.6032548*pow(xi2, 17) - 2996882.53331995*pow(xi2, 15) + 935175.832545161*pow(xi2, 13) - 202332.507389426*pow(xi2, 11) + 29241.6076886654*pow(xi2, 9) - 2651.71057105064*pow(xi2, 7) + 134.708152413368*pow(xi2, 5) - 2.89073288440704*pow(xi2, 3); case 12: return -405451.255455166*pow(xi1, 30) + 3036558.8335298*pow(xi1, 28) - 10234008.0454154*pow(xi1, 26) + 20502764.8258321*pow(xi1, 24) - 27168407.1926661*pow(xi1, 22) + 25069719.7046261*pow(xi1, 20) - 16516991.3616178*pow(xi1, 18) + 7837789.40442404*pow(xi1, 16) - 2668491.02463529*pow(xi1, 14) + 641586.375719259*pow(xi1, 12) - 105726.973603338*pow(xi1, 10) + 11368.8188244402*pow(xi1, 8) - 737.262150615454*pow(xi1, 6) + 25.5829860270023*pow(xi1, 4) - 0.433609932661057*pow(xi1, 2) + 405451.255455166*pow(xi2, 30) - 3036558.8335298*pow(xi2, 28) + 10234008.0454154*pow(xi2, 26) - 20502764.8258321*pow(xi2, 24) + 27168407.1926661*pow(xi2, 22) - 25069719.7046261*pow(xi2, 20) + 16516991.3616178*pow(xi2, 18) - 7837789.40442404*pow(xi2, 16) + 2668491.02463529*pow(xi2, 14) - 641586.375719259*pow(xi2, 12) + 105726.973603338*pow(xi2, 10) - 11368.8188244402*pow(xi2, 8) + 737.262150615454*pow(xi2, 6) - 25.5829860270023*pow(xi2, 4) + 0.433609932661057*pow(xi2, 2); case 13: return -749074.166969955*pow(xi1, 31) + 5797853.33353579*pow(xi1, 29) - 20266690.4669765*pow(xi1, 27) + 42289717.7062619*pow(xi1, 25) - 58662785.4666039*pow(xi1, 23) + 57013311.6029352*pow(xi1, 21) - 39860846.3061646*pow(xi1, 19) + 20261945.3071647*pow(xi1, 17) - 7479204.49236828*pow(xi1, 15) + 1980787.58679807*pow(xi1, 13) - 367431.737764776*pow(xi1, 11) + 45875.8207523823*pow(xi1, 9) - 3617.07494741678*pow(xi1, 7) + 161.534153580666*pow(xi1, 5) - 3.17980617284775*pow(xi1, 3) + 749074.166969955*pow(xi2, 31) - 5797853.33353579*pow(xi2, 29) + 20266690.4669765*pow(xi2, 27) - 42289717.7062619*pow(xi2, 25) + 58662785.4666039*pow(xi2, 23) - 57013311.6029352*pow(xi2, 21) + 39860846.3061646*pow(xi2, 19) - 20261945.3071647*pow(xi2, 17) + 7479204.49236828*pow(xi2, 15) - 1980787.58679807*pow(xi2, 13) + 367431.737764776*pow(xi2, 11) - 45875.8207523823*pow(xi2, 9) + 3617.07494741678*pow(xi2, 7) - 161.534153580666*pow(xi2, 5) + 3.17980617284775*pow(xi2, 3); case 14: return -1390859.06523328*pow(xi1, 32) + 11113797.4660238*pow(xi1, 30) - 40240699.1092844*pow(xi1, 28) + 87318955.0707993*pow(xi1, 26) - 126546331.339768*pow(xi1, 24) + 129212818.351678*pow(xi1, 22) - 95560534.0450485*pow(xi1, 20) + 51818448.6328783*pow(xi1, 18) - 20623835.859613*pow(xi1, 16) + 5971447.06099082*pow(xi1, 14) - 1233677.99478771*pow(xi1, 12) + 176052.183267586*pow(xi1, 10) - 16487.5533654671*pow(xi1, 8) + 933.829577811062*pow(xi1, 6) - 28.0220418982208*pow(xi1, 4) + 0.397475771605968*pow(xi1, 2) + 1390859.06523328*pow(xi2, 32) - 11113797.4660238*pow(xi2, 30) + 40240699.1092844*pow(xi2, 28) - 87318955.0707993*pow(xi2, 26) + 126546331.339768*pow(xi2, 24) - 129212818.351678*pow(xi2, 22) + 95560534.0450485*pow(xi2, 20) - 51818448.6328783*pow(xi2, 18) + 20623835.859613*pow(xi2, 16) - 5971447.06099082*pow(xi2, 14) + 1233677.99478771*pow(xi2, 12) - 176052.183267586*pow(xi2, 10) + 16487.5533654671*pow(xi2, 8) - 933.829577811062*pow(xi2, 6) + 28.0220418982208*pow(xi2, 4) - 0.397475771605968*pow(xi2, 2); case 15: return -2593676.57852359*pow(xi1, 33) + 21374698.9817139*pow(xi1, 31) - 80069343.0678237*pow(xi1, 29) + 180409482.926837*pow(xi1, 27) - 272660658.817659*pow(xi1, 25) + 291832705.291657*pow(xi1, 23) - 227646965.371663*pow(xi1, 21) + 131200707.86478*pow(xi1, 19) - 56031543.8303474*pow(xi1, 17) + 17621862.9742209*pow(xi1, 15) - 4018380.24838351*pow(xi1, 13) + 646951.29511781*pow(xi1, 11) - 70530.7633705189*pow(xi1, 9) + 4878.1179368645*pow(xi1, 7) - 192.219283148646*pow(xi1, 5) + 3.44479002058506*pow(xi1, 3) + 2593676.57852359*pow(xi2, 33) - 21374698.9817139*pow(xi2, 31) + 80069343.0678237*pow(xi2, 29) - 180409482.926837*pow(xi2, 27) + 272660658.817659*pow(xi2, 25) - 291832705.291657*pow(xi2, 23) + 227646965.371663*pow(xi2, 21) - 131200707.86478*pow(xi2, 19) + 56031543.8303474*pow(xi2, 17) - 17621862.9742209*pow(xi2, 15) + 4018380.24838351*pow(xi2, 13) - 646951.29511781*pow(xi2, 11) + 70530.7633705189*pow(xi2, 9) - 4878.1179368645*pow(xi2, 7) + 192.219283148646*pow(xi2, 5) - 3.44479002058506*pow(xi2, 3); case 16: return -4854970.23416916*pow(xi1, 34) + 41225938.4348919*pow(xi1, 32) - 159592087.223465*pow(xi1, 30) + 372872774.309806*pow(xi1, 28) - 586702614.054534*pow(xi1, 26) + 656876682.631329*pow(xi1, 24) - 539060699.397119*pow(xi1, 22) + 329113221.379803*pow(xi1, 20) - 150174585.707234*pow(xi1, 18) + 51011662.3364239*pow(xi1, 16) - 12741096.0830762*pow(xi1, 14) + 2289275.60617186*pow(xi1, 12) - 285898.280884445*pow(xi1, 10) + 23541.6950006783*pow(xi1, 8) - 1176.05131302774*pow(xi1, 6) + 31.0031101852655*pow(xi1, 4) - 0.369084645062685*pow(xi1, 2) + 4854970.23416916*pow(xi2, 34) - 41225938.4348919*pow(xi2, 32) + 159592087.223465*pow(xi2, 30) - 372872774.309806*pow(xi2, 28) + 586702614.054534*pow(xi2, 26) - 656876682.631329*pow(xi2, 24) + 539060699.397119*pow(xi2, 22) - 329113221.379803*pow(xi2, 20) + 150174585.707234*pow(xi2, 18) - 51011662.3364239*pow(xi2, 16) + 12741096.0830762*pow(xi2, 14) - 2289275.60617186*pow(xi2, 12) + 285898.280884445*pow(xi2, 10) - 23541.6950006783*pow(xi2, 8) + 1176.05131302774*pow(xi2, 6) - 31.0031101852655*pow(xi2, 4) + 0.369084645062685*pow(xi2, 2); case 17: return -9118096.47788722*pow(xi1, 35) + 79708988.7815304*pow(xi1, 33) - 318541366.112857*pow(xi1, 31) + 770760565.57494*pow(xi1, 29) - 1260663100.10732*pow(xi1, 27) + 1473646404.52689*pow(xi1, 25) - 1269248861.795*pow(xi1, 23) + 818456749.903348*pow(xi1, 21) - 397510603.618273*pow(xi1, 19) + 145117328.453817*pow(xi1, 17) - 39437672.1525126*pow(xi1, 15) + 7835964.69822362*pow(xi1, 13) - 1106309.09639171*pow(xi1, 11) + 106285.551295131*pow(xi1, 9) - 6501.79510742426*pow(xi1, 7) + 227.356141358614*pow(xi1, 5) - 3.69084645062685*pow(xi1, 3) + 9118096.47788722*pow(xi2, 35) - 79708988.7815304*pow(xi2, 33) + 318541366.112857*pow(xi2, 31) - 770760565.57494*pow(xi2, 29) + 1260663100.10732*pow(xi2, 27) - 1473646404.52689*pow(xi2, 25) + 1269248861.795*pow(xi2, 23) - 818456749.903348*pow(xi2, 21) + 397510603.618273*pow(xi2, 19) - 145117328.453817*pow(xi2, 17) + 39437672.1525126*pow(xi2, 15) - 7835964.69822362*pow(xi2, 13) + 1106309.09639171*pow(xi2, 11) - 106285.551295131*pow(xi2, 9) + 6501.79510742426*pow(xi2, 7) - 227.356141358614*pow(xi2, 5) + 3.69084645062685*pow(xi2, 3); case 18: return -17175581.0390758*pow(xi1, 36) + 154445460.189213*pow(xi1, 34) - 636536529.850006*pow(xi1, 32) + 1593187891.04673*pow(xi1, 30) - 2704869598.21416*pow(xi1, 28) + 3295408612.9558*pow(xi1, 26) - 2972526156.78936*pow(xi1, 24) + 2019049360.76173*pow(xi1, 22) - 1040211599.82845*pow(xi1, 20) + 406333229.98651*pow(xi1, 18) - 119458267.623672*pow(xi1, 16) + 26042517.6376345*pow(xi1, 14) - 4111046.93219014*pow(xi1, 12) + 453365.068400052*pow(xi1, 10) - 33092.9135811911*pow(xi1, 8) + 1469.6335425321*pow(xi1, 6) - 34.4286770472536*pow(xi1, 4) + 0.346016854746267*pow(xi1, 2) + 17175581.0390758*pow(xi2, 36) - 154445460.189213*pow(xi2, 34) + 636536529.850006*pow(xi2, 32) - 1593187891.04673*pow(xi2, 30) + 2704869598.21416*pow(xi2, 28) - 3295408612.9558*pow(xi2, 26) + 2972526156.78936*pow(xi2, 24) - 2019049360.76173*pow(xi2, 22) + 1040211599.82845*pow(xi2, 20) - 406333229.98651*pow(xi2, 18) + 119458267.623672*pow(xi2, 16) - 26042517.6376345*pow(xi2, 14) + 4111046.93219014*pow(xi2, 12) - 453365.068400052*pow(xi2, 10) + 33092.9135811911*pow(xi2, 8) - 1469.6335425321*pow(xi2, 6) + 34.4286770472536*pow(xi2, 4) - 0.346016854746267*pow(xi2, 2); case 19: return -32439730.1660127*pow(xi1, 37) + 299821748.504057*pow(xi1, 35) - 1273206633.86498*pow(xi1, 33) + 3292699297.39704*pow(xi1, 31) - 5794994748.83702*pow(xi1, 29) + 7346551305.36478*pow(xi1, 27) - 6926351242.32454*pow(xi1, 25) + 4943512575.58459*pow(xi1, 23) - 2693392503.79356*pow(xi1, 21) + 1121378210.87288*pow(xi1, 19) - 354830029.912586*pow(xi1, 17) + 84300723.3929026*pow(xi1, 15) - 14741426.4360987*pow(xi1, 13) + 1841288.09378052*pow(xi1, 11) - 157134.957986493*pow(xi1, 9) + 8564.60918867961*pow(xi1, 7) - 267.447960928548*pow(xi1, 5) + 3.92152435379103*pow(xi1, 3) + 32439730.1660127*pow(xi2, 37) - 299821748.504057*pow(xi2, 35) + 1273206633.86498*pow(xi2, 33) - 3292699297.39704*pow(xi2, 31) + 5794994748.83702*pow(xi2, 29) - 7346551305.36478*pow(xi2, 27) + 6926351242.32454*pow(xi2, 25) - 4943512575.58459*pow(xi2, 23) + 2693392503.79356*pow(xi2, 21) - 1121378210.87288*pow(xi2, 19) + 354830029.912586*pow(xi2, 17) - 84300723.3929026*pow(xi2, 15) + 14741426.4360987*pow(xi2, 13) - 1841288.09378052*pow(xi2, 11) + 157134.957986493*pow(xi2, 9) - 8564.60918867961*pow(xi2, 7) + 267.447960928548*pow(xi2, 5) - 3.92152435379103*pow(xi2, 3); case 20: return -61417325.3874071*pow(xi1, 38) + 583014039.372506*pow(xi1, 36) - 2548730617.81604*pow(xi1, 34) + 6803567031.10103*pow(xi1, 32) - 12397121286.1174*pow(xi1, 30) + 16329382762.539*pow(xi1, 28) - 16062239196.4967*pow(xi1, 26) + 12019255313.2307*pow(xi1, 24) - 6905979674.78069*pow(xi1, 22) + 3053856817.14484*pow(xi1, 20) - 1035376037.57364*pow(xi1, 18) + 266494890.885114*pow(xi1, 16) - 51212175.5007219*pow(xi1, 14) + 7164580.97348283*pow(xi1, 12) - 703164.296631967*pow(xi1, 10) + 45826.1492935312*pow(xi1, 8) - 1821.35198611824*pow(xi1, 6) + 38.2348624494625*pow(xi1, 4) - 0.326793696149252*pow(xi1, 2) + 61417325.3874071*pow(xi2, 38) - 583014039.372506*pow(xi2, 36) + 2548730617.81604*pow(xi2, 34) - 6803567031.10103*pow(xi2, 32) + 12397121286.1174*pow(xi2, 30) - 16329382762.539*pow(xi2, 28) + 16062239196.4967*pow(xi2, 26) - 12019255313.2307*pow(xi2, 24) + 6905979674.78069*pow(xi2, 22) - 3053856817.14484*pow(xi2, 20) + 1035376037.57364*pow(xi2, 18) - 266494890.885114*pow(xi2, 16) + 51212175.5007219*pow(xi2, 14) - 7164580.97348283*pow(xi2, 12) + 703164.296631967*pow(xi2, 10) - 45826.1492935312*pow(xi2, 8) + 1821.35198611824*pow(xi2, 6) - 38.2348624494625*pow(xi2, 4) + 0.326793696149252*pow(xi2, 2); case 21: return -116535437.914567*pow(xi1, 39) + 1135390555.81044*pow(xi1, 37) - 5105550103.41374*pow(xi1, 35) + 14053760933.5557*pow(xi1, 33) - 26482395306.5159*pow(xi1, 31) + 36192790927.193*pow(xi1, 29) - 37080503004.7506*pow(xi1, 27) + 29031487951.9893*pow(xi1, 25) - 17547097623.7151*pow(xi1, 23) + 8215429601.80738*pow(xi1, 21) - 2972498030.86585*pow(xi1, 19) + 824591221.539438*pow(xi1, 17) - 172944218.334939*pow(xi1, 15) + 26844403.798678*pow(xi1, 13) - 2989214.50871948*pow(xi1, 11) + 228189.49347776*pow(xi1, 9) - 11153.9917194878*pow(xi1, 7) + 312.937643432524*pow(xi1, 5) - 4.13938681789053*pow(xi1, 3) + 116535437.914567*pow(xi2, 39) - 1135390555.81044*pow(xi2, 37) + 5105550103.41374*pow(xi2, 35) - 14053760933.5557*pow(xi2, 33) + 26482395306.5159*pow(xi2, 31) - 36192790927.193*pow(xi2, 29) + 37080503004.7506*pow(xi2, 27) - 29031487951.9893*pow(xi2, 25) + 17547097623.7151*pow(xi2, 23) - 8215429601.80738*pow(xi2, 21) + 2972498030.86585*pow(xi2, 19) - 824591221.539438*pow(xi2, 17) + 172944218.334939*pow(xi2, 15) - 26844403.798678*pow(xi2, 13) + 2989214.50871948*pow(xi2, 11) - 228189.49347776*pow(xi2, 9) + 11153.9917194878*pow(xi2, 7) - 312.937643432524*pow(xi2, 5) + 4.13938681789053*pow(xi2, 3); case 22: return -221563001.335071*pow(xi1, 40) + 2214094580.21603*pow(xi1, 38) - 10233135408.4591*pow(xi1, 36) + 29020103383.2284*pow(xi1, 34) - 56490288563.2613*pow(xi1, 32) + 80000676119.5703*pow(xi1, 30) - 85237502310.1306*pow(xi1, 28) + 69693167146.6517*pow(xi1, 26) - 44209431231.8868*pow(xi1, 24) + 21852582608.9513*pow(xi1, 22) - 8407716578.46659*pow(xi1, 20) + 2502229402.03009*pow(xi1, 18) - 569333795.484418*pow(xi1, 16) + 97259112.1754349*pow(xi1, 14) - 12149572.8591448*pow(xi1, 12) + 1068478.64285384*pow(xi1, 10) - 62566.3402002307*pow(xi1, 8) + 2238.80805739018*pow(xi1, 6) - 42.3769725481543*pow(xi1, 4) + 0.31045401134179*pow(xi1, 2) + 221563001.335071*pow(xi2, 40) - 2214094580.21603*pow(xi2, 38) + 10233135408.4591*pow(xi2, 36) - 29020103383.2284*pow(xi2, 34) + 56490288563.2613*pow(xi2, 32) - 80000676119.5703*pow(xi2, 30) + 85237502310.1306*pow(xi2, 28) - 69693167146.6517*pow(xi2, 26) + 44209431231.8868*pow(xi2, 24) - 21852582608.9513*pow(xi2, 22) + 8407716578.46659*pow(xi2, 20) - 2502229402.03009*pow(xi2, 18) + 569333795.484418*pow(xi2, 16) - 97259112.1754349*pow(xi2, 14) + 12149572.8591448*pow(xi2, 12) - 1068478.64285384*pow(xi2, 10) + 62566.3402002307*pow(xi2, 8) - 2238.80805739018*pow(xi2, 6) + 42.3769725481543*pow(xi2, 4) - 0.31045401134179*pow(xi2, 2); case 23: return -422024764.447755*pow(xi1, 41) + 4322902316.91078*pow(xi1, 39) - 20520330597.4072*pow(xi1, 37) + 59901917263.415*pow(xi1, 35) - 120332959323.442*pow(xi1, 33) + 176374680057.007*pow(xi1, 31) - 195146915254.19*pow(xi1, 29) + 166342835627.683*pow(xi1, 27) - 110510141539.374*pow(xi1, 25) + 57521106460.0063*pow(xi1, 23) - 23457614573.9268*pow(xi1, 21) + 7459134211.59708*pow(xi1, 19) - 1831495756.75403*pow(xi1, 17) + 341936494.88629*pow(xi1, 15) - 47462032.3602766*pow(xi1, 13) + 4743304.91553402*pow(xi1, 11) - 325904.065670225*pow(xi1, 9) + 14369.426005757*pow(xi1, 7) - 364.224646106188*pow(xi1, 5) + 4.34635615878506*pow(xi1, 3) + 422024764.447755*pow(xi2, 41) - 4322902316.91078*pow(xi2, 39) + 20520330597.4072*pow(xi2, 37) - 59901917263.415*pow(xi2, 35) + 120332959323.442*pow(xi2, 33) - 176374680057.007*pow(xi2, 31) + 195146915254.19*pow(xi2, 29) - 166342835627.683*pow(xi2, 27) + 110510141539.374*pow(xi2, 25) - 57521106460.0063*pow(xi2, 23) + 23457614573.9268*pow(xi2, 21) - 7459134211.59708*pow(xi2, 19) + 1831495756.75403*pow(xi2, 17) - 341936494.88629*pow(xi2, 15) + 47462032.3602766*pow(xi2, 13) - 4743304.91553402*pow(xi2, 11) + 325904.065670225*pow(xi2, 9) - 14369.426005757*pow(xi2, 7) + 364.224646106188*pow(xi2, 5) - 4.34635615878506*pow(xi2, 3); case 24: return -805226904.46038*pow(xi1, 42) + 8449568302.93278*pow(xi1, 40) - 41165901262.5445*pow(xi1, 38) + 123596762437.165*pow(xi1, 36) - 255979710020.842*pow(xi1, 34) + 387881992088.781*pow(xi1, 32) - 445073680723.189*pow(xi1, 30) + 394876109613.793*pow(xi1, 28) - 274214810169.403*pow(xi1, 26) + 149943044753.442*pow(xi1, 24) - 64624213069.4037*pow(xi1, 22) + 21875803667.7972*pow(xi1, 20) - 5769358869.07719*pow(xi1, 18) + 1170014757.05802*pow(xi1, 16) - 178978750.223936*pow(xi1, 14) + 20095740.8543639*pow(xi1, 12) - 1593206.31097129*pow(xi1, 10) + 84297.3998941569*pow(xi1, 8) - 2730.2887435151*pow(xi1, 6) + 46.8221095287299*pow(xi1, 4) - 0.296342465371708*pow(xi1, 2) + 805226904.46038*pow(xi2, 42) - 8449568302.93278*pow(xi2, 40) + 41165901262.5445*pow(xi2, 38) - 123596762437.165*pow(xi2, 36) + 255979710020.842*pow(xi2, 34) - 387881992088.781*pow(xi2, 32) + 445073680723.189*pow(xi2, 30) - 394876109613.793*pow(xi2, 28) + 274214810169.403*pow(xi2, 26) - 149943044753.442*pow(xi2, 24) + 64624213069.4037*pow(xi2, 22) - 21875803667.7972*pow(xi2, 20) + 5769358869.07719*pow(xi2, 18) - 1170014757.05802*pow(xi2, 16) + 178978750.223936*pow(xi2, 14) - 20095740.8543639*pow(xi2, 12) + 1593206.31097129*pow(xi2, 10) - 84297.3998941569*pow(xi2, 8) + 2730.2887435151*pow(xi2, 6) - 46.8221095287299*pow(xi2, 4) + 0.296342465371708*pow(xi2, 2); case 25: return -1538805712.26503*pow(xi1, 43) + 16532226174.7729*pow(xi1, 41) - 82611751780.2235*pow(xi1, 39) + 254912225915.977*pow(xi1, 37) - 543817928726.357*pow(xi1, 35) + 851003685212.995*pow(xi1, 33) - 1011412343303.2*pow(xi1, 31) + 932605142497.08*pow(xi1, 29) - 675747137296.369*pow(xi1, 27) + 387337506400.648*pow(xi1, 25) - 175961532717.34*pow(xi1, 23) + 63200085370.9558*pow(xi1, 21) - 17828601337.3*pow(xi1, 19) + 3906368383.90736*pow(xi1, 17) - 653900452.039292*pow(xi1, 15) + 81691776.9779117*pow(xi1, 13) - 7370840.43279175*pow(xi1, 11) + 458338.497413532*pow(xi1, 9) - 18323.4134511531*pow(xi1, 7) + 421.675572059583*pow(xi1, 5) - 4.5439178023662*pow(xi1, 3) + 1538805712.26503*pow(xi2, 43) - 16532226174.7729*pow(xi2, 41) + 82611751780.2235*pow(xi2, 39) - 254912225915.977*pow(xi2, 37) + 543817928726.357*pow(xi2, 35) - 851003685212.995*pow(xi2, 33) + 1011412343303.2*pow(xi2, 31) - 932605142497.08*pow(xi2, 29) + 675747137296.369*pow(xi2, 27) - 387337506400.648*pow(xi2, 25) + 175961532717.34*pow(xi2, 23) - 63200085370.9558*pow(xi2, 21) + 17828601337.3*pow(xi2, 19) - 3906368383.90736*pow(xi2, 17) + 653900452.039292*pow(xi2, 15) - 81691776.9779117*pow(xi2, 13) + 7370840.43279175*pow(xi2, 11) - 458338.497413532*pow(xi2, 9) + 18323.4134511531*pow(xi2, 7) - 421.675572059583*pow(xi2, 5) + 4.5439178023662*pow(xi2, 3); case 26: return -2945006008.03753*pow(xi1, 44) + 32376437528.27*pow(xi1, 42) - 165834316512.342*pow(xi1, 40) + 525516840538.759*pow(xi1, 38) - 1153840986172.26*pow(xi1, 36) + 1862846628678.5*pow(xi1, 34) - 2290506419752.75*pow(xi1, 32) + 2192002290170.17*pow(xi1, 30) - 1654499005685.08*pow(xi1, 28) + 992150683496.898*pow(xi1, 26) - 473928780505.806*pow(xi1, 24) + 180072606201.234*pow(xi1, 22) - 54132938919.5742*pow(xi1, 20) + 12753941922.5462*pow(xi1, 18) - 2321784503.34649*pow(xi1, 16) + 320073908.647654*pow(xi1, 14) - 32490100.6234645*pow(xi1, 12) + 2334644.31637217*pow(xi1, 10) - 112182.940656012*pow(xi1, 8) + 3304.67781971587*pow(xi1, 6) - 51.5450675705915*pow(xi1, 4) + 0.283994862647887*pow(xi1, 2) + 2945006008.03753*pow(xi2, 44) - 32376437528.27*pow(xi2, 42) + 165834316512.342*pow(xi2, 40) - 525516840538.759*pow(xi2, 38) + 1153840986172.26*pow(xi2, 36) - 1862846628678.5*pow(xi2, 34) + 2290506419752.75*pow(xi2, 32) - 2192002290170.17*pow(xi2, 30) + 1654499005685.08*pow(xi2, 28) - 992150683496.898*pow(xi2, 26) + 473928780505.806*pow(xi2, 24) - 180072606201.234*pow(xi2, 22) + 54132938919.5742*pow(xi2, 20) - 12753941922.5462*pow(xi2, 18) + 2321784503.34649*pow(xi2, 16) - 320073908.647654*pow(xi2, 14) + 32490100.6234645*pow(xi2, 12) - 2334644.31637217*pow(xi2, 10) + 112182.940656012*pow(xi2, 8) - 3304.67781971587*pow(xi2, 6) + 51.5450675705915*pow(xi2, 4) - 0.283994862647887*pow(xi2, 2); case 27: return -5643940402.95904*pow(xi1, 45) + 63459307840.2206*pow(xi1, 43) - 332978508214.796*pow(xi1, 41) + 1082909699230.21*pow(xi1, 39) - 2445121682401.35*pow(xi1, 37) + 4068925192581.16*pow(xi1, 35) - 5170313921043.63*pow(xi1, 33) + 5128689225764.81*pow(xi1, 31) - 4026297675831.58*pow(xi1, 29) + 2521309801100.88*pow(xi1, 27) - 1263588399544.35*pow(xi1, 25) + 506520061817.221*pow(xi1, 23) - 161720234605.989*pow(xi1, 21) + 40797513653.6727*pow(xi1, 19) - 8033123179.43023*pow(xi1, 17) + 1213266304.17716*pow(xi1, 15) - 137206195.642171*pow(xi1, 13) + 11235918.5064705*pow(xi1, 11) - 635452.569682131*pow(xi1, 9) + 23142.3356502297*pow(xi1, 7) - 485.631215127887*pow(xi1, 5) + 4.73324771079812*pow(xi1, 3) + 5643940402.95904*pow(xi2, 45) - 63459307840.2206*pow(xi2, 43) + 332978508214.796*pow(xi2, 41) - 1082909699230.21*pow(xi2, 39) + 2445121682401.35*pow(xi2, 37) - 4068925192581.16*pow(xi2, 35) + 5170313921043.63*pow(xi2, 33) - 5128689225764.81*pow(xi2, 31) + 4026297675831.58*pow(xi2, 29) - 2521309801100.88*pow(xi2, 27) + 1263588399544.35*pow(xi2, 25) - 506520061817.221*pow(xi2, 23) + 161720234605.989*pow(xi2, 21) - 40797513653.6727*pow(xi2, 19) + 8033123179.43023*pow(xi2, 17) - 1213266304.17716*pow(xi2, 15) + 137206195.642171*pow(xi2, 13) - 11235918.5064705*pow(xi2, 11) + 635452.569682131*pow(xi2, 9) - 23142.3356502297*pow(xi2, 7) + 485.631215127887*pow(xi2, 5) - 4.73324771079812*pow(xi2, 3); case 28: return -10830136475.5778*pow(xi1, 46) + 124480567047.592*pow(xi1, 44) - 668730146595.075*pow(xi1, 42) + 2230520873347.34*pow(xi1, 40) - 5175289082189.45*pow(xi1, 38) + 8869111491786.76*pow(xi1, 36) - 11634680954177.8*pow(xi1, 34) + 11948152405933.1*pow(xi1, 32) - 9742174333567.36*pow(xi1, 30) + 6359880357274.0*pow(xi1, 28) - 3337238393035.54*pow(xi1, 26) + 1407861058998.53*pow(xi1, 24) - 475948085093.87*pow(xi1, 22) + 128075500365.761*pow(xi1, 20) - 27145281328.444*pow(xi1, 18) + 4463611836.62049*pow(xi1, 16) - 557674658.619336*pow(xi1, 14) + 51443527.1447734*pow(xi1, 12) - 3366668.49452746*pow(xi1, 10) + 147588.470953531*pow(xi1, 8) - 3971.39508214739*pow(xi1, 6) + 56.5259005462622*pow(xi1, 4) - 0.273071983315276*pow(xi1, 2) + 10830136475.5778*pow(xi2, 46) - 124480567047.592*pow(xi2, 44) + 668730146595.075*pow(xi2, 42) - 2230520873347.34*pow(xi2, 40) + 5175289082189.45*pow(xi2, 38) - 8869111491786.76*pow(xi2, 36) + 11634680954177.8*pow(xi2, 34) - 11948152405933.1*pow(xi2, 32) + 9742174333567.36*pow(xi2, 30) - 6359880357274.0*pow(xi2, 28) + 3337238393035.54*pow(xi2, 26) - 1407861058998.53*pow(xi2, 24) + 475948085093.87*pow(xi2, 22) - 128075500365.761*pow(xi2, 20) + 27145281328.444*pow(xi2, 18) - 4463611836.62049*pow(xi2, 16) + 557674658.619336*pow(xi2, 14) - 51443527.1447734*pow(xi2, 12) + 3366668.49452746*pow(xi2, 10) - 147588.470953531*pow(xi2, 8) + 3971.39508214739*pow(xi2, 6) - 56.5259005462622*pow(xi2, 4) + 0.273071983315276*pow(xi2, 2); case 29: return -20806834300.5978*pow(xi1, 47) + 244355631791.314*pow(xi1, 45) - 1343273740298.02*pow(xi1, 43) + 4592284861114.13*pow(xi1, 41) - 10941218087890.8*pow(xi1, 39) + 19293765550349.6*pow(xi1, 37) - 26104144978494.4*pow(xi1, 35) + 27721880835822.7*pow(xi1, 33) - 23445377187979.1*pow(xi1, 31) + 15930895144025.1*pow(xi1, 29) - 8736178307237.03*pow(xi1, 27) + 3869824780370.31*pow(xi1, 25) - 1381408154889.13*pow(xi1, 23) + 395166275983.381*pow(xi1, 21) - 89767193240.2531*pow(xi1, 19) + 15982098655.2556*pow(xi1, 17) - 2190045568.70281*pow(xi1, 15) + 225338397.125726*pow(xi1, 13) - 16827632.97963*pow(xi1, 11) + 869437.913538747*pow(xi1, 9) - 28967.2419283845*pow(xi1, 7) + 556.411473203207*pow(xi1, 5) - 4.91529569967497*pow(xi1, 3) + 20806834300.5978*pow(xi2, 47) - 244355631791.314*pow(xi2, 45) + 1343273740298.02*pow(xi2, 43) - 4592284861114.13*pow(xi2, 41) + 10941218087890.8*pow(xi2, 39) - 19293765550349.6*pow(xi2, 37) + 26104144978494.4*pow(xi2, 35) - 27721880835822.7*pow(xi2, 33) + 23445377187979.1*pow(xi2, 31) - 15930895144025.1*pow(xi2, 29) + 8736178307237.03*pow(xi2, 27) - 3869824780370.31*pow(xi2, 25) + 1381408154889.13*pow(xi2, 23) - 395166275983.381*pow(xi2, 21) + 89767193240.2531*pow(xi2, 19) - 15982098655.2556*pow(xi2, 17) + 2190045568.70281*pow(xi2, 15) - 225338397.125726*pow(xi2, 13) + 16827632.97963*pow(xi2, 11) - 869437.913538747*pow(xi2, 9) + 28967.2419283845*pow(xi2, 7) - 556.411473203207*pow(xi2, 5) + 4.91529569967497*pow(xi2, 3); default: return 0.; } case 22: switch(j) { case 0: return -8963.22914600372*pow(xi1, 22)*y1t + 48033.7151670456*pow(xi1, 20)*y1t - 110347.724032402*pow(xi1, 18)*y1t + 141875.645184517*pow(xi1, 16)*y1t - 111780.811357498*pow(xi1, 14)*y1t + 55529.8224163055*pow(xi1, 12)*y1t - 17233.393163681*pow(xi1, 10)*y1t + 3191.36910438538*pow(xi1, 8)*y1t - 319.136910438538*pow(xi1, 6)*y1t + 13.8755178451538*pow(xi1, 4)*y1t - 0.132147789001465*pow(xi1, 2)*y1t + 8963.22914600372*pow(xi2, 22)*y1t - 48033.7151670456*pow(xi2, 20)*y1t + 110347.724032402*pow(xi2, 18)*y1t - 141875.645184517*pow(xi2, 16)*y1t + 111780.811357498*pow(xi2, 14)*y1t - 55529.8224163055*pow(xi2, 12)*y1t + 17233.393163681*pow(xi2, 10)*y1t - 3191.36910438538*pow(xi2, 8)*y1t + 319.136910438538*pow(xi2, 6)*y1t - 13.8755178451538*pow(xi2, 4)*y1t + 0.132147789001465*pow(xi2, 2)*y1t; case 1: return -4481.61457300186*pow(xi1, 22)*y1r + 1565.00826358795*pow(xi1, 21)*y1r + 24016.8575835228*pow(xi1, 20)*y1r - 8426.96757316589*pow(xi1, 19)*y1r - 55173.862016201*pow(xi1, 18)*y1r + 19473.1277704239*pow(xi1, 17)*y1r + 70937.8225922585*pow(xi1, 16)*y1r - 25222.3369216919*pow(xi1, 15)*y1r - 55890.4056787491*pow(xi1, 14)*y1r + 20063.2225513458*pow(xi1, 13)*y1r + 27764.9112081528*pow(xi1, 12)*y1r - 10096.3313484192*pow(xi1, 11)*y1r - 8616.69658184052*pow(xi1, 10)*y1r + 3191.36910438538*pow(xi1, 9)*y1r + 1595.68455219269*pow(xi1, 8)*y1r - 607.879829406738*pow(xi1, 7)*y1r - 159.568455219269*pow(xi1, 6)*y1r + 63.8273820877075*pow(xi1, 5)*y1r + 6.9377589225769*pow(xi1, 4)*y1r - 3.08344841003418*pow(xi1, 3)*y1r - 0.0660738945007324*pow(xi1, 2)*y1r + 0.0440492630004883*xi1*y1r + 4481.61457300186*pow(xi2, 22)*y1r - 1565.00826358795*pow(xi2, 21)*y1r - 24016.8575835228*pow(xi2, 20)*y1r + 8426.96757316589*pow(xi2, 19)*y1r + 55173.862016201*pow(xi2, 18)*y1r - 19473.1277704239*pow(xi2, 17)*y1r - 70937.8225922585*pow(xi2, 16)*y1r + 25222.3369216919*pow(xi2, 15)*y1r + 55890.4056787491*pow(xi2, 14)*y1r - 20063.2225513458*pow(xi2, 13)*y1r - 27764.9112081528*pow(xi2, 12)*y1r + 10096.3313484192*pow(xi2, 11)*y1r + 8616.69658184052*pow(xi2, 10)*y1r - 3191.36910438538*pow(xi2, 9)*y1r - 1595.68455219269*pow(xi2, 8)*y1r + 607.879829406738*pow(xi2, 7)*y1r + 159.568455219269*pow(xi2, 6)*y1r - 63.8273820877075*pow(xi2, 5)*y1r - 6.9377589225769*pow(xi2, 4)*y1r + 3.08344841003418*pow(xi2, 3)*y1r + 0.0660738945007324*pow(xi2, 2)*y1r - 0.0440492630004883*xi2*y1r; case 2: return 8963.22914600372*pow(xi1, 22)*y2t - 48033.7151670456*pow(xi1, 20)*y2t + 110347.724032402*pow(xi1, 18)*y2t - 141875.645184517*pow(xi1, 16)*y2t + 111780.811357498*pow(xi1, 14)*y2t - 55529.8224163055*pow(xi1, 12)*y2t + 17233.393163681*pow(xi1, 10)*y2t - 3191.36910438538*pow(xi1, 8)*y2t + 319.136910438538*pow(xi1, 6)*y2t - 13.8755178451538*pow(xi1, 4)*y2t + 0.132147789001465*pow(xi1, 2)*y2t - 8963.22914600372*pow(xi2, 22)*y2t + 48033.7151670456*pow(xi2, 20)*y2t - 110347.724032402*pow(xi2, 18)*y2t + 141875.645184517*pow(xi2, 16)*y2t - 111780.811357498*pow(xi2, 14)*y2t + 55529.8224163055*pow(xi2, 12)*y2t - 17233.393163681*pow(xi2, 10)*y2t + 3191.36910438538*pow(xi2, 8)*y2t - 319.136910438538*pow(xi2, 6)*y2t + 13.8755178451538*pow(xi2, 4)*y2t - 0.132147789001465*pow(xi2, 2)*y2t; case 3: return -4481.61457300186*pow(xi1, 22)*y2r - 1565.00826358795*pow(xi1, 21)*y2r + 24016.8575835228*pow(xi1, 20)*y2r + 8426.96757316589*pow(xi1, 19)*y2r - 55173.862016201*pow(xi1, 18)*y2r - 19473.1277704239*pow(xi1, 17)*y2r + 70937.8225922585*pow(xi1, 16)*y2r + 25222.3369216919*pow(xi1, 15)*y2r - 55890.4056787491*pow(xi1, 14)*y2r - 20063.2225513458*pow(xi1, 13)*y2r + 27764.9112081528*pow(xi1, 12)*y2r + 10096.3313484192*pow(xi1, 11)*y2r - 8616.69658184052*pow(xi1, 10)*y2r - 3191.36910438538*pow(xi1, 9)*y2r + 1595.68455219269*pow(xi1, 8)*y2r + 607.879829406738*pow(xi1, 7)*y2r - 159.568455219269*pow(xi1, 6)*y2r - 63.8273820877075*pow(xi1, 5)*y2r + 6.9377589225769*pow(xi1, 4)*y2r + 3.08344841003418*pow(xi1, 3)*y2r - 0.0660738945007324*pow(xi1, 2)*y2r - 0.0440492630004883*xi1*y2r + 4481.61457300186*pow(xi2, 22)*y2r + 1565.00826358795*pow(xi2, 21)*y2r - 24016.8575835228*pow(xi2, 20)*y2r - 8426.96757316589*pow(xi2, 19)*y2r + 55173.862016201*pow(xi2, 18)*y2r + 19473.1277704239*pow(xi2, 17)*y2r - 70937.8225922585*pow(xi2, 16)*y2r - 25222.3369216919*pow(xi2, 15)*y2r + 55890.4056787491*pow(xi2, 14)*y2r + 20063.2225513458*pow(xi2, 13)*y2r - 27764.9112081528*pow(xi2, 12)*y2r - 10096.3313484192*pow(xi2, 11)*y2r + 8616.69658184052*pow(xi2, 10)*y2r + 3191.36910438538*pow(xi2, 9)*y2r - 1595.68455219269*pow(xi2, 8)*y2r - 607.879829406738*pow(xi2, 7)*y2r + 159.568455219269*pow(xi2, 6)*y2r + 63.8273820877075*pow(xi2, 5)*y2r - 6.9377589225769*pow(xi2, 4)*y2r - 3.08344841003418*pow(xi2, 3)*y2r + 0.0660738945007324*pow(xi2, 2)*y2r + 0.0440492630004883*xi2*y2r; case 4: return -8573.52353096008*pow(xi1, 23) + 48876.4119243622*pow(xi1, 21) - 121393.88422966*pow(xi1, 19) + 172476.27453804*pow(xi1, 17) - 154773.431110382*pow(xi1, 15) + 91384.7427177429*pow(xi1, 13) - 35859.3837547302*pow(xi1, 11) + 9219.5107460022*pow(xi1, 9) - 1489.30558204651*pow(xi1, 7) + 138.755178451538*pow(xi1, 5) - 6.25499534606934*pow(xi1, 3) + 0.0880985260009766*xi1 + 8573.52353096008*pow(xi2, 23) - 48876.4119243622*pow(xi2, 21) + 121393.88422966*pow(xi2, 19) - 172476.27453804*pow(xi2, 17) + 154773.431110382*pow(xi2, 15) - 91384.7427177429*pow(xi2, 13) + 35859.3837547302*pow(xi2, 11) - 9219.5107460022*pow(xi2, 9) + 1489.30558204651*pow(xi2, 7) - 138.755178451538*pow(xi2, 5) + 6.25499534606934*pow(xi2, 3) - 0.0880985260009766*xi2; case 5: return -13693.8223063946*pow(xi1, 24) + 81741.5854597092*pow(xi1, 22) - 213555.301215649*pow(xi1, 20) + 320533.865046501*pow(xi1, 18) - 304889.328414202*pow(xi1, 16) + 191109.129095078*pow(xi1, 14) - 79465.0906991959*pow(xi1, 12) + 21488.5519695282*pow(xi1, 10) - 3590.29024243355*pow(xi1, 8) + 334.554152488708*pow(xi1, 6) - 13.985641002655*pow(xi1, 4) + 0.132147789001465*pow(xi1, 2) + 13693.8223063946*pow(xi2, 24) - 81741.5854597092*pow(xi2, 22) + 213555.301215649*pow(xi2, 20) - 320533.865046501*pow(xi2, 18) + 304889.328414202*pow(xi2, 16) - 191109.129095078*pow(xi2, 14) + 79465.0906991959*pow(xi2, 12) - 21488.5519695282*pow(xi2, 10) + 3590.29024243355*pow(xi2, 8) - 334.554152488708*pow(xi2, 6) + 13.985641002655*pow(xi2, 4) - 0.132147789001465*pow(xi2, 2); case 6: return -23005.6214747429*pow(xi1, 25) + 143258.44874382*pow(xi1, 23) - 392582.810969353*pow(xi1, 21) + 622456.821012497*pow(xi1, 19) - 631527.864468098*pow(xi1, 17) + 428224.98418808*pow(xi1, 15) - 196905.242013931*pow(xi1, 13) + 61080.8704948425*pow(xi1, 11) - 12499.5289921761*pow(xi1, 9) + 1618.81041526794*pow(xi1, 7) - 123.646281242371*pow(xi1, 5) + 4.84541893005371*pow(xi1, 3) - 0.0660738945007324*xi1 + 23005.6214747429*pow(xi2, 25) - 143258.44874382*pow(xi2, 23) + 392582.810969353*pow(xi2, 21) - 622456.821012497*pow(xi2, 19) + 631527.864468098*pow(xi2, 17) - 428224.98418808*pow(xi2, 15) + 196905.242013931*pow(xi2, 13) - 61080.8704948425*pow(xi2, 11) + 12499.5289921761*pow(xi2, 9) - 1618.81041526794*pow(xi2, 7) + 123.646281242371*pow(xi2, 5) - 4.84541893005371*pow(xi2, 3) + 0.0660738945007324*xi2; case 7: return -39817.4217832088*pow(xi1, 26) + 258075.881928205*pow(xi1, 24) - 739921.916306019*pow(xi1, 22) + 1235245.40490389*pow(xi1, 20) - 1330024.46163297*pow(xi1, 18) + 966541.123548746*pow(xi1, 16) - 482000.350642204*pow(xi1, 14) + 164355.508875847*pow(xi1, 12) - 37440.0785429478*pow(xi1, 10) + 5421.85859799385*pow(xi1, 8) - 453.112743854523*pow(xi1, 6) + 17.7298283576965*pow(xi1, 4) - 0.165184736251831*pow(xi1, 2) + 39817.4217832088*pow(xi2, 26) - 258075.881928205*pow(xi2, 24) + 739921.916306019*pow(xi2, 22) - 1235245.40490389*pow(xi2, 20) + 1330024.46163297*pow(xi2, 18) - 966541.123548746*pow(xi2, 16) + 482000.350642204*pow(xi2, 14) - 164355.508875847*pow(xi2, 12) + 37440.0785429478*pow(xi2, 10) - 5421.85859799385*pow(xi2, 8) + 453.112743854523*pow(xi2, 6) - 17.7298283576965*pow(xi2, 4) + 0.165184736251831*pow(xi2, 2); case 8: return -70294.9545061588*pow(xi1, 27) + 473384.903422594*pow(xi1, 25) - 1416926.27066374*pow(xi1, 23) + 2483930.03357649*pow(xi1, 21) - 2828756.50350451*pow(xi1, 19) + 2194030.45318007*pow(xi1, 17) - 1181610.30903339*pow(xi1, 15) + 442227.793622017*pow(xi1, 13) - 113300.856317282*pow(xi1, 11) + 19251.8955790997*pow(xi1, 9) - 2061.04299116135*pow(xi1, 7) + 129.04231595993*pow(xi1, 5) - 4.239741563797*pow(xi1, 3) + 0.0550615787506104*xi1 + 70294.9545061588*pow(xi2, 27) - 473384.903422594*pow(xi2, 25) + 1416926.27066374*pow(xi2, 23) - 2483930.03357649*pow(xi2, 21) + 2828756.50350451*pow(xi2, 19) - 2194030.45318007*pow(xi2, 17) + 1181610.30903339*pow(xi2, 15) - 442227.793622017*pow(xi2, 13) + 113300.856317282*pow(xi2, 11) - 19251.8955790997*pow(xi2, 9) + 2061.04299116135*pow(xi2, 7) - 129.04231595993*pow(xi2, 5) + 4.239741563797*pow(xi2, 3) - 0.0550615787506104*xi2; case 9: return -125885.352202356*pow(xi1, 28) + 879459.403354526*pow(xi1, 26) - 2742999.29717928*pow(xi1, 24) + 5037549.29947257*pow(xi1, 22) - 6049516.46395773*pow(xi1, 20) + 4988280.7302314*pow(xi1, 18) - 2885731.76894814*pow(xi1, 16) + 1175760.47526598*pow(xi1, 14) - 333757.370148003*pow(xi1, 12) + 64269.6642190218*pow(xi1, 10) - 7996.5022303462*pow(xi1, 8) + 588.090698003769*pow(xi1, 6) - 21.1023500561714*pow(xi1, 4) + 0.192715525627136*pow(xi1, 2) + 125885.352202356*pow(xi2, 28) - 879459.403354526*pow(xi2, 26) + 2742999.29717928*pow(xi2, 24) - 5037549.29947257*pow(xi2, 22) + 6049516.46395773*pow(xi2, 20) - 4988280.7302314*pow(xi2, 18) + 2885731.76894814*pow(xi2, 16) - 1175760.47526598*pow(xi2, 14) + 333757.370148003*pow(xi2, 12) - 64269.6642190218*pow(xi2, 10) + 7996.5022303462*pow(xi2, 8) - 588.090698003769*pow(xi2, 6) + 21.1023500561714*pow(xi2, 4) - 0.192715525627136*pow(xi2, 2); case 10: return -227895.896228403*pow(xi1, 29) + 1649420.89680523*pow(xi1, 27) - 5351610.52541748*pow(xi1, 25) + 10274545.6434935*pow(xi1, 23) - 12976146.7507325*pow(xi1, 21) + 11335923.7640038*pow(xi1, 19) - 7012244.4740881*pow(xi1, 17) + 3091489.85211968*pow(xi1, 15) - 964606.306213886*pow(xi1, 13) + 208688.813287318*pow(xi1, 11) - 30172.9123489559*pow(xi1, 9) + 2748.55838191509*pow(xi1, 7) - 144.565551549196*pow(xi1, 5) + 3.95066827535629*pow(xi1, 3) - 0.0481788814067841*xi1 + 227895.896228403*pow(xi2, 29) - 1649420.89680523*pow(xi2, 27) + 5351610.52541748*pow(xi2, 25) - 10274545.6434935*pow(xi2, 23) + 12976146.7507325*pow(xi2, 21) - 11335923.7640038*pow(xi2, 19) + 7012244.4740881*pow(xi2, 17) - 3091489.85211968*pow(xi2, 15) + 964606.306213886*pow(xi2, 13) - 208688.813287318*pow(xi2, 11) + 30172.9123489559*pow(xi2, 9) - 2748.55838191509*pow(xi2, 7) + 144.565551549196*pow(xi2, 5) - 3.95066827535629*pow(xi2, 3) + 0.0481788814067841*xi2; case 11: return -416121.025335565*pow(xi1, 30) + 3116200.43859892*pow(xi1, 28) - 10501547.1333341*pow(xi1, 26) + 21037051.9058537*pow(xi1, 24) - 27874207.4076701*pow(xi1, 22) + 25719033.3889248*pow(xi1, 20) - 16943525.1738567*pow(xi1, 18) + 8039608.18552695*pow(xi1, 16) - 2737009.26113538*pow(xi1, 14) + 658014.033508673*pow(xi1, 12) - 108422.541410133*pow(xi1, 10) + 11650.7581970841*pow(xi1, 8) - 750.30417381227*pow(xi1, 6) + 24.3544245511293*pow(xi1, 4) - 0.216804966330528*pow(xi1, 2) + 416121.025335565*pow(xi2, 30) - 3116200.43859892*pow(xi2, 28) + 10501547.1333341*pow(xi2, 26) - 21037051.9058537*pow(xi2, 24) + 27874207.4076701*pow(xi2, 22) - 25719033.3889248*pow(xi2, 20) + 16943525.1738567*pow(xi2, 18) - 8039608.18552695*pow(xi2, 16) + 2737009.26113538*pow(xi2, 14) - 658014.033508673*pow(xi2, 12) + 108422.541410133*pow(xi2, 10) - 11650.7581970841*pow(xi2, 8) + 750.30417381227*pow(xi2, 6) - 24.3544245511293*pow(xi2, 4) + 0.216804966330528*pow(xi2, 2); case 12: return -765125.756262168*pow(xi1, 31) + 5921722.2836215*pow(xi1, 29) - 20698420.5992248*pow(xi1, 27) + 43188032.1491528*pow(xi1, 25) - 59905433.2374316*pow(xi1, 23) + 58217735.3508566*pow(xi1, 21) - 40700676.7005455*pow(xi1, 19) + 20687731.1349157*pow(xi1, 17) - 7635970.62332113*pow(xi1, 15) + 2022201.05743848*pow(xi1, 13) - 375095.230757907*pow(xi1, 11) + 46832.4571802467*pow(xi1, 9) - 3695.62648393214*pow(xi1, 7) + 167.127721711993*pow(xi1, 5) - 3.83022107183933*pow(xi1, 3) + 0.0433609932661057*xi1 + 765125.756262168*pow(xi2, 31) - 5921722.2836215*pow(xi2, 29) + 20698420.5992248*pow(xi2, 27) - 43188032.1491528*pow(xi2, 25) + 59905433.2374316*pow(xi2, 23) - 58217735.3508566*pow(xi2, 21) + 40700676.7005455*pow(xi2, 19) - 20687731.1349157*pow(xi2, 17) + 7635970.62332113*pow(xi2, 15) - 2022201.05743848*pow(xi2, 13) + 375095.230757907*pow(xi2, 11) - 46832.4571802467*pow(xi2, 9) + 3695.62648393214*pow(xi2, 7) - 167.127721711993*pow(xi2, 5) + 3.83022107183933*pow(xi2, 3) - 0.0433609932661057*xi2; case 13: return -1415047.91854168*pow(xi1, 32) + 11306561.1464429*pow(xi1, 30) - 40936820.1382083*pow(xi1, 28) + 88825591.3740283*pow(xi1, 26) - 128724305.723804*pow(xi1, 24) + 131431185.617418*pow(xi1, 22) - 97197166.7331937*pow(xi1, 20) + 52703810.8407026*pow(xi1, 18) - 20975386.6819913*pow(xi1, 16) + 6073001.20285492*pow(xi1, 14) - 1254611.22974331*pow(xi1, 12) + 179032.623164363*pow(xi1, 10) - 16764.9744193722*pow(xi1, 8) + 947.979715280235*pow(xi1, 6) - 27.6245661266148*pow(xi1, 4) + 0.238485462963581*pow(xi1, 2) + 1415047.91854168*pow(xi2, 32) - 11306561.1464429*pow(xi2, 30) + 40936820.1382083*pow(xi2, 28) - 88825591.3740283*pow(xi2, 26) + 128724305.723804*pow(xi2, 24) - 131431185.617418*pow(xi2, 22) + 97197166.7331937*pow(xi2, 20) - 52703810.8407026*pow(xi2, 18) + 20975386.6819913*pow(xi2, 16) - 6073001.20285492*pow(xi2, 14) + 1254611.22974331*pow(xi2, 12) - 179032.623164363*pow(xi2, 10) + 16764.9744193722*pow(xi2, 8) - 947.979715280235*pow(xi2, 6) + 27.6245661266148*pow(xi2, 4) - 0.238485462963581*pow(xi2, 2); case 14: return -2629988.05062292*pow(xi1, 33) + 21673212.5643307*pow(xi1, 31) - 81184889.5904638*pow(xi1, 29) + 182917081.974193*pow(xi1, 27) - 276441752.001857*pow(xi1, 25) + 295870487.432912*pow(xi1, 23) - 230789656.99729*pow(xi1, 21) + 133007978.589758*pow(xi1, 19) - 56801705.9862845*pow(xi1, 17) + 17863564.1120404*pow(xi1, 15) - 4073381.09373626*pow(xi1, 13) + 655788.077647805*pow(xi1, 11) - 71492.3014260083*pow(xi1, 9) + 4945.05285680294*pow(xi1, 7) - 195.558079630136*pow(xi1, 5) + 3.8157674074173*pow(xi1, 3) - 0.0397475771605968*xi1 + 2629988.05062292*pow(xi2, 33) - 21673212.5643307*pow(xi2, 31) + 81184889.5904638*pow(xi2, 29) - 182917081.974193*pow(xi2, 27) + 276441752.001857*pow(xi2, 25) - 295870487.432912*pow(xi2, 23) + 230789656.99729*pow(xi2, 21) - 133007978.589758*pow(xi2, 19) + 56801705.9862845*pow(xi2, 17) - 17863564.1120404*pow(xi2, 15) + 4073381.09373626*pow(xi2, 13) - 655788.077647805*pow(xi2, 11) + 71492.3014260083*pow(xi2, 9) - 4945.05285680294*pow(xi2, 7) + 195.558079630136*pow(xi2, 5) - 3.8157674074173*pow(xi2, 3) + 0.0397475771605968*xi2; case 15: return -4908914.34788215*pow(xi1, 34) + 41682976.2934526*pow(xi1, 32) - 161357453.758476*pow(xi1, 30) + 376988466.755545*pow(xi1, 28) - 593164732.277684*pow(xi1, 26) + 664096571.54609*pow(xi1, 24) - 544973436.806207*pow(xi1, 22) + 332715807.100391*pow(xi1, 20) - 151815163.18702*pow(xi1, 18) + 51567840.3122956*pow(xi1, 16) - 12879742.0744171*pow(xi1, 14) + 2314139.34894989*pow(xi1, 12) - 288997.558465965*pow(xi1, 10) + 23796.3634057716*pow(xi1, 8) - 1188.45255710185*pow(xi1, 6) + 31.0031101852655*pow(xi1, 4) - 0.25835925154388*pow(xi1, 2) + 4908914.34788215*pow(xi2, 34) - 41682976.2934526*pow(xi2, 32) + 161357453.758476*pow(xi2, 30) - 376988466.755545*pow(xi2, 28) + 593164732.277684*pow(xi2, 26) - 664096571.54609*pow(xi2, 24) + 544973436.806207*pow(xi2, 22) - 332715807.100391*pow(xi2, 20) + 151815163.18702*pow(xi2, 18) - 51567840.3122956*pow(xi2, 16) + 12879742.0744171*pow(xi2, 14) - 2314139.34894989*pow(xi2, 12) + 288997.558465965*pow(xi2, 10) - 23796.3634057716*pow(xi2, 8) + 1188.45255710185*pow(xi2, 6) - 31.0031101852655*pow(xi2, 4) + 0.25835925154388*pow(xi2, 2); case 16: return -9196700.75786901*pow(xi1, 35) + 80394710.8035937*pow(xi1, 33) - 321276134.119334*pow(xi1, 31) + 777364493.20886*pow(xi1, 29) - 1271443221.77745*pow(xi1, 27) + 1486223279.32134*pow(xi1, 25) - 1280060550.32711*pow(xi1, 23) + 825415347.600242*pow(xi1, 21) - 400883985.039707*pow(xi1, 19) + 146346571.587733*pow(xi1, 17) - 39771130.9808454*pow(xi1, 15) + 7902101.94451205*pow(xi1, 13) - 1115630.10317823*pow(xi1, 11) + 107179.474305473*pow(xi1, 9) - 6556.41963489354*pow(xi1, 7) + 229.423015370965*pow(xi1, 5) - 3.87538877315819*pow(xi1, 3) + 0.0369084645062685*xi1 + 9196700.75786901*pow(xi2, 35) - 80394710.8035937*pow(xi2, 33) + 321276134.119334*pow(xi2, 31) - 777364493.20886*pow(xi2, 29) + 1271443221.77745*pow(xi2, 27) - 1486223279.32134*pow(xi2, 25) + 1280060550.32711*pow(xi2, 23) - 825415347.600242*pow(xi2, 21) + 400883985.039707*pow(xi2, 19) - 146346571.587733*pow(xi2, 17) + 39771130.9808454*pow(xi2, 15) - 7902101.94451205*pow(xi2, 13) + 1115630.10317823*pow(xi2, 11) - 107179.474305473*pow(xi2, 9) + 6556.41963489354*pow(xi2, 7) - 229.423015370965*pow(xi2, 5) + 3.87538877315819*pow(xi2, 3) - 0.0369084645062685*xi2; case 17: return -17286391.2393279*pow(xi1, 36) + 155439963.663983*pow(xi1, 34) - 640627537.401558*pow(xi1, 32) + 1603408154.14936*pow(xi1, 30) - 2722189337.19028*pow(xi1, 28) + 3316471384.76167*pow(xi1, 26) - 2991491208.6324*pow(xi1, 24) + 2031908379.46927*pow(xi1, 22) - 1046825005.81663*pow(xi1, 20) + 408912151.540302*pow(xi1, 18) - 120215159.194258*pow(xi1, 16) + 26207247.0460324*pow(xi1, 14) - 4137007.85298576*pow(xi1, 12) + 456223.339859758*pow(xi1, 10) - 33301.2157277483*pow(xi1, 8) + 1478.84835583717*pow(xi1, 6) - 34.5555498939939*pow(xi1, 4) + 0.276813483797014*pow(xi1, 2) + 17286391.2393279*pow(xi2, 36) - 155439963.663983*pow(xi2, 34) + 640627537.401558*pow(xi2, 32) - 1603408154.14936*pow(xi2, 30) + 2722189337.19028*pow(xi2, 28) - 3316471384.76167*pow(xi2, 26) + 2991491208.6324*pow(xi2, 24) - 2031908379.46927*pow(xi2, 22) + 1046825005.81663*pow(xi2, 20) - 408912151.540302*pow(xi2, 18) + 120215159.194258*pow(xi2, 16) - 26207247.0460324*pow(xi2, 14) + 4137007.85298576*pow(xi2, 12) - 456223.339859758*pow(xi2, 10) + 33301.2157277483*pow(xi2, 8) - 1478.84835583717*pow(xi2, 6) + 34.5555498939939*pow(xi2, 4) - 0.276813483797014*pow(xi2, 2); case 18: return -32587183.4849491*pow(xi1, 37) + 301182124.285212*pow(xi1, 35) - 1278973293.46615*pow(xi1, 33) + 3307586664.76692*pow(xi1, 31) - 5821150644.88581*pow(xi1, 29) + 7379653798.46706*pow(xi1, 27) - 6957507972.42003*pow(xi1, 25) + 4965713056.14373*pow(xi1, 23) - 2705468268.15591*pow(xi1, 21) + 1126397750.97304*pow(xi1, 19) - 356415789.394206*pow(xi1, 17) + 84676873.7027844*pow(xi1, 15) - 14807100.0023584*pow(xi1, 13) + 1849478.42261893*pow(xi1, 11) - 157832.850914726*pow(xi1, 9) + 8602.58799865656*pow(xi1, 7) - 268.64517924597*pow(xi1, 5) + 3.99072772474028*pow(xi1, 3) - 0.0346016854746267*xi1 + 32587183.4849491*pow(xi2, 37) - 301182124.285212*pow(xi2, 35) + 1278973293.46615*pow(xi2, 33) - 3307586664.76692*pow(xi2, 31) + 5821150644.88581*pow(xi2, 29) - 7379653798.46706*pow(xi2, 27) + 6957507972.42003*pow(xi2, 25) - 4965713056.14373*pow(xi2, 23) + 2705468268.15591*pow(xi2, 21) - 1126397750.97304*pow(xi2, 19) + 356415789.394206*pow(xi2, 17) - 84676873.7027844*pow(xi2, 15) + 14807100.0023584*pow(xi2, 13) - 1849478.42261893*pow(xi2, 11) + 157832.850914726*pow(xi2, 9) - 8602.58799865656*pow(xi2, 7) + 268.64517924597*pow(xi2, 5) - 3.99072772474028*pow(xi2, 3) + 0.0346016854746267*xi2; case 19: return -61592803.4599426*pow(xi1, 38) + 584676985.136067*pow(xi1, 36) - 2555988333.59488*pow(xi1, 34) + 6822908928.68779*pow(xi1, 32) - 12432308002.2498*pow(xi1, 30) + 16375656213.2256*pow(xi1, 28) - 16107683650.0167*pow(xi1, 26) + 12053207925.8038*pow(xi1, 24) - 6925457912.8482*pow(xi1, 22) + 3062457034.47476*pow(xi1, 20) - 1038287442.79005*pow(xi1, 18) + 267243136.899296*pow(xi1, 16) - 51355753.1063992*pow(xi1, 14) + 7184638.11364675*pow(xi1, 12) - 705129.947642557*pow(xi1, 10) + 45954.0694179519*pow(xi1, 8) - 1826.4303601564*pow(xi1, 6) + 38.3329005583073*pow(xi1, 4) - 0.294114326534327*pow(xi1, 2) + 61592803.4599426*pow(xi2, 38) - 584676985.136067*pow(xi2, 36) + 2555988333.59488*pow(xi2, 34) - 6822908928.68779*pow(xi2, 32) + 12432308002.2498*pow(xi2, 30) - 16375656213.2256*pow(xi2, 28) + 16107683650.0167*pow(xi2, 26) - 12053207925.8038*pow(xi2, 24) + 6925457912.8482*pow(xi2, 22) - 3062457034.47476*pow(xi2, 20) + 1038287442.79005*pow(xi2, 18) - 267243136.899296*pow(xi2, 16) + 51355753.1063992*pow(xi2, 14) - 7184638.11364675*pow(xi2, 12) + 705129.947642557*pow(xi2, 10) - 45954.0694179519*pow(xi2, 8) + 1826.4303601564*pow(xi2, 6) - 38.3329005583073*pow(xi2, 4) + 0.294114326534327*pow(xi2, 2); case 20: return -116692918.236073*pow(xi1, 39) + 1136922431.95717*pow(xi1, 37) - 5112427747.50414*pow(xi1, 35) + 14072663329.5704*pow(xi1, 33) - 26517959811.2804*pow(xi1, 31) + 36241322522.7774*pow(xi1, 29) - 37130150648.172*pow(xi1, 27) + 29070301213.2304*pow(xi1, 25) - 17570522700.1095*pow(xi1, 23) + 8226381205.98939*pow(xi1, 21) - 2976454861.17552*pow(xi1, 19) + 825687319.603043*pow(xi1, 17) - 173173784.504984*pow(xi1, 15) + 26879987.6421062*pow(xi1, 13) - 2993171.44800321*pow(xi1, 11) + 228491.145845553*pow(xi1, 9) - 11168.7170434363*pow(xi1, 7) + 313.349403489672*pow(xi1, 5) - 4.1502799410955*pow(xi1, 3) + 0.0326793696149252*xi1 + 116692918.236073*pow(xi2, 39) - 1136922431.95717*pow(xi2, 37) + 5112427747.50414*pow(xi2, 35) - 14072663329.5704*pow(xi2, 33) + 26517959811.2804*pow(xi2, 31) - 36241322522.7774*pow(xi2, 29) + 37130150648.172*pow(xi2, 27) - 29070301213.2304*pow(xi2, 25) + 17570522700.1095*pow(xi2, 23) - 8226381205.98939*pow(xi2, 21) + 2976454861.17552*pow(xi2, 19) - 825687319.603043*pow(xi2, 17) + 173173784.504984*pow(xi2, 15) - 26879987.6421062*pow(xi2, 13) + 2993171.44800321*pow(xi2, 11) - 228491.145845553*pow(xi2, 9) + 11168.7170434363*pow(xi2, 7) - 313.349403489672*pow(xi2, 5) + 4.1502799410955*pow(xi2, 3) - 0.0326793696149252*xi2; case 21: return -221563001.335071*pow(xi1, 40) + 2214094580.21603*pow(xi1, 38) - 10233135408.4591*pow(xi1, 36) + 29020103383.2284*pow(xi1, 34) - 56490288563.2613*pow(xi1, 32) + 80000676119.5703*pow(xi1, 30) - 85237502310.1306*pow(xi1, 28) + 69693167146.6517*pow(xi1, 26) - 44209431231.8868*pow(xi1, 24) + 21852582608.9513*pow(xi1, 22) - 8407716578.46659*pow(xi1, 20) + 2502229402.03009*pow(xi1, 18) - 569333795.484418*pow(xi1, 16) + 97259112.1754349*pow(xi1, 14) - 12149572.8591448*pow(xi1, 12) + 1068478.64285384*pow(xi1, 10) - 62566.3402002307*pow(xi1, 8) + 2238.80805739018*pow(xi1, 6) - 42.3769725481543*pow(xi1, 4) + 0.31045401134179*pow(xi1, 2) + 221563001.335071*pow(xi2, 40) - 2214094580.21603*pow(xi2, 38) + 10233135408.4591*pow(xi2, 36) - 29020103383.2284*pow(xi2, 34) + 56490288563.2613*pow(xi2, 32) - 80000676119.5703*pow(xi2, 30) + 85237502310.1306*pow(xi2, 28) - 69693167146.6517*pow(xi2, 26) + 44209431231.8868*pow(xi2, 24) - 21852582608.9513*pow(xi2, 22) + 8407716578.46659*pow(xi2, 20) - 2502229402.03009*pow(xi2, 18) + 569333795.484418*pow(xi2, 16) - 97259112.1754349*pow(xi2, 14) + 12149572.8591448*pow(xi2, 12) - 1068478.64285384*pow(xi2, 10) + 62566.3402002307*pow(xi2, 8) - 2238.80805739018*pow(xi2, 6) + 42.3769725481543*pow(xi2, 4) - 0.31045401134179*pow(xi2, 2); case 22: return -421510100.100867*pow(xi1, 41) + 4317637974.73472*pow(xi1, 39) - 20495376463.706*pow(xi1, 37) + 59829173626.0731*pow(xi1, 35) - 120187030355.44*pow(xi1, 33) + 176161079659.26*pow(xi1, 31) - 194910898677.091*pow(xi1, 29) + 166141923646.698*pow(xi1, 27) - 110376841418.661*pow(xi1, 25) + 57451813692.2349*pow(xi1, 23) - 23429392934.2707*pow(xi1, 21) + 7450171697.65655*pow(xi1, 19) - 1829297919.45312*pow(xi1, 17) + 341526679.439026*pow(xi1, 15) - 47405219.4064614*pow(xi1, 13) + 4737634.10611667*pow(xi1, 11) - 325514.911567008*pow(xi1, 9) + 14352.2889443309*pow(xi1, 7) - 363.790010490309*pow(xi1, 5) + 4.34635615878506*pow(xi1, 3) - 0.031045401134179*xi1 + 421510100.100867*pow(xi2, 41) - 4317637974.73472*pow(xi2, 39) + 20495376463.706*pow(xi2, 37) - 59829173626.0731*pow(xi2, 35) + 120187030355.44*pow(xi2, 33) - 176161079659.26*pow(xi2, 31) + 194910898677.091*pow(xi2, 29) - 166141923646.698*pow(xi2, 27) + 110376841418.661*pow(xi2, 25) - 57451813692.2349*pow(xi2, 23) + 23429392934.2707*pow(xi2, 21) - 7450171697.65655*pow(xi2, 19) + 1829297919.45312*pow(xi2, 17) - 341526679.439026*pow(xi2, 15) + 47405219.4064614*pow(xi2, 13) - 4737634.10611667*pow(xi2, 11) + 325514.911567008*pow(xi2, 9) - 14352.2889443309*pow(xi2, 7) + 363.790010490309*pow(xi2, 5) - 4.34635615878506*pow(xi2, 3) + 0.031045401134179*xi2; case 23: return -803354283.752333*pow(xi1, 42) + 8429944669.8439*pow(xi1, 40) - 41070423529.3311*pow(xi1, 38) + 123310478369.716*pow(xi1, 36) - 255387566346.647*pow(xi1, 34) + 386985888284.832*pow(xi1, 32) - 444046768569.53*pow(xi1, 30) + 393966174779.878*pow(xi1, 28) - 273583716795.579*pow(xi1, 26) + 149598387506.117*pow(xi1, 24) - 64475852087.3283*pow(xi1, 22) + 21825643771.0978*pow(xi1, 20) - 5756146123.25306*pow(xi1, 18) + 1167338459.55362*pow(xi1, 16) - 178569841.335938*pow(xi1, 14) + 20049882.8097356*pow(xi1, 12) - 1589574.9092333*pow(xi1, 10) + 84105.4842801184*pow(xi1, 8) - 2724.07872251853*pow(xi1, 6) + 46.7233287069394*pow(xi1, 4) - 0.325976711908879*pow(xi1, 2) + 803354283.752333*pow(xi2, 42) - 8429944669.8439*pow(xi2, 40) + 41070423529.3311*pow(xi2, 38) - 123310478369.716*pow(xi2, 36) + 255387566346.647*pow(xi2, 34) - 386985888284.832*pow(xi2, 32) + 444046768569.53*pow(xi2, 30) - 393966174779.878*pow(xi2, 28) + 273583716795.579*pow(xi2, 26) - 149598387506.117*pow(xi2, 24) + 64475852087.3283*pow(xi2, 22) - 21825643771.0978*pow(xi2, 20) + 5756146123.25306*pow(xi2, 18) - 1167338459.55362*pow(xi2, 16) + 178569841.335938*pow(xi2, 14) - 20049882.8097356*pow(xi2, 12) + 1589574.9092333*pow(xi2, 10) - 84105.4842801184*pow(xi2, 8) + 2724.07872251853*pow(xi2, 6) - 46.7233287069394*pow(xi2, 4) + 0.325976711908879*pow(xi2, 2); case 24: return -1533676359.89082*pow(xi1, 43) + 16477189610.109*pow(xi1, 41) - 82337083389.5511*pow(xi1, 39) + 254065759248.919*pow(xi1, 37) - 542014369628.522*pow(xi1, 35) + 848184840655.991*pow(xi1, 33) - 1008066267320.93*pow(xi1, 31) + 929523529356.303*pow(xi1, 29) - 673516946271.272*pow(xi1, 27) + 386060686638.382*pow(xi1, 25) - 175382178039.451*pow(xi1, 23) + 62992242266.5747*pow(xi1, 21) - 17770037336.7532*pow(xi1, 19) + 3893551383.46965*pow(xi1, 17) - 651757419.719781*pow(xi1, 15) + 81424351.1461102*pow(xi1, 13) - 7346738.38629451*pow(xi1, 11) + 456841.438780431*pow(xi1, 9) - 18263.6284754963*pow(xi1, 7) + 420.312396718873*pow(xi1, 5) - 4.57355204890337*pow(xi1, 3) + 0.0296342465371708*xi1 + 1533676359.89082*pow(xi2, 43) - 16477189610.109*pow(xi2, 41) + 82337083389.5511*pow(xi2, 39) - 254065759248.919*pow(xi2, 37) + 542014369628.522*pow(xi2, 35) - 848184840655.991*pow(xi2, 33) + 1008066267320.93*pow(xi2, 31) - 929523529356.303*pow(xi2, 29) + 673516946271.272*pow(xi2, 27) - 386060686638.382*pow(xi2, 25) + 175382178039.451*pow(xi2, 23) - 62992242266.5747*pow(xi2, 21) + 17770037336.7532*pow(xi2, 19) - 3893551383.46965*pow(xi2, 17) + 651757419.719781*pow(xi2, 15) - 81424351.1461102*pow(xi2, 13) + 7346738.38629451*pow(xi2, 11) - 456841.438780431*pow(xi2, 9) + 18263.6284754963*pow(xi2, 7) - 420.312396718873*pow(xi2, 5) + 4.57355204890337*pow(xi2, 3) - 0.0296342465371708*xi2; case 25: return -2932474067.5778*pow(xi1, 44) + 32238834564.0148*pow(xi1, 42) - 165130361584.918*pow(xi1, 40) + 523288745102.942*pow(xi1, 38) - 1148954747625.29*pow(xi1, 36) + 1854967248083.68*pow(xi1, 34) - 2280829494925.56*pow(xi1, 32) + 2182752279805.6*pow(xi1, 30) - 1647525238173.91*pow(xi1, 28) + 987973509155.938*pow(xi1, 26) - 471935693612.43*pow(xi1, 24) + 179316168680.198*pow(xi1, 22) - 53905793874.3631*pow(xi1, 20) + 12700484717.7838*pow(xi1, 18) - 2312063576.2873*pow(xi1, 16) + 318735268.794855*pow(xi1, 14) - 32354364.3586448*pow(xi1, 12) + 2324901.14233653*pow(xi1, 10) - 111715.261973273*pow(xi1, 8) + 3290.93246836372*pow(xi1, 6) - 51.4030701392676*pow(xi1, 4) + 0.340793835177465*pow(xi1, 2) + 2932474067.5778*pow(xi2, 44) - 32238834564.0148*pow(xi2, 42) + 165130361584.918*pow(xi2, 40) - 523288745102.942*pow(xi2, 38) + 1148954747625.29*pow(xi2, 36) - 1854967248083.68*pow(xi2, 34) + 2280829494925.56*pow(xi2, 32) - 2182752279805.6*pow(xi2, 30) + 1647525238173.91*pow(xi2, 28) - 987973509155.938*pow(xi2, 26) + 471935693612.43*pow(xi2, 24) - 179316168680.198*pow(xi2, 22) + 53905793874.3631*pow(xi2, 20) - 12700484717.7838*pow(xi2, 18) + 2312063576.2873*pow(xi2, 16) - 318735268.794855*pow(xi2, 14) + 32354364.3586448*pow(xi2, 12) - 2324901.14233653*pow(xi2, 10) + 111715.261973273*pow(xi2, 8) - 3290.93246836372*pow(xi2, 6) + 51.4030701392676*pow(xi2, 4) - 0.340793835177465*pow(xi2, 2); case 26: return -5615144788.65823*pow(xi1, 45) + 63135916036.1408*pow(xi1, 43) - 331283607298.759*pow(xi1, 41) + 1077403912985.34*pow(xi1, 39) - 2432704272638.31*pow(xi1, 37) + 4048284797605.57*pow(xi1, 35) - 5144115977810.54*pow(xi1, 33) + 5102731133233.49*pow(xi1, 31) - 4005941677467.71*pow(xi1, 29) + 2508576623183.67*pow(xi1, 27) - 1257213928686.48*pow(xi1, 25) + 503967555431.51*pow(xi1, 23) - 160906149318.764*pow(xi1, 21) + 40592360498.6979*pow(xi1, 19) - 7992770588.98206*pow(xi1, 17) + 1207178101.86205*pow(xi1, 15) - 136518405.419752*pow(xi1, 13) + 11179652.8357223*pow(xi1, 11) - 632273.686710647*pow(xi1, 9) + 23026.7091704373*pow(xi1, 7) - 483.330856740439*pow(xi1, 5) + 4.82791266501408*pow(xi1, 3) - 0.0283994862647887*xi1 + 5615144788.65823*pow(xi2, 45) - 63135916036.1408*pow(xi2, 43) + 331283607298.759*pow(xi2, 41) - 1077403912985.34*pow(xi2, 39) + 2432704272638.31*pow(xi2, 37) - 4048284797605.57*pow(xi2, 35) + 5144115977810.54*pow(xi2, 33) - 5102731133233.49*pow(xi2, 31) + 4005941677467.71*pow(xi2, 29) - 2508576623183.67*pow(xi2, 27) + 1257213928686.48*pow(xi2, 25) - 503967555431.51*pow(xi2, 23) + 160906149318.764*pow(xi2, 21) - 40592360498.6979*pow(xi2, 19) + 7992770588.98206*pow(xi2, 17) - 1207178101.86205*pow(xi2, 15) + 136518405.419752*pow(xi2, 13) - 11179652.8357223*pow(xi2, 11) + 632273.686710647*pow(xi2, 9) - 23026.7091704373*pow(xi2, 7) + 483.330856740439*pow(xi2, 5) - 4.82791266501408*pow(xi2, 3) + 0.0283994862647887*xi2; case 27: return -10766429790.4273*pow(xi1, 46) + 123749152457.737*pow(xi1, 44) - 664805249813.08*pow(xi1, 42) + 2217444024836.51*pow(xi1, 40) - 5144981244028.56*pow(xi1, 38) + 8817228144268.68*pow(xi1, 36) - 11566692718301.1*pow(xi1, 34) + 11878407054355.6*pow(xi1, 32) - 9685366353522.19*pow(xi1, 30) + 6322834046464.09*pow(xi1, 28) - 3317819280545.0*pow(xi1, 26) + 1399677324153.45*pow(xi1, 24) - 473184299476.64*pow(xi1, 22) + 127332537367.964*pow(xi1, 20) - 26987971774.8993*pow(xi1, 18) + 4437770795.40733*pow(xi1, 16) - 554449355.907009*pow(xi1, 14) + 51146299.3791467*pow(xi1, 12) - 3347235.88000065*pow(xi1, 10) + 146737.457721642*pow(xi1, 8) - 3948.73556897189*pow(xi1, 6) + 56.4439789512676*pow(xi1, 4) - 0.354993578309859*pow(xi1, 2) + 10766429790.4273*pow(xi2, 46) - 123749152457.737*pow(xi2, 44) + 664805249813.08*pow(xi2, 42) - 2217444024836.51*pow(xi2, 40) + 5144981244028.56*pow(xi2, 38) - 8817228144268.68*pow(xi2, 36) + 11566692718301.1*pow(xi2, 34) - 11878407054355.6*pow(xi2, 32) + 9685366353522.19*pow(xi2, 30) - 6322834046464.09*pow(xi2, 28) + 3317819280545.0*pow(xi2, 26) - 1399677324153.45*pow(xi2, 24) + 473184299476.64*pow(xi2, 22) - 127332537367.964*pow(xi2, 20) + 26987971774.8993*pow(xi2, 18) - 4437770795.40733*pow(xi2, 16) + 554449355.907009*pow(xi2, 14) - 51146299.3791467*pow(xi2, 12) + 3347235.88000065*pow(xi2, 10) - 146737.457721642*pow(xi2, 8) + 3948.73556897189*pow(xi2, 6) - 56.4439789512676*pow(xi2, 4) + 0.354993578309859*pow(xi2, 2); case 28: return -20669430677.858*pow(xi1, 47) + 242743705984.959*pow(xi1, 45) - 1334422142073.76*pow(xi1, 43) + 4562055823778.34*pow(xi1, 41) - 10869272649002.0*pow(xi1, 39) + 19167029443937.3*pow(xi1, 37) - 25932850957625.2*pow(xi1, 35) + 27540158501634.1*pow(xi1, 33) - 23291845098194.7*pow(xi1, 31) + 15826677366730.5*pow(xi1, 29) - 8679084881270.15*pow(xi1, 27) + 3844559615681.35*pow(xi1, 25) - 1372398208003.19*pow(xi1, 23) + 392591422175.228*pow(xi1, 21) - 89182852887.1235*pow(xi1, 19) + 15878163957.8501*pow(xi1, 17) - 2175816995.68173*pow(xi1, 15) + 223875789.885968*pow(xi1, 13) - 16718513.386797*pow(xi1, 11) + 863805.394274895*pow(xi1, 9) - 28780.1493897359*pow(xi1, 7) + 553.314836912411*pow(xi1, 5) - 5.10644608799566*pow(xi1, 3) + 0.0273071983315276*xi1 + 20669430677.858*pow(xi2, 47) - 242743705984.959*pow(xi2, 45) + 1334422142073.76*pow(xi2, 43) - 4562055823778.34*pow(xi2, 41) + 10869272649002.0*pow(xi2, 39) - 19167029443937.3*pow(xi2, 37) + 25932850957625.2*pow(xi2, 35) - 27540158501634.1*pow(xi2, 33) + 23291845098194.7*pow(xi2, 31) - 15826677366730.5*pow(xi2, 29) + 8679084881270.15*pow(xi2, 27) - 3844559615681.35*pow(xi2, 25) + 1372398208003.19*pow(xi2, 23) - 392591422175.228*pow(xi2, 21) + 89182852887.1235*pow(xi2, 19) - 15878163957.8501*pow(xi2, 17) + 2175816995.68173*pow(xi2, 15) - 223875789.885968*pow(xi2, 13) + 16718513.386797*pow(xi2, 11) - 863805.394274895*pow(xi2, 9) + 28780.1493897359*pow(xi2, 7) - 553.314836912411*pow(xi2, 5) + 5.10644608799566*pow(xi2, 3) - 0.0273071983315276*xi2; case 29: return -39728049242.7039*pow(xi1, 48) + 476505949117.133*pow(xi1, 46) - 2679054791412.26*pow(xi1, 44) + 9382111673603.37*pow(xi1, 42) - 22937896621590.0*pow(xi1, 40) + 41588485583490.6*pow(xi1, 38) - 57981856038508.5*pow(xi1, 36) + 63608598673568.9*pow(xi1, 34) - 55730713154580.7*pow(xi1, 32) + 39358257862237.2*pow(xi1, 30) - 22516922818681.8*pow(xi1, 28) + 10451406445051.6*pow(xi1, 26) - 3929555657141.43*pow(xi1, 24) + 1191272175390.01*pow(xi1, 22) - 288926022756.805*pow(xi1, 20) + 55425095713.3247*pow(xi1, 18) - 8277516579.76024*pow(xi1, 16) + 941984086.723766*pow(xi1, 14) - 79334996.0209767*pow(xi1, 12) + 4749320.37729368*pow(xi1, 10) - 190735.308470803*pow(xi1, 8) + 4707.5998798852*pow(xi1, 6) - 61.8712846196587*pow(xi1, 4) + 0.368647177475623*pow(xi1, 2) + 39728049242.7039*pow(xi2, 48) - 476505949117.133*pow(xi2, 46) + 2679054791412.26*pow(xi2, 44) - 9382111673603.37*pow(xi2, 42) + 22937896621590.0*pow(xi2, 40) - 41588485583490.6*pow(xi2, 38) + 57981856038508.5*pow(xi2, 36) - 63608598673568.9*pow(xi2, 34) + 55730713154580.7*pow(xi2, 32) - 39358257862237.2*pow(xi2, 30) + 22516922818681.8*pow(xi2, 28) - 10451406445051.6*pow(xi2, 26) + 3929555657141.43*pow(xi2, 24) - 1191272175390.01*pow(xi2, 22) + 288926022756.805*pow(xi2, 20) - 55425095713.3247*pow(xi2, 18) + 8277516579.76024*pow(xi2, 16) - 941984086.723766*pow(xi2, 14) + 79334996.0209767*pow(xi2, 12) - 4749320.37729368*pow(xi2, 10) + 190735.308470803*pow(xi2, 8) - 4707.5998798852*pow(xi2, 6) + 61.8712846196587*pow(xi2, 4) - 0.368647177475623*pow(xi2, 2); default: return 0.; } case 23: switch(j) { case 0: return -16738.7840366364*pow(xi1, 23)*y1t + 93900.4958152771*pow(xi1, 21)*y1t - 227528.124475479*pow(xi1, 19)*y1t + 311570.044326782*pow(xi1, 17)*y1t - 264834.537677765*pow(xi1, 15)*y1t + 144455.20236969*pow(xi1, 13)*y1t - 50481.6567420959*pow(xi1, 11)*y1t + 10941.8369293213*pow(xi1, 9)*y1t - 1367.72961616516*pow(xi1, 7)*y1t + 85.1031761169434*pow(xi1, 5)*y1t - 1.85006904602051*pow(xi1, 3)*y1t + 16738.7840366364*pow(xi2, 23)*y1t - 93900.4958152771*pow(xi2, 21)*y1t + 227528.124475479*pow(xi2, 19)*y1t - 311570.044326782*pow(xi2, 17)*y1t + 264834.537677765*pow(xi2, 15)*y1t - 144455.20236969*pow(xi2, 13)*y1t + 50481.6567420959*pow(xi2, 11)*y1t - 10941.8369293213*pow(xi2, 9)*y1t + 1367.72961616516*pow(xi2, 7)*y1t - 85.1031761169434*pow(xi2, 5)*y1t + 1.85006904602051*pow(xi2, 3)*y1t; case 1: return -8369.39201831818*pow(xi1, 23)*y1r + 2916.60630941391*pow(xi1, 22)*y1r + 46950.2479076385*pow(xi1, 21)*y1r - 16432.5867676735*pow(xi1, 20)*y1r - 113764.06223774*pow(xi1, 19)*y1r + 40028.095972538*pow(xi1, 18)*y1r + 155785.022163391*pow(xi1, 17)*y1r - 55173.862016201*pow(xi1, 16)*y1r - 132417.268838882*pow(xi1, 15)*y1r + 47291.8817281723*pow(xi1, 14)*y1r + 72227.601184845*pow(xi1, 13)*y1r - 26082.1893167496*pow(xi1, 12)*y1r - 25240.828371048*pow(xi1, 11)*y1r + 9254.97040271759*pow(xi1, 10)*y1r + 5470.91846466064*pow(xi1, 9)*y1r - 2051.59442424774*pow(xi1, 8)*y1r - 683.864808082581*pow(xi1, 7)*y1r + 265.947425365448*pow(xi1, 6)*y1r + 42.5515880584717*pow(xi1, 5)*y1r - 17.7298283576965*pow(xi1, 4)*y1r - 0.925034523010254*pow(xi1, 3)*y1r + 0.462517261505127*pow(xi1, 2)*y1r + 8369.39201831818*pow(xi2, 23)*y1r - 2916.60630941391*pow(xi2, 22)*y1r - 46950.2479076385*pow(xi2, 21)*y1r + 16432.5867676735*pow(xi2, 20)*y1r + 113764.06223774*pow(xi2, 19)*y1r - 40028.095972538*pow(xi2, 18)*y1r - 155785.022163391*pow(xi2, 17)*y1r + 55173.862016201*pow(xi2, 16)*y1r + 132417.268838882*pow(xi2, 15)*y1r - 47291.8817281723*pow(xi2, 14)*y1r - 72227.601184845*pow(xi2, 13)*y1r + 26082.1893167496*pow(xi2, 12)*y1r + 25240.828371048*pow(xi2, 11)*y1r - 9254.97040271759*pow(xi2, 10)*y1r - 5470.91846466064*pow(xi2, 9)*y1r + 2051.59442424774*pow(xi2, 8)*y1r + 683.864808082581*pow(xi2, 7)*y1r - 265.947425365448*pow(xi2, 6)*y1r - 42.5515880584717*pow(xi2, 5)*y1r + 17.7298283576965*pow(xi2, 4)*y1r + 0.925034523010254*pow(xi2, 3)*y1r - 0.462517261505127*pow(xi2, 2)*y1r; case 2: return 16738.7840366364*pow(xi1, 23)*y2t - 93900.4958152771*pow(xi1, 21)*y2t + 227528.124475479*pow(xi1, 19)*y2t - 311570.044326782*pow(xi1, 17)*y2t + 264834.537677765*pow(xi1, 15)*y2t - 144455.20236969*pow(xi1, 13)*y2t + 50481.6567420959*pow(xi1, 11)*y2t - 10941.8369293213*pow(xi1, 9)*y2t + 1367.72961616516*pow(xi1, 7)*y2t - 85.1031761169434*pow(xi1, 5)*y2t + 1.85006904602051*pow(xi1, 3)*y2t - 16738.7840366364*pow(xi2, 23)*y2t + 93900.4958152771*pow(xi2, 21)*y2t - 227528.124475479*pow(xi2, 19)*y2t + 311570.044326782*pow(xi2, 17)*y2t - 264834.537677765*pow(xi2, 15)*y2t + 144455.20236969*pow(xi2, 13)*y2t - 50481.6567420959*pow(xi2, 11)*y2t + 10941.8369293213*pow(xi2, 9)*y2t - 1367.72961616516*pow(xi2, 7)*y2t + 85.1031761169434*pow(xi2, 5)*y2t - 1.85006904602051*pow(xi2, 3)*y2t; case 3: return -8369.39201831818*pow(xi1, 23)*y2r - 2916.60630941391*pow(xi1, 22)*y2r + 46950.2479076385*pow(xi1, 21)*y2r + 16432.5867676735*pow(xi1, 20)*y2r - 113764.06223774*pow(xi1, 19)*y2r - 40028.095972538*pow(xi1, 18)*y2r + 155785.022163391*pow(xi1, 17)*y2r + 55173.862016201*pow(xi1, 16)*y2r - 132417.268838882*pow(xi1, 15)*y2r - 47291.8817281723*pow(xi1, 14)*y2r + 72227.601184845*pow(xi1, 13)*y2r + 26082.1893167496*pow(xi1, 12)*y2r - 25240.828371048*pow(xi1, 11)*y2r - 9254.97040271759*pow(xi1, 10)*y2r + 5470.91846466064*pow(xi1, 9)*y2r + 2051.59442424774*pow(xi1, 8)*y2r - 683.864808082581*pow(xi1, 7)*y2r - 265.947425365448*pow(xi1, 6)*y2r + 42.5515880584717*pow(xi1, 5)*y2r + 17.7298283576965*pow(xi1, 4)*y2r - 0.925034523010254*pow(xi1, 3)*y2r - 0.462517261505127*pow(xi1, 2)*y2r + 8369.39201831818*pow(xi2, 23)*y2r + 2916.60630941391*pow(xi2, 22)*y2r - 46950.2479076385*pow(xi2, 21)*y2r - 16432.5867676735*pow(xi2, 20)*y2r + 113764.06223774*pow(xi2, 19)*y2r + 40028.095972538*pow(xi2, 18)*y2r - 155785.022163391*pow(xi2, 17)*y2r - 55173.862016201*pow(xi2, 16)*y2r + 132417.268838882*pow(xi2, 15)*y2r + 47291.8817281723*pow(xi2, 14)*y2r - 72227.601184845*pow(xi2, 13)*y2r - 26082.1893167496*pow(xi2, 12)*y2r + 25240.828371048*pow(xi2, 11)*y2r + 9254.97040271759*pow(xi2, 10)*y2r - 5470.91846466064*pow(xi2, 9)*y2r - 2051.59442424774*pow(xi2, 8)*y2r + 683.864808082581*pow(xi2, 7)*y2r + 265.947425365448*pow(xi2, 6)*y2r - 42.5515880584717*pow(xi2, 5)*y2r - 17.7298283576965*pow(xi2, 4)*y2r + 0.925034523010254*pow(xi2, 3)*y2r + 0.462517261505127*pow(xi2, 2)*y2r; case 4: return -16041.3347017765*pow(xi1, 24) + 95465.5040788651*pow(xi1, 22) - 249016.891787052*pow(xi1, 20) + 374316.789364815*pow(xi1, 18) - 358630.103105307*pow(xi1, 16) + 228720.737085342*pow(xi1, 14) - 98439.2306470871*pow(xi1, 12) + 28357.5940418243*pow(xi1, 10) - 5299.95226264*pow(xi1, 8) + 602.814164161682*pow(xi1, 6) - 36.8472084999084*pow(xi1, 4) + 0.925034523010254*pow(xi1, 2) + 16041.3347017765*pow(xi2, 24) - 95465.5040788651*pow(xi2, 22) + 249016.891787052*pow(xi2, 20) - 374316.789364815*pow(xi2, 18) + 358630.103105307*pow(xi2, 16) - 228720.737085342*pow(xi2, 14) + 98439.2306470871*pow(xi2, 12) - 28357.5940418243*pow(xi2, 10) + 5299.95226264*pow(xi2, 8) - 602.814164161682*pow(xi2, 6) + 36.8472084999084*pow(xi2, 4) - 0.925034523010254*pow(xi2, 2); case 5: return -25666.1355228424*pow(xi1, 25) + 159630.842885971*pow(xi1, 23) - 436998.461294174*pow(xi1, 21) + 692150.120401382*pow(xi1, 19) - 701032.59973526*pow(xi1, 17) + 473492.052211761*pow(xi1, 15) - 215647.282390594*pow(xi1, 13) + 65402.3434638977*pow(xi1, 11) - 12714.8197650909*pow(xi1, 9) + 1469.04292106628*pow(xi1, 7) - 86.9532451629639*pow(xi1, 5) + 1.85006904602051*pow(xi1, 3) + 25666.1355228424*pow(xi2, 25) - 159630.842885971*pow(xi2, 23) + 436998.461294174*pow(xi2, 21) - 692150.120401382*pow(xi2, 19) + 701032.59973526*pow(xi2, 17) - 473492.052211761*pow(xi2, 15) + 215647.282390594*pow(xi2, 13) - 65402.3434638977*pow(xi2, 11) + 12714.8197650909*pow(xi2, 9) - 1469.04292106628*pow(xi2, 7) + 86.9532451629639*pow(xi2, 5) - 1.85006904602051*pow(xi2, 3); case 6: return -43188.2088124752*pow(xi1, 26) + 279745.227116346*pow(xi1, 24) - 801585.194084644*pow(xi1, 22) + 1337462.24400759*pow(xi1, 20) - 1439388.69436383*pow(xi1, 18) + 1045795.4754889*pow(xi1, 16) - 521967.386698723*pow(xi1, 14) + 178745.682291985*pow(xi1, 12) - 41294.0366613865*pow(xi1, 10) + 6224.43616986275*pow(xi1, 8) - 578.917438983917*pow(xi1, 6) + 30.0636219978333*pow(xi1, 4) - 0.69377589225769*pow(xi1, 2) + 43188.2088124752*pow(xi2, 26) - 279745.227116346*pow(xi2, 24) + 801585.194084644*pow(xi2, 22) - 1337462.24400759*pow(xi2, 20) + 1439388.69436383*pow(xi2, 18) - 1045795.4754889*pow(xi2, 16) + 521967.386698723*pow(xi2, 14) - 178745.682291985*pow(xi2, 12) + 41294.0366613865*pow(xi2, 10) - 6224.43616986275*pow(xi2, 8) + 578.917438983917*pow(xi2, 6) - 30.0636219978333*pow(xi2, 4) + 0.69377589225769*pow(xi2, 2); case 7: return -74859.5619416237*pow(xi1, 27) + 503932.66087532*pow(xi1, 25) - 1507825.26934147*pow(xi1, 23) + 2642391.18733406*pow(xi1, 21) - 3008256.60670996*pow(xi1, 19) + 2332526.65002823*pow(xi1, 17) - 1255698.85142326*pow(xi1, 15) + 469510.651874542*pow(xi1, 13) - 119893.934762478*pow(xi1, 11) + 20130.9536838531*pow(xi1, 9) - 2068.42124271393*pow(xi1, 7) + 112.854211807251*pow(xi1, 5) - 2.31258630752563*pow(xi1, 3) + 74859.5619416237*pow(xi2, 27) - 503932.66087532*pow(xi2, 25) + 1507825.26934147*pow(xi2, 23) - 2642391.18733406*pow(xi2, 21) + 3008256.60670996*pow(xi2, 19) - 2332526.65002823*pow(xi2, 17) + 1255698.85142326*pow(xi2, 15) - 469510.651874542*pow(xi2, 13) + 119893.934762478*pow(xi2, 11) - 20130.9536838531*pow(xi2, 9) + 2068.42124271393*pow(xi2, 7) - 112.854211807251*pow(xi2, 5) + 2.31258630752563*pow(xi2, 3); case 8: return -132341.011289656*pow(xi1, 28) + 924333.005681634*pow(xi1, 26) - 2882286.2527594*pow(xi1, 24) + 5292172.23957181*pow(xi1, 22) - 6353932.12669283*pow(xi1, 20) + 5238217.27822244*pow(xi1, 18) - 3029728.63045782*pow(xi1, 16) + 1234258.81294012*pow(xi1, 14) - 350443.153385818*pow(xi1, 12) + 67627.7707961798*pow(xi1, 10) - 8505.12255173922*pow(xi1, 8) + 654.847356081009*pow(xi1, 6) - 28.2328245043755*pow(xi1, 4) + 0.578146576881409*pow(xi1, 2) + 132341.011289656*pow(xi2, 28) - 924333.005681634*pow(xi2, 26) + 2882286.2527594*pow(xi2, 24) - 5292172.23957181*pow(xi2, 22) + 6353932.12669283*pow(xi2, 20) - 5238217.27822244*pow(xi2, 18) + 3029728.63045782*pow(xi2, 16) - 1234258.81294012*pow(xi2, 14) + 350443.153385818*pow(xi2, 12) - 67627.7707961798*pow(xi2, 10) + 8505.12255173922*pow(xi2, 8) - 654.847356081009*pow(xi2, 6) + 28.2328245043755*pow(xi2, 4) - 0.578146576881409*pow(xi2, 2); case 9: return -237301.123691797*pow(xi1, 29) + 1717205.31722188*pow(xi1, 27) - 5570646.91424131*pow(xi1, 25) + 10693423.2775569*pow(xi1, 23) - 13503154.0309131*pow(xi1, 21) + 11794617.2651803*pow(xi1, 19) - 7294968.68435383*pow(xi1, 17) + 3215695.24364948*pow(xi1, 15) - 1003197.3931253*pow(xi1, 13) + 216942.985686064*pow(xi1, 11) - 31295.3054652214*pow(xi1, 9) + 2815.34257078171*pow(xi1, 7) - 138.678092241287*pow(xi1, 5) + 2.69801735877991*pow(xi1, 3) + 237301.123691797*pow(xi2, 29) - 1717205.31722188*pow(xi2, 27) + 5570646.91424131*pow(xi2, 25) - 10693423.2775569*pow(xi2, 23) + 13503154.0309131*pow(xi2, 21) - 11794617.2651803*pow(xi2, 19) + 7294968.68435383*pow(xi2, 17) - 3215695.24364948*pow(xi2, 15) + 1003197.3931253*pow(xi2, 13) - 216942.985686064*pow(xi2, 11) + 31295.3054652214*pow(xi2, 9) - 2815.34257078171*pow(xi2, 7) + 138.678092241287*pow(xi2, 5) - 2.69801735877991*pow(xi2, 3); case 10: return -430108.286691383*pow(xi1, 30) + 3220566.92717694*pow(xi1, 28) - 10852024.9993969*pow(xi1, 26) + 21736745.4230245*pow(xi1, 24) - 28798227.5263164*pow(xi1, 22) + 26568852.6144587*pow(xi1, 20) - 17501613.8303212*pow(xi1, 18) + 8303601.8471282*pow(xi1, 16) - 2826614.7797104*pow(xi1, 14) + 679508.515860513*pow(xi1, 12) - 111985.127419218*pow(xi1, 10) + 12060.9036379606*pow(xi1, 8) - 789.675955697894*pow(xi1, 6) + 28.4978083521128*pow(xi1, 4) - 0.505878254771233*pow(xi1, 2) + 430108.286691383*pow(xi2, 30) - 3220566.92717694*pow(xi2, 28) + 10852024.9993969*pow(xi2, 26) - 21736745.4230245*pow(xi2, 24) + 28798227.5263164*pow(xi2, 22) - 26568852.6144587*pow(xi2, 20) + 17501613.8303212*pow(xi2, 18) - 8303601.8471282*pow(xi2, 16) + 2826614.7797104*pow(xi2, 14) - 679508.515860513*pow(xi2, 12) + 111985.127419218*pow(xi2, 10) - 12060.9036379606*pow(xi2, 8) + 789.675955697894*pow(xi2, 6) - 28.4978083521128*pow(xi2, 4) + 0.505878254771233*pow(xi2, 2); case 11: return -786219.448790699*pow(xi1, 31) + 6084458.68978053*pow(xi1, 29) - 21265479.0051578*pow(xi1, 27) + 44367651.1797434*pow(xi1, 25) - 61536845.3039266*pow(xi1, 23) + 59798623.1011078*pow(xi1, 21) - 41802781.6162907*pow(xi1, 19) + 21246375.4476535*pow(xi1, 17) - 7841612.93932602*pow(xi1, 15) + 2076515.09504765*pow(xi1, 13) - 385135.903046876*pow(xi1, 11) + 48068.4554105997*pow(xi1, 9) - 3781.04970547557*pow(xi1, 7) + 166.332770168781*pow(xi1, 5) - 3.0352695286274*pow(xi1, 3) + 786219.448790699*pow(xi2, 31) - 6084458.68978053*pow(xi2, 29) + 21265479.0051578*pow(xi2, 27) - 44367651.1797434*pow(xi2, 25) + 61536845.3039266*pow(xi2, 23) - 59798623.1011078*pow(xi2, 21) + 41802781.6162907*pow(xi2, 19) - 21246375.4476535*pow(xi2, 17) + 7841612.93932602*pow(xi2, 15) - 2076515.09504765*pow(xi2, 13) + 385135.903046876*pow(xi2, 11) - 48068.4554105997*pow(xi2, 9) + 3781.04970547557*pow(xi2, 7) - 166.332770168781*pow(xi2, 5) + 3.0352695286274*pow(xi2, 3); case 12: return -1447135.17293038*pow(xi1, 32) + 11562219.9182525*pow(xi1, 30) - 41859905.6974805*pow(xi1, 28) + 90823108.3086038*pow(xi1, 26) - 131611410.038288*pow(xi1, 24) + 134371362.125239*pow(xi1, 22) - 99365988.1704175*pow(xi1, 20) + 53876892.8339118*pow(xi1, 18) - 21441114.7105898*pow(xi1, 16) + 6207519.21943057*pow(xi1, 14) - 1282336.02874777*pow(xi1, 12) + 182983.673429422*pow(xi1, 10) - 17140.8084095176*pow(xi1, 8) + 974.068579562008*pow(xi1, 6) - 29.9732865951955*pow(xi1, 4) + 0.455290429294109*pow(xi1, 2) + 1447135.17293038*pow(xi2, 32) - 11562219.9182525*pow(xi2, 30) + 41859905.6974805*pow(xi2, 28) - 90823108.3086038*pow(xi2, 26) + 131611410.038288*pow(xi2, 24) - 134371362.125239*pow(xi2, 22) + 99365988.1704175*pow(xi2, 20) - 53876892.8339118*pow(xi2, 18) + 21441114.7105898*pow(xi2, 16) - 6207519.21943057*pow(xi2, 14) + 1282336.02874777*pow(xi2, 12) - 182983.673429422*pow(xi2, 10) + 17140.8084095176*pow(xi2, 8) - 974.068579562008*pow(xi2, 6) + 29.9732865951955*pow(xi2, 4) - 0.455290429294109*pow(xi2, 2); case 13: return -2678994.03914385*pow(xi1, 33) + 22076031.0194258*pow(xi1, 31) - 82690023.7308931*pow(xi1, 29) + 186299988.107375*pow(xi1, 27) - 281542048.924484*pow(xi1, 25) + 301316378.346892*pow(xi1, 23) - 235027817.674493*pow(xi1, 21) + 135444947.360354*pow(xi1, 19) - 57840098.2291941*pow(xi1, 17) + 18189409.6449181*pow(xi1, 15) - 4147521.9692352*pow(xi1, 13) + 667698.518639132*pow(xi1, 11) - 72786.0282803327*pow(xi1, 9) + 5031.24831698835*pow(xi1, 7) - 196.988992407918*pow(xi1, 5) + 3.33879648149014*pow(xi1, 3) + 2678994.03914385*pow(xi2, 33) - 22076031.0194258*pow(xi2, 31) + 82690023.7308931*pow(xi2, 29) - 186299988.107375*pow(xi2, 27) + 281542048.924484*pow(xi2, 25) - 301316378.346892*pow(xi2, 23) + 235027817.674493*pow(xi2, 21) - 135444947.360354*pow(xi2, 19) + 57840098.2291941*pow(xi2, 17) - 18189409.6449181*pow(xi2, 15) + 4147521.9692352*pow(xi2, 13) - 667698.518639132*pow(xi2, 11) + 72786.0282803327*pow(xi2, 9) - 5031.24831698835*pow(xi2, 7) + 196.988992407918*pow(xi2, 5) - 3.33879648149014*pow(xi2, 3); case 14: return -4983716.85223083*pow(xi1, 34) + 42316671.0878179*pow(xi1, 32) - 163804940.004247*pow(xi1, 30) + 382693879.671142*pow(xi1, 28) - 602122074.063587*pow(xi1, 26) + 674103390.262549*pow(xi1, 24) - 553167824.13291*pow(xi1, 22) + 337708164.141526*pow(xi1, 20) - 154088440.688562*pow(xi1, 18) + 52338450.6070863*pow(xi1, 16) - 13071827.5511526*pow(xi1, 14) + 2348583.8959056*pow(xi1, 12) - 293290.932760544*pow(xi1, 10) + 24150.230407007*pow(xi1, 8) - 1207.53139413893*pow(xi1, 6) + 32.2750326544046*pow(xi1, 4) - 0.417349560186267*pow(xi1, 2) + 4983716.85223083*pow(xi2, 34) - 42316671.0878179*pow(xi2, 32) + 163804940.004247*pow(xi2, 30) - 382693879.671142*pow(xi2, 28) + 602122074.063587*pow(xi2, 26) - 674103390.262549*pow(xi2, 24) + 553167824.13291*pow(xi2, 22) - 337708164.141526*pow(xi2, 20) + 154088440.688562*pow(xi2, 18) - 52338450.6070863*pow(xi2, 16) + 13071827.5511526*pow(xi2, 14) - 2348583.8959056*pow(xi2, 12) + 293290.932760544*pow(xi2, 10) - 24150.230407007*pow(xi2, 8) + 1207.53139413893*pow(xi2, 6) - 32.2750326544046*pow(xi2, 4) + 0.417349560186267*pow(xi2, 2); case 15: return -9310240.27339825*pow(xi1, 35) + 81385124.7313643*pow(xi1, 33) - 325225778.020873*pow(xi1, 31) + 786901443.045491*pow(xi1, 29) - 1287010097.68695*pow(xi1, 27) + 1504383534.87654*pow(xi1, 25) - 1295670982.26369*pow(xi1, 23) + 835461875.914782*pow(xi1, 21) - 405754033.635682*pow(xi1, 19) + 148121087.247014*pow(xi1, 17) - 40252478.8666085*pow(xi1, 15) + 7997565.65664124*pow(xi1, 13) - 1129083.48007344*pow(xi1, 11) + 108469.548168182*pow(xi1, 9) - 6634.66557964683*pow(xi1, 7) + 231.489889383316*pow(xi1, 5) - 3.61702952161431*pow(xi1, 3) + 9310240.27339825*pow(xi2, 35) - 81385124.7313643*pow(xi2, 33) + 325225778.020873*pow(xi2, 31) - 786901443.045491*pow(xi2, 29) + 1287010097.68695*pow(xi2, 27) - 1504383534.87654*pow(xi2, 25) + 1295670982.26369*pow(xi2, 23) - 835461875.914782*pow(xi2, 21) + 405754033.635682*pow(xi2, 19) - 148121087.247014*pow(xi2, 17) + 40252478.8666085*pow(xi2, 15) - 7997565.65664124*pow(xi2, 13) + 1129083.48007344*pow(xi2, 11) - 108469.548168182*pow(xi2, 9) + 6634.66557964683*pow(xi2, 7) - 231.489889383316*pow(xi2, 5) + 3.61702952161431*pow(xi2, 3); case 16: return -17456700.5126217*pow(xi1, 36) + 156968380.219184*pow(xi1, 34) - 646914534.321435*pow(xi1, 32) + 1619113705.96732*pow(xi1, 30) - 2748803401.56655*pow(xi1, 28) + 3348835568.88779*pow(xi1, 26) - 3020630767.10615*pow(xi1, 24) + 2051665199.17433*pow(xi1, 22) - 1056985506.89965*pow(xi1, 20) + 412874103.839298*pow(xi1, 18) - 121377909.228796*pow(xi1, 16) + 26460296.7336268*pow(xi1, 14) - 4176886.19847074*pow(xi1, 12) + 460613.724740993*pow(xi1, 10) - 33621.2121150177*pow(xi1, 8) + 1493.31647392362*pow(xi1, 6) - 35.2014480228536*pow(xi1, 4) + 0.387538877315819*pow(xi1, 2) + 17456700.5126217*pow(xi2, 36) - 156968380.219184*pow(xi2, 34) + 646914534.321435*pow(xi2, 32) - 1619113705.96732*pow(xi2, 30) + 2748803401.56655*pow(xi2, 28) - 3348835568.88779*pow(xi2, 26) + 3020630767.10615*pow(xi2, 24) - 2051665199.17433*pow(xi2, 22) + 1056985506.89965*pow(xi2, 20) - 412874103.839298*pow(xi2, 18) + 121377909.228796*pow(xi2, 16) - 26460296.7336268*pow(xi2, 14) + 4176886.19847074*pow(xi2, 12) - 460613.724740993*pow(xi2, 10) + 33621.2121150177*pow(xi2, 8) - 1493.31647392362*pow(xi2, 6) + 35.2014480228536*pow(xi2, 4) - 0.387538877315819*pow(xi2, 2); case 17: return -32837469.0723911*pow(xi1, 37) + 303491125.009677*pow(xi1, 35) - 1288760839.34582*pow(xi1, 33) + 3332853573.87662*pow(xi1, 31) - 5865541029.76668*pow(xi1, 29) + 7435831693.49892*pow(xi1, 27) - 7010382002.96711*pow(xi1, 25) + 5003386821.33951*pow(xi1, 23) - 2725959954.0341*pow(xi1, 21) + 1134915281.2323*pow(xi1, 19) - 359106543.713533*pow(xi1, 17) + 85315115.7148456*pow(xi1, 15) - 14918529.9824437*pow(xi1, 13) + 1863374.76427998*pow(xi1, 11) - 159016.920591667*pow(xi1, 9) + 8666.99326921999*pow(xi1, 7) - 270.502136366442*pow(xi1, 5) + 3.87538877315819*pow(xi1, 3) + 32837469.0723911*pow(xi2, 37) - 303491125.009677*pow(xi2, 35) + 1288760839.34582*pow(xi2, 33) - 3332853573.87662*pow(xi2, 31) + 5865541029.76668*pow(xi2, 29) - 7435831693.49892*pow(xi2, 27) + 7010382002.96711*pow(xi2, 25) - 5003386821.33951*pow(xi2, 23) + 2725959954.0341*pow(xi2, 21) - 1134915281.2323*pow(xi2, 19) + 359106543.713533*pow(xi2, 17) - 85315115.7148456*pow(xi2, 15) + 14918529.9824437*pow(xi2, 13) - 1863374.76427998*pow(xi2, 11) + 159016.920591667*pow(xi2, 9) - 8666.99326921999*pow(xi2, 7) + 270.502136366442*pow(xi2, 5) - 3.87538877315819*pow(xi2, 3); case 18: return -61948317.4770274*pow(xi1, 38) + 588045987.694992*pow(xi1, 36) - 2570691567.21059*pow(xi1, 34) + 6862092306.58149*pow(xi1, 32) - 12503588653.0115*pow(xi1, 30) + 16469394098.4744*pow(xi1, 28) - 16199740202.3215*pow(xi1, 26) + 12121984061.9096*pow(xi1, 24) - 6964913198.30605*pow(xi1, 22) + 3079877352.23662*pow(xi1, 20) - 1044184571.43626*pow(xi1, 18) + 268758699.305915*pow(xi1, 16) - 51646562.040118*pow(xi1, 14) + 7225262.03304275*pow(xi1, 12) - 709111.122226401*pow(xi1, 10) + 46213.1483845536*pow(xi1, 8) - 1836.73243531171*pow(xi1, 6) + 38.6327818324207*pow(xi1, 4) - 0.363317697483581*pow(xi1, 2) + 61948317.4770274*pow(xi2, 38) - 588045987.694992*pow(xi2, 36) + 2570691567.21059*pow(xi2, 34) - 6862092306.58149*pow(xi2, 32) + 12503588653.0115*pow(xi2, 30) - 16469394098.4744*pow(xi2, 28) + 16199740202.3215*pow(xi2, 26) - 12121984061.9096*pow(xi2, 24) + 6964913198.30605*pow(xi2, 22) - 3079877352.23662*pow(xi2, 20) + 1044184571.43626*pow(xi2, 18) - 268758699.305915*pow(xi2, 16) + 51646562.040118*pow(xi2, 14) - 7225262.03304275*pow(xi2, 12) + 709111.122226401*pow(xi2, 10) - 46213.1483845536*pow(xi2, 8) + 1836.73243531171*pow(xi2, 6) - 38.6327818324207*pow(xi2, 4) + 0.363317697483581*pow(xi2, 2); case 19: return -117169215.861527*pow(xi1, 39) + 1141555508.85931*pow(xi1, 37) - 5133228518.34571*pow(xi1, 35) + 14129831014.1259*pow(xi1, 33) - 26625518290.5583*pow(xi1, 31) + 36388095709.5377*pow(xi1, 29) - 37280297135.4758*pow(xi1, 27) + 29187680419.3394*pow(xi1, 25) - 17641364021.031*pow(xi1, 23) + 8259500271.79728*pow(xi1, 21) - 2988420683.98686*pow(xi1, 19) + 829001983.126658*pow(xi1, 17) - 173867997.780774*pow(xi1, 15) + 26987592.7666662*pow(xi1, 13) - 3005137.05266305*pow(xi1, 11) + 229403.31855374*pow(xi1, 9) - 11213.2459524736*pow(xi1, 7) + 314.584683661116*pow(xi1, 5) - 4.11760057148058*pow(xi1, 3) + 117169215.861527*pow(xi2, 39) - 1141555508.85931*pow(xi2, 37) + 5133228518.34571*pow(xi2, 35) - 14129831014.1259*pow(xi2, 33) + 26625518290.5583*pow(xi2, 31) - 36388095709.5377*pow(xi2, 29) + 37280297135.4758*pow(xi2, 27) - 29187680419.3394*pow(xi2, 25) + 17641364021.031*pow(xi2, 23) - 8259500271.79728*pow(xi2, 21) + 2988420683.98686*pow(xi2, 19) - 829001983.126658*pow(xi2, 17) + 173867997.780774*pow(xi2, 15) - 26987592.7666662*pow(xi2, 13) + 3005137.05266305*pow(xi2, 11) - 229403.31855374*pow(xi2, 9) + 11213.2459524736*pow(xi2, 7) - 314.584683661116*pow(xi2, 5) + 4.11760057148058*pow(xi2, 3); case 20: return -222133305.070811*pow(xi1, 40) + 2219785083.42539*pow(xi1, 38) - 10259396727.5352*pow(xi1, 36) + 29094468214.3189*pow(xi1, 34) - 56634836041.7293*pow(xi1, 32) + 80205087700.4013*pow(xi1, 30) - 85454984888.6874*pow(xi1, 28) + 69870738325.5301*pow(xi1, 26) - 44321915588.4007*pow(xi1, 24) + 21908106656.4077*pow(xi1, 22) - 8429050151.6992*pow(xi1, 20) + 2508569934.62919*pow(xi1, 18) - 570774531.410123*pow(xi1, 16) + 97504906.6443698*pow(xi1, 14) - 12180237.1297037*pow(xi1, 12) + 1071171.86734953*pow(xi1, 10) - 62723.8433239953*pow(xi1, 8) + 2244.43544483787*pow(xi1, 6) - 42.4913503418065*pow(xi1, 4) + 0.343133380956715*pow(xi1, 2) + 222133305.070811*pow(xi2, 40) - 2219785083.42539*pow(xi2, 38) + 10259396727.5352*pow(xi2, 36) - 29094468214.3189*pow(xi2, 34) + 56634836041.7293*pow(xi2, 32) - 80205087700.4013*pow(xi2, 30) + 85454984888.6874*pow(xi2, 28) - 69870738325.5301*pow(xi2, 26) + 44321915588.4007*pow(xi2, 24) - 21908106656.4077*pow(xi2, 22) + 8429050151.6992*pow(xi2, 20) - 2508569934.62919*pow(xi2, 18) + 570774531.410123*pow(xi2, 16) - 97504906.6443698*pow(xi2, 14) + 12180237.1297037*pow(xi2, 12) - 1071171.86734953*pow(xi2, 10) + 62723.8433239953*pow(xi2, 8) - 2244.43544483787*pow(xi2, 6) + 42.4913503418065*pow(xi2, 4) - 0.343133380956715*pow(xi2, 2); case 21: return -422024764.447755*pow(xi1, 41) + 4322902316.91078*pow(xi1, 39) - 20520330597.4072*pow(xi1, 37) + 59901917263.415*pow(xi1, 35) - 120332959323.442*pow(xi1, 33) + 176374680057.007*pow(xi1, 31) - 195146915254.19*pow(xi1, 29) + 166342835627.683*pow(xi1, 27) - 110510141539.374*pow(xi1, 25) + 57521106460.0063*pow(xi1, 23) - 23457614573.9268*pow(xi1, 21) + 7459134211.59708*pow(xi1, 19) - 1831495756.75403*pow(xi1, 17) + 341936494.88629*pow(xi1, 15) - 47462032.3602766*pow(xi1, 13) + 4743304.91553402*pow(xi1, 11) - 325904.065670225*pow(xi1, 9) + 14369.426005757*pow(xi1, 7) - 364.224646106188*pow(xi1, 5) + 4.34635615878506*pow(xi1, 3) + 422024764.447755*pow(xi2, 41) - 4322902316.91078*pow(xi2, 39) + 20520330597.4072*pow(xi2, 37) - 59901917263.415*pow(xi2, 35) + 120332959323.442*pow(xi2, 33) - 176374680057.007*pow(xi2, 31) + 195146915254.19*pow(xi2, 29) - 166342835627.683*pow(xi2, 27) + 110510141539.374*pow(xi2, 25) - 57521106460.0063*pow(xi2, 23) + 23457614573.9268*pow(xi2, 21) - 7459134211.59708*pow(xi2, 19) + 1831495756.75403*pow(xi2, 17) - 341936494.88629*pow(xi2, 15) + 47462032.3602766*pow(xi2, 13) - 4743304.91553402*pow(xi2, 11) + 325904.065670225*pow(xi2, 9) - 14369.426005757*pow(xi2, 7) + 364.224646106188*pow(xi2, 5) - 4.34635615878506*pow(xi2, 3); case 22: return -803354283.752333*pow(xi1, 42) + 8429944669.8439*pow(xi1, 40) - 41070423529.3311*pow(xi1, 38) + 123310478369.716*pow(xi1, 36) - 255387566346.647*pow(xi1, 34) + 386985888284.832*pow(xi1, 32) - 444046768569.53*pow(xi1, 30) + 393966174779.878*pow(xi1, 28) - 273583716795.579*pow(xi1, 26) + 149598387506.117*pow(xi1, 24) - 64475852087.3283*pow(xi1, 22) + 21825643771.0978*pow(xi1, 20) - 5756146123.25306*pow(xi1, 18) + 1167338459.55362*pow(xi1, 16) - 178569841.335938*pow(xi1, 14) + 20049882.8097356*pow(xi1, 12) - 1589574.9092333*pow(xi1, 10) + 84105.4842801184*pow(xi1, 8) - 2724.07872251853*pow(xi1, 6) + 46.7233287069394*pow(xi1, 4) - 0.325976711908879*pow(xi1, 2) + 803354283.752333*pow(xi2, 42) - 8429944669.8439*pow(xi2, 40) + 41070423529.3311*pow(xi2, 38) - 123310478369.716*pow(xi2, 36) + 255387566346.647*pow(xi2, 34) - 386985888284.832*pow(xi2, 32) + 444046768569.53*pow(xi2, 30) - 393966174779.878*pow(xi2, 28) + 273583716795.579*pow(xi2, 26) - 149598387506.117*pow(xi2, 24) + 64475852087.3283*pow(xi2, 22) - 21825643771.0978*pow(xi2, 20) + 5756146123.25306*pow(xi2, 18) - 1167338459.55362*pow(xi2, 16) + 178569841.335938*pow(xi2, 14) - 20049882.8097356*pow(xi2, 12) + 1589574.9092333*pow(xi2, 10) - 84105.4842801184*pow(xi2, 8) + 2724.07872251853*pow(xi2, 6) - 46.7233287069394*pow(xi2, 4) + 0.325976711908879*pow(xi2, 2); case 23: return -1531977936.45794*pow(xi1, 43) + 16458965813.4624*pow(xi1, 41) - 82246133902.1835*pow(xi1, 39) + 253785470676.682*pow(xi1, 37) - 541417155879.751*pow(xi1, 35) + 847251426526.943*pow(xi1, 33) - 1006958259563.54*pow(xi1, 31) + 928503086198.243*pow(xi1, 29) - 672778436231.104*pow(xi1, 27) + 385637874429.917*pow(xi1, 25) - 175190326199.53*pow(xi1, 23) + 62923414996.2573*pow(xi1, 21) - 17750643707.6883*pow(xi1, 19) + 3889306965.7242*pow(xi1, 17) - 651047737.754652*pow(xi1, 15) + 81335790.3152447*pow(xi1, 13) - 7338756.68486208*pow(xi1, 11) + 456345.664891637*pow(xi1, 9) - 18243.8299765003*pow(xi1, 7) + 419.858004938636*pow(xi1, 5) - 4.56367396672431*pow(xi1, 3) + 1531977936.45794*pow(xi2, 43) - 16458965813.4624*pow(xi2, 41) + 82246133902.1835*pow(xi2, 39) - 253785470676.682*pow(xi2, 37) + 541417155879.751*pow(xi2, 35) - 847251426526.943*pow(xi2, 33) + 1006958259563.54*pow(xi2, 31) - 928503086198.243*pow(xi2, 29) + 672778436231.104*pow(xi2, 27) - 385637874429.917*pow(xi2, 25) + 175190326199.53*pow(xi2, 23) - 62923414996.2573*pow(xi2, 21) + 17750643707.6883*pow(xi2, 19) - 3889306965.7242*pow(xi2, 17) + 651047737.754652*pow(xi2, 15) - 81335790.3152447*pow(xi2, 13) + 7338756.68486208*pow(xi2, 11) - 456345.664891637*pow(xi2, 9) + 18243.8299765003*pow(xi2, 7) - 419.858004938636*pow(xi2, 5) + 4.56367396672431*pow(xi2, 3); case 24: return -2926267773.25488*pow(xi1, 44) + 32170687453.9002*pow(xi1, 42) - 164781727359.808*pow(xi1, 40) + 522185265338.526*pow(xi1, 38) - 1146534774301.18*pow(xi1, 36) + 1851064835044.44*pow(xi1, 34) - 2276036756996.6*pow(xi1, 32) + 2178170928315.17*pow(xi1, 30) - 1644071226030.65*pow(xi1, 28) + 985904588081.376*pow(xi1, 26) - 470948522565.186*pow(xi1, 24) + 178941502904.888*pow(xi1, 22) - 53793287029.6419*pow(xi1, 20) + 12674006632.6617*pow(xi1, 18) - 2307248617.22092*pow(xi1, 16) + 318072208.243466*pow(xi1, 14) - 32287130.2272467*pow(xi1, 12) + 2320075.01478208*pow(xi1, 10) - 111483.603306741*pow(xi1, 8) + 3284.11659166017*pow(xi1, 6) - 51.2894721942084*pow(xi1, 4) + 0.311159588640294*pow(xi1, 2) + 2926267773.25488*pow(xi2, 44) - 32170687453.9002*pow(xi2, 42) + 164781727359.808*pow(xi2, 40) - 522185265338.526*pow(xi2, 38) + 1146534774301.18*pow(xi2, 36) - 1851064835044.44*pow(xi2, 34) + 2276036756996.6*pow(xi2, 32) - 2178170928315.17*pow(xi2, 30) + 1644071226030.65*pow(xi2, 28) - 985904588081.376*pow(xi2, 26) + 470948522565.186*pow(xi2, 24) - 178941502904.888*pow(xi2, 22) + 53793287029.6419*pow(xi2, 20) - 12674006632.6617*pow(xi2, 18) + 2307248617.22092*pow(xi2, 16) - 318072208.243466*pow(xi2, 14) + 32287130.2272467*pow(xi2, 12) - 2320075.01478208*pow(xi2, 10) + 111483.603306741*pow(xi2, 8) - 3284.11659166017*pow(xi2, 6) + 51.2894721942084*pow(xi2, 4) - 0.311159588640294*pow(xi2, 2); case 25: return -5598077479.27021*pow(xi1, 45) + 62944237023.0138*pow(xi1, 43) - 330278999375.818*pow(xi1, 41) + 1074140453307.64*pow(xi1, 39) - 2425343957107.78*pow(xi1, 37) + 4036050195832.79*pow(xi1, 35) - 5128586911375.06*pow(xi1, 33) + 5087344019982.91*pow(xi1, 31) - 3993875133123.08*pow(xi1, 29) + 2501028597707.71*pow(xi1, 27) - 1253435191838.01*pow(xi1, 25) + 502454428984.502*pow(xi1, 23) - 160423552908.796*pow(xi1, 21) + 40470742430.8232*pow(xi1, 19) - 7968848617.85145*pow(xi1, 17) + 1203568825.07947*pow(xi1, 15) - 136110656.698573*pow(xi1, 13) + 11146295.9461998*pow(xi1, 11) - 630389.076516768*pow(xi1, 9) + 22958.1446964552*pow(xi1, 7) - 481.882482940935*pow(xi1, 5) + 4.77111369248451*pow(xi1, 3) + 5598077479.27021*pow(xi2, 45) - 62944237023.0138*pow(xi2, 43) + 330278999375.818*pow(xi2, 41) - 1074140453307.64*pow(xi2, 39) + 2425343957107.78*pow(xi2, 37) - 4036050195832.79*pow(xi2, 35) + 5128586911375.06*pow(xi2, 33) - 5087344019982.91*pow(xi2, 31) + 3993875133123.08*pow(xi2, 29) - 2501028597707.71*pow(xi2, 27) + 1253435191838.01*pow(xi2, 25) - 502454428984.502*pow(xi2, 23) + 160423552908.796*pow(xi2, 21) - 40470742430.8232*pow(xi2, 19) + 7968848617.85145*pow(xi2, 17) - 1203568825.07947*pow(xi2, 15) + 136110656.698573*pow(xi2, 13) - 11146295.9461998*pow(xi2, 11) + 630389.076516768*pow(xi2, 9) - 22958.1446964552*pow(xi2, 7) + 481.882482940935*pow(xi2, 5) - 4.77111369248451*pow(xi2, 3); case 26: return -10724577779.5802*pow(xi1, 46) + 123268642054.967*pow(xi1, 44) - 662226702259.593*pow(xi1, 42) + 2208852750087.43*pow(xi1, 40) - 5125069148373.14*pow(xi1, 38) + 8783140469058.23*pow(xi1, 36) - 11522023284984.6*pow(xi1, 34) + 11832582409198.7*pow(xi1, 32) - 9648041315255.88*pow(xi1, 30) + 6298492797700.62*pow(xi1, 28) - 3305059766157.57*pow(xi1, 26) + 1394300038521.23*pow(xi1, 24) - 471368271194.802*pow(xi1, 22) + 126844343800.751*pow(xi1, 20) - 26884603684.2252*pow(xi1, 18) + 4420790397.9644*pow(xi1, 16) - 552329947.313166*pow(xi1, 14) + 50950982.4545326*pow(xi1, 12) - 3334465.9698603*pow(xi1, 10) + 146178.190695699*pow(xi1, 8) - 3933.68384125155*pow(xi1, 6) + 56.1599840886197*pow(xi1, 4) - 0.298194605780282*pow(xi1, 2) + 10724577779.5802*pow(xi2, 46) - 123268642054.967*pow(xi2, 44) + 662226702259.593*pow(xi2, 42) - 2208852750087.43*pow(xi2, 40) + 5125069148373.14*pow(xi2, 38) - 8783140469058.23*pow(xi2, 36) + 11522023284984.6*pow(xi2, 34) - 11832582409198.7*pow(xi2, 32) + 9648041315255.88*pow(xi2, 30) - 6298492797700.62*pow(xi2, 28) + 3305059766157.57*pow(xi2, 26) - 1394300038521.23*pow(xi2, 24) + 471368271194.802*pow(xi2, 22) - 126844343800.751*pow(xi2, 20) + 26884603684.2252*pow(xi2, 18) - 4420790397.9644*pow(xi2, 16) + 552329947.313166*pow(xi2, 14) - 50950982.4545326*pow(xi2, 12) + 3334465.9698603*pow(xi2, 10) - 146178.190695699*pow(xi2, 8) + 3933.68384125155*pow(xi2, 6) - 56.1599840886197*pow(xi2, 4) + 0.298194605780282*pow(xi2, 2); case 27: return -20572934736.318*pow(xi1, 47) + 241611658620.551*pow(xi1, 45) - 1328205586844.64*pow(xi1, 43) + 4540825293226.5*pow(xi1, 41) - 10818742788273.6*pow(xi1, 39) + 19078016455492.4*pow(xi1, 37) - 25812540522610.2*pow(xi1, 35) + 27412521274463.8*pow(xi1, 33) - 23184006044249.6*pow(xi1, 31) + 15753474773929.5*pow(xi1, 29) - 8638981738369.39*pow(xi1, 27) + 3826812736646.04*pow(xi1, 25) - 1366069288952.07*pow(xi1, 23) + 390782719220.513*pow(xi1, 21) - 88772376837.7726*pow(xi1, 19) + 15805152724.9117*pow(xi1, 17) - 2165821655.69451*pow(xi1, 15) + 222848315.609907*pow(xi1, 13) - 16641856.2001029*pow(xi1, 11) + 859848.405690382*pow(xi1, 9) - 28648.4077618996*pow(xi1, 7) + 550.666038674253*pow(xi1, 5) - 4.96991009633803*pow(xi1, 3) + 20572934736.318*pow(xi2, 47) - 241611658620.551*pow(xi2, 45) + 1328205586844.64*pow(xi2, 43) - 4540825293226.5*pow(xi2, 41) + 10818742788273.6*pow(xi2, 39) - 19078016455492.4*pow(xi2, 37) + 25812540522610.2*pow(xi2, 35) - 27412521274463.8*pow(xi2, 33) + 23184006044249.6*pow(xi2, 31) - 15753474773929.5*pow(xi2, 29) + 8638981738369.39*pow(xi2, 27) - 3826812736646.04*pow(xi2, 25) + 1366069288952.07*pow(xi2, 23) - 390782719220.513*pow(xi2, 21) + 88772376837.7726*pow(xi2, 19) - 15805152724.9117*pow(xi2, 17) + 2165821655.69451*pow(xi2, 15) - 222848315.609907*pow(xi2, 13) + 16641856.2001029*pow(xi2, 11) - 859848.405690382*pow(xi2, 9) + 28648.4077618996*pow(xi2, 7) - 550.666038674253*pow(xi2, 5) + 4.96991009633803*pow(xi2, 3); case 28: return -39513881861.3416*pow(xi1, 48) + 473939816873.48*pow(xi1, 46) - 2664641921512.91*pow(xi1, 44) + 9331688393323.42*pow(xi1, 42) - 22814742457657.3*pow(xi1, 40) + 41365417755535.0*pow(xi1, 38) - 57671165870739.0*pow(xi1, 36) + 63268091738868.2*pow(xi1, 34) - 55432667648218.2*pow(xi1, 32) + 39147974586004.8*pow(xi1, 30) - 22396734632040.0*pow(xi1, 28) + 10395673205955.8*pow(xi1, 26) - 3908620671560.13*pow(xi1, 24) + 1184931540983.06*pow(xi1, 22) - 287389625108.033*pow(xi1, 20) + 55130639039.3158*pow(xi1, 18) - 8233581071.61553*pow(xi1, 16) + 936988776.947738*pow(xi1, 14) - 78914666.8737741*pow(xi1, 12) + 4724180.42568061*pow(xi1, 10) - 189726.537067971*pow(xi1, 8) + 4682.51548749786*pow(xi1, 6) - 61.3114870538624*pow(xi1, 4) + 0.28672558248104*pow(xi1, 2) + 39513881861.3416*pow(xi2, 48) - 473939816873.48*pow(xi2, 46) + 2664641921512.91*pow(xi2, 44) - 9331688393323.42*pow(xi2, 42) + 22814742457657.3*pow(xi2, 40) - 41365417755535.0*pow(xi2, 38) + 57671165870739.0*pow(xi2, 36) - 63268091738868.2*pow(xi2, 34) + 55432667648218.2*pow(xi2, 32) - 39147974586004.8*pow(xi2, 30) + 22396734632040.0*pow(xi2, 28) - 10395673205955.8*pow(xi2, 26) + 3908620671560.13*pow(xi2, 24) - 1184931540983.06*pow(xi2, 22) + 287389625108.033*pow(xi2, 20) - 55130639039.3158*pow(xi2, 18) + 8233581071.61553*pow(xi2, 16) - 936988776.947738*pow(xi2, 14) + 78914666.8737741*pow(xi2, 12) - 4724180.42568061*pow(xi2, 10) + 189726.537067971*pow(xi2, 8) - 4682.51548749786*pow(xi2, 6) + 61.3114870538624*pow(xi2, 4) - 0.28672558248104*pow(xi2, 2); case 29: return -75981341991.8768*pow(xi1, 49) + 930343104637.766*pow(xi1, 47) - 5347021071237.98*pow(xi1, 45) + 19170777097011.4*pow(xi1, 43) - 48064836289803.9*pow(xi1, 41) + 89534811535571.6*pow(xi1, 39) - 128518154466020.0*pow(xi1, 37) + 145501072157689.0*pow(xi1, 35) - 131912174618258.0*pow(xi1, 33) + 96692459335021.2*pow(xi1, 31) - 57617974678786.9*pow(xi1, 29) + 27969551245737.2*pow(xi1, 27) - 11050657441547.3*pow(xi1, 25) + 3540321435715.92*pow(xi1, 23) - 913580894724.717*pow(xi1, 21) + 188008155558.22*pow(xi1, 19) - 30431272882.66*pow(xi1, 17) + 3802262020.28662*pow(xi1, 15) - 357585352.728971*pow(xi1, 13) + 24455846.7974416*pow(xi1, 11) - 1159047.64875872*pow(xi1, 9) + 35465.8737443918*pow(xi1, 7) - 626.552742837569*pow(xi1, 5) + 5.16106048465872*pow(xi1, 3) + 75981341991.8768*pow(xi2, 49) - 930343104637.766*pow(xi2, 47) + 5347021071237.98*pow(xi2, 45) - 19170777097011.4*pow(xi2, 43) + 48064836289803.9*pow(xi2, 41) - 89534811535571.6*pow(xi2, 39) + 128518154466020.0*pow(xi2, 37) - 145501072157689.0*pow(xi2, 35) + 131912174618258.0*pow(xi2, 33) - 96692459335021.2*pow(xi2, 31) + 57617974678786.9*pow(xi2, 29) - 27969551245737.2*pow(xi2, 27) + 11050657441547.3*pow(xi2, 25) - 3540321435715.92*pow(xi2, 23) + 913580894724.717*pow(xi2, 21) - 188008155558.22*pow(xi2, 19) + 30431272882.66*pow(xi2, 17) - 3802262020.28662*pow(xi2, 15) + 357585352.728971*pow(xi2, 13) - 24455846.7974416*pow(xi2, 11) + 1159047.64875872*pow(xi2, 9) - 35465.8737443918*pow(xi2, 7) + 626.552742837569*pow(xi2, 5) - 5.16106048465872*pow(xi2, 3); default: return 0.; } case 24: switch(j) { case 0: return -31353.5178261995*pow(xi1, 24)*y1t + 183746.197493076*pow(xi1, 22)*y1t - 468328.722878695*pow(xi1, 20)*y1t + 680477.631533146*pow(xi1, 18)*y1t - 620705.947682261*pow(xi1, 16)*y1t + 368876.677479744*pow(xi1, 14)*y1t - 143452.041242123*pow(xi1, 12)*y1t + 35697.7429819107*pow(xi1, 10)*y1t - 5385.43536365032*pow(xi1, 8)*y1t + 443.245708942413*pow(xi1, 6)*y1t - 15.9568455219269*pow(xi1, 4)*y1t + 0.12614107131958*pow(xi1, 2)*y1t + 31353.5178261995*pow(xi2, 24)*y1t - 183746.197493076*pow(xi2, 22)*y1t + 468328.722878695*pow(xi2, 20)*y1t - 680477.631533146*pow(xi2, 18)*y1t + 620705.947682261*pow(xi2, 16)*y1t - 368876.677479744*pow(xi2, 14)*y1t + 143452.041242123*pow(xi2, 12)*y1t - 35697.7429819107*pow(xi2, 10)*y1t + 5385.43536365032*pow(xi2, 8)*y1t - 443.245708942413*pow(xi2, 6)*y1t + 15.9568455219269*pow(xi2, 4)*y1t - 0.12614107131958*pow(xi2, 2)*y1t; case 1: return -15676.7589130998*pow(xi1, 24)*y1r + 5452.78570890427*pow(xi1, 23)*y1r + 91873.0987465382*pow(xi1, 22)*y1r - 32082.669403553*pow(xi1, 21)*y1r - 234164.361439347*pow(xi1, 20)*y1r + 82162.9338383675*pow(xi1, 19)*y1r + 340238.815766573*pow(xi1, 18)*y1r - 120084.287917614*pow(xi1, 17)*y1r - 310352.973841131*pow(xi1, 16)*y1r + 110347.724032402*pow(xi1, 15)*y1r + 184438.338739872*pow(xi1, 14)*y1r - 66208.6344194412*pow(xi1, 13)*y1r - 71726.0206210613*pow(xi1, 12)*y1r + 26082.1893167496*pow(xi1, 11)*y1r + 17848.8714909554*pow(xi1, 10)*y1r - 6610.69314479828*pow(xi1, 9)*y1r - 2692.71768182516*pow(xi1, 8)*y1r + 1025.79721212387*pow(xi1, 7)*y1r + 221.622854471207*pow(xi1, 6)*y1r - 88.6491417884827*pow(xi1, 5)*y1r - 7.97842276096344*pow(xi1, 4)*y1r + 3.54596567153931*pow(xi1, 3)*y1r + 0.06307053565979*pow(xi1, 2)*y1r - 0.0420470237731934*xi1*y1r + 15676.7589130998*pow(xi2, 24)*y1r - 5452.78570890427*pow(xi2, 23)*y1r - 91873.0987465382*pow(xi2, 22)*y1r + 32082.669403553*pow(xi2, 21)*y1r + 234164.361439347*pow(xi2, 20)*y1r - 82162.9338383675*pow(xi2, 19)*y1r - 340238.815766573*pow(xi2, 18)*y1r + 120084.287917614*pow(xi2, 17)*y1r + 310352.973841131*pow(xi2, 16)*y1r - 110347.724032402*pow(xi2, 15)*y1r - 184438.338739872*pow(xi2, 14)*y1r + 66208.6344194412*pow(xi2, 13)*y1r + 71726.0206210613*pow(xi2, 12)*y1r - 26082.1893167496*pow(xi2, 11)*y1r - 17848.8714909554*pow(xi2, 10)*y1r + 6610.69314479828*pow(xi2, 9)*y1r + 2692.71768182516*pow(xi2, 8)*y1r - 1025.79721212387*pow(xi2, 7)*y1r - 221.622854471207*pow(xi2, 6)*y1r + 88.6491417884827*pow(xi2, 5)*y1r + 7.97842276096344*pow(xi2, 4)*y1r - 3.54596567153931*pow(xi2, 3)*y1r - 0.06307053565979*pow(xi2, 2)*y1r + 0.0420470237731934*xi2*y1r; case 2: return 31353.5178261995*pow(xi1, 24)*y2t - 183746.197493076*pow(xi1, 22)*y2t + 468328.722878695*pow(xi1, 20)*y2t - 680477.631533146*pow(xi1, 18)*y2t + 620705.947682261*pow(xi1, 16)*y2t - 368876.677479744*pow(xi1, 14)*y2t + 143452.041242123*pow(xi1, 12)*y2t - 35697.7429819107*pow(xi1, 10)*y2t + 5385.43536365032*pow(xi1, 8)*y2t - 443.245708942413*pow(xi1, 6)*y2t + 15.9568455219269*pow(xi1, 4)*y2t - 0.12614107131958*pow(xi1, 2)*y2t - 31353.5178261995*pow(xi2, 24)*y2t + 183746.197493076*pow(xi2, 22)*y2t - 468328.722878695*pow(xi2, 20)*y2t + 680477.631533146*pow(xi2, 18)*y2t - 620705.947682261*pow(xi2, 16)*y2t + 368876.677479744*pow(xi2, 14)*y2t - 143452.041242123*pow(xi2, 12)*y2t + 35697.7429819107*pow(xi2, 10)*y2t - 5385.43536365032*pow(xi2, 8)*y2t + 443.245708942413*pow(xi2, 6)*y2t - 15.9568455219269*pow(xi2, 4)*y2t + 0.12614107131958*pow(xi2, 2)*y2t; case 3: return -15676.7589130998*pow(xi1, 24)*y2r - 5452.78570890427*pow(xi1, 23)*y2r + 91873.0987465382*pow(xi1, 22)*y2r + 32082.669403553*pow(xi1, 21)*y2r - 234164.361439347*pow(xi1, 20)*y2r - 82162.9338383675*pow(xi1, 19)*y2r + 340238.815766573*pow(xi1, 18)*y2r + 120084.287917614*pow(xi1, 17)*y2r - 310352.973841131*pow(xi1, 16)*y2r - 110347.724032402*pow(xi1, 15)*y2r + 184438.338739872*pow(xi1, 14)*y2r + 66208.6344194412*pow(xi1, 13)*y2r - 71726.0206210613*pow(xi1, 12)*y2r - 26082.1893167496*pow(xi1, 11)*y2r + 17848.8714909554*pow(xi1, 10)*y2r + 6610.69314479828*pow(xi1, 9)*y2r - 2692.71768182516*pow(xi1, 8)*y2r - 1025.79721212387*pow(xi1, 7)*y2r + 221.622854471207*pow(xi1, 6)*y2r + 88.6491417884827*pow(xi1, 5)*y2r - 7.97842276096344*pow(xi1, 4)*y2r - 3.54596567153931*pow(xi1, 3)*y2r + 0.06307053565979*pow(xi1, 2)*y2r + 0.0420470237731934*xi1*y2r + 15676.7589130998*pow(xi2, 24)*y2r + 5452.78570890427*pow(xi2, 23)*y2r - 91873.0987465382*pow(xi2, 22)*y2r - 32082.669403553*pow(xi2, 21)*y2r + 234164.361439347*pow(xi2, 20)*y2r + 82162.9338383675*pow(xi2, 19)*y2r - 340238.815766573*pow(xi2, 18)*y2r - 120084.287917614*pow(xi2, 17)*y2r + 310352.973841131*pow(xi2, 16)*y2r + 110347.724032402*pow(xi2, 15)*y2r - 184438.338739872*pow(xi2, 14)*y2r - 66208.6344194412*pow(xi2, 13)*y2r + 71726.0206210613*pow(xi2, 12)*y2r + 26082.1893167496*pow(xi2, 11)*y2r - 17848.8714909554*pow(xi2, 10)*y2r - 6610.69314479828*pow(xi2, 9)*y2r + 2692.71768182516*pow(xi2, 8)*y2r + 1025.79721212387*pow(xi2, 7)*y2r - 221.622854471207*pow(xi2, 6)*y2r - 88.6491417884827*pow(xi2, 5)*y2r + 7.97842276096344*pow(xi2, 4)*y2r + 3.54596567153931*pow(xi2, 3)*y2r - 0.06307053565979*pow(xi2, 2)*y2r - 0.0420470237731934*xi2*y2r; case 4: return -30099.3771131516*pow(xi1, 25) + 186662.80380249*pow(xi1, 23) - 510192.693929672*pow(xi1, 21) + 808988.887023926*pow(xi1, 19) - 824362.408947945*pow(xi1, 17) + 564980.347045898*pow(xi1, 15) - 264834.537677765*pow(xi1, 13) + 84616.872253418*pow(xi1, 11) - 18008.4399461746*pow(xi1, 9) + 2431.51931762695*pow(xi1, 7) - 190.063759994507*pow(xi1, 5) + 7.176025390625*pow(xi1, 3) - 0.0840940475463867*xi1 + 30099.3771131516*pow(xi2, 25) - 186662.80380249*pow(xi2, 23) + 510192.693929672*pow(xi2, 21) - 808988.887023926*pow(xi2, 19) + 824362.408947945*pow(xi2, 17) - 564980.347045898*pow(xi2, 15) + 264834.537677765*pow(xi2, 13) - 84616.872253418*pow(xi2, 11) + 18008.4399461746*pow(xi2, 9) - 2431.51931762695*pow(xi2, 7) + 190.063759994507*pow(xi2, 5) - 7.176025390625*pow(xi2, 3) + 0.0840940475463867*xi2; case 5: return -48236.1812710762*pow(xi1, 26) + 312076.875107288*pow(xi1, 24) - 893335.171551704*pow(xi1, 22) + 1489045.17017841*pow(xi1, 20) - 1600041.99846983*pow(xi1, 18) + 1158651.10234022*pow(xi1, 16) - 573808.164968491*pow(xi1, 14) + 193032.23982811*pow(xi1, 12) - 42878.3234667778*pow(xi1, 10) + 5939.49249982834*pow(xi1, 8) - 460.97553730011*pow(xi1, 6) + 16.0619630813599*pow(xi1, 4) - 0.12614107131958*pow(xi1, 2) + 48236.1812710762*pow(xi2, 26) - 312076.875107288*pow(xi2, 24) + 893335.171551704*pow(xi2, 22) - 1489045.17017841*pow(xi2, 20) + 1600041.99846983*pow(xi2, 18) - 1158651.10234022*pow(xi2, 16) + 573808.164968491*pow(xi2, 14) - 193032.23982811*pow(xi2, 12) + 42878.3234667778*pow(xi2, 10) - 5939.49249982834*pow(xi2, 8) + 460.97553730011*pow(xi2, 6) - 16.0619630813599*pow(xi2, 4) + 0.12614107131958*pow(xi2, 2); case 6: return -81286.8980679247*pow(xi1, 27) + 546863.683015108*pow(xi1, 25) - 1635362.49871016*pow(xi1, 23) + 2864386.47074461*pow(xi1, 21) - 3259442.8732574*pow(xi1, 19) + 2526638.3282125*pow(xi1, 17) - 1360955.26306629*pow(xi1, 15) + 510447.213749886*pow(xi1, 13) - 131678.168796301*pow(xi1, 11) + 22745.5405149195*pow(xi1, 9) - 2515.10279417038*pow(xi1, 7) + 165.034568309784*pow(xi1, 5) - 5.52918362617493*pow(xi1, 3) + 0.06307053565979*xi1 + 81286.8980679247*pow(xi2, 27) - 546863.683015108*pow(xi2, 25) + 1635362.49871016*pow(xi2, 23) - 2864386.47074461*pow(xi2, 21) + 3259442.8732574*pow(xi2, 19) - 2526638.3282125*pow(xi2, 17) + 1360955.26306629*pow(xi2, 15) - 510447.213749886*pow(xi2, 13) + 131678.168796301*pow(xi2, 11) - 22745.5405149195*pow(xi2, 9) + 2515.10279417038*pow(xi2, 7) - 165.034568309784*pow(xi2, 5) + 5.52918362617493*pow(xi2, 3) - 0.06307053565979*xi2; case 7: return -141090.830217898*pow(xi1, 28) + 985083.781004548*pow(xi1, 26) - 3070661.81036085*pow(xi1, 24) + 5636204.89152074*pow(xi1, 22) - 6764883.44941288*pow(xi1, 20) + 5575318.75673711*pow(xi1, 18) - 3223532.88829654*pow(xi1, 16) + 1312222.58924246*pow(xi1, 14) - 371694.770376384*pow(xi1, 12) + 71150.4344075918*pow(xi1, 10) - 8712.88090068102*pow(xi1, 8) + 616.332282304764*pow(xi1, 6) - 20.313968360424*pow(xi1, 4) + 0.157676339149475*pow(xi1, 2) + 141090.830217898*pow(xi2, 28) - 985083.781004548*pow(xi2, 26) + 3070661.81036085*pow(xi2, 24) - 5636204.89152074*pow(xi2, 22) + 6764883.44941288*pow(xi2, 20) - 5575318.75673711*pow(xi2, 18) + 3223532.88829654*pow(xi2, 16) - 1312222.58924246*pow(xi2, 14) + 371694.770376384*pow(xi2, 12) - 71150.4344075918*pow(xi2, 10) + 8712.88090068102*pow(xi2, 8) - 616.332282304764*pow(xi2, 6) + 20.313968360424*pow(xi2, 4) - 0.157676339149475*pow(xi2, 2); case 8: return -249746.986822486*pow(xi1, 29) + 1806837.60868192*pow(xi1, 27) - 5860084.52208102*pow(xi1, 25) + 11246581.6746354*pow(xi1, 23) - 14198689.9865001*pow(xi1, 21) + 12399650.7613456*pow(xi1, 19) - 7667706.33566916*pow(xi1, 17) + 3379488.03859234*pow(xi1, 15) - 1054394.5972234*pow(xi1, 13) + 228315.864676237*pow(xi1, 11) - 33153.3859709501*pow(xi1, 9) + 3064.44115304947*pow(xi1, 7) - 167.322627186775*pow(xi1, 5) + 4.80036854743958*pow(xi1, 3) - 0.0525587797164917*xi1 + 249746.986822486*pow(xi2, 29) - 1806837.60868192*pow(xi2, 27) + 5860084.52208102*pow(xi2, 25) - 11246581.6746354*pow(xi2, 23) + 14198689.9865001*pow(xi2, 21) - 12399650.7613456*pow(xi2, 19) + 7667706.33566916*pow(xi2, 17) - 3379488.03859234*pow(xi2, 15) + 1054394.5972234*pow(xi2, 13) - 228315.864676237*pow(xi2, 11) + 33153.3859709501*pow(xi2, 9) - 3064.44115304947*pow(xi2, 7) + 167.322627186775*pow(xi2, 5) - 4.80036854743958*pow(xi2, 3) + 0.0525587797164917*xi2; case 9: return -448355.304914653*pow(xi1, 30) + 3356649.28634673*pow(xi1, 28) - 11308794.1731486*pow(xi1, 26) + 22648233.4607616*pow(xi1, 24) - 30001437.7402291*pow(xi1, 22) + 27674998.2284423*pow(xi1, 20) - 18227758.1421468*pow(xi1, 18) + 8646958.25716048*pow(xi1, 16) - 2943054.94313389*pow(xi1, 14) + 707276.096616685*pow(xi1, 12) - 116399.603186524*pow(xi1, 10) + 12447.9005028605*pow(xi1, 8) - 787.236498335997*pow(xi1, 6) + 24.0982005000114*pow(xi1, 4) - 0.183955729007721*pow(xi1, 2) + 448355.304914653*pow(xi2, 30) - 3356649.28634673*pow(xi2, 28) + 11308794.1731486*pow(xi2, 26) - 22648233.4607616*pow(xi2, 24) + 30001437.7402291*pow(xi2, 22) - 27674998.2284423*pow(xi2, 20) + 18227758.1421468*pow(xi2, 18) - 8646958.25716048*pow(xi2, 16) + 2943054.94313389*pow(xi2, 14) - 707276.096616685*pow(xi2, 12) + 116399.603186524*pow(xi2, 10) - 12447.9005028605*pow(xi2, 8) + 787.236498335997*pow(xi2, 6) - 24.0982005000114*pow(xi2, 4) + 0.183955729007721*pow(xi2, 2); case 10: return -813547.932304814*pow(xi1, 31) + 6295221.28702842*pow(xi1, 29) - 21999639.0535594*pow(xi1, 27) + 45894394.1861918*pow(xi1, 25) - 63647685.3472386*pow(xi1, 23) + 61843493.4318345*pow(xi1, 21) - 43227949.0107802*pow(xi1, 19) + 21968581.144582*pow(xi1, 17) - 8107398.1842526*pow(xi1, 15) + 2146726.9782532*pow(xi1, 13) - 398184.796114191*pow(xi1, 11) + 49755.7135626823*pow(xi1, 9) - 3946.58752410114*pow(xi1, 7) + 182.554599538445*pow(xi1, 5) - 4.43026714026928*pow(xi1, 3) + 0.0459889322519302*xi1 + 813547.932304814*pow(xi2, 31) - 6295221.28702842*pow(xi2, 29) + 21999639.0535594*pow(xi2, 27) - 45894394.1861918*pow(xi2, 25) + 63647685.3472386*pow(xi2, 23) - 61843493.4318345*pow(xi2, 21) + 43227949.0107802*pow(xi2, 19) - 21968581.144582*pow(xi2, 17) + 8107398.1842526*pow(xi2, 15) - 2146726.9782532*pow(xi2, 13) + 398184.796114191*pow(xi2, 11) - 49755.7135626823*pow(xi2, 9) + 3946.58752410114*pow(xi2, 7) - 182.554599538445*pow(xi2, 5) + 4.43026714026928*pow(xi2, 3) - 0.0459889322519302*xi2; case 11: return -1488679.72334943*pow(xi1, 32) + 11893145.806239*pow(xi1, 30) - 43054459.3877993*pow(xi1, 28) + 93407464.6031898*pow(xi1, 26) - 135345860.163132*pow(xi1, 24) + 138173637.360835*pow(xi1, 22) - 102170151.372404*pow(xi1, 20) + 55393315.5756378*pow(xi1, 18) - 22043036.0687566*pow(xi1, 16) + 6381339.80813455*pow(xi1, 14) - 1318139.46433848*pow(xi1, 12) + 188051.027000137*pow(xi1, 10) - 17587.6326048765*pow(xi1, 8) + 987.120238535106*pow(xi1, 6) - 27.696834448725*pow(xi1, 4) + 0.206950195133686*pow(xi1, 2) + 1488679.72334943*pow(xi2, 32) - 11893145.806239*pow(xi2, 30) + 43054459.3877993*pow(xi2, 28) - 93407464.6031898*pow(xi2, 26) + 135345860.163132*pow(xi2, 24) - 138173637.360835*pow(xi2, 22) + 102170151.372404*pow(xi2, 20) - 55393315.5756378*pow(xi2, 18) + 22043036.0687566*pow(xi2, 16) - 6381339.80813455*pow(xi2, 14) + 1318139.46433848*pow(xi2, 12) - 188051.027000137*pow(xi2, 10) + 17587.6326048765*pow(xi2, 8) - 987.120238535106*pow(xi2, 6) + 27.696834448725*pow(xi2, 4) - 0.206950195133686*pow(xi2, 2); case 12: return -2742779.61150441*pow(xi1, 33) + 22600235.4279654*pow(xi1, 31) - 84648362.5869781*pow(xi1, 29) + 190700740.01478*pow(xi1, 27) - 288175803.705125*pow(xi1, 25) + 308398483.842205*pow(xi1, 23) - 240538465.619668*pow(xi1, 21) + 138613122.14585*pow(xi1, 19) - 59189858.1177827*pow(xi1, 17) + 18612900.9589193*pow(xi1, 15) - 4243868.11019075*pow(xi1, 13) + 683181.726775736*pow(xi1, 11) - 74483.69949465*pow(xi1, 9) + 5159.52458873391*pow(xi1, 7) - 206.398327946663*pow(xi1, 5) + 4.24937734007835*pow(xi1, 3) - 0.0413900390267372*xi1 + 2742779.61150441*pow(xi2, 33) - 22600235.4279654*pow(xi2, 31) + 84648362.5869781*pow(xi2, 29) - 190700740.01478*pow(xi2, 27) + 288175803.705125*pow(xi2, 25) - 308398483.842205*pow(xi2, 23) + 240538465.619668*pow(xi2, 21) - 138613122.14585*pow(xi2, 19) + 59189858.1177827*pow(xi2, 17) - 18612900.9589193*pow(xi2, 15) + 4243868.11019075*pow(xi2, 13) - 683181.726775736*pow(xi2, 11) + 74483.69949465*pow(xi2, 9) - 5159.52458873391*pow(xi2, 7) + 206.398327946663*pow(xi2, 5) - 4.24937734007835*pow(xi2, 3) + 0.0413900390267372*xi2; case 13: return -5082209.28014053*pow(xi1, 34) + 43150939.7019241*pow(xi1, 32) - 167026656.234368*pow(xi1, 30) + 390203143.561572*pow(xi1, 28) - 613909922.174896*pow(xi1, 26) + 687270735.359609*pow(xi1, 24) - 563949022.965526*pow(xi1, 22) + 344275754.593978*pow(xi1, 20) - 157078667.432643*pow(xi1, 18) + 53351986.2105718*pow(xi1, 16) - 13324438.7481877*pow(xi1, 14) + 2393876.62580161*pow(xi1, 12) - 298932.017313659*pow(xi1, 10) + 24607.5082151592*pow(xi1, 8) - 1225.7430113107*pow(xi1, 6) + 31.2632761448622*pow(xi1, 4) - 0.227645214647055*pow(xi1, 2) + 5082209.28014053*pow(xi2, 34) - 43150939.7019241*pow(xi2, 32) + 167026656.234368*pow(xi2, 30) - 390203143.561572*pow(xi2, 28) + 613909922.174896*pow(xi2, 26) - 687270735.359609*pow(xi2, 24) + 563949022.965526*pow(xi2, 22) - 344275754.593978*pow(xi2, 20) + 157078667.432643*pow(xi2, 18) - 53351986.2105718*pow(xi2, 16) + 13324438.7481877*pow(xi2, 14) - 2393876.62580161*pow(xi2, 12) + 298932.017313659*pow(xi2, 10) - 24607.5082151592*pow(xi2, 8) + 1225.7430113107*pow(xi2, 6) - 31.2632761448622*pow(xi2, 4) + 0.227645214647055*pow(xi2, 2); case 14: return -9462589.65969023*pow(xi1, 35) + 82713940.9585662*pow(xi1, 33) - 330524390.007123*pow(xi1, 31) + 799694402.640513*pow(xi1, 29) - 1307889670.50919*pow(xi1, 27) + 1528739306.45805*pow(xi1, 25) - 1316605152.29215*pow(xi1, 23) + 848933462.981639*pow(xi1, 21) - 412283819.498231*pow(xi1, 19) + 150500168.595666*pow(xi1, 17) - 40897766.306323*pow(xi1, 15) + 8125532.61845206*pow(xi1, 13) - 1147116.31001519*pow(xi1, 11) + 110200.627421848*pow(xi1, 9) - 6743.28486777842*pow(xi1, 7) + 237.135490706563*pow(xi1, 5) - 4.18614255823195*pow(xi1, 3) + 0.0379408691078424*xi1 + 9462589.65969023*pow(xi2, 35) - 82713940.9585662*pow(xi2, 33) + 330524390.007123*pow(xi2, 31) - 799694402.640513*pow(xi2, 29) + 1307889670.50919*pow(xi2, 27) - 1528739306.45805*pow(xi2, 25) + 1316605152.29215*pow(xi2, 23) - 848933462.981639*pow(xi2, 21) + 412283819.498231*pow(xi2, 19) - 150500168.595666*pow(xi2, 17) + 40897766.306323*pow(xi2, 15) - 8125532.61845206*pow(xi2, 13) + 1147116.31001519*pow(xi2, 11) - 110200.627421848*pow(xi2, 9) + 6743.28486777842*pow(xi2, 7) - 237.135490706563*pow(xi2, 5) + 4.18614255823195*pow(xi2, 3) - 0.0379408691078424*xi2; case 15: return -17691807.5902328*pow(xi1, 36) + 159078150.8532*pow(xi1, 34) - 655592218.992931*pow(xi1, 32) + 1640789841.43268*pow(xi1, 30) - 2785532373.16041*pow(xi1, 28) + 3393496929.74806*pow(xi1, 26) - 3060839533.17806*pow(xi1, 24) + 2078925210.23867*pow(xi1, 22) - 1071003828.3239*pow(xi1, 20) + 418340016.31884*pow(xi1, 18) - 122981940.948562*pow(xi1, 16) + 26809361.5972113*pow(xi1, 14) - 4231892.43185647*pow(xi1, 12) + 466669.101904269*pow(xi1, 10) - 34061.4965434279*pow(xi1, 8) + 1511.47991221398*pow(xi1, 6) - 34.8961143619381*pow(xi1, 4) + 0.246615649200976*pow(xi1, 2) + 17691807.5902328*pow(xi2, 36) - 159078150.8532*pow(xi2, 34) + 655592218.992931*pow(xi2, 32) - 1640789841.43268*pow(xi2, 30) + 2785532373.16041*pow(xi2, 28) - 3393496929.74806*pow(xi2, 26) + 3060839533.17806*pow(xi2, 24) - 2078925210.23867*pow(xi2, 22) + 1071003828.3239*pow(xi2, 20) - 418340016.31884*pow(xi2, 18) + 122981940.948562*pow(xi2, 16) - 26809361.5972113*pow(xi2, 14) + 4231892.43185647*pow(xi2, 12) - 466669.101904269*pow(xi2, 10) + 34061.4965434279*pow(xi2, 8) - 1511.47991221398*pow(xi2, 6) + 34.8961143619381*pow(xi2, 4) - 0.246615649200976*pow(xi2, 2); case 16: return -33197754.7832167*pow(xi1, 37) + 306814736.282442*pow(xi1, 35) - 1302848393.68207*pow(xi1, 33) + 3369219126.11369*pow(xi1, 31) - 5929426758.38608*pow(xi1, 29) + 7516677563.57637*pow(xi1, 27) - 7086469405.995*pow(xi1, 25) + 5057597873.96622*pow(xi1, 23) - 2755445247.24114*pow(xi1, 21) + 1147170493.78579*pow(xi1, 19) - 362977881.300088*pow(xi1, 17) + 86233348.1594231*pow(xi1, 15) - 15078836.0463731*pow(xi1, 13) + 1883365.51848263*pow(xi1, 11) - 160720.290966164*pow(xi1, 9) + 8760.19049741328*pow(xi1, 7) - 274.036960671656*pow(xi1, 5) + 4.20420963875949*pow(xi1, 3) - 0.0352308070287108*xi1 + 33197754.7832167*pow(xi2, 37) - 306814736.282442*pow(xi2, 35) + 1302848393.68207*pow(xi2, 33) - 3369219126.11369*pow(xi2, 31) + 5929426758.38608*pow(xi2, 29) - 7516677563.57637*pow(xi2, 27) + 7086469405.995*pow(xi2, 25) - 5057597873.96622*pow(xi2, 23) + 2755445247.24114*pow(xi2, 21) - 1147170493.78579*pow(xi2, 19) + 362977881.300088*pow(xi2, 17) - 86233348.1594231*pow(xi2, 15) + 15078836.0463731*pow(xi2, 13) - 1883365.51848263*pow(xi2, 11) + 160720.290966164*pow(xi2, 9) - 8760.19049741328*pow(xi2, 7) + 274.036960671656*pow(xi2, 5) - 4.20420963875949*pow(xi2, 3) + 0.0352308070287108*xi2; case 17: return -62493317.3375291*pow(xi1, 38) + 593210422.874364*pow(xi1, 36) - 2593229632.47033*pow(xi1, 34) + 6922152726.01049*pow(xi1, 32) - 12612843638.232*pow(xi1, 30) + 16613064815.6171*pow(xi1, 28) - 16340828722.4991*pow(xi1, 26) + 12227388514.1203*pow(xi1, 24) - 7025379152.49504*pow(xi1, 22) + 3106573380.0222*pow(xi1, 20) - 1053221405.90108*pow(xi1, 18) + 271081088.424279*pow(xi1, 16) - 52092171.7263622*pow(xi1, 14) + 7287508.49415471*pow(xi1, 12) - 715211.134725111*pow(xi1, 10) + 46610.0523653235*pow(xi1, 8) - 1852.21857692627*pow(xi1, 6) + 38.6658107140101*pow(xi1, 4) - 0.264231052715331*pow(xi1, 2) + 62493317.3375291*pow(xi2, 38) - 593210422.874364*pow(xi2, 36) + 2593229632.47033*pow(xi2, 34) - 6922152726.01049*pow(xi2, 32) + 12612843638.232*pow(xi2, 30) - 16613064815.6171*pow(xi2, 28) + 16340828722.4991*pow(xi2, 26) - 12227388514.1203*pow(xi2, 24) + 7025379152.49504*pow(xi2, 22) - 3106573380.0222*pow(xi2, 20) + 1053221405.90108*pow(xi2, 18) - 271081088.424279*pow(xi2, 16) + 52092171.7263622*pow(xi2, 14) - 7287508.49415471*pow(xi2, 12) + 715211.134725111*pow(xi2, 10) - 46610.0523653235*pow(xi2, 8) + 1852.21857692627*pow(xi2, 6) - 38.6658107140101*pow(xi2, 4) + 0.264231052715331*pow(xi2, 2); case 18: return -117976166.383989*pow(xi1, 39) + 1149404705.7981*pow(xi1, 37) - 5168467444.95001*pow(xi1, 35) + 14226677005.8239*pow(xi1, 33) - 26807724752.4166*pow(xi1, 31) + 36636726077.2706*pow(xi1, 29) - 37534635100.886*pow(xi1, 27) + 29386507704.384*pow(xi1, 25) - 17761358284.0216*pow(xi1, 23) + 8315597465.75811*pow(xi1, 21) - 3008687944.80839*pow(xi1, 19) + 834616101.433694*pow(xi1, 17) - 175043774.437964*pow(xi1, 15) + 27169837.4464822*pow(xi1, 13) - 3025402.05860465*pow(xi1, 11) + 230948.140743281*pow(xi1, 9) - 11288.6844422918*pow(xi1, 7) + 316.841657236393*pow(xi1, 5) - 4.28274497942766*pow(xi1, 3) + 0.0330288815894164*xi1 + 117976166.383989*pow(xi2, 39) - 1149404705.7981*pow(xi2, 37) + 5168467444.95001*pow(xi2, 35) - 14226677005.8239*pow(xi2, 33) + 26807724752.4166*pow(xi2, 31) - 36636726077.2706*pow(xi2, 29) + 37534635100.886*pow(xi2, 27) - 29386507704.384*pow(xi2, 25) + 17761358284.0216*pow(xi2, 23) - 8315597465.75811*pow(xi2, 21) + 3008687944.80839*pow(xi2, 19) - 834616101.433694*pow(xi2, 17) + 175043774.437964*pow(xi2, 15) - 27169837.4464822*pow(xi2, 13) + 3025402.05860465*pow(xi2, 11) - 230948.140743281*pow(xi2, 9) + 11288.6844422918*pow(xi2, 7) - 316.841657236393*pow(xi2, 5) + 4.28274497942766*pow(xi2, 3) - 0.0330288815894164*xi2; case 19: return -223287244.317932*pow(xi1, 40) + 2231298889.66052*pow(xi1, 38) - 10312531213.2237*pow(xi1, 36) + 29244927646.0313*pow(xi1, 34) - 56927287899.7051*pow(xi1, 32) + 80618650592.7439*pow(xi1, 30) - 85894985109.8443*pow(xi1, 28) + 70229985530.9422*pow(xi1, 26) - 44549480703.4182*pow(xi1, 24) + 22020434506.5471*pow(xi1, 22) - 8472208302.94696*pow(xi1, 20) + 2521396724.84906*pow(xi1, 18) - 573689069.79194*pow(xi1, 16) + 98002129.1228823*pow(xi1, 14) - 12242267.5399568*pow(xi1, 12) + 1076619.87856925*pow(xi1, 10) - 63042.4471244913*pow(xi1, 8) + 2255.80251793066*pow(xi1, 6) - 42.626524097941*pow(xi1, 4) + 0.28074549351004*pow(xi1, 2) + 223287244.317932*pow(xi2, 40) - 2231298889.66052*pow(xi2, 38) + 10312531213.2237*pow(xi2, 36) - 29244927646.0313*pow(xi2, 34) + 56927287899.7051*pow(xi2, 32) - 80618650592.7439*pow(xi2, 30) + 85894985109.8443*pow(xi2, 28) - 70229985530.9422*pow(xi2, 26) + 44549480703.4182*pow(xi2, 24) - 22020434506.5471*pow(xi2, 22) + 8472208302.94696*pow(xi2, 20) - 2521396724.84906*pow(xi2, 18) + 573689069.79194*pow(xi2, 16) - 98002129.1228823*pow(xi2, 14) + 12242267.5399568*pow(xi2, 12) - 1076619.87856925*pow(xi2, 10) + 63042.4471244913*pow(xi2, 8) - 2255.80251793066*pow(xi2, 6) + 42.626524097941*pow(xi2, 4) - 0.28074549351004*pow(xi2, 2); case 20: return -423580138.272501*pow(xi1, 41) + 4338811569.17533*pow(xi1, 39) - 20595743075.9893*pow(xi1, 37) + 60121749251.6231*pow(xi1, 35) - 120773953279.355*pow(xi1, 33) + 177020168578.682*pow(xi1, 31) - 195860136712.149*pow(xi1, 29) + 166949967786.963*pow(xi1, 27) - 110912954589.41*pow(xi1, 25) + 57730496761.096*pow(xi1, 23) - 23542894463.8585*pow(xi1, 21) + 7486216791.89479*pow(xi1, 19) - 1838137033.97982*pow(xi1, 17) + 343174836.118123*pow(xi1, 15) - 47633702.7455318*pow(xi1, 13) + 4760440.11342579*pow(xi1, 11) - 327079.942769009*pow(xi1, 9) + 14421.2061698267*pow(xi1, 7) - 365.547269320057*pow(xi1, 5) + 4.40874404623173*pow(xi1, 3) - 0.0311939437233377*xi1 + 423580138.272501*pow(xi2, 41) - 4338811569.17533*pow(xi2, 39) + 20595743075.9893*pow(xi2, 37) - 60121749251.6231*pow(xi2, 35) + 120773953279.355*pow(xi2, 33) - 177020168578.682*pow(xi2, 31) + 195860136712.149*pow(xi2, 29) - 166949967786.963*pow(xi2, 27) + 110912954589.41*pow(xi2, 25) - 57730496761.096*pow(xi2, 23) + 23542894463.8585*pow(xi2, 21) - 7486216791.89479*pow(xi2, 19) + 1838137033.97982*pow(xi2, 17) - 343174836.118123*pow(xi2, 15) + 47633702.7455318*pow(xi2, 13) - 4760440.11342579*pow(xi2, 11) + 327079.942769009*pow(xi2, 9) - 14421.2061698267*pow(xi2, 7) + 365.547269320057*pow(xi2, 5) - 4.40874404623173*pow(xi2, 3) + 0.0311939437233377*xi2; case 21: return -805226904.46038*pow(xi1, 42) + 8449568302.93278*pow(xi1, 40) - 41165901262.5445*pow(xi1, 38) + 123596762437.165*pow(xi1, 36) - 255979710020.842*pow(xi1, 34) + 387881992088.781*pow(xi1, 32) - 445073680723.189*pow(xi1, 30) + 394876109613.793*pow(xi1, 28) - 274214810169.403*pow(xi1, 26) + 149943044753.442*pow(xi1, 24) - 64624213069.4037*pow(xi1, 22) + 21875803667.7972*pow(xi1, 20) - 5769358869.07719*pow(xi1, 18) + 1170014757.05802*pow(xi1, 16) - 178978750.223936*pow(xi1, 14) + 20095740.8543639*pow(xi1, 12) - 1593206.31097129*pow(xi1, 10) + 84297.3998941569*pow(xi1, 8) - 2730.2887435151*pow(xi1, 6) + 46.8221095287299*pow(xi1, 4) - 0.296342465371708*pow(xi1, 2) + 805226904.46038*pow(xi2, 42) - 8449568302.93278*pow(xi2, 40) + 41165901262.5445*pow(xi2, 38) - 123596762437.165*pow(xi2, 36) + 255979710020.842*pow(xi2, 34) - 387881992088.781*pow(xi2, 32) + 445073680723.189*pow(xi2, 30) - 394876109613.793*pow(xi2, 28) + 274214810169.403*pow(xi2, 26) - 149943044753.442*pow(xi2, 24) + 64624213069.4037*pow(xi2, 22) - 21875803667.7972*pow(xi2, 20) + 5769358869.07719*pow(xi2, 18) - 1170014757.05802*pow(xi2, 16) + 178978750.223936*pow(xi2, 14) - 20095740.8543639*pow(xi2, 12) + 1593206.31097129*pow(xi2, 10) - 84297.3998941569*pow(xi2, 8) + 2730.2887435151*pow(xi2, 6) - 46.8221095287299*pow(xi2, 4) + 0.296342465371708*pow(xi2, 2); case 22: return -1533676359.89082*pow(xi1, 43) + 16477189610.109*pow(xi1, 41) - 82337083389.5511*pow(xi1, 39) + 254065759248.919*pow(xi1, 37) - 542014369628.522*pow(xi1, 35) + 848184840655.991*pow(xi1, 33) - 1008066267320.93*pow(xi1, 31) + 929523529356.303*pow(xi1, 29) - 673516946271.272*pow(xi1, 27) + 386060686638.382*pow(xi1, 25) - 175382178039.451*pow(xi1, 23) + 62992242266.5747*pow(xi1, 21) - 17770037336.7532*pow(xi1, 19) + 3893551383.46965*pow(xi1, 17) - 651757419.719781*pow(xi1, 15) + 81424351.1461102*pow(xi1, 13) - 7346738.38629451*pow(xi1, 11) + 456841.438780431*pow(xi1, 9) - 18263.6284754963*pow(xi1, 7) + 420.312396718873*pow(xi1, 5) - 4.57355204890337*pow(xi1, 3) + 0.0296342465371708*xi1 + 1533676359.89082*pow(xi2, 43) - 16477189610.109*pow(xi2, 41) + 82337083389.5511*pow(xi2, 39) - 254065759248.919*pow(xi2, 37) + 542014369628.522*pow(xi2, 35) - 848184840655.991*pow(xi2, 33) + 1008066267320.93*pow(xi2, 31) - 929523529356.303*pow(xi2, 29) + 673516946271.272*pow(xi2, 27) - 386060686638.382*pow(xi2, 25) + 175382178039.451*pow(xi2, 23) - 62992242266.5747*pow(xi2, 21) + 17770037336.7532*pow(xi2, 19) - 3893551383.46965*pow(xi2, 17) + 651757419.719781*pow(xi2, 15) - 81424351.1461102*pow(xi2, 13) + 7346738.38629451*pow(xi2, 11) - 456841.438780431*pow(xi2, 9) + 18263.6284754963*pow(xi2, 7) - 420.312396718873*pow(xi2, 5) + 4.57355204890337*pow(xi2, 3) - 0.0296342465371708*xi2; case 23: return -2926267773.25488*pow(xi1, 44) + 32170687453.9002*pow(xi1, 42) - 164781727359.808*pow(xi1, 40) + 522185265338.526*pow(xi1, 38) - 1146534774301.18*pow(xi1, 36) + 1851064835044.44*pow(xi1, 34) - 2276036756996.6*pow(xi1, 32) + 2178170928315.17*pow(xi1, 30) - 1644071226030.65*pow(xi1, 28) + 985904588081.376*pow(xi1, 26) - 470948522565.186*pow(xi1, 24) + 178941502904.888*pow(xi1, 22) - 53793287029.6419*pow(xi1, 20) + 12674006632.6617*pow(xi1, 18) - 2307248617.22092*pow(xi1, 16) + 318072208.243466*pow(xi1, 14) - 32287130.2272467*pow(xi1, 12) + 2320075.01478208*pow(xi1, 10) - 111483.603306741*pow(xi1, 8) + 3284.11659166017*pow(xi1, 6) - 51.2894721942084*pow(xi1, 4) + 0.311159588640294*pow(xi1, 2) + 2926267773.25488*pow(xi2, 44) - 32170687453.9002*pow(xi2, 42) + 164781727359.808*pow(xi2, 40) - 522185265338.526*pow(xi2, 38) + 1146534774301.18*pow(xi2, 36) - 1851064835044.44*pow(xi2, 34) + 2276036756996.6*pow(xi2, 32) - 2178170928315.17*pow(xi2, 30) + 1644071226030.65*pow(xi2, 28) - 985904588081.376*pow(xi2, 26) + 470948522565.186*pow(xi2, 24) - 178941502904.888*pow(xi2, 22) + 53793287029.6419*pow(xi2, 20) - 12674006632.6617*pow(xi2, 18) + 2307248617.22092*pow(xi2, 16) - 318072208.243466*pow(xi2, 14) + 32287130.2272467*pow(xi2, 12) - 2320075.01478208*pow(xi2, 10) + 111483.603306741*pow(xi2, 8) - 3284.11659166017*pow(xi2, 6) + 51.2894721942084*pow(xi2, 4) - 0.311159588640294*pow(xi2, 2); case 24: return -5592422855.55377*pow(xi1, 45) + 62880730755.5235*pow(xi1, 43) - 329946154449.194*pow(xi1, 41) + 1073059201467.59*pow(xi1, 39) - 2422905313949.18*pow(xi1, 37) + 4031996559106.4*pow(xi1, 35) - 5123441697247.83*pow(xi1, 33) + 5082245802862.89*pow(xi1, 31) - 3989877093289.8*pow(xi1, 29) + 2498527673418.84*pow(xi1, 27) - 1252183155949.86*pow(xi1, 25) + 501953070634.544*pow(xi1, 23) - 160263648668.943*pow(xi1, 21) + 40430445050.3462*pow(xi1, 19) - 7960922172.58466*pow(xi1, 17) + 1202372898.70999*pow(xi1, 15) - 135975549.161354*pow(xi1, 13) + 11135243.0726873*pow(xi1, 11) - 629764.60336879*pow(xi1, 9) + 22935.4251074434*pow(xi1, 7) - 481.405371571687*pow(xi1, 5) + 4.77111369248451*pow(xi1, 3) - 0.0282872353309358*xi1 + 5592422855.55377*pow(xi2, 45) - 62880730755.5235*pow(xi2, 43) + 329946154449.194*pow(xi2, 41) - 1073059201467.59*pow(xi2, 39) + 2422905313949.18*pow(xi2, 37) - 4031996559106.4*pow(xi2, 35) + 5123441697247.83*pow(xi2, 33) - 5082245802862.89*pow(xi2, 31) + 3989877093289.8*pow(xi2, 29) - 2498527673418.84*pow(xi2, 27) + 1252183155949.86*pow(xi2, 25) - 501953070634.544*pow(xi2, 23) + 160263648668.943*pow(xi2, 21) - 40430445050.3462*pow(xi2, 19) + 7960922172.58466*pow(xi2, 17) - 1202372898.70999*pow(xi2, 15) + 135975549.161354*pow(xi2, 13) - 11135243.0726873*pow(xi2, 11) + 629764.60336879*pow(xi2, 9) - 22935.4251074434*pow(xi2, 7) + 481.405371571687*pow(xi2, 5) - 4.77111369248451*pow(xi2, 3) + 0.0282872353309358*xi2; case 25: return -10703833915.403*pow(xi1, 46) + 123030475510.325*pow(xi1, 44) - 660948623360.421*pow(xi1, 42) + 2204594368100.28*pow(xi1, 40) - 5115199347309.37*pow(xi1, 38) + 8766244108501.35*pow(xi1, 36) - 11499881607450.5*pow(xi1, 34) + 11809867896629.5*pow(xi1, 32) - 9629539738306.08*pow(xi1, 30) + 6286427016209.27*pow(xi1, 28) - 3298734907736.02*pow(xi1, 26) + 1391634507284.73*pow(xi1, 24) - 470468054146.476*pow(xi1, 22) + 126602340893.671*pow(xi1, 20) - 26833362532.7568*pow(xi1, 18) + 4412372880.13861*pow(xi1, 16) - 551279305.585031*pow(xi1, 14) + 50854158.3368599*pow(xi1, 12) - 3328135.51137573*pow(xi1, 10) + 145900.940711039*pow(xi1, 8) - 3926.22897610704*pow(xi1, 6) + 56.0605858866929*pow(xi1, 4) - 0.325303206305762*pow(xi1, 2) + 10703833915.403*pow(xi2, 46) - 123030475510.325*pow(xi2, 44) + 660948623360.421*pow(xi2, 42) - 2204594368100.28*pow(xi2, 40) + 5115199347309.37*pow(xi2, 38) - 8766244108501.35*pow(xi2, 36) + 11499881607450.5*pow(xi2, 34) - 11809867896629.5*pow(xi2, 32) + 9629539738306.08*pow(xi2, 30) - 6286427016209.27*pow(xi2, 28) + 3298734907736.02*pow(xi2, 26) - 1391634507284.73*pow(xi2, 24) + 470468054146.476*pow(xi2, 22) - 126602340893.671*pow(xi2, 20) + 26833362532.7568*pow(xi2, 18) - 4412372880.13861*pow(xi2, 16) + 551279305.585031*pow(xi2, 14) - 50854158.3368599*pow(xi2, 12) + 3328135.51137573*pow(xi2, 10) - 145900.940711039*pow(xi2, 8) + 3926.22897610704*pow(xi2, 6) - 56.0605858866929*pow(xi2, 4) + 0.325303206305762*pow(xi2, 2); case 26: return -20515681671.1891*pow(xi1, 47) + 240939982417.454*pow(xi1, 45) - 1324517078711.9*pow(xi1, 43) + 4528228288286.7*pow(xi1, 41) - 10788760831208.3*pow(xi1, 39) + 19025199835309.7*pow(xi1, 37) - 25741152427126.8*pow(xi1, 35) + 27336784803967.1*pow(xi1, 33) - 23120016516737.7*pow(xi1, 31) + 15710037319763.9*pow(xi1, 29) - 8615184787726.1*pow(xi1, 27) + 3816281731480.58*pow(xi1, 25) - 1362313663683.21*pow(xi1, 23) + 389709410212.598*pow(xi1, 21) - 88528792082.7051*pow(xi1, 19) + 15761825919.9628*pow(xi1, 17) - 2159890092.02749*pow(xi1, 15) + 222238572.11934*pow(xi1, 13) - 16596364.3474867*pow(xi1, 11) + 857500.123169862*pow(xi1, 9) - 28570.2381759558*pow(xi1, 7) + 549.175065645352*pow(xi1, 5) - 4.99701869686351*pow(xi1, 3) + 0.0271086005254801*xi1 + 20515681671.1891*pow(xi2, 47) - 240939982417.454*pow(xi2, 45) + 1324517078711.9*pow(xi2, 43) - 4528228288286.7*pow(xi2, 41) + 10788760831208.3*pow(xi2, 39) - 19025199835309.7*pow(xi2, 37) + 25741152427126.8*pow(xi2, 35) - 27336784803967.1*pow(xi2, 33) + 23120016516737.7*pow(xi2, 31) - 15710037319763.9*pow(xi2, 29) + 8615184787726.1*pow(xi2, 27) - 3816281731480.58*pow(xi2, 25) + 1362313663683.21*pow(xi2, 23) - 389709410212.598*pow(xi2, 21) + 88528792082.7051*pow(xi2, 19) - 15761825919.9628*pow(xi2, 17) + 2159890092.02749*pow(xi2, 15) - 222238572.11934*pow(xi2, 13) + 16596364.3474867*pow(xi2, 11) - 857500.123169862*pow(xi2, 9) + 28570.2381759558*pow(xi2, 7) - 549.175065645352*pow(xi2, 5) + 4.99701869686351*pow(xi2, 3) - 0.0271086005254801*xi2; case 27: return -39373012407.2904*pow(xi1, 48) + 472251907715.73*pow(xi1, 46) - 2655161515440.8*pow(xi1, 44) + 9298520803347.89*pow(xi1, 42) - 22733732541815.3*pow(xi1, 40) + 41218683269644.9*pow(xi1, 38) - 57466790358075.2*pow(xi1, 36) + 63044099317287.5*pow(xi1, 34) - 55236604541920.0*pow(xi1, 32) + 39009642190619.9*pow(xi1, 30) - 22317669184363.2*pow(xi1, 28) + 10359008774601.5*pow(xi1, 26) - 3894848291944.96*pow(xi1, 24) + 1180760210360.19*pow(xi1, 22) - 286378858115.921*pow(xi1, 20) + 54936919123.2888*pow(xi1, 18) - 8204676009.03359*pow(xi1, 16) + 933702334.618827*pow(xi1, 14) - 78638126.6143699*pow(xi1, 12) + 4707640.30819233*pow(xi1, 10) - 189062.861554361*pow(xi1, 8) + 4666.16575761683*pow(xi1, 6) - 61.1637799356146*pow(xi1, 4) + 0.338857506568502*pow(xi1, 2) + 39373012407.2904*pow(xi2, 48) - 472251907715.73*pow(xi2, 46) + 2655161515440.8*pow(xi2, 44) - 9298520803347.89*pow(xi2, 42) + 22733732541815.3*pow(xi2, 40) - 41218683269644.9*pow(xi2, 38) + 57466790358075.2*pow(xi2, 36) - 63044099317287.5*pow(xi2, 34) + 55236604541920.0*pow(xi2, 32) - 39009642190619.9*pow(xi2, 30) + 22317669184363.2*pow(xi2, 28) - 10359008774601.5*pow(xi2, 26) + 3894848291944.96*pow(xi2, 24) - 1180760210360.19*pow(xi2, 22) + 286378858115.921*pow(xi2, 20) - 54936919123.2888*pow(xi2, 18) + 8204676009.03359*pow(xi2, 16) - 933702334.618827*pow(xi2, 14) + 78638126.6143699*pow(xi2, 12) - 4707640.30819233*pow(xi2, 10) + 189062.861554361*pow(xi2, 8) - 4666.16575761683*pow(xi2, 6) + 61.1637799356146*pow(xi2, 4) - 0.338857506568502*pow(xi2, 2); case 28: return -75655521485.9082*pow(xi1, 49) + 926357529840.222*pow(xi1, 47) - 5324136684503.24*pow(xi1, 45) + 19088808068324.2*pow(xi1, 43) - 47859520057032.9*pow(xi1, 41) + 89152712018737.6*pow(xi1, 39) - 127970204724623.0*pow(xi1, 37) + 144881292955948.0*pow(xi1, 35) - 131350799622012.0*pow(xi1, 33) + 96281346590719.7*pow(xi1, 31) - 57373221024004.7*pow(xi1, 29) + 27850848100907.0*pow(xi1, 27) - 11003800602332.3*pow(xi1, 25) + 3525323265287.58*pow(xi1, 23) - 909714057948.449*pow(xi1, 21) + 187213093106.203*pow(xi1, 19) - 30302696016.6417*pow(xi1, 17) + 3786210901.09783*pow(xi1, 15) - 356077128.481597*pow(xi1, 13) + 24352785.8487305*pow(xi1, 11) - 1154167.4155017*pow(xi1, 9) + 35316.6945199066*pow(xi1, 7) - 624.033033173341*pow(xi1, 5) + 5.24794702480449*pow(xi1, 3) - 0.0260659620437309*xi1 + 75655521485.9082*pow(xi2, 49) - 926357529840.222*pow(xi2, 47) + 5324136684503.24*pow(xi2, 45) - 19088808068324.2*pow(xi2, 43) + 47859520057032.9*pow(xi2, 41) - 89152712018737.6*pow(xi2, 39) + 127970204724623.0*pow(xi2, 37) - 144881292955948.0*pow(xi2, 35) + 131350799622012.0*pow(xi2, 33) - 96281346590719.7*pow(xi2, 31) + 57373221024004.7*pow(xi2, 29) - 27850848100907.0*pow(xi2, 27) + 11003800602332.3*pow(xi2, 25) - 3525323265287.58*pow(xi2, 23) + 909714057948.449*pow(xi2, 21) - 187213093106.203*pow(xi2, 19) + 30302696016.6417*pow(xi2, 17) - 3786210901.09783*pow(xi2, 15) + 356077128.481597*pow(xi2, 13) - 24352785.8487305*pow(xi2, 11) + 1154167.4155017*pow(xi2, 9) - 35316.6945199066*pow(xi2, 7) + 624.033033173341*pow(xi2, 5) - 5.24794702480449*pow(xi2, 3) + 0.0260659620437309*xi2; case 29: return -145538806888.077*pow(xi1, 50) + 1818436825861.34*pow(xi1, 48) - 10678646758589.6*pow(xi1, 46) + 39175840371527.9*pow(xi1, 44) - 100663775838791.0*pow(xi1, 42) + 192520127394647.0*pow(xi1, 40) - 284282290970171.0*pow(xi1, 38) + 331835096922265.0*pow(xi1, 36) - 310962453524380.0*pow(xi1, 34) + 236281374337303.0*pow(xi1, 32) - 146432298299480.0*pow(xi1, 30) + 74208765606632.7*pow(xi1, 28) - 30744623546611.0*pow(xi1, 26) + 10382337028640.8*pow(xi1, 24) - 2841593580509.51*pow(xi1, 22) + 624889983293.009*pow(xi1, 20) - 109080673375.912*pow(xi1, 18) + 14868478903.0804*pow(xi1, 16) - 1548160823.61131*pow(xi1, 14) + 119545585.350288*pow(xi1, 12) - 6572312.36046044*pow(xi1, 10) + 242720.226250891*pow(xi1, 8) - 5514.13958011828*pow(xi1, 6) + 66.6245989837762*pow(xi1, 4) - 0.351890487590367*pow(xi1, 2) + 145538806888.077*pow(xi2, 50) - 1818436825861.34*pow(xi2, 48) + 10678646758589.6*pow(xi2, 46) - 39175840371527.9*pow(xi2, 44) + 100663775838791.0*pow(xi2, 42) - 192520127394647.0*pow(xi2, 40) + 284282290970171.0*pow(xi2, 38) - 331835096922265.0*pow(xi2, 36) + 310962453524380.0*pow(xi2, 34) - 236281374337303.0*pow(xi2, 32) + 146432298299480.0*pow(xi2, 30) - 74208765606632.7*pow(xi2, 28) + 30744623546611.0*pow(xi2, 26) - 10382337028640.8*pow(xi2, 24) + 2841593580509.51*pow(xi2, 22) - 624889983293.009*pow(xi2, 20) + 109080673375.912*pow(xi2, 18) - 14868478903.0804*pow(xi2, 16) + 1548160823.61131*pow(xi2, 14) - 119545585.350288*pow(xi2, 12) + 6572312.36046044*pow(xi2, 10) - 242720.226250891*pow(xi2, 8) + 5514.13958011828*pow(xi2, 6) - 66.6245989837762*pow(xi2, 4) + 0.351890487590367*pow(xi2, 2); default: return 0.; } case 25: switch(j) { case 0: return -58890.0856561661*pow(xi1, 25)*y1t + 359883.856787682*pow(xi1, 23)*y1t - 962480.08210659*pow(xi1, 21)*y1t + 1478932.80909061*pow(xi1, 19)*y1t - 1441011.45501137*pow(xi1, 17)*y1t + 926920.881872177*pow(xi1, 15)*y1t - 397251.806516647*pow(xi1, 13)*y1t + 111780.811357498*pow(xi1, 11)*y1t - 19832.0794343948*pow(xi1, 9)*y1t + 2051.59442424774*pow(xi1, 7)*y1t - 106.378970146179*pow(xi1, 5)*y1t + 1.93416309356689*pow(xi1, 3)*y1t + 58890.0856561661*pow(xi2, 25)*y1t - 359883.856787682*pow(xi2, 23)*y1t + 962480.08210659*pow(xi2, 21)*y1t - 1478932.80909061*pow(xi2, 19)*y1t + 1441011.45501137*pow(xi2, 17)*y1t - 926920.881872177*pow(xi2, 15)*y1t + 397251.806516647*pow(xi2, 13)*y1t - 111780.811357498*pow(xi2, 11)*y1t + 19832.0794343948*pow(xi2, 9)*y1t - 2051.59442424774*pow(xi2, 7)*y1t + 106.378970146179*pow(xi2, 5)*y1t - 1.93416309356689*pow(xi2, 3)*y1t; case 1: return -29445.042828083*pow(xi1, 25)*y1r + 10223.9732041955*pow(xi1, 24)*y1r + 179941.928393841*pow(xi1, 23)*y1r - 62707.0356523991*pow(xi1, 22)*y1r - 481240.041053295*pow(xi1, 21)*y1r + 168434.014368653*pow(xi1, 20)*y1r + 739466.404545307*pow(xi1, 19)*y1r - 260182.623821497*pow(xi1, 18)*y1r - 720505.727505684*pow(xi1, 17)*y1r + 255179.11182493*pow(xi1, 16)*y1r + 463460.440936089*pow(xi1, 15)*y1r - 165521.586048603*pow(xi1, 14)*y1r - 198625.903258324*pow(xi1, 13)*y1r + 71726.0206210613*pow(xi1, 12)*y1r + 55890.4056787491*pow(xi1, 11)*y1r - 20493.1487488747*pow(xi1, 10)*y1r - 9916.03971719742*pow(xi1, 9)*y1r + 3718.51489394903*pow(xi1, 8)*y1r + 1025.79721212387*pow(xi1, 7)*y1r - 398.921138048172*pow(xi1, 6)*y1r - 53.1894850730896*pow(xi1, 5)*y1r + 22.1622854471207*pow(xi1, 4)*y1r + 0.967081546783447*pow(xi1, 3)*y1r - 0.483540773391724*pow(xi1, 2)*y1r + 29445.042828083*pow(xi2, 25)*y1r - 10223.9732041955*pow(xi2, 24)*y1r - 179941.928393841*pow(xi2, 23)*y1r + 62707.0356523991*pow(xi2, 22)*y1r + 481240.041053295*pow(xi2, 21)*y1r - 168434.014368653*pow(xi2, 20)*y1r - 739466.404545307*pow(xi2, 19)*y1r + 260182.623821497*pow(xi2, 18)*y1r + 720505.727505684*pow(xi2, 17)*y1r - 255179.11182493*pow(xi2, 16)*y1r - 463460.440936089*pow(xi2, 15)*y1r + 165521.586048603*pow(xi2, 14)*y1r + 198625.903258324*pow(xi2, 13)*y1r - 71726.0206210613*pow(xi2, 12)*y1r - 55890.4056787491*pow(xi2, 11)*y1r + 20493.1487488747*pow(xi2, 10)*y1r + 9916.03971719742*pow(xi2, 9)*y1r - 3718.51489394903*pow(xi2, 8)*y1r - 1025.79721212387*pow(xi2, 7)*y1r + 398.921138048172*pow(xi2, 6)*y1r + 53.1894850730896*pow(xi2, 5)*y1r - 22.1622854471207*pow(xi2, 4)*y1r - 0.967081546783447*pow(xi2, 3)*y1r + 0.483540773391724*pow(xi2, 2)*y1r; case 2: return 58890.0856561661*pow(xi1, 25)*y2t - 359883.856787682*pow(xi1, 23)*y2t + 962480.08210659*pow(xi1, 21)*y2t - 1478932.80909061*pow(xi1, 19)*y2t + 1441011.45501137*pow(xi1, 17)*y2t - 926920.881872177*pow(xi1, 15)*y2t + 397251.806516647*pow(xi1, 13)*y2t - 111780.811357498*pow(xi1, 11)*y2t + 19832.0794343948*pow(xi1, 9)*y2t - 2051.59442424774*pow(xi1, 7)*y2t + 106.378970146179*pow(xi1, 5)*y2t - 1.93416309356689*pow(xi1, 3)*y2t - 58890.0856561661*pow(xi2, 25)*y2t + 359883.856787682*pow(xi2, 23)*y2t - 962480.08210659*pow(xi2, 21)*y2t + 1478932.80909061*pow(xi2, 19)*y2t - 1441011.45501137*pow(xi2, 17)*y2t + 926920.881872177*pow(xi2, 15)*y2t - 397251.806516647*pow(xi2, 13)*y2t + 111780.811357498*pow(xi2, 11)*y2t - 19832.0794343948*pow(xi2, 9)*y2t + 2051.59442424774*pow(xi2, 7)*y2t - 106.378970146179*pow(xi2, 5)*y2t + 1.93416309356689*pow(xi2, 3)*y2t; case 3: return -29445.042828083*pow(xi1, 25)*y2r - 10223.9732041955*pow(xi1, 24)*y2r + 179941.928393841*pow(xi1, 23)*y2r + 62707.0356523991*pow(xi1, 22)*y2r - 481240.041053295*pow(xi1, 21)*y2r - 168434.014368653*pow(xi1, 20)*y2r + 739466.404545307*pow(xi1, 19)*y2r + 260182.623821497*pow(xi1, 18)*y2r - 720505.727505684*pow(xi1, 17)*y2r - 255179.11182493*pow(xi1, 16)*y2r + 463460.440936089*pow(xi1, 15)*y2r + 165521.586048603*pow(xi1, 14)*y2r - 198625.903258324*pow(xi1, 13)*y2r - 71726.0206210613*pow(xi1, 12)*y2r + 55890.4056787491*pow(xi1, 11)*y2r + 20493.1487488747*pow(xi1, 10)*y2r - 9916.03971719742*pow(xi1, 9)*y2r - 3718.51489394903*pow(xi1, 8)*y2r + 1025.79721212387*pow(xi1, 7)*y2r + 398.921138048172*pow(xi1, 6)*y2r - 53.1894850730896*pow(xi1, 5)*y2r - 22.1622854471207*pow(xi1, 4)*y2r + 0.967081546783447*pow(xi1, 3)*y2r + 0.483540773391724*pow(xi1, 2)*y2r + 29445.042828083*pow(xi2, 25)*y2r + 10223.9732041955*pow(xi2, 24)*y2r - 179941.928393841*pow(xi2, 23)*y2r - 62707.0356523991*pow(xi2, 22)*y2r + 481240.041053295*pow(xi2, 21)*y2r + 168434.014368653*pow(xi2, 20)*y2r - 739466.404545307*pow(xi2, 19)*y2r - 260182.623821497*pow(xi2, 18)*y2r + 720505.727505684*pow(xi2, 17)*y2r + 255179.11182493*pow(xi2, 16)*y2r - 463460.440936089*pow(xi2, 15)*y2r - 165521.586048603*pow(xi2, 14)*y2r + 198625.903258324*pow(xi2, 13)*y2r + 71726.0206210613*pow(xi2, 12)*y2r - 55890.4056787491*pow(xi2, 11)*y2r - 20493.1487488747*pow(xi2, 10)*y2r + 9916.03971719742*pow(xi2, 9)*y2r + 3718.51489394903*pow(xi2, 8)*y2r - 1025.79721212387*pow(xi2, 7)*y2r - 398.921138048172*pow(xi2, 6)*y2r + 53.1894850730896*pow(xi2, 5)*y2r + 22.1622854471207*pow(xi2, 4)*y2r - 0.967081546783447*pow(xi2, 3)*y2r - 0.483540773391724*pow(xi2, 2)*y2r; case 4: return -56625.0823616982*pow(xi1, 26) + 365336.642496586*pow(xi1, 24) - 1044145.05877018*pow(xi1, 22) + 1741854.19737339*pow(xi1, 20) - 1881320.51070929*pow(xi1, 18) + 1379346.55040503*pow(xi1, 16) - 699919.84957695*pow(xi1, 14) + 245917.784986496*pow(xi1, 12) - 58835.1689887047*pow(xi1, 10) + 9232.17490911484*pow(xi1, 8) - 886.491417884827*pow(xi1, 6) + 45.7751932144165*pow(xi1, 4) - 0.967081546783447*pow(xi1, 2) + 56625.0823616982*pow(xi2, 26) - 365336.642496586*pow(xi2, 24) + 1044145.05877018*pow(xi2, 22) - 1741854.19737339*pow(xi2, 20) + 1881320.51070929*pow(xi2, 18) - 1379346.55040503*pow(xi2, 16) + 699919.84957695*pow(xi2, 14) - 245917.784986496*pow(xi2, 12) + 58835.1689887047*pow(xi2, 10) - 9232.17490911484*pow(xi2, 8) + 886.491417884827*pow(xi2, 6) - 45.7751932144165*pow(xi2, 4) + 0.967081546783447*pow(xi2, 2); case 5: return -90879.7618150711*pow(xi1, 27) + 610711.999397278*pow(xi1, 25) - 1824527.45999336*pow(xi1, 23) + 3192616.85771942*pow(xi1, 21) - 3627809.54024792*pow(xi1, 19) + 2804130.39894104*pow(xi1, 17) - 1500729.04684067*pow(xi1, 15) + 554891.412277222*pow(xi1, 13) - 138824.556040764*pow(xi1, 11) + 22491.5536880493*pow(xi1, 9) - 2178.23605537415*pow(xi1, 7) + 108.313133239746*pow(xi1, 5) - 1.93416309356689*pow(xi1, 3) + 90879.7618150711*pow(xi2, 27) - 610711.999397278*pow(xi2, 25) + 1824527.45999336*pow(xi2, 23) - 3192616.85771942*pow(xi2, 21) + 3627809.54024792*pow(xi2, 19) - 2804130.39894104*pow(xi2, 17) + 1500729.04684067*pow(xi2, 15) - 554891.412277222*pow(xi2, 13) + 138824.556040764*pow(xi2, 11) - 22491.5536880493*pow(xi2, 9) + 2178.23605537415*pow(xi2, 7) - 108.313133239746*pow(xi2, 5) + 1.93416309356689*pow(xi2, 3); case 6: return -153359.598062932*pow(xi1, 28) + 1070109.19537246*pow(xi1, 26) - 3333887.07623631*pow(xi1, 24) + 6116230.13594985*pow(xi1, 22) - 7337624.0086922*pow(xi1, 20) + 6045594.79239285*pow(xi1, 18) - 3496643.50527674*pow(xi1, 16) + 1426638.4321332*pow(xi1, 14) - 407136.064055264*pow(xi1, 12) + 79550.5738002062*pow(xi1, 10) - 10259.5551416278*pow(xi1, 8) + 822.825216054916*pow(xi1, 6) - 36.8699839711189*pow(xi1, 4) + 0.725311160087585*pow(xi1, 2) + 153359.598062932*pow(xi2, 28) - 1070109.19537246*pow(xi2, 26) + 3333887.07623631*pow(xi2, 24) - 6116230.13594985*pow(xi2, 22) + 7337624.0086922*pow(xi2, 20) - 6045594.79239285*pow(xi2, 18) + 3496643.50527674*pow(xi2, 16) - 1426638.4321332*pow(xi2, 14) + 407136.064055264*pow(xi2, 12) - 79550.5738002062*pow(xi2, 10) + 10259.5551416278*pow(xi2, 8) - 822.825216054916*pow(xi2, 6) + 36.8699839711189*pow(xi2, 4) - 0.725311160087585*pow(xi2, 2); case 7: return -266528.404909372*pow(xi1, 29) + 1927559.74809766*pow(xi1, 27) - 6249526.46725416*pow(xi1, 25) + 11990174.723804*pow(xi1, 23) - 15132877.5010765*pow(xi1, 21) + 13211577.6992261*pow(xi1, 19) - 8167029.78691578*pow(xi1, 17) + 3597335.80345631*pow(xi1, 15) - 1120385.35932899*pow(xi1, 13) + 241233.31105113*pow(xi1, 11) - 34408.5311770439*pow(xi1, 9) + 3012.09060621262*pow(xi1, 7) - 139.743283510208*pow(xi1, 5) + 2.41770386695862*pow(xi1, 3) + 266528.404909372*pow(xi2, 29) - 1927559.74809766*pow(xi2, 27) + 6249526.46725416*pow(xi2, 25) - 11990174.723804*pow(xi2, 23) + 15132877.5010765*pow(xi2, 21) - 13211577.6992261*pow(xi2, 19) + 8167029.78691578*pow(xi2, 17) - 3597335.80345631*pow(xi2, 15) + 1120385.35932899*pow(xi2, 13) - 241233.31105113*pow(xi2, 11) + 34408.5311770439*pow(xi2, 9) - 3012.09060621262*pow(xi2, 7) + 139.743283510208*pow(xi2, 5) - 2.41770386695862*pow(xi2, 3); case 8: return -472347.562033832*pow(xi1, 30) + 3535449.9340108*pow(xi1, 28) - 11908551.1147007*pow(xi1, 26) + 23844310.0991026*pow(xi1, 24) - 31579394.0735087*pow(xi1, 22) + 29124851.166729*pow(xi1, 20) - 19179056.4950797*pow(xi1, 18) + 9096790.49992114*pow(xi1, 16) - 3096188.05515915*pow(xi1, 14) + 744686.034451425*pow(xi1, 12) - 123066.221275628*pow(xi1, 10) + 13381.5246321559*pow(xi1, 8) - 899.184363186359*pow(xi1, 6) + 34.0493294596672*pow(xi1, 4) - 0.604425966739655*pow(xi1, 2) + 472347.562033832*pow(xi2, 30) - 3535449.9340108*pow(xi2, 28) + 11908551.1147007*pow(xi2, 26) - 23844310.0991026*pow(xi2, 24) + 31579394.0735087*pow(xi2, 22) - 29124851.166729*pow(xi2, 20) + 19179056.4950797*pow(xi2, 18) - 9096790.49992114*pow(xi2, 16) + 3096188.05515915*pow(xi2, 14) - 744686.034451425*pow(xi2, 12) + 123066.221275628*pow(xi2, 10) - 13381.5246321559*pow(xi2, 8) + 899.184363186359*pow(xi2, 6) - 34.0493294596672*pow(xi2, 4) + 0.604425966739655*pow(xi2, 2); case 9: return -848919.581535459*pow(xi1, 31) + 6567880.38637519*pow(xi1, 29) - 22948968.0209559*pow(xi1, 27) + 47867735.5486178*pow(xi1, 25) - 66374849.7944623*pow(xi1, 23) + 64484380.0577223*pow(xi1, 21) - 45067812.6132363*pow(xi1, 19) + 22900583.7163782*pow(xi1, 17) - 8450156.6509527*pow(xi1, 15) + 2236934.93848443*pow(xi1, 13) - 414545.549288392*pow(xi1, 11) + 51583.1626238823*pow(xi1, 9) - 4013.14664876461*pow(xi1, 7) + 170.367532491684*pow(xi1, 5) - 2.82065451145172*pow(xi1, 3) + 848919.581535459*pow(xi2, 31) - 6567880.38637519*pow(xi2, 29) + 22948968.0209559*pow(xi2, 27) - 47867735.5486178*pow(xi2, 25) + 66374849.7944623*pow(xi2, 23) - 64484380.0577223*pow(xi2, 21) + 45067812.6132363*pow(xi2, 19) - 22900583.7163782*pow(xi2, 17) + 8450156.6509527*pow(xi2, 15) - 2236934.93848443*pow(xi2, 13) + 414545.549288392*pow(xi2, 11) - 51583.1626238823*pow(xi2, 9) + 4013.14664876461*pow(xi2, 7) - 170.367532491684*pow(xi2, 5) + 2.82065451145172*pow(xi2, 3); case 10: return -1541982.83364839*pow(xi1, 32) + 12317587.3170846*pow(xi1, 30) - 44586072.4801485*pow(xi1, 28) + 96719986.2192655*pow(xi1, 26) - 140131079.561139*pow(xi1, 24) + 143044354.576721*pow(xi1, 22) - 105761285.988215*pow(xi1, 20) + 57334791.4309478*pow(xi1, 18) - 22813482.6754338*pow(xi1, 16) + 6603828.05723269*pow(xi1, 14) - 1364100.44298442*pow(xi1, 12) + 194729.530543976*pow(xi1, 10) - 18292.9027737658*pow(xi1, 8) + 1052.98558730632*pow(xi1, 6) - 33.7597086839378*pow(xi1, 4) + 0.528872720897198*pow(xi1, 2) + 1541982.83364839*pow(xi2, 32) - 12317587.3170846*pow(xi2, 30) + 44586072.4801485*pow(xi2, 28) - 96719986.2192655*pow(xi2, 26) + 140131079.561139*pow(xi2, 24) - 143044354.576721*pow(xi2, 22) + 105761285.988215*pow(xi2, 20) - 57334791.4309478*pow(xi2, 18) + 22813482.6754338*pow(xi2, 16) - 6603828.05723269*pow(xi2, 14) + 1364100.44298442*pow(xi2, 12) - 194729.530543976*pow(xi2, 10) + 18292.9027737658*pow(xi2, 8) - 1052.98558730632*pow(xi2, 6) + 33.7597086839378*pow(xi2, 4) - 0.528872720897198*pow(xi2, 2); case 11: return -2824372.59765901*pow(xi1, 33) + 23270615.010516*pow(xi1, 31) - 87152179.1195009*pow(xi1, 29) + 196325971.199349*pow(xi1, 27) - 296653455.869637*pow(xi1, 25) + 317447154.463163*pow(xi1, 23) - 247577847.014235*pow(xi1, 21) + 142659378.333813*pow(xi1, 19) - 60913376.9486629*pow(xi1, 17) + 19153554.6350793*pow(xi1, 15) - 4366818.15360002*pow(xi1, 13) + 702868.975049034*pow(xi1, 11) - 76565.7097055763*pow(xi1, 9) + 5272.0752735883*pow(xi1, 7) - 202.452477559447*pow(xi1, 5) + 3.17323632538319*pow(xi1, 3) + 2824372.59765901*pow(xi2, 33) - 23270615.010516*pow(xi2, 31) + 87152179.1195009*pow(xi2, 29) - 196325971.199349*pow(xi2, 27) + 296653455.869637*pow(xi2, 25) - 317447154.463163*pow(xi2, 23) + 247577847.014235*pow(xi2, 21) - 142659378.333813*pow(xi2, 19) + 60913376.9486629*pow(xi2, 17) - 19153554.6350793*pow(xi2, 15) + 4366818.15360002*pow(xi2, 13) - 702868.975049034*pow(xi2, 11) + 76565.7097055763*pow(xi2, 9) - 5272.0752735883*pow(xi2, 7) + 202.452477559447*pow(xi2, 5) - 3.17323632538319*pow(xi2, 3); case 12: return -5208475.34921234*pow(xi1, 34) + 44220260.3040145*pow(xi1, 32) - 171155330.901526*pow(xi1, 30) + 399824691.036655*pow(xi1, 28) - 629011031.974561*pow(xi1, 26) + 704136332.023367*pow(xi1, 24) - 577756105.294866*pow(xi1, 22) + 352685335.281925*pow(xi1, 20) - 160906983.145731*pow(xi1, 18) + 54649403.6016254*pow(xi1, 16) - 13647760.1367895*pow(xi1, 14) + 2451853.86356305*pow(xi1, 12) - 306183.941086113*pow(xi1, 10) + 25228.4376387298*pow(xi1, 8) - 1268.23678471148*pow(xi1, 6) + 34.905599579215*pow(xi1, 4) - 0.475985448807478*pow(xi1, 2) + 5208475.34921234*pow(xi2, 34) - 44220260.3040145*pow(xi2, 32) + 171155330.901526*pow(xi2, 30) - 399824691.036655*pow(xi2, 28) + 629011031.974561*pow(xi2, 26) - 704136332.023367*pow(xi2, 24) + 577756105.294866*pow(xi2, 22) - 352685335.281925*pow(xi2, 20) + 160906983.145731*pow(xi2, 18) - 54649403.6016254*pow(xi2, 16) + 13647760.1367895*pow(xi2, 14) - 2451853.86356305*pow(xi2, 12) + 306183.941086113*pow(xi2, 10) - 25228.4376387298*pow(xi2, 8) + 1268.23678471148*pow(xi2, 6) - 34.905599579215*pow(xi2, 4) + 0.475985448807478*pow(xi2, 2); case 13: return -9659354.2839938*pow(xi1, 35) + 84429911.5193532*pow(xi1, 33) - 337365833.200063*pow(xi1, 31) + 816210188.947362*pow(xi1, 29) - 1334841870.98294*pow(xi1, 27) + 1560174819.29886*pow(xi1, 25) - 1343621210.16899*pow(xi1, 23) + 866316834.161896*pow(xi1, 21) - 420708715.370866*pow(xi1, 19) + 153569378.028978*pow(xi1, 17) - 41730149.5483515*pow(xi1, 15) + 8290584.15095028*pow(xi1, 13) - 1170365.41226014*pow(xi1, 11) + 112417.084816247*pow(xi1, 9) - 6868.09226006269*pow(xi1, 7) + 237.358077138662*pow(xi1, 5) - 3.4905599579215*pow(xi1, 3) + 9659354.2839938*pow(xi2, 35) - 84429911.5193532*pow(xi2, 33) + 337365833.200063*pow(xi2, 31) - 816210188.947362*pow(xi2, 29) + 1334841870.98294*pow(xi2, 27) - 1560174819.29886*pow(xi2, 25) + 1343621210.16899*pow(xi2, 23) - 866316834.161896*pow(xi2, 21) + 420708715.370866*pow(xi2, 19) - 153569378.028978*pow(xi2, 17) + 41730149.5483515*pow(xi2, 15) - 8290584.15095028*pow(xi2, 13) + 1170365.41226014*pow(xi2, 11) - 112417.084816247*pow(xi2, 9) + 6868.09226006269*pow(xi2, 7) - 237.358077138662*pow(xi2, 5) + 3.4905599579215*pow(xi2, 3); case 14: return -17999491.2004977*pow(xi1, 36) + 161838903.489692*pow(xi1, 34) - 666946277.861088*pow(xi1, 32) + 1669148486.73721*pow(xi1, 30) - 2833579781.90386*pow(xi1, 28) + 3451915628.97939*pow(xi1, 26) - 3113429207.75544*pow(xi1, 24) + 2114575789.32407*pow(xi1, 22) - 1089335343.24622*pow(xi1, 20) + 425487080.889746*pow(xi1, 18) - 125079149.104517*pow(xi1, 16) + 27265712.6321411*pow(xi1, 14) - 4303799.71730652*pow(xi1, 12) + 474588.083970297*pow(xi1, 10) - 34644.4308966491*pow(xi1, 8) + 1541.66398141533*pow(xi1, 6) - 37.0144795537926*pow(xi1, 4) + 0.436319994740188*pow(xi1, 2) + 17999491.2004977*pow(xi2, 36) - 161838903.489692*pow(xi2, 34) + 666946277.861088*pow(xi2, 32) - 1669148486.73721*pow(xi2, 30) + 2833579781.90386*pow(xi2, 28) - 3451915628.97939*pow(xi2, 26) + 3113429207.75544*pow(xi2, 24) - 2114575789.32407*pow(xi2, 22) + 1089335343.24622*pow(xi2, 20) - 425487080.889746*pow(xi2, 18) + 125079149.104517*pow(xi2, 16) - 27265712.6321411*pow(xi2, 14) + 4303799.71730652*pow(xi2, 12) - 474588.083970297*pow(xi2, 10) + 34644.4308966491*pow(xi2, 8) - 1541.66398141533*pow(xi2, 6) + 37.0144795537926*pow(xi2, 4) - 0.436319994740188*pow(xi2, 2); case 15: return -33678881.6641329*pow(xi1, 37) + 311252740.143991*pow(xi1, 35) - 1321657965.61896*pow(xi1, 33) + 3417770359.80975*pow(xi1, 31) - 6014713509.51296*pow(xi1, 29) + 7624598077.02301*pow(xi1, 27) - 7188030678.28592*pow(xi1, 25) + 5129953639.24709*pow(xi1, 23) - 2794796753.96302*pow(xi1, 21) + 1163525398.80544*pow(xi1, 19) - 368143949.138997*pow(xi1, 17) + 87458596.6151419*pow(xi1, 15) - 15292728.0635515*pow(xi1, 13) + 1910036.75112527*pow(xi1, 11) - 162990.86614944*pow(xi1, 9) + 8880.98183579743*pow(xi1, 7) - 276.045116672292*pow(xi1, 5) + 3.78143995441496*pow(xi1, 3) + 33678881.6641329*pow(xi2, 37) - 311252740.143991*pow(xi2, 35) + 1321657965.61896*pow(xi2, 33) - 3417770359.80975*pow(xi2, 31) + 6014713509.51296*pow(xi2, 29) - 7624598077.02301*pow(xi2, 27) + 7188030678.28592*pow(xi2, 25) - 5129953639.24709*pow(xi2, 23) + 2794796753.96302*pow(xi2, 21) - 1163525398.80544*pow(xi2, 19) + 368143949.138997*pow(xi2, 17) - 87458596.6151419*pow(xi2, 15) + 15292728.0635515*pow(xi2, 13) - 1910036.75112527*pow(xi2, 11) + 162990.86614944*pow(xi2, 9) - 8880.98183579743*pow(xi2, 7) + 276.045116672292*pow(xi2, 5) - 3.78143995441496*pow(xi2, 3); case 16: return -63242862.3730616*pow(xi1, 38) + 600312701.027588*pow(xi1, 36) - 2624222778.80029*pow(xi1, 34) + 7004739827.56913*pow(xi1, 32) - 12763068066.1337*pow(xi1, 30) + 16810599588.6806*pow(xi1, 28) - 16534802720.9836*pow(xi1, 26) + 12372295008.3099*pow(xi1, 24) - 7108501413.12895*pow(xi1, 22) + 3143270424.39716*pow(xi1, 20) - 1065643053.90079*pow(xi1, 18) + 274273190.369964*pow(xi1, 16) - 52704628.8232462*pow(xi1, 14) + 7373057.56538108*pow(xi1, 12) - 723594.509931805*pow(xi1, 10) + 47156.4855376538*pow(xi1, 8) - 1875.18906310899*pow(xi1, 6) + 39.8401709483005*pow(xi1, 4) - 0.405154280830175*pow(xi1, 2) + 63242862.3730616*pow(xi2, 38) - 600312701.027588*pow(xi2, 36) + 2624222778.80029*pow(xi2, 34) - 7004739827.56913*pow(xi2, 32) + 12763068066.1337*pow(xi2, 30) - 16810599588.6806*pow(xi2, 28) + 16534802720.9836*pow(xi2, 26) - 12372295008.3099*pow(xi2, 24) + 7108501413.12895*pow(xi2, 22) - 3143270424.39716*pow(xi2, 20) + 1065643053.90079*pow(xi2, 18) - 274273190.369964*pow(xi2, 16) + 52704628.8232462*pow(xi2, 14) - 7373057.56538108*pow(xi2, 12) + 723594.509931805*pow(xi2, 10) - 47156.4855376538*pow(xi2, 8) + 1875.18906310899*pow(xi2, 6) - 39.8401709483005*pow(xi2, 4) + 0.405154280830175*pow(xi2, 2); case 17: return -119134417.666861*pow(xi1, 39) + 1160670487.5222*pow(xi1, 37) - 5219042862.03361*pow(xi1, 35) + 14365665737.576*pow(xi1, 33) - 27069207642.3522*pow(xi1, 31) + 36993518507.7491*pow(xi1, 29) - 37899603270.9539*pow(xi1, 27) + 29671808168.4901*pow(xi1, 25) - 17933533256.272*pow(xi1, 23) + 8396086005.76344*pow(xi1, 21) - 3037766421.81916*pow(xi1, 19) + 842670667.555862*pow(xi1, 17) - 176730598.184079*pow(xi1, 15) + 27431284.8221486*pow(xi1, 13) - 3054473.13668797*pow(xi1, 11) + 233164.102070853*pow(xi1, 9) - 11396.3725418011*pow(xi1, 7) + 319.261573294178*pow(xi1, 5) - 4.05154280830175*pow(xi1, 3) + 119134417.666861*pow(xi2, 39) - 1160670487.5222*pow(xi2, 37) + 5219042862.03361*pow(xi2, 35) - 14365665737.576*pow(xi2, 33) + 27069207642.3522*pow(xi2, 31) - 36993518507.7491*pow(xi2, 29) + 37899603270.9539*pow(xi2, 27) - 29671808168.4901*pow(xi2, 25) + 17933533256.272*pow(xi2, 23) - 8396086005.76344*pow(xi2, 21) + 3037766421.81916*pow(xi2, 19) - 842670667.555862*pow(xi2, 17) + 176730598.184079*pow(xi2, 15) - 27431284.8221486*pow(xi2, 13) + 3054473.13668797*pow(xi2, 11) - 233164.102070853*pow(xi2, 9) + 11396.3725418011*pow(xi2, 7) - 319.261573294178*pow(xi2, 5) + 4.05154280830175*pow(xi2, 3); case 18: return -225052360.873805*pow(xi1, 40) + 2248910330.16548*pow(xi1, 38) - 10393802715.0371*pow(xi1, 36) + 29475054534.4272*pow(xi1, 34) - 57374577463.9329*pow(xi1, 32) + 81251153683.8055*pow(xi1, 30) - 86567901261.2371*pow(xi1, 28) + 70779385557.1236*pow(xi1, 26) - 44897488059.1497*pow(xi1, 24) + 22192208682.0584*pow(xi1, 22) - 8538204843.03323*pow(xi1, 20) + 2541010647.06651*pow(xi1, 18) - 578145679.079641*pow(xi1, 16) + 98762409.9830697*pow(xi1, 14) - 12337113.0280166*pow(xi1, 12) + 1084949.75604712*pow(xi1, 10) - 63529.6180163226*pow(xi1, 8) + 2273.46416187924*pow(xi1, 6) - 43.2375584073452*pow(xi1, 4) + 0.379832138278289*pow(xi1, 2) + 225052360.873805*pow(xi2, 40) - 2248910330.16548*pow(xi2, 38) + 10393802715.0371*pow(xi2, 36) - 29475054534.4272*pow(xi2, 34) + 57374577463.9329*pow(xi2, 32) - 81251153683.8055*pow(xi2, 30) + 86567901261.2371*pow(xi2, 28) - 70779385557.1236*pow(xi2, 26) + 44897488059.1497*pow(xi2, 24) - 22192208682.0584*pow(xi2, 22) + 8538204843.03323*pow(xi2, 20) - 2541010647.06651*pow(xi2, 18) + 578145679.079641*pow(xi2, 16) - 98762409.9830697*pow(xi2, 14) + 12337113.0280166*pow(xi2, 12) - 1084949.75604712*pow(xi2, 10) + 63529.6180163226*pow(xi2, 8) - 2273.46416187924*pow(xi2, 6) + 43.2375584073452*pow(xi2, 4) - 0.379832138278289*pow(xi2, 2); case 19: return -426211070.808355*pow(xi1, 41) + 4365721614.85918*pow(xi1, 39) - 20723298178.1831*pow(xi1, 37) + 60493571748.5145*pow(xi1, 35) - 121519831214.533*pow(xi1, 33) + 178111895896.725*pow(xi1, 31) - 197066396253.507*pow(xi1, 29) + 167976778695.129*pow(xi1, 27) - 111594197200.571*pow(xi1, 25) + 58084613149.5716*pow(xi1, 23) - 23687115110.1917*pow(xi1, 21) + 7532016460.0326*pow(xi1, 19) - 1849367958.92472*pow(xi1, 17) + 345268929.319048*pow(xi1, 15) - 47924000.009509*pow(xi1, 13) + 4789415.46284829*pow(xi1, 11) - 329068.299702693*pow(xi1, 9) + 14508.7363759144*pow(xi1, 7) - 367.62686556828*pow(xi1, 5) + 4.30476423382061*pow(xi1, 3) + 426211070.808355*pow(xi2, 41) - 4365721614.85918*pow(xi2, 39) + 20723298178.1831*pow(xi2, 37) - 60493571748.5145*pow(xi2, 35) + 121519831214.533*pow(xi2, 33) - 178111895896.725*pow(xi2, 31) + 197066396253.507*pow(xi2, 29) - 167976778695.129*pow(xi2, 27) + 111594197200.571*pow(xi2, 25) - 58084613149.5716*pow(xi2, 23) + 23687115110.1917*pow(xi2, 21) - 7532016460.0326*pow(xi2, 19) + 1849367958.92472*pow(xi2, 17) - 345268929.319048*pow(xi2, 15) + 47924000.009509*pow(xi2, 13) - 4789415.46284829*pow(xi2, 11) + 329068.299702693*pow(xi2, 9) - 14508.7363759144*pow(xi2, 7) + 367.62686556828*pow(xi2, 5) - 4.30476423382061*pow(xi2, 3); case 20: return -809011754.775118*pow(xi1, 42) + 8489230013.44023*pow(xi1, 40) - 41358870195.9563*pow(xi1, 38) + 124175359033.23*pow(xi1, 36) - 257176448649.812*pow(xi1, 34) + 389693015951.955*pow(xi1, 32) - 447149038103.796*pow(xi1, 30) + 396715033466.757*pow(xi1, 28) - 275490194373.394*pow(xi1, 26) + 150639557207.264*pow(xi1, 24) - 64924029426.9716*pow(xi1, 22) + 21977168312.6472*pow(xi1, 20) - 5796059239.39062*pow(xi1, 18) + 1175422960.42417*pow(xi1, 16) - 179805053.890068*pow(xi1, 14) + 20188407.4579259*pow(xi1, 12) - 1600544.29407977*pow(xi1, 10) + 84685.1976549923*pow(xi1, 8) - 2742.85227764936*pow(xi1, 6) + 47.1132530034811*pow(xi1, 4) - 0.358730352818384*pow(xi1, 2) + 809011754.775118*pow(xi2, 42) - 8489230013.44023*pow(xi2, 40) + 41358870195.9563*pow(xi2, 38) - 124175359033.23*pow(xi2, 36) + 257176448649.812*pow(xi2, 34) - 389693015951.955*pow(xi2, 32) + 447149038103.796*pow(xi2, 30) - 396715033466.757*pow(xi2, 28) + 275490194373.394*pow(xi2, 26) - 150639557207.264*pow(xi2, 24) + 64924029426.9716*pow(xi2, 22) - 21977168312.6472*pow(xi2, 20) + 5796059239.39062*pow(xi2, 18) - 1175422960.42417*pow(xi2, 16) + 179805053.890068*pow(xi2, 14) - 20188407.4579259*pow(xi2, 12) + 1600544.29407977*pow(xi2, 10) - 84685.1976549923*pow(xi2, 8) + 2742.85227764936*pow(xi2, 6) - 47.1132530034811*pow(xi2, 4) + 0.358730352818384*pow(xi2, 2); case 21: return -1538805712.26503*pow(xi1, 43) + 16532226174.7729*pow(xi1, 41) - 82611751780.2235*pow(xi1, 39) + 254912225915.977*pow(xi1, 37) - 543817928726.357*pow(xi1, 35) + 851003685212.995*pow(xi1, 33) - 1011412343303.2*pow(xi1, 31) + 932605142497.08*pow(xi1, 29) - 675747137296.369*pow(xi1, 27) + 387337506400.648*pow(xi1, 25) - 175961532717.34*pow(xi1, 23) + 63200085370.9558*pow(xi1, 21) - 17828601337.3*pow(xi1, 19) + 3906368383.90736*pow(xi1, 17) - 653900452.039292*pow(xi1, 15) + 81691776.9779117*pow(xi1, 13) - 7370840.43279175*pow(xi1, 11) + 458338.497413532*pow(xi1, 9) - 18323.4134511531*pow(xi1, 7) + 421.675572059583*pow(xi1, 5) - 4.5439178023662*pow(xi1, 3) + 1538805712.26503*pow(xi2, 43) - 16532226174.7729*pow(xi2, 41) + 82611751780.2235*pow(xi2, 39) - 254912225915.977*pow(xi2, 37) + 543817928726.357*pow(xi2, 35) - 851003685212.995*pow(xi2, 33) + 1011412343303.2*pow(xi2, 31) - 932605142497.08*pow(xi2, 29) + 675747137296.369*pow(xi2, 27) - 387337506400.648*pow(xi2, 25) + 175961532717.34*pow(xi2, 23) - 63200085370.9558*pow(xi2, 21) + 17828601337.3*pow(xi2, 19) - 3906368383.90736*pow(xi2, 17) + 653900452.039292*pow(xi2, 15) - 81691776.9779117*pow(xi2, 13) + 7370840.43279175*pow(xi2, 11) - 458338.497413532*pow(xi2, 9) + 18323.4134511531*pow(xi2, 7) - 421.675572059583*pow(xi2, 5) + 4.5439178023662*pow(xi2, 3); case 22: return -2932474067.5778*pow(xi1, 44) + 32238834564.0148*pow(xi1, 42) - 165130361584.918*pow(xi1, 40) + 523288745102.942*pow(xi1, 38) - 1148954747625.29*pow(xi1, 36) + 1854967248083.68*pow(xi1, 34) - 2280829494925.56*pow(xi1, 32) + 2182752279805.6*pow(xi1, 30) - 1647525238173.91*pow(xi1, 28) + 987973509155.938*pow(xi1, 26) - 471935693612.43*pow(xi1, 24) + 179316168680.198*pow(xi1, 22) - 53905793874.3631*pow(xi1, 20) + 12700484717.7838*pow(xi1, 18) - 2312063576.2873*pow(xi1, 16) + 318735268.794855*pow(xi1, 14) - 32354364.3586448*pow(xi1, 12) + 2324901.14233653*pow(xi1, 10) - 111715.261973273*pow(xi1, 8) + 3290.93246836372*pow(xi1, 6) - 51.4030701392676*pow(xi1, 4) + 0.340793835177465*pow(xi1, 2) + 2932474067.5778*pow(xi2, 44) - 32238834564.0148*pow(xi2, 42) + 165130361584.918*pow(xi2, 40) - 523288745102.942*pow(xi2, 38) + 1148954747625.29*pow(xi2, 36) - 1854967248083.68*pow(xi2, 34) + 2280829494925.56*pow(xi2, 32) - 2182752279805.6*pow(xi2, 30) + 1647525238173.91*pow(xi2, 28) - 987973509155.938*pow(xi2, 26) + 471935693612.43*pow(xi2, 24) - 179316168680.198*pow(xi2, 22) + 53905793874.3631*pow(xi2, 20) - 12700484717.7838*pow(xi2, 18) + 2312063576.2873*pow(xi2, 16) - 318735268.794855*pow(xi2, 14) + 32354364.3586448*pow(xi2, 12) - 2324901.14233653*pow(xi2, 10) + 111715.261973273*pow(xi2, 8) - 3290.93246836372*pow(xi2, 6) + 51.4030701392676*pow(xi2, 4) - 0.340793835177465*pow(xi2, 2); case 23: return -5598077479.27021*pow(xi1, 45) + 62944237023.0138*pow(xi1, 43) - 330278999375.818*pow(xi1, 41) + 1074140453307.64*pow(xi1, 39) - 2425343957107.78*pow(xi1, 37) + 4036050195832.79*pow(xi1, 35) - 5128586911375.06*pow(xi1, 33) + 5087344019982.91*pow(xi1, 31) - 3993875133123.08*pow(xi1, 29) + 2501028597707.71*pow(xi1, 27) - 1253435191838.01*pow(xi1, 25) + 502454428984.502*pow(xi1, 23) - 160423552908.796*pow(xi1, 21) + 40470742430.8232*pow(xi1, 19) - 7968848617.85145*pow(xi1, 17) + 1203568825.07947*pow(xi1, 15) - 136110656.698573*pow(xi1, 13) + 11146295.9461998*pow(xi1, 11) - 630389.076516768*pow(xi1, 9) + 22958.1446964552*pow(xi1, 7) - 481.882482940935*pow(xi1, 5) + 4.77111369248451*pow(xi1, 3) + 5598077479.27021*pow(xi2, 45) - 62944237023.0138*pow(xi2, 43) + 330278999375.818*pow(xi2, 41) - 1074140453307.64*pow(xi2, 39) + 2425343957107.78*pow(xi2, 37) - 4036050195832.79*pow(xi2, 35) + 5128586911375.06*pow(xi2, 33) - 5087344019982.91*pow(xi2, 31) + 3993875133123.08*pow(xi2, 29) - 2501028597707.71*pow(xi2, 27) + 1253435191838.01*pow(xi2, 25) - 502454428984.502*pow(xi2, 23) + 160423552908.796*pow(xi2, 21) - 40470742430.8232*pow(xi2, 19) + 7968848617.85145*pow(xi2, 17) - 1203568825.07947*pow(xi2, 15) + 136110656.698573*pow(xi2, 13) - 11146295.9461998*pow(xi2, 11) + 630389.076516768*pow(xi2, 9) - 22958.1446964552*pow(xi2, 7) + 481.882482940935*pow(xi2, 5) - 4.77111369248451*pow(xi2, 3); case 24: return -10703833915.403*pow(xi1, 46) + 123030475510.325*pow(xi1, 44) - 660948623360.421*pow(xi1, 42) + 2204594368100.28*pow(xi1, 40) - 5115199347309.37*pow(xi1, 38) + 8766244108501.35*pow(xi1, 36) - 11499881607450.5*pow(xi1, 34) + 11809867896629.5*pow(xi1, 32) - 9629539738306.08*pow(xi1, 30) + 6286427016209.27*pow(xi1, 28) - 3298734907736.02*pow(xi1, 26) + 1391634507284.73*pow(xi1, 24) - 470468054146.476*pow(xi1, 22) + 126602340893.671*pow(xi1, 20) - 26833362532.7568*pow(xi1, 18) + 4412372880.13861*pow(xi1, 16) - 551279305.585031*pow(xi1, 14) + 50854158.3368599*pow(xi1, 12) - 3328135.51137573*pow(xi1, 10) + 145900.940711039*pow(xi1, 8) - 3926.22897610704*pow(xi1, 6) + 56.0605858866929*pow(xi1, 4) - 0.325303206305762*pow(xi1, 2) + 10703833915.403*pow(xi2, 46) - 123030475510.325*pow(xi2, 44) + 660948623360.421*pow(xi2, 42) - 2204594368100.28*pow(xi2, 40) + 5115199347309.37*pow(xi2, 38) - 8766244108501.35*pow(xi2, 36) + 11499881607450.5*pow(xi2, 34) - 11809867896629.5*pow(xi2, 32) + 9629539738306.08*pow(xi2, 30) - 6286427016209.27*pow(xi2, 28) + 3298734907736.02*pow(xi2, 26) - 1391634507284.73*pow(xi2, 24) + 470468054146.476*pow(xi2, 22) - 126602340893.671*pow(xi2, 20) + 26833362532.7568*pow(xi2, 18) - 4412372880.13861*pow(xi2, 16) + 551279305.585031*pow(xi2, 14) - 50854158.3368599*pow(xi2, 12) + 3328135.51137573*pow(xi2, 10) - 145900.940711039*pow(xi2, 8) + 3926.22897610704*pow(xi2, 6) - 56.0605858866929*pow(xi2, 4) + 0.325303206305762*pow(xi2, 2); case 25: return -20496703242.2611*pow(xi1, 47) + 240717331608.619*pow(xi1, 45) - 1323294384605.63*pow(xi1, 43) + 4524052513274.11*pow(xi1, 41) - 10778822065593.1*pow(xi1, 39) + 19007691465167.9*pow(xi1, 37) - 25717487590298.7*pow(xi1, 35) + 27311678351521.5*pow(xi1, 33) - 23098804022919.4*pow(xi1, 31) + 15695637744162.2*pow(xi1, 29) - 8607296021078.13*pow(xi1, 27) + 3812790649353.76*pow(xi1, 25) - 1361068647771.59*pow(xi1, 23) + 389353598857.489*pow(xi1, 21) - 88448041161.5952*pow(xi1, 19) + 15747462549.2999*pow(xi1, 17) - 2157923695.05738*pow(xi1, 15) + 222036432.500656*pow(xi1, 13) - 16581283.000393*pow(xi1, 11) + 856721.622252628*pow(xi1, 9) - 28544.3236447391*pow(xi1, 7) + 548.678074635718*pow(xi1, 5) - 4.98798249668835*pow(xi1, 3) + 20496703242.2611*pow(xi2, 47) - 240717331608.619*pow(xi2, 45) + 1323294384605.63*pow(xi2, 43) - 4524052513274.11*pow(xi2, 41) + 10778822065593.1*pow(xi2, 39) - 19007691465167.9*pow(xi2, 37) + 25717487590298.7*pow(xi2, 35) - 27311678351521.5*pow(xi2, 33) + 23098804022919.4*pow(xi2, 31) - 15695637744162.2*pow(xi2, 29) + 8607296021078.13*pow(xi2, 27) - 3812790649353.76*pow(xi2, 25) + 1361068647771.59*pow(xi2, 23) - 389353598857.489*pow(xi2, 21) + 88448041161.5952*pow(xi2, 19) - 15747462549.2999*pow(xi2, 17) + 2157923695.05738*pow(xi2, 15) - 222036432.500656*pow(xi2, 13) + 16581283.000393*pow(xi2, 11) - 856721.622252628*pow(xi2, 9) + 28544.3236447391*pow(xi2, 7) - 548.678074635718*pow(xi2, 5) + 4.98798249668835*pow(xi2, 3); case 26: return -39303140158.1204*pow(xi1, 48) + 471414685357.541*pow(xi1, 46) - 2650459083811.01*pow(xi1, 44) + 9282069011156.13*pow(xi1, 42) - 22693549650921.2*pow(xi1, 40) + 41145898780126.6*pow(xi1, 38) - 57365413435046.9*pow(xi1, 36) + 62932990858132.5*pow(xi1, 34) - 55139349262126.3*pow(xi1, 32) + 38941023145450.4*pow(xi1, 30) - 22278448882718.6*pow(xi1, 28) + 10340821294578.2*pow(xi1, 26) - 3888016417121.97*pow(xi1, 24) + 1178690980057.69*pow(xi1, 22) - 285877453267.485*pow(xi1, 20) + 54840820984.8424*pow(xi1, 18) - 8190337044.02725*pow(xi1, 16) + 932072013.857978*pow(xi1, 14) - 78500941.0145018*pow(xi1, 12) + 4699435.057622*pow(xi1, 10) - 188733.622760158*pow(xi1, 8) + 4658.04823779281*pow(xi1, 6) - 61.0508274334251*pow(xi1, 4) + 0.311748906043022*pow(xi1, 2) + 39303140158.1204*pow(xi2, 48) - 471414685357.541*pow(xi2, 46) + 2650459083811.01*pow(xi2, 44) - 9282069011156.13*pow(xi2, 42) + 22693549650921.2*pow(xi2, 40) - 41145898780126.6*pow(xi2, 38) + 57365413435046.9*pow(xi2, 36) - 62932990858132.5*pow(xi2, 34) + 55139349262126.3*pow(xi2, 32) - 38941023145450.4*pow(xi2, 30) + 22278448882718.6*pow(xi2, 28) - 10340821294578.2*pow(xi2, 26) + 3888016417121.97*pow(xi2, 24) - 1178690980057.69*pow(xi2, 22) + 285877453267.485*pow(xi2, 20) - 54840820984.8424*pow(xi2, 18) + 8190337044.02725*pow(xi2, 16) - 932072013.857978*pow(xi2, 14) + 78500941.0145018*pow(xi2, 12) - 4699435.057622*pow(xi2, 10) + 188733.622760158*pow(xi2, 8) - 4658.04823779281*pow(xi2, 6) + 61.0508274334251*pow(xi2, 4) - 0.311748906043022*pow(xi2, 2); case 27: return -75462029103.5913*pow(xi1, 49) + 923990623023.973*pow(xi1, 47) - 5310546224741.19*pow(xi1, 45) + 19040128213834.7*pow(xi1, 43) - 47737585354992.4*pow(xi1, 41) + 88925785622554.7*pow(xi1, 39) - 127644777643775.0*pow(xi1, 37) + 144513202680571.0*pow(xi1, 35) - 131017392602932.0*pow(xi1, 33) + 96037179634663.5*pow(xi1, 31) - 57227856189002.6*pow(xi1, 29) + 27780346890298.2*pow(xi1, 27) - 10975970713836.3*pow(xi1, 25) + 3516415252299.31*pow(xi1, 23) - 907417367669.162*pow(xi1, 21) + 186740865006.986*pow(xi1, 19) - 30226326970.8981*pow(xi1, 17) + 3776677151.27261*pow(xi1, 15) - 355181293.097636*pow(xi1, 13) + 24291570.510322*pow(xi1, 11) - 1151268.66901578*pow(xi1, 9) + 35228.0717384415*pow(xi1, 7) - 622.4586490659*pow(xi1, 5) + 5.19581510071703*pow(xi1, 3) + 75462029103.5913*pow(xi2, 49) - 923990623023.973*pow(xi2, 47) + 5310546224741.19*pow(xi2, 45) - 19040128213834.7*pow(xi2, 43) + 47737585354992.4*pow(xi2, 41) - 88925785622554.7*pow(xi2, 39) + 127644777643775.0*pow(xi2, 37) - 144513202680571.0*pow(xi2, 35) + 131017392602932.0*pow(xi2, 33) - 96037179634663.5*pow(xi2, 31) + 57227856189002.6*pow(xi2, 29) - 27780346890298.2*pow(xi2, 27) + 10975970713836.3*pow(xi2, 25) - 3516415252299.31*pow(xi2, 23) + 907417367669.162*pow(xi2, 21) - 186740865006.986*pow(xi2, 19) + 30226326970.8981*pow(xi2, 17) - 3776677151.27261*pow(xi2, 15) + 355181293.097636*pow(xi2, 13) - 24291570.510322*pow(xi2, 11) + 1151268.66901578*pow(xi2, 9) - 35228.0717384415*pow(xi2, 7) + 622.4586490659*pow(xi2, 5) - 5.19581510071703*pow(xi2, 3); case 28: return -145061239022.98*pow(xi1, 50) + 1812475393892.79*pow(xi1, 48) - 10643670964834.6*pow(xi1, 46) + 39047645249241.0*pow(xi1, 44) - 100334673478941.0*pow(xi1, 42) + 191891285821329.0*pow(xi1, 40) - 283354553901745.0*pow(xi1, 38) + 330753139825173.0*pow(xi1, 36) - 309949450203787.0*pow(xi1, 34) + 235512332226087.0*pow(xi1, 32) - 145956111105926.0*pow(xi1, 30) + 73967653689345.7*pow(xi1, 28) - 30644817310084.5*pow(xi1, 26) + 10348661764776.1*pow(xi1, 24) - 2832384684974.48*pow(xi1, 22) + 622866586202.908*pow(xi1, 20) - 108727766937.923*pow(xi1, 18) + 14820415476.7655*pow(xi1, 16) - 1543160445.53304*pow(xi1, 14) + 119159786.412311*pow(xi1, 12) - 6551119.55186054*pow(xi1, 10) + 241938.202705073*pow(xi1, 8) - 5496.37302038927*pow(xi1, 6) + 66.3465620553097*pow(xi1, 4) - 0.299758563502905*pow(xi1, 2) + 145061239022.98*pow(xi2, 50) - 1812475393892.79*pow(xi2, 48) + 10643670964834.6*pow(xi2, 46) - 39047645249241.0*pow(xi2, 44) + 100334673478941.0*pow(xi2, 42) - 191891285821329.0*pow(xi2, 40) + 283354553901745.0*pow(xi2, 38) - 330753139825173.0*pow(xi2, 36) + 309949450203787.0*pow(xi2, 34) - 235512332226087.0*pow(xi2, 32) + 145956111105926.0*pow(xi2, 30) - 73967653689345.7*pow(xi2, 28) + 30644817310084.5*pow(xi2, 26) - 10348661764776.1*pow(xi2, 24) + 2832384684974.48*pow(xi2, 22) - 622866586202.908*pow(xi2, 20) + 108727766937.923*pow(xi2, 18) - 14820415476.7655*pow(xi2, 16) + 1543160445.53304*pow(xi2, 14) - 119159786.412311*pow(xi2, 12) + 6551119.55186054*pow(xi2, 10) - 241938.202705073*pow(xi2, 8) + 5496.37302038927*pow(xi2, 6) - 66.3465620553097*pow(xi2, 4) + 0.299758563502905*pow(xi2, 2); case 29: return -279166509376.106*pow(xi1, 51) + 3557880594966.93*pow(xi1, 49) - 21338365920884.2*pow(xi1, 47) + 80059627822368.0*pow(xi1, 45) - 210707878128500.0*pow(xi1, 43) + 413457806621174.0*pow(xi1, 41) - 627584822582511.0*pow(xi1, 39) + 754625892772514.0*pow(xi1, 37) - 730196744663009.0*pow(xi1, 35) + 574457730986261.0*pow(xi1, 33) - 369744544138545.0*pow(xi1, 31) + 195297320104083.0*pow(xi1, 29) - 84678136859102.6*pow(xi1, 27) + 30070931450057.4*pow(xi1, 25) - 8704310569332.09*pow(xi1, 23) + 2038251259475.21*pow(xi1, 21) - 382020033084.267*pow(xi1, 19) + 56487470251.4904*pow(xi1, 17) - 6464022566.86872*pow(xi1, 15) + 557939889.530573*pow(xi1, 13) - 35082432.7556841*pow(xi1, 11) + 1530776.40533598*pow(xi1, 9) - 43171.1940575669*pow(xi1, 7) + 703.59330025402*pow(xi1, 5) - 5.3956541430523*pow(xi1, 3) + 279166509376.106*pow(xi2, 51) - 3557880594966.93*pow(xi2, 49) + 21338365920884.2*pow(xi2, 47) - 80059627822368.0*pow(xi2, 45) + 210707878128500.0*pow(xi2, 43) - 413457806621174.0*pow(xi2, 41) + 627584822582511.0*pow(xi2, 39) - 754625892772514.0*pow(xi2, 37) + 730196744663009.0*pow(xi2, 35) - 574457730986261.0*pow(xi2, 33) + 369744544138545.0*pow(xi2, 31) - 195297320104083.0*pow(xi2, 29) + 84678136859102.6*pow(xi2, 27) - 30070931450057.4*pow(xi2, 25) + 8704310569332.09*pow(xi2, 23) - 2038251259475.21*pow(xi2, 21) + 382020033084.267*pow(xi2, 19) - 56487470251.4904*pow(xi2, 17) + 6464022566.86872*pow(xi2, 15) - 557939889.530573*pow(xi2, 13) + 35082432.7556841*pow(xi2, 11) - 1530776.40533598*pow(xi2, 9) + 43171.1940575669*pow(xi2, 7) - 703.59330025402*pow(xi2, 5) + 5.3956541430523*pow(xi2, 3); default: return 0.; } case 26: switch(j) { case 0: return -110890.786291659*pow(xi1, 26)*y1t + 705454.151089489*pow(xi1, 24)*y1t - 1975271.62305057*pow(xi1, 22)*y1t + 3200246.27300441*pow(xi1, 20)*y1t - 3317328.45372409*pow(xi1, 18)*y1t + 2296612.00642437*pow(xi1, 16)*y1t - 1075890.30931592*pow(xi1, 14)*y1t + 338136.954356432*pow(xi1, 12)*y1t - 69164.377027452*pow(xi1, 10)*y1t + 8676.53475254774*pow(xi1, 8)*y1t - 598.381707072258*pow(xi1, 6)*y1t + 18.1327790021896*pow(xi1, 4)*y1t - 0.120885193347931*pow(xi1, 2)*y1t + 110890.786291659*pow(xi2, 26)*y1t - 705454.151089489*pow(xi2, 24)*y1t + 1975271.62305057*pow(xi2, 22)*y1t - 3200246.27300441*pow(xi2, 20)*y1t + 3317328.45372409*pow(xi2, 18)*y1t - 2296612.00642437*pow(xi2, 16)*y1t + 1075890.30931592*pow(xi2, 14)*y1t - 338136.954356432*pow(xi2, 12)*y1t + 69164.377027452*pow(xi2, 10)*y1t - 8676.53475254774*pow(xi2, 8)*y1t + 598.381707072258*pow(xi2, 6)*y1t - 18.1327790021896*pow(xi2, 4)*y1t + 0.120885193347931*pow(xi2, 2)*y1t; case 1: return -55445.3931458294*pow(xi1, 26)*y1r + 19221.0696238875*pow(xi1, 25)*y1r + 352727.075544745*pow(xi1, 24)*y1r - 122687.678450346*pow(xi1, 23)*y1r - 987635.811525285*pow(xi1, 22)*y1r + 344888.696088195*pow(xi1, 21)*y1r + 1600123.13650221*pow(xi1, 20)*y1r - 561446.714562178*pow(xi1, 19)*y1r - 1658664.22686204*pow(xi1, 18)*y1r + 585410.903598368*pow(xi1, 17)*y1r + 1148306.00321218*pow(xi1, 16)*y1r - 408286.578919888*pow(xi1, 15)*y1r - 537945.15465796*pow(xi1, 14)*y1r + 193108.517056704*pow(xi1, 13)*y1r + 169068.477178216*pow(xi1, 12)*y1r - 61479.446246624*pow(xi1, 11)*y1r - 34582.188513726*pow(xi1, 10)*y1r + 12808.2179680467*pow(xi1, 9)*y1r + 4338.26737627387*pow(xi1, 8)*y1r - 1652.67328619957*pow(xi1, 7)*y1r - 299.190853536129*pow(xi1, 6)*y1r + 119.676341414452*pow(xi1, 5)*y1r + 9.06638950109482*pow(xi1, 4)*y1r - 4.02950644493103*pow(xi1, 3)*y1r - 0.0604425966739655*pow(xi1, 2)*y1r + 0.0402950644493103*xi1*y1r + 55445.3931458294*pow(xi2, 26)*y1r - 19221.0696238875*pow(xi2, 25)*y1r - 352727.075544745*pow(xi2, 24)*y1r + 122687.678450346*pow(xi2, 23)*y1r + 987635.811525285*pow(xi2, 22)*y1r - 344888.696088195*pow(xi2, 21)*y1r - 1600123.13650221*pow(xi2, 20)*y1r + 561446.714562178*pow(xi2, 19)*y1r + 1658664.22686204*pow(xi2, 18)*y1r - 585410.903598368*pow(xi2, 17)*y1r - 1148306.00321218*pow(xi2, 16)*y1r + 408286.578919888*pow(xi2, 15)*y1r + 537945.15465796*pow(xi2, 14)*y1r - 193108.517056704*pow(xi2, 13)*y1r - 169068.477178216*pow(xi2, 12)*y1r + 61479.446246624*pow(xi2, 11)*y1r + 34582.188513726*pow(xi2, 10)*y1r - 12808.2179680467*pow(xi2, 9)*y1r - 4338.26737627387*pow(xi2, 8)*y1r + 1652.67328619957*pow(xi2, 7)*y1r + 299.190853536129*pow(xi2, 6)*y1r - 119.676341414452*pow(xi2, 5)*y1r - 9.06638950109482*pow(xi2, 4)*y1r + 4.02950644493103*pow(xi2, 3)*y1r + 0.0604425966739655*pow(xi2, 2)*y1r - 0.0402950644493103*xi2*y1r; case 2: return 110890.786291659*pow(xi1, 26)*y2t - 705454.151089489*pow(xi1, 24)*y2t + 1975271.62305057*pow(xi1, 22)*y2t - 3200246.27300441*pow(xi1, 20)*y2t + 3317328.45372409*pow(xi1, 18)*y2t - 2296612.00642437*pow(xi1, 16)*y2t + 1075890.30931592*pow(xi1, 14)*y2t - 338136.954356432*pow(xi1, 12)*y2t + 69164.377027452*pow(xi1, 10)*y2t - 8676.53475254774*pow(xi1, 8)*y2t + 598.381707072258*pow(xi1, 6)*y2t - 18.1327790021896*pow(xi1, 4)*y2t + 0.120885193347931*pow(xi1, 2)*y2t - 110890.786291659*pow(xi2, 26)*y2t + 705454.151089489*pow(xi2, 24)*y2t - 1975271.62305057*pow(xi2, 22)*y2t + 3200246.27300441*pow(xi2, 20)*y2t - 3317328.45372409*pow(xi2, 18)*y2t + 2296612.00642437*pow(xi2, 16)*y2t - 1075890.30931592*pow(xi2, 14)*y2t + 338136.954356432*pow(xi2, 12)*y2t - 69164.377027452*pow(xi2, 10)*y2t + 8676.53475254774*pow(xi2, 8)*y2t - 598.381707072258*pow(xi2, 6)*y2t + 18.1327790021896*pow(xi2, 4)*y2t - 0.120885193347931*pow(xi2, 2)*y2t; case 3: return -55445.3931458294*pow(xi1, 26)*y2r - 19221.0696238875*pow(xi1, 25)*y2r + 352727.075544745*pow(xi1, 24)*y2r + 122687.678450346*pow(xi1, 23)*y2r - 987635.811525285*pow(xi1, 22)*y2r - 344888.696088195*pow(xi1, 21)*y2r + 1600123.13650221*pow(xi1, 20)*y2r + 561446.714562178*pow(xi1, 19)*y2r - 1658664.22686204*pow(xi1, 18)*y2r - 585410.903598368*pow(xi1, 17)*y2r + 1148306.00321218*pow(xi1, 16)*y2r + 408286.578919888*pow(xi1, 15)*y2r - 537945.15465796*pow(xi1, 14)*y2r - 193108.517056704*pow(xi1, 13)*y2r + 169068.477178216*pow(xi1, 12)*y2r + 61479.446246624*pow(xi1, 11)*y2r - 34582.188513726*pow(xi1, 10)*y2r - 12808.2179680467*pow(xi1, 9)*y2r + 4338.26737627387*pow(xi1, 8)*y2r + 1652.67328619957*pow(xi1, 7)*y2r - 299.190853536129*pow(xi1, 6)*y2r - 119.676341414452*pow(xi1, 5)*y2r + 9.06638950109482*pow(xi1, 4)*y2r + 4.02950644493103*pow(xi1, 3)*y2r - 0.0604425966739655*pow(xi1, 2)*y2r - 0.0402950644493103*xi1*y2r + 55445.3931458294*pow(xi2, 26)*y2r + 19221.0696238875*pow(xi2, 25)*y2r - 352727.075544745*pow(xi2, 24)*y2r - 122687.678450346*pow(xi2, 23)*y2r + 987635.811525285*pow(xi2, 22)*y2r + 344888.696088195*pow(xi2, 21)*y2r - 1600123.13650221*pow(xi2, 20)*y2r - 561446.714562178*pow(xi2, 19)*y2r + 1658664.22686204*pow(xi2, 18)*y2r + 585410.903598368*pow(xi2, 17)*y2r - 1148306.00321218*pow(xi2, 16)*y2r - 408286.578919888*pow(xi2, 15)*y2r + 537945.15465796*pow(xi2, 14)*y2r + 193108.517056704*pow(xi2, 13)*y2r - 169068.477178216*pow(xi2, 12)*y2r - 61479.446246624*pow(xi2, 11)*y2r + 34582.188513726*pow(xi2, 10)*y2r + 12808.2179680467*pow(xi2, 9)*y2r - 4338.26737627387*pow(xi2, 8)*y2r - 1652.67328619957*pow(xi2, 7)*y2r + 299.190853536129*pow(xi2, 6)*y2r + 119.676341414452*pow(xi2, 5)*y2r - 9.06638950109482*pow(xi2, 4)*y2r - 4.02950644493103*pow(xi2, 3)*y2r + 0.0604425966739655*pow(xi2, 2)*y2r + 0.0402950644493103*xi2*y2r; case 4: return -106783.720132709*pow(xi1, 27) + 715678.124293685*pow(xi1, 25) - 2134765.60503602*pow(xi1, 23) + 3737630.98551393*pow(xi1, 21) - 4265625.64844191*pow(xi1, 19) + 3332338.98971379*pow(xi1, 17) - 1820737.44653463*pow(xi1, 15) + 698343.453519344*pow(xi1, 13) - 185835.598881841*pow(xi1, 11) + 33328.9112716913*pow(xi1, 9) - 3818.24517846107*pow(xi1, 7) + 253.858906030655*pow(xi1, 5) - 8.13960301876068*pow(xi1, 3) + 0.0805901288986206*xi1 + 106783.720132709*pow(xi2, 27) - 715678.124293685*pow(xi2, 25) + 2134765.60503602*pow(xi2, 23) - 3737630.98551393*pow(xi2, 21) + 4265625.64844191*pow(xi2, 19) - 3332338.98971379*pow(xi2, 17) + 1820737.44653463*pow(xi2, 15) - 698343.453519344*pow(xi2, 13) + 185835.598881841*pow(xi2, 11) - 33328.9112716913*pow(xi2, 9) + 3818.24517846107*pow(xi2, 7) - 253.858906030655*pow(xi2, 5) + 8.13960301876068*pow(xi2, 3) - 0.0805901288986206*xi2; case 5: return -171616.693070424*pow(xi1, 28) + 1196204.86489087*pow(xi1, 26) - 3723230.24186119*pow(xi1, 24) + 6824129.6124512*pow(xi1, 22) - 8176238.95359054*pow(xi1, 20) + 6719716.61138982*pow(xi1, 18) - 3865618.70751008*pow(xi1, 16) + 1558943.10125368*pow(xi1, 14) - 434198.589116782*pow(xi1, 12) + 80733.090030849*pow(xi1, 10) - 9424.51188638806*pow(xi1, 8) + 618.529239296913*pow(xi1, 6) - 18.2335166633129*pow(xi1, 4) + 0.120885193347931*pow(xi1, 2) + 171616.693070424*pow(xi2, 28) - 1196204.86489087*pow(xi2, 26) + 3723230.24186119*pow(xi2, 24) - 6824129.6124512*pow(xi2, 22) + 8176238.95359054*pow(xi2, 20) - 6719716.61138982*pow(xi2, 18) + 3865618.70751008*pow(xi2, 16) - 1558943.10125368*pow(xi2, 14) + 434198.589116782*pow(xi2, 12) - 80733.090030849*pow(xi2, 10) + 9424.51188638806*pow(xi2, 8) - 618.529239296913*pow(xi2, 6) + 18.2335166633129*pow(xi2, 4) - 0.120885193347931*pow(xi2, 2); case 6: return -289973.033118993*pow(xi1, 29) + 2095914.50686008*pow(xi1, 27) - 6791785.39954707*pow(xi1, 25) + 13024073.7724453*pow(xi1, 23) - 16430288.1617863*pow(xi1, 21) + 14339802.0394251*pow(xi1, 19) - 8866155.64289019*pow(xi1, 17) + 3911826.81694865*pow(xi1, 15) - 1225155.31102046*pow(xi1, 13) + 267815.70602864*pow(xi1, 11) - 39657.0352770388*pow(xi1, 9) + 3791.47774279118*pow(xi1, 7) - 215.921102851629*pow(xi1, 5) + 6.2457349896431*pow(xi1, 3) - 0.0604425966739655*xi1 + 289973.033118993*pow(xi2, 29) - 2095914.50686008*pow(xi2, 27) + 6791785.39954707*pow(xi2, 25) - 13024073.7724453*pow(xi2, 23) + 16430288.1617863*pow(xi2, 21) - 14339802.0394251*pow(xi2, 19) + 8866155.64289019*pow(xi2, 17) - 3911826.81694865*pow(xi2, 15) + 1225155.31102046*pow(xi2, 13) - 267815.70602864*pow(xi2, 11) + 39657.0352770388*pow(xi2, 9) - 3791.47774279118*pow(xi2, 7) + 215.921102851629*pow(xi2, 5) - 6.2457349896431*pow(xi2, 3) + 0.0604425966739655*xi2; case 7: return -504553.077627048*pow(xi1, 30) + 3775202.10564919*pow(xi1, 28) - 12711977.0834365*pow(xi1, 26) + 25445111.4509571*pow(xi1, 24) - 33689526.0770302*pow(xi1, 22) + 31062052.6502893*pow(xi1, 20) - 20448237.8820252*pow(xi1, 18) + 9693702.71960892*pow(xi1, 16) - 3294914.07228*pow(xi1, 14) + 789254.786240682*pow(xi1, 12) - 128830.869173482*pow(xi1, 10) + 13511.1869540066*pow(xi1, 8) - 818.705045714974*pow(xi1, 6) + 23.0185555666685*pow(xi1, 4) - 0.151106491684914*pow(xi1, 2) + 504553.077627048*pow(xi2, 30) - 3775202.10564919*pow(xi2, 28) + 12711977.0834365*pow(xi2, 26) - 25445111.4509571*pow(xi2, 24) + 33689526.0770302*pow(xi2, 22) - 31062052.6502893*pow(xi2, 20) + 20448237.8820252*pow(xi2, 18) - 9693702.71960892*pow(xi2, 16) + 3294914.07228*pow(xi2, 14) - 789254.786240682*pow(xi2, 12) + 128830.869173482*pow(xi2, 10) - 13511.1869540066*pow(xi2, 8) + 818.705045714974*pow(xi2, 6) - 23.0185555666685*pow(xi2, 4) + 0.151106491684914*pow(xi2, 2); case 8: return -895174.815144762*pow(xi1, 31) + 6924185.8525414*pow(xi1, 29) - 24188727.8042527*pow(xi1, 27) + 50443217.3199738*pow(xi1, 25) - 69932128.9454531*pow(xi1, 23) + 67927236.8258033*pow(xi1, 21) - 47465195.5647927*pow(xi1, 19) + 24114852.0421258*pow(xi1, 17) - 8897819.76002522*pow(xi1, 15) + 2356624.70512949*pow(xi1, 13) - 437897.870313004*pow(xi1, 11) + 55065.7599892467*pow(xi1, 9) - 4446.10128606856*pow(xi1, 7) + 213.694800540805*pow(xi1, 5) - 5.38946487009525*pow(xi1, 3) + 0.0503688305616379*xi1 + 895174.815144762*pow(xi2, 31) - 6924185.8525414*pow(xi2, 29) + 24188727.8042527*pow(xi2, 27) - 50443217.3199738*pow(xi2, 25) + 69932128.9454531*pow(xi2, 23) - 67927236.8258033*pow(xi2, 21) + 47465195.5647927*pow(xi2, 19) - 24114852.0421258*pow(xi2, 17) + 8897819.76002522*pow(xi2, 15) - 2356624.70512949*pow(xi2, 13) + 437897.870313004*pow(xi2, 11) - 55065.7599892467*pow(xi2, 9) + 4446.10128606856*pow(xi2, 7) - 213.694800540805*pow(xi2, 5) + 5.38946487009525*pow(xi2, 3) - 0.0503688305616379*xi2; case 9: return -1610515.40403276*pow(xi1, 32) + 12863036.2875285*pow(xi1, 30) - 46553456.1889886*pow(xi1, 28) + 100973154.142899*pow(xi1, 26) - 146272634.545407*pow(xi1, 24) + 149293201.91956*pow(xi1, 22) - 110366783.018132*pow(xi1, 20) + 59823745.9727661*pow(xi1, 18) - 23800627.8061373*pow(xi1, 16) + 6888187.31875923*pow(xi1, 14) - 1421973.09600106*pow(xi1, 12) + 202464.943845011*pow(xi1, 10) - 18805.9319790099*pow(xi1, 8) + 1032.46532573551*pow(xi1, 6) - 27.2369451262057*pow(xi1, 4) + 0.176290906965733*pow(xi1, 2) + 1610515.40403276*pow(xi2, 32) - 12863036.2875285*pow(xi2, 30) + 46553456.1889886*pow(xi2, 28) - 100973154.142899*pow(xi2, 26) + 146272634.545407*pow(xi2, 24) - 149293201.91956*pow(xi2, 22) + 110366783.018132*pow(xi2, 20) - 59823745.9727661*pow(xi2, 18) + 23800627.8061373*pow(xi2, 16) - 6888187.31875923*pow(xi2, 14) + 1421973.09600106*pow(xi2, 12) - 202464.943845011*pow(xi2, 10) + 18805.9319790099*pow(xi2, 8) - 1032.46532573551*pow(xi2, 6) + 27.2369451262057*pow(xi2, 4) - 0.176290906965733*pow(xi2, 2); case 10: return -2928209.82551412*pow(xi1, 33) + 24123464.7752993*pow(xi1, 31) - 90336471.2389704*pow(xi1, 29) + 203477776.253399*pow(xi1, 27) - 307428557.336709*pow(xi1, 25) + 328944724.965613*pow(xi1, 23) - 256519873.326385*pow(xi1, 21) + 147797910.676081*pow(xi1, 19) - 63101603.4300435*pow(xi1, 17) + 19839920.0978507*pow(xi1, 15) - 4523153.89852859*pow(xi1, 13) + 728271.336259693*pow(xi1, 11) - 79525.7599556074*pow(xi1, 9) + 5549.65789881349*pow(xi1, 7) - 227.838368162513*pow(xi1, 5) + 4.93614539504051*pow(xi1, 3) - 0.0440727267414331*xi1 + 2928209.82551412*pow(xi2, 33) - 24123464.7752993*pow(xi2, 31) + 90336471.2389704*pow(xi2, 29) - 203477776.253399*pow(xi2, 27) + 307428557.336709*pow(xi2, 25) - 328944724.965613*pow(xi2, 23) + 256519873.326385*pow(xi2, 21) - 147797910.676081*pow(xi2, 19) + 63101603.4300435*pow(xi2, 17) - 19839920.0978507*pow(xi2, 15) + 4523153.89852859*pow(xi2, 13) - 728271.336259693*pow(xi2, 11) + 79525.7599556074*pow(xi2, 9) - 5549.65789881349*pow(xi2, 7) + 227.838368162513*pow(xi2, 5) - 4.93614539504051*pow(xi2, 3) + 0.0440727267414331*xi2; case 11: return -5368384.68010921*pow(xi1, 34) + 45574159.305608*pow(xi1, 32) - 176381514.925256*pow(xi1, 30) + 412001085.264459*pow(xi1, 28) - 648117747.563351*pow(xi1, 26) + 725470987.473485*pow(xi1, 24) - 595218173.30991*pow(xi1, 22) + 363318946.840418*pow(xi1, 20) - 165746807.477536*pow(xi1, 18) + 56289305.4453993*pow(xi1, 16) - 14056301.5180623*pow(xi1, 14) + 2524964.4175617*pow(xi1, 12) - 315162.630897876*pow(xi1, 10) + 25888.73523077*pow(xi1, 8) - 1276.3814246133*pow(xi1, 6) + 31.2034905329347*pow(xi1, 4) - 0.198327270336449*pow(xi1, 2) + 5368384.68010921*pow(xi2, 34) - 45574159.305608*pow(xi2, 32) + 176381514.925256*pow(xi2, 30) - 412001085.264459*pow(xi2, 28) + 648117747.563351*pow(xi2, 26) - 725470987.473485*pow(xi2, 24) + 595218173.30991*pow(xi2, 22) - 363318946.840418*pow(xi2, 20) + 165746807.477536*pow(xi2, 18) - 56289305.4453993*pow(xi2, 16) + 14056301.5180623*pow(xi2, 14) - 2524964.4175617*pow(xi2, 12) + 315162.630897876*pow(xi2, 10) - 25888.73523077*pow(xi2, 8) + 1276.3814246133*pow(xi2, 6) - 31.2034905329347*pow(xi2, 4) + 0.198327270336449*pow(xi2, 2); case 12: return -9908504.29528729*pow(xi1, 35) + 86602324.7757193*pow(xi1, 33) - 346025516.708725*pow(xi1, 31) + 837111711.565737*pow(xi1, 29) - 1368945433.05878*pow(xi1, 27) + 1599944782.75468*pow(xi1, 25) - 1377794584.83228*pow(xi1, 23) + 888302170.752598*pow(xi1, 21) - 431362373.068038*pow(xi1, 19) + 157449965.765871*pow(xi1, 17) - 42782436.1134295*pow(xi1, 15) + 8499237.64101472*pow(xi1, 13) - 1199816.01963915*pow(xi1, 11) + 115296.38123868*pow(xi1, 9) - 7073.37042901665*pow(xi1, 7) + 252.483836956322*pow(xi1, 5) - 4.69374539796263*pow(xi1, 3) + 0.0396654540672898*xi1 + 9908504.29528729*pow(xi2, 35) - 86602324.7757193*pow(xi2, 33) + 346025516.708725*pow(xi2, 31) - 837111711.565737*pow(xi2, 29) + 1368945433.05878*pow(xi2, 27) - 1599944782.75468*pow(xi2, 25) + 1377794584.83228*pow(xi2, 23) - 888302170.752598*pow(xi2, 21) + 431362373.068038*pow(xi2, 19) - 157449965.765871*pow(xi2, 17) + 42782436.1134295*pow(xi2, 15) - 8499237.64101472*pow(xi2, 13) + 1199816.01963915*pow(xi2, 11) - 115296.38123868*pow(xi2, 9) + 7073.37042901665*pow(xi2, 7) - 252.483836956322*pow(xi2, 5) + 4.69374539796263*pow(xi2, 3) - 0.0396654540672898*xi2; case 13: return -18390784.4874651*pow(xi1, 36) + 165349363.264199*pow(xi1, 34) - 681381654.418109*pow(xi1, 32) + 1705198444.91246*pow(xi1, 30) - 2894650533.82591*pow(xi1, 28) + 3526159529.0653*pow(xi1, 26) - 3180256899.49859*pow(xi1, 24) + 2159872956.32263*pow(xi1, 22) - 1112624437.37378*pow(xi1, 20) + 434565975.375618*pow(xi1, 18) - 127742933.221558*pow(xi1, 16) + 27845286.2891282*pow(xi1, 14) - 4395100.23215187*pow(xi1, 12) + 484611.628580892*pow(xi1, 10) - 35350.9576309891*pow(xi1, 8) + 1562.02558116987*pow(xi1, 6) - 35.0873995770235*pow(xi1, 4) + 0.218159997370094*pow(xi1, 2) + 18390784.4874651*pow(xi2, 36) - 165349363.264199*pow(xi2, 34) + 681381654.418109*pow(xi2, 32) - 1705198444.91246*pow(xi2, 30) + 2894650533.82591*pow(xi2, 28) - 3526159529.0653*pow(xi2, 26) + 3180256899.49859*pow(xi2, 24) - 2159872956.32263*pow(xi2, 22) + 1112624437.37378*pow(xi2, 20) - 434565975.375618*pow(xi2, 18) + 127742933.221558*pow(xi2, 16) - 27845286.2891282*pow(xi2, 14) + 4395100.23215187*pow(xi2, 12) - 484611.628580892*pow(xi2, 10) + 35350.9576309891*pow(xi2, 8) - 1562.02558116987*pow(xi2, 6) + 35.0873995770235*pow(xi2, 4) - 0.218159997370094*pow(xi2, 2); case 14: return -34296327.8279754*pow(xi1, 37) + 316947562.443547*pow(xi1, 35) - 1345791771.57908*pow(xi1, 33) + 3480058140.28836*pow(xi1, 31) - 6124119482.10734*pow(xi1, 29) + 7763025283.9491*pow(xi1, 27) - 7318288745.93586*pow(xi1, 25) + 5222745456.02108*pow(xi1, 23) - 2845258105.69757*pow(xi1, 21) + 1184495832.35406*pow(xi1, 19) - 374767367.763486*pow(xi1, 17) + 89029356.3545286*pow(xi1, 15) - 15566914.4021732*pow(xi1, 13) + 1944230.40113592*pow(xi1, 11) - 165915.906914179*pow(xi1, 9) + 9050.10777661577*pow(xi1, 7) - 285.244196561398*pow(xi1, 5) + 4.58135994477198*pow(xi1, 3) - 0.0363599995616823*xi1 + 34296327.8279754*pow(xi2, 37) - 316947562.443547*pow(xi2, 35) + 1345791771.57908*pow(xi2, 33) - 3480058140.28836*pow(xi2, 31) + 6124119482.10734*pow(xi2, 29) - 7763025283.9491*pow(xi2, 27) + 7318288745.93586*pow(xi2, 25) - 5222745456.02108*pow(xi2, 23) + 2845258105.69757*pow(xi2, 21) - 1184495832.35406*pow(xi2, 19) + 374767367.763486*pow(xi2, 17) - 89029356.3545286*pow(xi2, 15) + 15566914.4021732*pow(xi2, 13) - 1944230.40113592*pow(xi2, 11) + 165915.906914179*pow(xi2, 9) - 9050.10777661577*pow(xi2, 7) + 285.244196561398*pow(xi2, 5) - 4.58135994477198*pow(xi2, 3) + 0.0363599995616823*xi2; case 15: return -64218832.4714114*pow(xi1, 38) + 609559692.386086*pow(xi1, 36) - 2664571836.57134*pow(xi1, 34) + 7112249072.16354*pow(xi1, 32) - 12958610422.2982*pow(xi1, 30) + 17067705071.5141*pow(xi1, 28) - 16787255145.7937*pow(xi1, 26) + 12560873795.7298*pow(xi1, 24) - 7216667713.14824*pow(xi1, 22) + 3191020712.83802*pow(xi1, 20) - 1081805051.19921*pow(xi1, 18) + 278426210.632151*pow(xi1, 16) - 53501402.6224166*pow(xi1, 14) + 7484344.83168108*pow(xi1, 12) - 734495.95757998*pow(xi1, 10) + 47860.1999373338*pow(xi1, 8) - 1898.99187710776*pow(xi1, 6) + 38.9960995299043*pow(xi1, 4) - 0.236339997150935*pow(xi1, 2) + 64218832.4714114*pow(xi2, 38) - 609559692.386086*pow(xi2, 36) + 2664571836.57134*pow(xi2, 34) - 7112249072.16354*pow(xi2, 32) + 12958610422.2982*pow(xi2, 30) - 17067705071.5141*pow(xi2, 28) + 16787255145.7937*pow(xi2, 26) - 12560873795.7298*pow(xi2, 24) + 7216667713.14824*pow(xi2, 22) - 3191020712.83802*pow(xi2, 20) + 1081805051.19921*pow(xi2, 18) - 278426210.632151*pow(xi2, 16) + 53501402.6224166*pow(xi2, 14) - 7484344.83168108*pow(xi2, 12) + 734495.95757998*pow(xi2, 10) - 47860.1999373338*pow(xi2, 8) + 1898.99187710776*pow(xi2, 6) - 38.9960995299043*pow(xi2, 4) + 0.236339997150935*pow(xi2, 2); case 16: return -120674948.929795*pow(xi1, 39) + 1175653580.47207*pow(xi1, 37) - 5286302218.13123*pow(xi1, 35) + 14550493221.5513*pow(xi1, 33) - 27416907540.5478*pow(xi1, 31) + 37467926302.5102*pow(xi1, 29) - 38384854462.9983*pow(xi1, 27) + 30051114463.0346*pow(xi1, 25) - 18162427058.8831*pow(xi1, 23) + 8503083836.0135*pow(xi1, 21) - 3076420020.57996*pow(xi1, 19) + 853376938.104283*pow(xi1, 17) - 178972641.335269*pow(xi1, 15) + 27778770.6562195*pow(xi1, 13) - 3093109.45395475*pow(xi1, 11) + 236110.827741453*pow(xi1, 9) - 11542.8213445254*pow(xi1, 7) + 325.035021796008*pow(xi1, 5) - 4.55798565933947*pow(xi1, 3) + 0.0337628567358479*xi1 + 120674948.929795*pow(xi2, 39) - 1175653580.47207*pow(xi2, 37) + 5286302218.13123*pow(xi2, 35) - 14550493221.5513*pow(xi2, 33) + 27416907540.5478*pow(xi2, 31) - 37467926302.5102*pow(xi2, 29) + 38384854462.9983*pow(xi2, 27) - 30051114463.0346*pow(xi2, 25) + 18162427058.8831*pow(xi2, 23) - 8503083836.0135*pow(xi2, 21) + 3076420020.57996*pow(xi2, 19) - 853376938.104283*pow(xi2, 17) + 178972641.335269*pow(xi2, 15) - 27778770.6562195*pow(xi2, 13) + 3093109.45395475*pow(xi2, 11) - 236110.827741453*pow(xi2, 9) + 11542.8213445254*pow(xi2, 7) - 325.035021796008*pow(xi2, 5) + 4.55798565933947*pow(xi2, 3) - 0.0337628567358479*xi2; case 17: return -227472278.732664*pow(xi1, 40) + 2273053878.45846*pow(xi1, 38) - 10505212659.9366*pow(xi1, 36) + 29790506288.6914*pow(xi1, 34) - 57987682215.1704*pow(xi1, 32) + 82118094217.2808*pow(xi1, 30) - 87490193887.0504*pow(xi1, 28) + 71532356048.1256*pow(xi1, 26) - 45374423454.5563*pow(xi1, 24) + 22427611247.8239*pow(xi1, 22) - 8628644103.11401*pow(xi1, 20) + 2567887790.32449*pow(xi1, 18) - 584252375.676849*pow(xi1, 16) + 99804149.7685162*pow(xi1, 14) - 12467065.8196333*pow(xi1, 12) + 1096362.40067811*pow(xi1, 10) - 64196.1260493338*pow(xi1, 8) + 2296.0599537497*pow(xi1, 6) - 43.0054387672863*pow(xi1, 4) + 0.253221425518859*pow(xi1, 2) + 227472278.732664*pow(xi2, 40) - 2273053878.45846*pow(xi2, 38) + 10505212659.9366*pow(xi2, 36) - 29790506288.6914*pow(xi2, 34) + 57987682215.1704*pow(xi2, 32) - 82118094217.2808*pow(xi2, 30) + 87490193887.0504*pow(xi2, 28) - 71532356048.1256*pow(xi2, 26) + 45374423454.5563*pow(xi2, 24) - 22427611247.8239*pow(xi2, 22) + 8628644103.11401*pow(xi2, 20) - 2567887790.32449*pow(xi2, 18) + 584252375.676849*pow(xi2, 16) - 99804149.7685162*pow(xi2, 14) + 12467065.8196333*pow(xi2, 12) - 1096362.40067811*pow(xi2, 10) + 64196.1260493338*pow(xi2, 8) - 2296.0599537497*pow(xi2, 6) + 43.0054387672863*pow(xi2, 4) - 0.253221425518859*pow(xi2, 2); case 18: return -429978087.848327*pow(xi1, 41) + 4404250503.12178*pow(xi1, 39) - 20905920719.0056*pow(xi1, 37) + 61025896951.4279*pow(xi1, 35) - 122587641860.07*pow(xi1, 33) + 179674777476.665*pow(xi1, 31) - 198793181542.137*pow(xi1, 29) + 169446632019.221*pow(xi1, 27) - 112569347434.57*pow(xi1, 25) + 58591489691.1156*pow(xi1, 23) - 23893543905.5802*pow(xi1, 21) + 7597569384.4288*pow(xi1, 19) - 1865442270.4129*pow(xi1, 17) + 348266022.083215*pow(xi1, 15) - 48339465.2060883*pow(xi1, 13) + 4830882.97791334*pow(xi1, 11) - 331913.895870354*pow(xi1, 9) + 14634.4945765412*pow(xi1, 7) - 371.378763023051*pow(xi1, 5) + 4.60018923025928*pow(xi1, 3) - 0.0316526781898574*xi1 + 429978087.848327*pow(xi2, 41) - 4404250503.12178*pow(xi2, 39) + 20905920719.0056*pow(xi2, 37) - 61025896951.4279*pow(xi2, 35) + 122587641860.07*pow(xi2, 33) - 179674777476.665*pow(xi2, 31) + 198793181542.137*pow(xi2, 29) - 169446632019.221*pow(xi2, 27) + 112569347434.57*pow(xi2, 25) - 58591489691.1156*pow(xi2, 23) + 23893543905.5802*pow(xi2, 21) - 7597569384.4288*pow(xi2, 19) + 1865442270.4129*pow(xi2, 17) - 348266022.083215*pow(xi2, 15) + 48339465.2060883*pow(xi2, 13) - 4830882.97791334*pow(xi2, 11) + 331913.895870354*pow(xi2, 9) - 14634.4945765412*pow(xi2, 7) + 371.378763023051*pow(xi2, 5) - 4.60018923025928*pow(xi2, 3) + 0.0316526781898574*xi2; case 19: return -814790410.166368*pow(xi1, 42) + 8549783317.50976*pow(xi1, 40) - 41653476712.0875*pow(xi1, 38) + 125058682142.194*pow(xi1, 36) - 259003421118.796*pow(xi1, 34) + 392457703405.874*pow(xi1, 32) - 450317176392.393*pow(xi1, 30) + 399522176450.682*pow(xi1, 28) - 277437040157.331*pow(xi1, 26) + 151702743338.496*pow(xi1, 24) - 65381671352.4093*pow(xi1, 22) + 22131888579.5098*pow(xi1, 20) - 5836813063.12121*pow(xi1, 18) + 1183677533.4723*pow(xi1, 16) - 181066218.998149*pow(xi1, 14) + 20329839.01153*pow(xi1, 12) - 1611743.59518819*pow(xi1, 10) + 85277.0028051157*pow(xi1, 8) - 2761.75736724289*pow(xi1, 6) + 47.1730413956175*pow(xi1, 4) - 0.269047764613788*pow(xi1, 2) + 814790410.166368*pow(xi2, 42) - 8549783317.50976*pow(xi2, 40) + 41653476712.0875*pow(xi2, 38) - 125058682142.194*pow(xi2, 36) + 259003421118.796*pow(xi2, 34) - 392457703405.874*pow(xi2, 32) + 450317176392.393*pow(xi2, 30) - 399522176450.682*pow(xi2, 28) + 277437040157.331*pow(xi2, 26) - 151702743338.496*pow(xi2, 24) + 65381671352.4093*pow(xi2, 22) - 22131888579.5098*pow(xi2, 20) + 5836813063.12121*pow(xi2, 18) - 1183677533.4723*pow(xi2, 16) + 181066218.998149*pow(xi2, 14) - 20329839.01153*pow(xi2, 12) + 1611743.59518819*pow(xi2, 10) - 85277.0028051157*pow(xi2, 8) + 2761.75736724289*pow(xi2, 6) - 47.1730413956175*pow(xi2, 4) + 0.269047764613788*pow(xi2, 2); case 20: return -1547470158.8431*pow(xi1, 43) + 16625191560.6287*pow(xi1, 41) - 83075701012.3164*pow(xi1, 39) + 256341987434.563*pow(xi1, 37) - 546864253678.519*pow(xi1, 35) + 855764806225.721*pow(xi1, 33) - 1017063876240.53*pow(xi1, 31) + 937809906938.586*pow(xi1, 29) - 679513807901.221*pow(xi1, 27) + 389493949031.175*pow(xi1, 25) - 176939998576.283*pow(xi1, 23) + 63551103650.6587*pow(xi1, 21) - 17927506260.0493*pow(xi1, 19) + 3928013839.52227*pow(xi1, 17) - 657519566.445603*pow(xi1, 15) + 82143393.9973852*pow(xi1, 13) - 7411542.29891748*pow(xi1, 11) + 460866.585516028*pow(xi1, 9) - 18424.3960454715*pow(xi1, 7) + 424.126896137175*pow(xi1, 5) - 4.69338878270719*pow(xi1, 3) + 0.0298941960681987*xi1 + 1547470158.8431*pow(xi2, 43) - 16625191560.6287*pow(xi2, 41) + 83075701012.3164*pow(xi2, 39) - 256341987434.563*pow(xi2, 37) + 546864253678.519*pow(xi2, 35) - 855764806225.721*pow(xi2, 33) + 1017063876240.53*pow(xi2, 31) - 937809906938.586*pow(xi2, 29) + 679513807901.221*pow(xi2, 27) - 389493949031.175*pow(xi2, 25) + 176939998576.283*pow(xi2, 23) - 63551103650.6587*pow(xi2, 21) + 17927506260.0493*pow(xi2, 19) - 3928013839.52227*pow(xi2, 17) + 657519566.445603*pow(xi2, 15) - 82143393.9973852*pow(xi2, 13) + 7411542.29891748*pow(xi2, 11) - 460866.585516028*pow(xi2, 9) + 18424.3960454715*pow(xi2, 7) - 424.126896137175*pow(xi2, 5) + 4.69338878270719*pow(xi2, 3) - 0.0298941960681987*xi2; case 21: return -2945006008.03753*pow(xi1, 44) + 32376437528.27*pow(xi1, 42) - 165834316512.342*pow(xi1, 40) + 525516840538.759*pow(xi1, 38) - 1153840986172.26*pow(xi1, 36) + 1862846628678.5*pow(xi1, 34) - 2290506419752.75*pow(xi1, 32) + 2192002290170.17*pow(xi1, 30) - 1654499005685.08*pow(xi1, 28) + 992150683496.898*pow(xi1, 26) - 473928780505.806*pow(xi1, 24) + 180072606201.234*pow(xi1, 22) - 54132938919.5742*pow(xi1, 20) + 12753941922.5462*pow(xi1, 18) - 2321784503.34649*pow(xi1, 16) + 320073908.647654*pow(xi1, 14) - 32490100.6234645*pow(xi1, 12) + 2334644.31637217*pow(xi1, 10) - 112182.940656012*pow(xi1, 8) + 3304.67781971587*pow(xi1, 6) - 51.5450675705915*pow(xi1, 4) + 0.283994862647887*pow(xi1, 2) + 2945006008.03753*pow(xi2, 44) - 32376437528.27*pow(xi2, 42) + 165834316512.342*pow(xi2, 40) - 525516840538.759*pow(xi2, 38) + 1153840986172.26*pow(xi2, 36) - 1862846628678.5*pow(xi2, 34) + 2290506419752.75*pow(xi2, 32) - 2192002290170.17*pow(xi2, 30) + 1654499005685.08*pow(xi2, 28) - 992150683496.898*pow(xi2, 26) + 473928780505.806*pow(xi2, 24) - 180072606201.234*pow(xi2, 22) + 54132938919.5742*pow(xi2, 20) - 12753941922.5462*pow(xi2, 18) + 2321784503.34649*pow(xi2, 16) - 320073908.647654*pow(xi2, 14) + 32490100.6234645*pow(xi2, 12) - 2334644.31637217*pow(xi2, 10) + 112182.940656012*pow(xi2, 8) - 3304.67781971587*pow(xi2, 6) + 51.5450675705915*pow(xi2, 4) - 0.283994862647887*pow(xi2, 2); case 22: return -5615144788.65823*pow(xi1, 45) + 63135916036.1408*pow(xi1, 43) - 331283607298.759*pow(xi1, 41) + 1077403912985.34*pow(xi1, 39) - 2432704272638.31*pow(xi1, 37) + 4048284797605.57*pow(xi1, 35) - 5144115977810.54*pow(xi1, 33) + 5102731133233.49*pow(xi1, 31) - 4005941677467.71*pow(xi1, 29) + 2508576623183.67*pow(xi1, 27) - 1257213928686.48*pow(xi1, 25) + 503967555431.51*pow(xi1, 23) - 160906149318.764*pow(xi1, 21) + 40592360498.6979*pow(xi1, 19) - 7992770588.98206*pow(xi1, 17) + 1207178101.86205*pow(xi1, 15) - 136518405.419752*pow(xi1, 13) + 11179652.8357223*pow(xi1, 11) - 632273.686710647*pow(xi1, 9) + 23026.7091704373*pow(xi1, 7) - 483.330856740439*pow(xi1, 5) + 4.82791266501408*pow(xi1, 3) - 0.0283994862647887*xi1 + 5615144788.65823*pow(xi2, 45) - 63135916036.1408*pow(xi2, 43) + 331283607298.759*pow(xi2, 41) - 1077403912985.34*pow(xi2, 39) + 2432704272638.31*pow(xi2, 37) - 4048284797605.57*pow(xi2, 35) + 5144115977810.54*pow(xi2, 33) - 5102731133233.49*pow(xi2, 31) + 4005941677467.71*pow(xi2, 29) - 2508576623183.67*pow(xi2, 27) + 1257213928686.48*pow(xi2, 25) - 503967555431.51*pow(xi2, 23) + 160906149318.764*pow(xi2, 21) - 40592360498.6979*pow(xi2, 19) + 7992770588.98206*pow(xi2, 17) - 1207178101.86205*pow(xi2, 15) + 136518405.419752*pow(xi2, 13) - 11179652.8357223*pow(xi2, 11) + 632273.686710647*pow(xi2, 9) - 23026.7091704373*pow(xi2, 7) + 483.330856740439*pow(xi2, 5) - 4.82791266501408*pow(xi2, 3) + 0.0283994862647887*xi2; case 23: return -10724577779.5802*pow(xi1, 46) + 123268642054.967*pow(xi1, 44) - 662226702259.593*pow(xi1, 42) + 2208852750087.43*pow(xi1, 40) - 5125069148373.14*pow(xi1, 38) + 8783140469058.23*pow(xi1, 36) - 11522023284984.6*pow(xi1, 34) + 11832582409198.7*pow(xi1, 32) - 9648041315255.88*pow(xi1, 30) + 6298492797700.62*pow(xi1, 28) - 3305059766157.57*pow(xi1, 26) + 1394300038521.23*pow(xi1, 24) - 471368271194.802*pow(xi1, 22) + 126844343800.751*pow(xi1, 20) - 26884603684.2252*pow(xi1, 18) + 4420790397.9644*pow(xi1, 16) - 552329947.313166*pow(xi1, 14) + 50950982.4545326*pow(xi1, 12) - 3334465.9698603*pow(xi1, 10) + 146178.190695699*pow(xi1, 8) - 3933.68384125155*pow(xi1, 6) + 56.1599840886197*pow(xi1, 4) - 0.298194605780282*pow(xi1, 2) + 10724577779.5802*pow(xi2, 46) - 123268642054.967*pow(xi2, 44) + 662226702259.593*pow(xi2, 42) - 2208852750087.43*pow(xi2, 40) + 5125069148373.14*pow(xi2, 38) - 8783140469058.23*pow(xi2, 36) + 11522023284984.6*pow(xi2, 34) - 11832582409198.7*pow(xi2, 32) + 9648041315255.88*pow(xi2, 30) - 6298492797700.62*pow(xi2, 28) + 3305059766157.57*pow(xi2, 26) - 1394300038521.23*pow(xi2, 24) + 471368271194.802*pow(xi2, 22) - 126844343800.751*pow(xi2, 20) + 26884603684.2252*pow(xi2, 18) - 4420790397.9644*pow(xi2, 16) + 552329947.313166*pow(xi2, 14) - 50950982.4545326*pow(xi2, 12) + 3334465.9698603*pow(xi2, 10) - 146178.190695699*pow(xi2, 8) + 3933.68384125155*pow(xi2, 6) - 56.1599840886197*pow(xi2, 4) + 0.298194605780282*pow(xi2, 2); case 24: return -20515681671.1891*pow(xi1, 47) + 240939982417.454*pow(xi1, 45) - 1324517078711.9*pow(xi1, 43) + 4528228288286.7*pow(xi1, 41) - 10788760831208.3*pow(xi1, 39) + 19025199835309.7*pow(xi1, 37) - 25741152427126.8*pow(xi1, 35) + 27336784803967.1*pow(xi1, 33) - 23120016516737.7*pow(xi1, 31) + 15710037319763.9*pow(xi1, 29) - 8615184787726.1*pow(xi1, 27) + 3816281731480.58*pow(xi1, 25) - 1362313663683.21*pow(xi1, 23) + 389709410212.598*pow(xi1, 21) - 88528792082.7051*pow(xi1, 19) + 15761825919.9628*pow(xi1, 17) - 2159890092.02749*pow(xi1, 15) + 222238572.11934*pow(xi1, 13) - 16596364.3474867*pow(xi1, 11) + 857500.123169862*pow(xi1, 9) - 28570.2381759558*pow(xi1, 7) + 549.175065645352*pow(xi1, 5) - 4.99701869686351*pow(xi1, 3) + 0.0271086005254801*xi1 + 20515681671.1891*pow(xi2, 47) - 240939982417.454*pow(xi2, 45) + 1324517078711.9*pow(xi2, 43) - 4528228288286.7*pow(xi2, 41) + 10788760831208.3*pow(xi2, 39) - 19025199835309.7*pow(xi2, 37) + 25741152427126.8*pow(xi2, 35) - 27336784803967.1*pow(xi2, 33) + 23120016516737.7*pow(xi2, 31) - 15710037319763.9*pow(xi2, 29) + 8615184787726.1*pow(xi2, 27) - 3816281731480.58*pow(xi2, 25) + 1362313663683.21*pow(xi2, 23) - 389709410212.598*pow(xi2, 21) + 88528792082.7051*pow(xi2, 19) - 15761825919.9628*pow(xi2, 17) + 2159890092.02749*pow(xi2, 15) - 222238572.11934*pow(xi2, 13) + 16596364.3474867*pow(xi2, 11) - 857500.123169862*pow(xi2, 9) + 28570.2381759558*pow(xi2, 7) - 549.175065645352*pow(xi2, 5) + 4.99701869686351*pow(xi2, 3) - 0.0271086005254801*xi2; case 25: return -39303140158.1204*pow(xi1, 48) + 471414685357.541*pow(xi1, 46) - 2650459083811.01*pow(xi1, 44) + 9282069011156.13*pow(xi1, 42) - 22693549650921.2*pow(xi1, 40) + 41145898780126.6*pow(xi1, 38) - 57365413435046.9*pow(xi1, 36) + 62932990858132.5*pow(xi1, 34) - 55139349262126.3*pow(xi1, 32) + 38941023145450.4*pow(xi1, 30) - 22278448882718.6*pow(xi1, 28) + 10340821294578.2*pow(xi1, 26) - 3888016417121.97*pow(xi1, 24) + 1178690980057.69*pow(xi1, 22) - 285877453267.485*pow(xi1, 20) + 54840820984.8424*pow(xi1, 18) - 8190337044.02725*pow(xi1, 16) + 932072013.857978*pow(xi1, 14) - 78500941.0145018*pow(xi1, 12) + 4699435.057622*pow(xi1, 10) - 188733.622760158*pow(xi1, 8) + 4658.04823779281*pow(xi1, 6) - 61.0508274334251*pow(xi1, 4) + 0.311748906043022*pow(xi1, 2) + 39303140158.1204*pow(xi2, 48) - 471414685357.541*pow(xi2, 46) + 2650459083811.01*pow(xi2, 44) - 9282069011156.13*pow(xi2, 42) + 22693549650921.2*pow(xi2, 40) - 41145898780126.6*pow(xi2, 38) + 57365413435046.9*pow(xi2, 36) - 62932990858132.5*pow(xi2, 34) + 55139349262126.3*pow(xi2, 32) - 38941023145450.4*pow(xi2, 30) + 22278448882718.6*pow(xi2, 28) - 10340821294578.2*pow(xi2, 26) + 3888016417121.97*pow(xi2, 24) - 1178690980057.69*pow(xi2, 22) + 285877453267.485*pow(xi2, 20) - 54840820984.8424*pow(xi2, 18) + 8190337044.02725*pow(xi2, 16) - 932072013.857978*pow(xi2, 14) + 78500941.0145018*pow(xi2, 12) - 4699435.057622*pow(xi2, 10) + 188733.622760158*pow(xi2, 8) - 4658.04823779281*pow(xi2, 6) + 61.0508274334251*pow(xi2, 4) - 0.311748906043022*pow(xi2, 2); case 26: return -75397860711.4964*pow(xi1, 49) + 923205675203.51*pow(xi1, 47) - 5306039136225.21*pow(xi1, 45) + 19023984126810.3*pow(xi1, 43) - 47697146971124.2*pow(xi1, 41) + 88850527443269.1*pow(xi1, 39) - 127536852017959.0*pow(xi1, 37) + 144391127494206.0*pow(xi1, 35) - 130906819389456.0*pow(xi1, 33) + 95956202166020.2*pow(xi1, 31) - 57179646008534.8*pow(xi1, 29) + 27756965085111.9*pow(xi1, 27) - 10966740856858.2*pow(xi1, 25) + 3513460872224.75*pow(xi1, 23) - 906655657151.034*pow(xi1, 21) + 186584247134.471*pow(xi1, 19) - 30200998509.3479*pow(xi1, 17) + 3773515185.74454*pow(xi1, 15) - 354884178.83289*pow(xi1, 13) + 24271267.6401381*pow(xi1, 11) - 1150307.25765732*pow(xi1, 9) + 35198.6782701574*pow(xi1, 7) - 621.939067555828*pow(xi1, 5) + 5.19581510071703*pow(xi1, 3) - 0.0259790755035851*xi1 + 75397860711.4964*pow(xi2, 49) - 923205675203.51*pow(xi2, 47) + 5306039136225.21*pow(xi2, 45) - 19023984126810.3*pow(xi2, 43) + 47697146971124.2*pow(xi2, 41) - 88850527443269.1*pow(xi2, 39) + 127536852017959.0*pow(xi2, 37) - 144391127494206.0*pow(xi2, 35) + 130906819389456.0*pow(xi2, 33) - 95956202166020.2*pow(xi2, 31) + 57179646008534.8*pow(xi2, 29) - 27756965085111.9*pow(xi2, 27) + 10966740856858.2*pow(xi2, 25) - 3513460872224.75*pow(xi2, 23) + 906655657151.034*pow(xi2, 21) - 186584247134.471*pow(xi2, 19) + 30200998509.3479*pow(xi2, 17) - 3773515185.74454*pow(xi2, 15) + 354884178.83289*pow(xi2, 13) - 24271267.6401381*pow(xi2, 11) + 1150307.25765732*pow(xi2, 9) - 35198.6782701574*pow(xi2, 7) + 621.939067555828*pow(xi2, 5) - 5.19581510071703*pow(xi2, 3) + 0.0259790755035851*xi2; case 27: return -144824210854.642*pow(xi1, 50) + 1809516572879.87*pow(xi1, 48) - 10626311398270.7*pow(xi1, 46) + 38984017588812.6*pow(xi1, 44) - 100171327455461.0*pow(xi1, 42) + 191579165608972.0*pow(xi1, 40) - 282894076206354.0*pow(xi1, 38) + 330216112067159.0*pow(xi1, 36) - 309446644109395.0*pow(xi1, 34) + 235130614154372.0*pow(xi1, 32) - 145719751523803.0*pow(xi1, 30) + 73847974938271.3*pow(xi1, 28) - 30595276980720.1*pow(xi1, 26) + 10331946432099.3*pow(xi1, 24) - 2827813652143.41*pow(xi1, 22) + 621862223301.171*pow(xi1, 20) - 108552592052.753*pow(xi1, 18) + 14796557716.0717*pow(xi1, 16) - 1540678338.77952*pow(xi1, 14) + 118968280.900703*pow(xi1, 12) - 6540599.65782463*pow(xi1, 10) + 241550.011083072*pow(xi1, 8) - 5487.56011862229*pow(xi1, 6) + 66.2466425341421*pow(xi1, 4) - 0.324738443794814*pow(xi1, 2) + 144824210854.642*pow(xi2, 50) - 1809516572879.87*pow(xi2, 48) + 10626311398270.7*pow(xi2, 46) - 38984017588812.6*pow(xi2, 44) + 100171327455461.0*pow(xi2, 42) - 191579165608972.0*pow(xi2, 40) + 282894076206354.0*pow(xi2, 38) - 330216112067159.0*pow(xi2, 36) + 309446644109395.0*pow(xi2, 34) - 235130614154372.0*pow(xi2, 32) + 145719751523803.0*pow(xi2, 30) - 73847974938271.3*pow(xi2, 28) + 30595276980720.1*pow(xi2, 26) - 10331946432099.3*pow(xi2, 24) + 2827813652143.41*pow(xi2, 22) - 621862223301.171*pow(xi2, 20) + 108552592052.753*pow(xi2, 18) - 14796557716.0717*pow(xi2, 16) + 1540678338.77952*pow(xi2, 14) - 118968280.900703*pow(xi2, 12) + 6540599.65782463*pow(xi2, 10) - 241550.011083072*pow(xi2, 8) + 5487.56011862229*pow(xi2, 6) - 66.2466425341421*pow(xi2, 4) + 0.324738443794814*pow(xi2, 2); case 28: return -278508097797.389*pow(xi1, 51) + 3549496820864.59*pow(xi1, 49) - 21288128648696.6*pow(xi1, 47) + 79871307262862.2*pow(xi1, 45) - 210212671150195.0*pow(xi1, 43) + 412486935729554.0*pow(xi1, 41) - 626112410202269.0*pow(xi1, 39) + 752856933338791.0*pow(xi1, 37) - 728486502684749.0*pow(xi1, 35) + 573113389622653.0*pow(xi1, 33) - 368879995670080.0*pow(xi1, 31) + 194841049824986.0*pow(xi1, 29) - 84480468246275.5*pow(xi1, 27) + 30000793028347.5*pow(xi1, 25) - 8684024948552.07*pow(xi1, 23) + 2033504922658.4*pow(xi1, 21) - 381131167800.204*pow(xi1, 19) + 56356143580.967*pow(xi1, 17) - 6449006483.44302*pow(xi1, 15) + 556644810.745324*pow(xi1, 13) - 35001064.4284215*pow(xi1, 11) + 1527228.79271278*pow(xi1, 9) - 43071.2202943735*pow(xi1, 7) + 701.974604011104*pow(xi1, 5) - 5.42063402334421*pow(xi1, 3) + 0.0249798802919088*xi1 + 278508097797.389*pow(xi2, 51) - 3549496820864.59*pow(xi2, 49) + 21288128648696.6*pow(xi2, 47) - 79871307262862.2*pow(xi2, 45) + 210212671150195.0*pow(xi2, 43) - 412486935729554.0*pow(xi2, 41) + 626112410202269.0*pow(xi2, 39) - 752856933338791.0*pow(xi2, 37) + 728486502684749.0*pow(xi2, 35) - 573113389622653.0*pow(xi2, 33) + 368879995670080.0*pow(xi2, 31) - 194841049824986.0*pow(xi2, 29) + 84480468246275.5*pow(xi2, 27) - 30000793028347.5*pow(xi2, 25) + 8684024948552.07*pow(xi2, 23) - 2033504922658.4*pow(xi2, 21) + 381131167800.204*pow(xi2, 19) - 56356143580.967*pow(xi2, 17) + 6449006483.44302*pow(xi2, 15) - 556644810.745324*pow(xi2, 13) + 35001064.4284215*pow(xi2, 11) - 1527228.79271278*pow(xi2, 9) + 43071.2202943735*pow(xi2, 7) - 701.974604011104*pow(xi2, 5) + 5.42063402334421*pow(xi2, 3) - 0.0249798802919088*xi2; case 29: return -536187598537.281*pow(xi1, 52) + 6967640531775.1*pow(xi1, 50) - 42659726193562.7*pow(xi1, 48) + 163608805357696.0*pow(xi1, 46) - 440801678175839.0*pow(xi1, 44) + 886879365892137.0*pow(xi1, 42) - 1.38279322603835e+15*pow(xi1, 40) + 1.71135652394663e+15*pow(xi1, 38) - 1.70825590882209e+15*pow(xi1, 36) + 1.38989776889186e+15*pow(xi1, 34) - 927891786877753.0*pow(xi1, 32) + 510039629345147.0*pow(xi1, 30) - 231022322507251.0*pow(xi1, 28) + 86087547010722.5*pow(xi1, 26) - 26285433620239.1*pow(xi1, 24) + 6533333986439.11*pow(xi1, 22) - 1309569337206.32*pow(xi1, 20) + 209011313677.242*pow(xi1, 18) - 26116500380.1459*pow(xi1, 16) + 2498241243.17268*pow(xi1, 14) - 177542358.650584*pow(xi1, 12) + 8996459.42651258*pow(xi1, 10) - 306582.523307831*pow(xi1, 8) + 6432.6089417779*pow(xi1, 6) - 71.7734410487269*pow(xi1, 4) + 0.337228383940769*pow(xi1, 2) + 536187598537.281*pow(xi2, 52) - 6967640531775.1*pow(xi2, 50) + 42659726193562.7*pow(xi2, 48) - 163608805357696.0*pow(xi2, 46) + 440801678175839.0*pow(xi2, 44) - 886879365892137.0*pow(xi2, 42) + 1.38279322603835e+15*pow(xi2, 40) - 1.71135652394663e+15*pow(xi2, 38) + 1.70825590882209e+15*pow(xi2, 36) - 1.38989776889186e+15*pow(xi2, 34) + 927891786877753.0*pow(xi2, 32) - 510039629345147.0*pow(xi2, 30) + 231022322507251.0*pow(xi2, 28) - 86087547010722.5*pow(xi2, 26) + 26285433620239.1*pow(xi2, 24) - 6533333986439.11*pow(xi2, 22) + 1309569337206.32*pow(xi2, 20) - 209011313677.242*pow(xi2, 18) + 26116500380.1459*pow(xi2, 16) - 2498241243.17268*pow(xi2, 14) + 177542358.650584*pow(xi2, 12) - 8996459.42651258*pow(xi2, 10) + 306582.523307831*pow(xi2, 8) - 6432.6089417779*pow(xi2, 6) + 71.7734410487269*pow(xi2, 4) - 0.337228383940769*pow(xi2, 2); default: return 0.; } case 27: switch(j) { case 0: return -209296.091460109*pow(xi1, 27)*y1t + 1383917.0129199*pow(xi1, 25)*y1t - 4048693.38886142*pow(xi1, 23)*y1t + 6897773.9217639*pow(xi1, 21)*y1t - 7579530.6465894*pow(xi1, 19)*y1t + 5619944.67454433*pow(xi1, 17)*y1t - 2858006.05243921*pow(xi1, 15)*y1t + 993129.516291618*pow(xi1, 13)*y1t - 230547.92342484*pow(xi1, 11)*y1t + 34155.2479147911*pow(xi1, 9)*y1t - 2974.81191515923*pow(xi1, 7)*y1t + 130.556008815765*pow(xi1, 5)*y1t - 2.01475322246552*pow(xi1, 3)*y1t + 209296.091460109*pow(xi2, 27)*y1t - 1383917.0129199*pow(xi2, 25)*y1t + 4048693.38886142*pow(xi2, 23)*y1t - 6897773.9217639*pow(xi2, 21)*y1t + 7579530.6465894*pow(xi2, 19)*y1t - 5619944.67454433*pow(xi2, 17)*y1t + 2858006.05243921*pow(xi2, 15)*y1t - 993129.516291618*pow(xi2, 13)*y1t + 230547.92342484*pow(xi2, 11)*y1t - 34155.2479147911*pow(xi2, 9)*y1t + 2974.81191515923*pow(xi2, 7)*y1t - 130.556008815765*pow(xi2, 5)*y1t + 2.01475322246552*pow(xi2, 3)*y1t; case 1: return -104648.045730054*pow(xi1, 27)*y1r + 36224.3235219419*pow(xi1, 26)*y1r + 691958.506459951*pow(xi1, 25)*y1r - 240263.370298594*pow(xi1, 24)*y1r - 2024346.69443071*pow(xi1, 23)*y1r + 705454.151089489*pow(xi1, 22)*y1r + 3448886.96088195*pow(xi1, 21)*y1r - 1207110.43630868*pow(xi1, 20)*y1r - 3789765.3232947*pow(xi1, 19)*y1r + 1333435.94708517*pow(xi1, 18)*y1r + 2809972.33727217*pow(xi1, 17)*y1r - 995198.536117226*pow(xi1, 16)*y1r - 1429003.02621961*pow(xi1, 15)*y1r + 510358.223649859*pow(xi1, 14)*y1r + 496564.758145809*pow(xi1, 13)*y1r - 179315.051552653*pow(xi1, 12)*y1r - 115273.96171242*pow(xi1, 11)*y1r + 42267.119294554*pow(xi1, 10)*y1r + 17077.6239573956*pow(xi1, 9)*y1r - 6404.10898402333*pow(xi1, 8)*y1r - 1487.40595757961*pow(xi1, 7)*y1r + 578.435650169849*pow(xi1, 6)*y1r + 65.2780044078827*pow(xi1, 5)*y1r - 27.1991685032845*pow(xi1, 4)*y1r - 1.00737661123276*pow(xi1, 3)*y1r + 0.503688305616379*pow(xi1, 2)*y1r + 104648.045730054*pow(xi2, 27)*y1r - 36224.3235219419*pow(xi2, 26)*y1r - 691958.506459951*pow(xi2, 25)*y1r + 240263.370298594*pow(xi2, 24)*y1r + 2024346.69443071*pow(xi2, 23)*y1r - 705454.151089489*pow(xi2, 22)*y1r - 3448886.96088195*pow(xi2, 21)*y1r + 1207110.43630868*pow(xi2, 20)*y1r + 3789765.3232947*pow(xi2, 19)*y1r - 1333435.94708517*pow(xi2, 18)*y1r - 2809972.33727217*pow(xi2, 17)*y1r + 995198.536117226*pow(xi2, 16)*y1r + 1429003.02621961*pow(xi2, 15)*y1r - 510358.223649859*pow(xi2, 14)*y1r - 496564.758145809*pow(xi2, 13)*y1r + 179315.051552653*pow(xi2, 12)*y1r + 115273.96171242*pow(xi2, 11)*y1r - 42267.119294554*pow(xi2, 10)*y1r - 17077.6239573956*pow(xi2, 9)*y1r + 6404.10898402333*pow(xi2, 8)*y1r + 1487.40595757961*pow(xi2, 7)*y1r - 578.435650169849*pow(xi2, 6)*y1r - 65.2780044078827*pow(xi2, 5)*y1r + 27.1991685032845*pow(xi2, 4)*y1r + 1.00737661123276*pow(xi2, 3)*y1r - 0.503688305616379*pow(xi2, 2)*y1r; case 2: return 209296.091460109*pow(xi1, 27)*y2t - 1383917.0129199*pow(xi1, 25)*y2t + 4048693.38886142*pow(xi1, 23)*y2t - 6897773.9217639*pow(xi1, 21)*y2t + 7579530.6465894*pow(xi1, 19)*y2t - 5619944.67454433*pow(xi1, 17)*y2t + 2858006.05243921*pow(xi1, 15)*y2t - 993129.516291618*pow(xi1, 13)*y2t + 230547.92342484*pow(xi1, 11)*y2t - 34155.2479147911*pow(xi1, 9)*y2t + 2974.81191515923*pow(xi1, 7)*y2t - 130.556008815765*pow(xi1, 5)*y2t + 2.01475322246552*pow(xi1, 3)*y2t - 209296.091460109*pow(xi2, 27)*y2t + 1383917.0129199*pow(xi2, 25)*y2t - 4048693.38886142*pow(xi2, 23)*y2t + 6897773.9217639*pow(xi2, 21)*y2t - 7579530.6465894*pow(xi2, 19)*y2t + 5619944.67454433*pow(xi2, 17)*y2t - 2858006.05243921*pow(xi2, 15)*y2t + 993129.516291618*pow(xi2, 13)*y2t - 230547.92342484*pow(xi2, 11)*y2t + 34155.2479147911*pow(xi2, 9)*y2t - 2974.81191515923*pow(xi2, 7)*y2t + 130.556008815765*pow(xi2, 5)*y2t - 2.01475322246552*pow(xi2, 3)*y2t; case 3: return -104648.045730054*pow(xi1, 27)*y2r - 36224.3235219419*pow(xi1, 26)*y2r + 691958.506459951*pow(xi1, 25)*y2r + 240263.370298594*pow(xi1, 24)*y2r - 2024346.69443071*pow(xi1, 23)*y2r - 705454.151089489*pow(xi1, 22)*y2r + 3448886.96088195*pow(xi1, 21)*y2r + 1207110.43630868*pow(xi1, 20)*y2r - 3789765.3232947*pow(xi1, 19)*y2r - 1333435.94708517*pow(xi1, 18)*y2r + 2809972.33727217*pow(xi1, 17)*y2r + 995198.536117226*pow(xi1, 16)*y2r - 1429003.02621961*pow(xi1, 15)*y2r - 510358.223649859*pow(xi1, 14)*y2r + 496564.758145809*pow(xi1, 13)*y2r + 179315.051552653*pow(xi1, 12)*y2r - 115273.96171242*pow(xi1, 11)*y2r - 42267.119294554*pow(xi1, 10)*y2r + 17077.6239573956*pow(xi1, 9)*y2r + 6404.10898402333*pow(xi1, 8)*y2r - 1487.40595757961*pow(xi1, 7)*y2r - 578.435650169849*pow(xi1, 6)*y2r + 65.2780044078827*pow(xi1, 5)*y2r + 27.1991685032845*pow(xi1, 4)*y2r - 1.00737661123276*pow(xi1, 3)*y2r - 0.503688305616379*pow(xi1, 2)*y2r + 104648.045730054*pow(xi2, 27)*y2r + 36224.3235219419*pow(xi2, 26)*y2r - 691958.506459951*pow(xi2, 25)*y2r - 240263.370298594*pow(xi2, 24)*y2r + 2024346.69443071*pow(xi2, 23)*y2r + 705454.151089489*pow(xi2, 22)*y2r - 3448886.96088195*pow(xi2, 21)*y2r - 1207110.43630868*pow(xi2, 20)*y2r + 3789765.3232947*pow(xi2, 19)*y2r + 1333435.94708517*pow(xi2, 18)*y2r - 2809972.33727217*pow(xi2, 17)*y2r - 995198.536117226*pow(xi2, 16)*y2r + 1429003.02621961*pow(xi2, 15)*y2r + 510358.223649859*pow(xi2, 14)*y2r - 496564.758145809*pow(xi2, 13)*y2r - 179315.051552653*pow(xi2, 12)*y2r + 115273.96171242*pow(xi2, 11)*y2r + 42267.119294554*pow(xi2, 10)*y2r - 17077.6239573956*pow(xi2, 9)*y2r - 6404.10898402333*pow(xi2, 8)*y2r + 1487.40595757961*pow(xi2, 7)*y2r + 578.435650169849*pow(xi2, 6)*y2r - 65.2780044078827*pow(xi2, 5)*y2r - 27.1991685032845*pow(xi2, 4)*y2r + 1.00737661123276*pow(xi2, 3)*y2r + 0.503688305616379*pow(xi2, 2)*y2r; case 4: return -201821.231050819*pow(xi1, 28) + 1403138.08254379*pow(xi1, 26) - 4360524.57158938*pow(xi1, 24) + 7995147.04568088*pow(xi1, 22) - 9614774.98687729*pow(xi1, 20) + 7974597.42012888*pow(xi1, 18) - 4669777.74639621*pow(xi1, 16) + 1942908.14099908*pow(xi1, 14) - 569965.699578077*pow(xi1, 12) + 115273.96171242*pow(xi1, 10) - 15411.178393811*pow(xi1, 8) + 1265.66797435284*pow(xi1, 6) - 55.909401923418*pow(xi1, 4) + 1.00737661123276*pow(xi1, 2) + 201821.231050819*pow(xi2, 28) - 1403138.08254379*pow(xi2, 26) + 4360524.57158938*pow(xi2, 24) - 7995147.04568088*pow(xi2, 22) + 9614774.98687729*pow(xi2, 20) - 7974597.42012888*pow(xi2, 18) + 4669777.74639621*pow(xi2, 16) - 1942908.14099908*pow(xi2, 14) + 569965.699578077*pow(xi2, 12) - 115273.96171242*pow(xi2, 10) + 15411.178393811*pow(xi2, 8) - 1265.66797435284*pow(xi2, 6) + 55.909401923418*pow(xi2, 4) - 1.00737661123276*pow(xi2, 2); case 5: return -324769.797093272*pow(xi1, 29) + 2344970.49411428*pow(xi1, 27) - 7591913.54250741*pow(xi1, 25) + 14545305.8785021*pow(xi1, 23) - 18327224.8967797*pow(xi1, 21) + 15960149.8981029*pow(xi1, 19) - 9822894.75166082*pow(xi1, 17) + 4292526.46486044*pow(xi1, 15) - 1318261.2031728*pow(xi1, 13) + 277123.261490464*pow(xi1, 11) - 38011.4855825901*pow(xi1, 9) + 3130.23573517799*pow(xi1, 7) - 132.570762038231*pow(xi1, 5) + 2.01475322246552*pow(xi1, 3) + 324769.797093272*pow(xi2, 29) - 2344970.49411428*pow(xi2, 27) + 7591913.54250741*pow(xi2, 25) - 14545305.8785021*pow(xi2, 23) + 18327224.8967797*pow(xi2, 21) - 15960149.8981029*pow(xi2, 19) + 9822894.75166082*pow(xi2, 17) - 4292526.46486044*pow(xi2, 15) + 1318261.2031728*pow(xi2, 13) - 277123.261490464*pow(xi2, 11) + 38011.4855825901*pow(xi2, 9) - 3130.23573517799*pow(xi2, 7) + 132.570762038231*pow(xi2, 5) - 2.01475322246552*pow(xi2, 3); case 6: return -549402.240082785*pow(xi1, 30) + 4108503.63210596*pow(xi1, 28) - 13827208.0805501*pow(xi1, 26) + 27664083.4957633*pow(xi1, 24) - 36611156.418654*pow(xi1, 22) + 33744830.445754*pow(xi1, 20) - 22216010.2240916*pow(xi1, 18) + 10544759.5412088*pow(xi1, 16) - 3599355.56090511*pow(xi1, 14) + 872026.17332451*pow(xi1, 12) - 146323.561076894*pow(xi1, 10) + 16351.5572648495*pow(xi1, 8) - 1142.58334207038*pow(xi1, 6) + 44.5764150470495*pow(xi1, 4) - 0.755532458424568*pow(xi1, 2) + 549402.240082785*pow(xi2, 30) - 4108503.63210596*pow(xi2, 28) + 13827208.0805501*pow(xi2, 26) - 27664083.4957633*pow(xi2, 24) + 36611156.418654*pow(xi2, 22) - 33744830.445754*pow(xi2, 20) + 22216010.2240916*pow(xi2, 18) - 10544759.5412088*pow(xi2, 16) + 3599355.56090511*pow(xi2, 14) - 872026.17332451*pow(xi2, 12) + 146323.561076894*pow(xi2, 10) - 16351.5572648495*pow(xi2, 8) + 1142.58334207038*pow(xi2, 6) - 44.5764150470495*pow(xi2, 4) + 0.755532458424568*pow(xi2, 2); case 7: return -957023.256918401*pow(xi1, 31) + 7400111.8051967*pow(xi1, 29) - 25843137.068245*pow(xi1, 27) + 53877067.1146849*pow(xi1, 25) - 74671105.3192668*pow(xi1, 23) + 72510060.6815735*pow(xi1, 21) - 50652263.6690386*pow(xi1, 19) + 25722379.0240824*pow(xi1, 17) - 9480938.51420894*pow(xi1, 15) + 2503513.98898512*pow(xi1, 13) - 461137.163681835*pow(xi1, 11) + 56571.6800898314*pow(xi1, 9) - 4267.03145876527*pow(xi1, 7) + 170.246647298336*pow(xi1, 5) - 2.51844152808189*pow(xi1, 3) + 957023.256918401*pow(xi2, 31) - 7400111.8051967*pow(xi2, 29) + 25843137.068245*pow(xi2, 27) - 53877067.1146849*pow(xi2, 25) + 74671105.3192668*pow(xi2, 23) - 72510060.6815735*pow(xi2, 21) + 50652263.6690386*pow(xi2, 19) - 25722379.0240824*pow(xi2, 17) + 9480938.51420894*pow(xi2, 15) - 2503513.98898512*pow(xi2, 13) + 461137.163681835*pow(xi2, 11) - 56571.6800898314*pow(xi2, 9) + 4267.03145876527*pow(xi2, 7) - 170.246647298336*pow(xi2, 5) + 2.51844152808189*pow(xi2, 3); case 8: return -1699713.18025612*pow(xi1, 32) + 13572477.7881676*pow(xi1, 30) - 49110727.486688*pow(xi1, 28) + 106498272.480833*pow(xi1, 26) - 154246386.564348*pow(xi1, 24) + 157401903.208298*pow(xi1, 22) - 116340051.261704*pow(xi1, 20) + 63051164.7932561*pow(xi1, 18) - 25082662.6889706*pow(xi1, 16) + 7261397.49628846*pow(xi1, 14) - 1501655.10006906*pow(xi1, 12) + 215279.573045634*pow(xi1, 10) - 20471.3273524772*pow(xi1, 8) + 1212.25182954222*pow(xi1, 6) - 40.6098696403205*pow(xi1, 4) + 0.629610382020473*pow(xi1, 2) + 1699713.18025612*pow(xi2, 32) - 13572477.7881676*pow(xi2, 30) + 49110727.486688*pow(xi2, 28) - 106498272.480833*pow(xi2, 26) + 154246386.564348*pow(xi2, 24) - 157401903.208298*pow(xi2, 22) + 116340051.261704*pow(xi2, 20) - 63051164.7932561*pow(xi2, 18) + 25082662.6889706*pow(xi2, 16) - 7261397.49628846*pow(xi2, 14) + 1501655.10006906*pow(xi2, 12) - 215279.573045634*pow(xi2, 10) + 20471.3273524772*pow(xi2, 8) - 1212.25182954222*pow(xi2, 6) + 40.6098696403205*pow(xi2, 4) - 0.629610382020473*pow(xi2, 2); case 9: return -3060955.33760409*pow(xi1, 33) + 25213238.0791345*pow(xi1, 31) - 94403567.7795993*pow(xi1, 29) + 212608488.378715*pow(xi1, 27) - 321179615.28731*pow(xi1, 25) + 343612154.357964*pow(xi1, 23) - 267922999.822594*pow(xi1, 21) + 154348350.525506*pow(xi1, 19) - 65889718.4853975*pow(xi1, 17) + 20712941.0533648*pow(xi1, 15) - 4720135.0192485*pow(xi1, 13) + 758719.445440695*pow(xi1, 11) - 82283.9487223575*pow(xi1, 9) + 5587.16253004968*pow(xi1, 7) - 206.260361149907*pow(xi1, 5) + 2.93818178276221*pow(xi1, 3) + 3060955.33760409*pow(xi2, 33) - 25213238.0791345*pow(xi2, 31) + 94403567.7795993*pow(xi2, 29) - 212608488.378715*pow(xi2, 27) + 321179615.28731*pow(xi2, 25) - 343612154.357964*pow(xi2, 23) + 267922999.822594*pow(xi2, 21) - 154348350.525506*pow(xi2, 19) + 65889718.4853975*pow(xi2, 17) - 20712941.0533648*pow(xi2, 15) + 4720135.0192485*pow(xi2, 13) - 758719.445440695*pow(xi2, 11) + 82283.9487223575*pow(xi2, 9) - 5587.16253004968*pow(xi2, 7) + 206.260361149907*pow(xi2, 5) - 2.93818178276221*pow(xi2, 3); case 10: return -5570488.57394862*pow(xi1, 34) + 47284732.262402*pow(xi1, 32) - 182982384.66517*pow(xi1, 30) + 427375626.699867*pow(xi1, 28) - 672235775.597369*pow(xi1, 26) + 752393678.105771*pow(xi1, 24) - 617247943.398835*pow(xi1, 22) + 376730544.227549*pow(xi1, 20) - 171849479.01199*pow(xi1, 18) + 58356796.5482171*pow(xi1, 16) - 14571815.0302654*pow(xi1, 14) + 2617997.25941163*pow(xi1, 12) - 327223.789883908*pow(xi1, 10) + 27078.8499592803*pow(xi1, 8) - 1383.00216514617*pow(xi1, 6) + 39.6654540672898*pow(xi1, 4) - 0.550909084267914*pow(xi1, 2) + 5570488.57394862*pow(xi2, 34) - 47284732.262402*pow(xi2, 32) + 182982384.66517*pow(xi2, 30) - 427375626.699867*pow(xi2, 28) + 672235775.597369*pow(xi2, 26) - 752393678.105771*pow(xi2, 24) + 617247943.398835*pow(xi2, 22) - 376730544.227549*pow(xi2, 20) + 171849479.01199*pow(xi2, 18) - 58356796.5482171*pow(xi2, 16) + 14571815.0302654*pow(xi2, 14) - 2617997.25941163*pow(xi2, 12) + 327223.789883908*pow(xi2, 10) - 27078.8499592803*pow(xi2, 8) + 1383.00216514617*pow(xi2, 6) - 39.6654540672898*pow(xi2, 4) + 0.550909084267914*pow(xi2, 2); case 11: return -10221404.4309279*pow(xi1, 35) + 89329921.0770173*pow(xi1, 33) - 356895696.139291*pow(xi1, 31) + 863342628.482774*pow(xi1, 29) - 1411735169.97465*pow(xi1, 27) + 1649833527.66496*pow(xi1, 25) - 1420653947.98565*pow(xi1, 23) + 915870100.569113*pow(xi1, 21) - 444718654.137696*pow(xi1, 19) + 162314054.739406*pow(xi1, 17) - 44101073.3600514*pow(xi1, 15) + 8760388.7429215*pow(xi1, 13) - 1236316.72201056*pow(xi1, 11) + 118607.011141628*pow(xi1, 9) - 7205.51305599511*pow(xi1, 7) + 243.281451612711*pow(xi1, 5) - 3.30545450560749*pow(xi1, 3) + 10221404.4309279*pow(xi2, 35) - 89329921.0770173*pow(xi2, 33) + 356895696.139291*pow(xi2, 31) - 863342628.482774*pow(xi2, 29) + 1411735169.97465*pow(xi2, 27) - 1649833527.66496*pow(xi2, 25) + 1420653947.98565*pow(xi2, 23) - 915870100.569113*pow(xi2, 21) + 444718654.137696*pow(xi2, 19) - 162314054.739406*pow(xi2, 17) + 44101073.3600514*pow(xi2, 15) - 8760388.7429215*pow(xi2, 13) + 1236316.72201056*pow(xi2, 11) - 118607.011141628*pow(xi2, 9) + 7205.51305599511*pow(xi2, 7) - 243.281451612711*pow(xi2, 5) + 3.30545450560749*pow(xi2, 3); case 12: return -18881205.4071308*pow(xi1, 36) + 169748323.585053*pow(xi1, 34) - 699467399.742545*pow(xi1, 32) + 1750356773.84535*pow(xi1, 30) - 2971138571.87629*pow(xi1, 28) + 3619131142.81016*pow(xi1, 26) - 3263928373.91906*pow(xi1, 24) + 2216578467.81839*pow(xi1, 22) - 1141774660.52333*pow(xi1, 20) + 445928084.89317*pow(xi1, 18) - 131076153.815987*pow(xi1, 16) + 28570462.2379647*pow(xi1, 14) - 4509449.15763886*pow(xi1, 12) + 497319.399947701*pow(xi1, 10) - 36350.1304189442*pow(xi1, 8) + 1629.89758035168*pow(xi1, 6) - 40.4091813310515*pow(xi1, 4) + 0.495818175841123*pow(xi1, 2) + 18881205.4071308*pow(xi2, 36) - 169748323.585053*pow(xi2, 34) + 699467399.742545*pow(xi2, 32) - 1750356773.84535*pow(xi2, 30) + 2971138571.87629*pow(xi2, 28) - 3619131142.81016*pow(xi2, 26) + 3263928373.91906*pow(xi2, 24) - 2216578467.81839*pow(xi2, 22) + 1141774660.52333*pow(xi2, 20) - 445928084.89317*pow(xi2, 18) + 131076153.815987*pow(xi2, 16) - 28570462.2379647*pow(xi2, 14) + 4509449.15763886*pow(xi2, 12) - 497319.399947701*pow(xi2, 10) + 36350.1304189442*pow(xi2, 8) - 1629.89758035168*pow(xi2, 6) + 40.4091813310515*pow(xi2, 4) - 0.495818175841123*pow(xi2, 2); case 13: return -35071723.0658252*pow(xi1, 37) + 324098167.76767*pow(xi1, 35) - 1376090817.03142*pow(xi1, 33) + 3558247605.06085*pow(xi1, 31) - 6261438377.81587*pow(xi1, 29) + 7936747811.00169*pow(xi1, 27) - 7481739208.62345*pow(xi1, 25) + 5339168617.26796*pow(xi1, 23) - 2908563110.5598*pow(xi1, 21) + 1210800767.34823*pow(xi1, 19) - 383074743.250645*pow(xi1, 17) + 90999253.9513292*pow(xi1, 15) - 15910711.3587747*pow(xi1, 13) + 1987040.60669569*pow(xi1, 11) - 169509.625385143*pow(xi1, 9) + 9217.57154602557*pow(xi1, 7) - 282.880796589889*pow(xi1, 5) + 3.63599995616823*pow(xi1, 3) + 35071723.0658252*pow(xi2, 37) - 324098167.76767*pow(xi2, 35) + 1376090817.03142*pow(xi2, 33) - 3558247605.06085*pow(xi2, 31) + 6261438377.81587*pow(xi2, 29) - 7936747811.00169*pow(xi2, 27) + 7481739208.62345*pow(xi2, 25) - 5339168617.26796*pow(xi2, 23) + 2908563110.5598*pow(xi2, 21) - 1210800767.34823*pow(xi2, 19) + 383074743.250645*pow(xi2, 17) - 90999253.9513292*pow(xi2, 15) + 15910711.3587747*pow(xi2, 13) - 1987040.60669569*pow(xi2, 11) + 169509.625385143*pow(xi2, 9) - 9217.57154602557*pow(xi2, 7) + 282.880796589889*pow(xi2, 5) - 3.63599995616823*pow(xi2, 3); case 14: return -65451834.0548625*pow(xi1, 38) + 621240699.986569*pow(xi1, 36) - 2715536282.22465*pow(xi1, 34) + 7248028820.61917*pow(xi1, 32) - 13205547592.7004*pow(xi1, 30) + 17392354377.2915*pow(xi1, 28) - 17105998563.4686*pow(xi1, 26) + 12798948921.0048*pow(xi1, 24) - 7353212013.68346*pow(xi1, 22) + 3251293169.35963*pow(xi1, 20) - 1102203636.20301*pow(xi1, 18) + 283667425.441783*pow(xi1, 16) - 54506868.3388107*pow(xi1, 14) + 7624781.68265513*pow(xi1, 12) - 748280.220408097*pow(xi1, 10) + 48779.5884976792*pow(xi1, 8) - 1945.89627654233*pow(xi1, 6) + 42.2684994904557*pow(xi1, 4) - 0.454499994521029*pow(xi1, 2) + 65451834.0548625*pow(xi2, 38) - 621240699.986569*pow(xi2, 36) + 2715536282.22465*pow(xi2, 34) - 7248028820.61917*pow(xi2, 32) + 13205547592.7004*pow(xi2, 30) - 17392354377.2915*pow(xi2, 28) + 17105998563.4686*pow(xi2, 26) - 12798948921.0048*pow(xi2, 24) + 7353212013.68346*pow(xi2, 22) - 3251293169.35963*pow(xi2, 20) + 1102203636.20301*pow(xi2, 18) - 283667425.441783*pow(xi2, 16) + 54506868.3388107*pow(xi2, 14) - 7624781.68265513*pow(xi2, 12) + 748280.220408097*pow(xi2, 10) - 48779.5884976792*pow(xi2, 8) + 1945.89627654233*pow(xi2, 6) - 42.2684994904557*pow(xi2, 4) + 0.454499994521029*pow(xi2, 2); case 15: return -122641503.653095*pow(xi1, 39) + 1194778534.36411*pow(xi1, 37) - 5372147407.37006*pow(xi1, 35) + 14786375338.0881*pow(xi1, 33) - 27860617378.6798*pow(xi1, 31) + 38073285463.0875*pow(xi1, 29) - 39004003866.1513*pow(xi1, 27) + 30535049585.1998*pow(xi1, 25) - 18454438615.023*pow(xi1, 23) + 8639576881.10214*pow(xi1, 21) - 3125725551.60628*pow(xi1, 19) + 867032659.727804*pow(xi1, 17) - 181832151.94781*pow(xi1, 15) + 28221925.8980201*pow(xi1, 13) - 3142373.53276822*pow(xi1, 11) + 239854.335394284*pow(xi1, 9) - 11716.0489159066*pow(xi1, 7) + 326.149196068291*pow(xi1, 5) - 3.93899995251559*pow(xi1, 3) + 122641503.653095*pow(xi2, 39) - 1194778534.36411*pow(xi2, 37) + 5372147407.37006*pow(xi2, 35) - 14786375338.0881*pow(xi2, 33) + 27860617378.6798*pow(xi2, 31) - 38073285463.0875*pow(xi2, 29) + 39004003866.1513*pow(xi2, 27) - 30535049585.1998*pow(xi2, 25) + 18454438615.023*pow(xi2, 23) - 8639576881.10214*pow(xi2, 21) + 3125725551.60628*pow(xi2, 19) - 867032659.727804*pow(xi2, 17) + 181832151.94781*pow(xi2, 15) - 28221925.8980201*pow(xi2, 13) + 3142373.53276822*pow(xi2, 11) - 239854.335394284*pow(xi2, 9) + 11716.0489159066*pow(xi2, 7) - 326.149196068291*pow(xi2, 5) + 3.93899995251559*pow(xi2, 3); case 16: return -230609827.404838*pow(xi1, 40) + 2304355191.45273*pow(xi1, 38) - 10649642753.0921*pow(xi1, 36) + 30199427443.2348*pow(xi1, 34) - 58782403427.0816*pow(xi1, 32) + 83241776377.9778*pow(xi1, 30) - 88685550540.2*pow(xi1, 28) + 72508203254.0171*pow(xi1, 26) - 45992495366.913*pow(xi1, 24) + 22732658206.1636*pow(xi1, 22) - 8745833685.74116*pow(xi1, 20) + 2602712863.83558*pow(xi1, 18) - 592164491.208723*pow(xi1, 16) + 101153806.264636*pow(xi1, 14) - 12635421.9150379*pow(xi1, 12) + 1111150.22967046*pow(xi1, 10) - 65066.1647220088*pow(xi1, 8) + 2331.07203618478*pow(xi1, 6) - 44.9468030295975*pow(xi1, 4) + 0.422035709198099*pow(xi1, 2) + 230609827.404838*pow(xi2, 40) - 2304355191.45273*pow(xi2, 38) + 10649642753.0921*pow(xi2, 36) - 30199427443.2348*pow(xi2, 34) + 58782403427.0816*pow(xi2, 32) - 83241776377.9778*pow(xi2, 30) + 88685550540.2*pow(xi2, 28) - 72508203254.0171*pow(xi2, 26) + 45992495366.913*pow(xi2, 24) - 22732658206.1636*pow(xi2, 22) + 8745833685.74116*pow(xi2, 20) - 2602712863.83558*pow(xi2, 18) + 592164491.208723*pow(xi2, 16) - 101153806.264636*pow(xi2, 14) + 12635421.9150379*pow(xi2, 12) - 1111150.22967046*pow(xi2, 10) + 65066.1647220088*pow(xi2, 8) - 2331.07203618478*pow(xi2, 6) + 44.9468030295975*pow(xi2, 4) - 0.422035709198099*pow(xi2, 2); case 17: return -434971381.771727*pow(xi1, 41) + 4455319114.48803*pow(xi1, 39) - 21147968135.187*pow(xi1, 37) + 61731405121.2206*pow(xi1, 35) - 124002779366.724*pow(xi1, 33) + 181745921271.371*pow(xi1, 31) - 201081427440.588*pow(xi1, 29) + 171394317814.652*pow(xi1, 27) - 113861451013.844*pow(xi1, 25) + 59263087448.0283*pow(xi1, 23) - 24167044891.3457*pow(xi1, 21) + 7684417935.61208*pow(xi1, 19) - 1886737635.04339*pow(xi1, 17) + 352236432.233255*pow(xi1, 15) - 48889832.5121684*pow(xi1, 13) + 4885812.67061053*pow(xi1, 11) - 335681.455371747*pow(xi1, 9) + 14797.8983624285*pow(xi1, 7) - 373.923638349515*pow(xi1, 5) + 4.22035709198099*pow(xi1, 3) + 434971381.771727*pow(xi2, 41) - 4455319114.48803*pow(xi2, 39) + 21147968135.187*pow(xi2, 37) - 61731405121.2206*pow(xi2, 35) + 124002779366.724*pow(xi2, 33) - 181745921271.371*pow(xi2, 31) + 201081427440.588*pow(xi2, 29) - 171394317814.652*pow(xi2, 27) + 113861451013.844*pow(xi2, 25) - 59263087448.0283*pow(xi2, 23) + 24167044891.3457*pow(xi2, 21) - 7684417935.61208*pow(xi2, 19) + 1886737635.04339*pow(xi2, 17) - 352236432.233255*pow(xi2, 15) + 48889832.5121684*pow(xi2, 13) - 4885812.67061053*pow(xi2, 11) + 335681.455371747*pow(xi2, 9) - 14797.8983624285*pow(xi2, 7) + 373.923638349515*pow(xi2, 5) - 4.22035709198099*pow(xi2, 3); case 18: return -822691408.083133*pow(xi1, 42) + 8632572977.90458*pow(xi1, 40) - 42056253141.7558*pow(xi1, 38) + 126266287574.99*pow(xi1, 36) - 261501013397.442*pow(xi1, 34) + 396237078099.193*pow(xi1, 32) - 454647922164.956*pow(xi1, 30) + 403359319727.115*pow(xi1, 28) - 280098134146.143*pow(xi1, 26) + 153155936673.263*pow(xi1, 24) - 66007168841.7615*pow(xi1, 22) + 22343350843.1183*pow(xi1, 20) - 5892511135.08151*pow(xi1, 18) + 1194958667.49436*pow(xi1, 16) - 182789740.258828*pow(xi1, 14) + 20523114.9238803*pow(xi1, 12) - 1627047.87812054*pow(xi1, 10) + 86086.5914944378*pow(xi1, 8) - 2789.11090834172*pow(xi1, 6) + 48.2703342395325*pow(xi1, 4) - 0.395658477373217*pow(xi1, 2) + 822691408.083133*pow(xi2, 42) - 8632572977.90458*pow(xi2, 40) + 42056253141.7558*pow(xi2, 38) - 126266287574.99*pow(xi2, 36) + 261501013397.442*pow(xi2, 34) - 396237078099.193*pow(xi2, 32) + 454647922164.956*pow(xi2, 30) - 403359319727.115*pow(xi2, 28) + 280098134146.143*pow(xi2, 26) - 153155936673.263*pow(xi2, 24) + 66007168841.7615*pow(xi2, 22) - 22343350843.1183*pow(xi2, 20) + 5892511135.08151*pow(xi2, 18) - 1194958667.49436*pow(xi2, 16) + 182789740.258828*pow(xi2, 14) - 20523114.9238803*pow(xi2, 12) + 1627047.87812054*pow(xi2, 10) - 86086.5914944378*pow(xi2, 8) + 2789.11090834172*pow(xi2, 6) - 48.2703342395325*pow(xi2, 4) + 0.395658477373217*pow(xi2, 2); case 19: return -1559849920.11385*pow(xi1, 43) + 16758016581.4581*pow(xi1, 41) - 83738552891.7078*pow(xi1, 39) + 258384653060.602*pow(xi1, 37) - 551216342688.762*pow(xi1, 35) + 862566527590.693*pow(xi1, 33) - 1025137419153.52*pow(xi1, 31) + 945245017769.346*pow(xi1, 29) - 684894432229.456*pow(xi1, 27) + 392574311178.262*pow(xi1, 25) - 178337649002.54*pow(xi1, 23) + 64052489187.5357*pow(xi1, 21) - 18068776057.7848*pow(xi1, 19) + 3958930149.3731*pow(xi1, 17) - 662688642.100233*pow(xi1, 15) + 82788410.2822969*pow(xi1, 13) - 7469672.88666969*pow(xi1, 11) + 464477.057046165*pow(xi1, 9) - 18568.1392978458*pow(xi1, 7) + 426.889119853877*pow(xi1, 5) - 4.4841294102298*pow(xi1, 3) + 1559849920.11385*pow(xi2, 43) - 16758016581.4581*pow(xi2, 41) + 83738552891.7078*pow(xi2, 39) - 258384653060.602*pow(xi2, 37) + 551216342688.762*pow(xi2, 35) - 862566527590.693*pow(xi2, 33) + 1025137419153.52*pow(xi2, 31) - 945245017769.346*pow(xi2, 29) + 684894432229.456*pow(xi2, 27) - 392574311178.262*pow(xi2, 25) + 178337649002.54*pow(xi2, 23) - 64052489187.5357*pow(xi2, 21) + 18068776057.7848*pow(xi2, 19) - 3958930149.3731*pow(xi2, 17) + 662688642.100233*pow(xi2, 15) - 82788410.2822969*pow(xi2, 13) + 7469672.88666969*pow(xi2, 11) - 464477.057046165*pow(xi2, 9) + 18568.1392978458*pow(xi2, 7) - 426.889119853877*pow(xi2, 5) + 4.4841294102298*pow(xi2, 3); case 20: return -2964108749.71129*pow(xi1, 44) + 32586184470.587*pow(xi1, 42) - 166907325447.439*pow(xi1, 40) + 528912960881.657*pow(xi1, 38) - 1161288561403.75*pow(xi1, 36) + 1874856086782.63*pow(xi1, 34) - 2305255330325.58*pow(xi1, 32) + 2206100246925.95*pow(xi1, 30) - 1665127529061.39*pow(xi1, 28) + 998516875157.21*pow(xi1, 26) - 476966272244.759*pow(xi1, 24) + 181225405807.216*pow(xi1, 22) - 54479098236.3531*pow(xi1, 20) + 12835406932.7529*pow(xi1, 18) - 2336598245.351*pow(xi1, 16) + 322113828.809707*pow(xi1, 14) - 32696942.1566639*pow(xi1, 12) + 2349491.17916685*pow(xi1, 10) - 112895.628966776*pow(xi1, 8) + 3325.87878356744*pow(xi1, 6) - 52.1280043939214*pow(xi1, 4) + 0.373677450852483*pow(xi1, 2) + 2964108749.71129*pow(xi2, 44) - 32586184470.587*pow(xi2, 42) + 166907325447.439*pow(xi2, 40) - 528912960881.657*pow(xi2, 38) + 1161288561403.75*pow(xi2, 36) - 1874856086782.63*pow(xi2, 34) + 2305255330325.58*pow(xi2, 32) - 2206100246925.95*pow(xi2, 30) + 1665127529061.39*pow(xi2, 28) - 998516875157.21*pow(xi2, 26) + 476966272244.759*pow(xi2, 24) - 181225405807.216*pow(xi2, 22) + 54479098236.3531*pow(xi2, 20) - 12835406932.7529*pow(xi2, 18) + 2336598245.351*pow(xi2, 16) - 322113828.809707*pow(xi2, 14) + 32696942.1566639*pow(xi2, 12) - 2349491.17916685*pow(xi2, 10) + 112895.628966776*pow(xi2, 8) - 3325.87878356744*pow(xi2, 6) + 52.1280043939214*pow(xi2, 4) - 0.373677450852483*pow(xi2, 2); case 21: return -5643940402.95904*pow(xi1, 45) + 63459307840.2206*pow(xi1, 43) - 332978508214.796*pow(xi1, 41) + 1082909699230.21*pow(xi1, 39) - 2445121682401.35*pow(xi1, 37) + 4068925192581.16*pow(xi1, 35) - 5170313921043.63*pow(xi1, 33) + 5128689225764.81*pow(xi1, 31) - 4026297675831.58*pow(xi1, 29) + 2521309801100.88*pow(xi1, 27) - 1263588399544.35*pow(xi1, 25) + 506520061817.221*pow(xi1, 23) - 161720234605.989*pow(xi1, 21) + 40797513653.6727*pow(xi1, 19) - 8033123179.43023*pow(xi1, 17) + 1213266304.17716*pow(xi1, 15) - 137206195.642171*pow(xi1, 13) + 11235918.5064705*pow(xi1, 11) - 635452.569682131*pow(xi1, 9) + 23142.3356502297*pow(xi1, 7) - 485.631215127887*pow(xi1, 5) + 4.73324771079812*pow(xi1, 3) + 5643940402.95904*pow(xi2, 45) - 63459307840.2206*pow(xi2, 43) + 332978508214.796*pow(xi2, 41) - 1082909699230.21*pow(xi2, 39) + 2445121682401.35*pow(xi2, 37) - 4068925192581.16*pow(xi2, 35) + 5170313921043.63*pow(xi2, 33) - 5128689225764.81*pow(xi2, 31) + 4026297675831.58*pow(xi2, 29) - 2521309801100.88*pow(xi2, 27) + 1263588399544.35*pow(xi2, 25) - 506520061817.221*pow(xi2, 23) + 161720234605.989*pow(xi2, 21) - 40797513653.6727*pow(xi2, 19) + 8033123179.43023*pow(xi2, 17) - 1213266304.17716*pow(xi2, 15) + 137206195.642171*pow(xi2, 13) - 11235918.5064705*pow(xi2, 11) + 635452.569682131*pow(xi2, 9) - 23142.3356502297*pow(xi2, 7) + 485.631215127887*pow(xi2, 5) - 4.73324771079812*pow(xi2, 3); case 22: return -10766429790.4273*pow(xi1, 46) + 123749152457.737*pow(xi1, 44) - 664805249813.08*pow(xi1, 42) + 2217444024836.51*pow(xi1, 40) - 5144981244028.56*pow(xi1, 38) + 8817228144268.68*pow(xi1, 36) - 11566692718301.1*pow(xi1, 34) + 11878407054355.6*pow(xi1, 32) - 9685366353522.19*pow(xi1, 30) + 6322834046464.09*pow(xi1, 28) - 3317819280545.0*pow(xi1, 26) + 1399677324153.45*pow(xi1, 24) - 473184299476.64*pow(xi1, 22) + 127332537367.964*pow(xi1, 20) - 26987971774.8993*pow(xi1, 18) + 4437770795.40733*pow(xi1, 16) - 554449355.907009*pow(xi1, 14) + 51146299.3791467*pow(xi1, 12) - 3347235.88000065*pow(xi1, 10) + 146737.457721642*pow(xi1, 8) - 3948.73556897189*pow(xi1, 6) + 56.4439789512676*pow(xi1, 4) - 0.354993578309859*pow(xi1, 2) + 10766429790.4273*pow(xi2, 46) - 123749152457.737*pow(xi2, 44) + 664805249813.08*pow(xi2, 42) - 2217444024836.51*pow(xi2, 40) + 5144981244028.56*pow(xi2, 38) - 8817228144268.68*pow(xi2, 36) + 11566692718301.1*pow(xi2, 34) - 11878407054355.6*pow(xi2, 32) + 9685366353522.19*pow(xi2, 30) - 6322834046464.09*pow(xi2, 28) + 3317819280545.0*pow(xi2, 26) - 1399677324153.45*pow(xi2, 24) + 473184299476.64*pow(xi2, 22) - 127332537367.964*pow(xi2, 20) + 26987971774.8993*pow(xi2, 18) - 4437770795.40733*pow(xi2, 16) + 554449355.907009*pow(xi2, 14) - 51146299.3791467*pow(xi2, 12) + 3347235.88000065*pow(xi2, 10) - 146737.457721642*pow(xi2, 8) + 3948.73556897189*pow(xi2, 6) - 56.4439789512676*pow(xi2, 4) + 0.354993578309859*pow(xi2, 2); case 23: return -20572934736.318*pow(xi1, 47) + 241611658620.551*pow(xi1, 45) - 1328205586844.64*pow(xi1, 43) + 4540825293226.5*pow(xi1, 41) - 10818742788273.6*pow(xi1, 39) + 19078016455492.4*pow(xi1, 37) - 25812540522610.2*pow(xi1, 35) + 27412521274463.8*pow(xi1, 33) - 23184006044249.6*pow(xi1, 31) + 15753474773929.5*pow(xi1, 29) - 8638981738369.39*pow(xi1, 27) + 3826812736646.04*pow(xi1, 25) - 1366069288952.07*pow(xi1, 23) + 390782719220.513*pow(xi1, 21) - 88772376837.7726*pow(xi1, 19) + 15805152724.9117*pow(xi1, 17) - 2165821655.69451*pow(xi1, 15) + 222848315.609907*pow(xi1, 13) - 16641856.2001029*pow(xi1, 11) + 859848.405690382*pow(xi1, 9) - 28648.4077618996*pow(xi1, 7) + 550.666038674253*pow(xi1, 5) - 4.96991009633803*pow(xi1, 3) + 20572934736.318*pow(xi2, 47) - 241611658620.551*pow(xi2, 45) + 1328205586844.64*pow(xi2, 43) - 4540825293226.5*pow(xi2, 41) + 10818742788273.6*pow(xi2, 39) - 19078016455492.4*pow(xi2, 37) + 25812540522610.2*pow(xi2, 35) - 27412521274463.8*pow(xi2, 33) + 23184006044249.6*pow(xi2, 31) - 15753474773929.5*pow(xi2, 29) + 8638981738369.39*pow(xi2, 27) - 3826812736646.04*pow(xi2, 25) + 1366069288952.07*pow(xi2, 23) - 390782719220.513*pow(xi2, 21) + 88772376837.7726*pow(xi2, 19) - 15805152724.9117*pow(xi2, 17) + 2165821655.69451*pow(xi2, 15) - 222848315.609907*pow(xi2, 13) + 16641856.2001029*pow(xi2, 11) - 859848.405690382*pow(xi2, 9) + 28648.4077618996*pow(xi2, 7) - 550.666038674253*pow(xi2, 5) + 4.96991009633803*pow(xi2, 3); case 24: return -39373012407.2904*pow(xi1, 48) + 472251907715.73*pow(xi1, 46) - 2655161515440.8*pow(xi1, 44) + 9298520803347.89*pow(xi1, 42) - 22733732541815.3*pow(xi1, 40) + 41218683269644.9*pow(xi1, 38) - 57466790358075.2*pow(xi1, 36) + 63044099317287.5*pow(xi1, 34) - 55236604541920.0*pow(xi1, 32) + 39009642190619.9*pow(xi1, 30) - 22317669184363.2*pow(xi1, 28) + 10359008774601.5*pow(xi1, 26) - 3894848291944.96*pow(xi1, 24) + 1180760210360.19*pow(xi1, 22) - 286378858115.921*pow(xi1, 20) + 54936919123.2888*pow(xi1, 18) - 8204676009.03359*pow(xi1, 16) + 933702334.618827*pow(xi1, 14) - 78638126.6143699*pow(xi1, 12) + 4707640.30819233*pow(xi1, 10) - 189062.861554361*pow(xi1, 8) + 4666.16575761683*pow(xi1, 6) - 61.1637799356146*pow(xi1, 4) + 0.338857506568502*pow(xi1, 2) + 39373012407.2904*pow(xi2, 48) - 472251907715.73*pow(xi2, 46) + 2655161515440.8*pow(xi2, 44) - 9298520803347.89*pow(xi2, 42) + 22733732541815.3*pow(xi2, 40) - 41218683269644.9*pow(xi2, 38) + 57466790358075.2*pow(xi2, 36) - 63044099317287.5*pow(xi2, 34) + 55236604541920.0*pow(xi2, 32) - 39009642190619.9*pow(xi2, 30) + 22317669184363.2*pow(xi2, 28) - 10359008774601.5*pow(xi2, 26) + 3894848291944.96*pow(xi2, 24) - 1180760210360.19*pow(xi2, 22) + 286378858115.921*pow(xi2, 20) - 54936919123.2888*pow(xi2, 18) + 8204676009.03359*pow(xi2, 16) - 933702334.618827*pow(xi2, 14) + 78638126.6143699*pow(xi2, 12) - 4707640.30819233*pow(xi2, 10) + 189062.861554361*pow(xi2, 8) - 4666.16575761683*pow(xi2, 6) + 61.1637799356146*pow(xi2, 4) - 0.338857506568502*pow(xi2, 2); case 25: return -75462029103.5913*pow(xi1, 49) + 923990623023.973*pow(xi1, 47) - 5310546224741.19*pow(xi1, 45) + 19040128213834.7*pow(xi1, 43) - 47737585354992.4*pow(xi1, 41) + 88925785622554.7*pow(xi1, 39) - 127644777643775.0*pow(xi1, 37) + 144513202680571.0*pow(xi1, 35) - 131017392602932.0*pow(xi1, 33) + 96037179634663.5*pow(xi1, 31) - 57227856189002.6*pow(xi1, 29) + 27780346890298.2*pow(xi1, 27) - 10975970713836.3*pow(xi1, 25) + 3516415252299.31*pow(xi1, 23) - 907417367669.162*pow(xi1, 21) + 186740865006.986*pow(xi1, 19) - 30226326970.8981*pow(xi1, 17) + 3776677151.27261*pow(xi1, 15) - 355181293.097636*pow(xi1, 13) + 24291570.510322*pow(xi1, 11) - 1151268.66901578*pow(xi1, 9) + 35228.0717384415*pow(xi1, 7) - 622.4586490659*pow(xi1, 5) + 5.19581510071703*pow(xi1, 3) + 75462029103.5913*pow(xi2, 49) - 923990623023.973*pow(xi2, 47) + 5310546224741.19*pow(xi2, 45) - 19040128213834.7*pow(xi2, 43) + 47737585354992.4*pow(xi2, 41) - 88925785622554.7*pow(xi2, 39) + 127644777643775.0*pow(xi2, 37) - 144513202680571.0*pow(xi2, 35) + 131017392602932.0*pow(xi2, 33) - 96037179634663.5*pow(xi2, 31) + 57227856189002.6*pow(xi2, 29) - 27780346890298.2*pow(xi2, 27) + 10975970713836.3*pow(xi2, 25) - 3516415252299.31*pow(xi2, 23) + 907417367669.162*pow(xi2, 21) - 186740865006.986*pow(xi2, 19) + 30226326970.8981*pow(xi2, 17) - 3776677151.27261*pow(xi2, 15) + 355181293.097636*pow(xi2, 13) - 24291570.510322*pow(xi2, 11) + 1151268.66901578*pow(xi2, 9) - 35228.0717384415*pow(xi2, 7) + 622.4586490659*pow(xi2, 5) - 5.19581510071703*pow(xi2, 3); case 26: return -144824210854.642*pow(xi1, 50) + 1809516572879.87*pow(xi1, 48) - 10626311398270.7*pow(xi1, 46) + 38984017588812.6*pow(xi1, 44) - 100171327455461.0*pow(xi1, 42) + 191579165608972.0*pow(xi1, 40) - 282894076206354.0*pow(xi1, 38) + 330216112067159.0*pow(xi1, 36) - 309446644109395.0*pow(xi1, 34) + 235130614154372.0*pow(xi1, 32) - 145719751523803.0*pow(xi1, 30) + 73847974938271.3*pow(xi1, 28) - 30595276980720.1*pow(xi1, 26) + 10331946432099.3*pow(xi1, 24) - 2827813652143.41*pow(xi1, 22) + 621862223301.171*pow(xi1, 20) - 108552592052.753*pow(xi1, 18) + 14796557716.0717*pow(xi1, 16) - 1540678338.77952*pow(xi1, 14) + 118968280.900703*pow(xi1, 12) - 6540599.65782463*pow(xi1, 10) + 241550.011083072*pow(xi1, 8) - 5487.56011862229*pow(xi1, 6) + 66.2466425341421*pow(xi1, 4) - 0.324738443794814*pow(xi1, 2) + 144824210854.642*pow(xi2, 50) - 1809516572879.87*pow(xi2, 48) + 10626311398270.7*pow(xi2, 46) - 38984017588812.6*pow(xi2, 44) + 100171327455461.0*pow(xi2, 42) - 191579165608972.0*pow(xi2, 40) + 282894076206354.0*pow(xi2, 38) - 330216112067159.0*pow(xi2, 36) + 309446644109395.0*pow(xi2, 34) - 235130614154372.0*pow(xi2, 32) + 145719751523803.0*pow(xi2, 30) - 73847974938271.3*pow(xi2, 28) + 30595276980720.1*pow(xi2, 26) - 10331946432099.3*pow(xi2, 24) + 2827813652143.41*pow(xi2, 22) - 621862223301.171*pow(xi2, 20) + 108552592052.753*pow(xi2, 18) - 14796557716.0717*pow(xi2, 16) + 1540678338.77952*pow(xi2, 14) - 118968280.900703*pow(xi2, 12) + 6540599.65782463*pow(xi2, 10) - 241550.011083072*pow(xi2, 8) + 5487.56011862229*pow(xi2, 6) - 66.2466425341421*pow(xi2, 4) + 0.324738443794814*pow(xi2, 2); case 27: return -278289660073.626*pow(xi1, 51) + 3546715367868.79*pow(xi1, 49) - 21271461544232.5*pow(xi1, 47) + 79808828305955.9*pow(xi1, 45) - 210048376018619.0*pow(xi1, 43) + 412164827885753.0*pow(xi1, 41) - 625623902809171.0*pow(xi1, 39) + 752270037009883.0*pow(xi1, 37) - 727919084957637.0*pow(xi1, 35) + 572667367194640.0*pow(xi1, 33) - 368593156629910.0*pow(xi1, 31) + 194689668307385.0*pow(xi1, 29) - 84414885419778.8*pow(xi1, 27) + 29977522291920.8*pow(xi1, 25) - 8677294497877.93*pow(xi1, 23) + 2031930156457.91*pow(xi1, 21) - 380836253965.713*pow(xi1, 19) + 56312570949.4745*pow(xi1, 17) - 6444024306.2957*pow(xi1, 15) + 556215115.741772*pow(xi1, 13) - 34974067.0802148*pow(xi1, 11) + 1526051.7193421*pow(xi1, 9) - 43038.0498681893*pow(xi1, 7) + 701.435038596799*pow(xi1, 5) - 5.41230739658024*pow(xi1, 3) + 278289660073.626*pow(xi2, 51) - 3546715367868.79*pow(xi2, 49) + 21271461544232.5*pow(xi2, 47) - 79808828305955.9*pow(xi2, 45) + 210048376018619.0*pow(xi2, 43) - 412164827885753.0*pow(xi2, 41) + 625623902809171.0*pow(xi2, 39) - 752270037009883.0*pow(xi2, 37) + 727919084957637.0*pow(xi2, 35) - 572667367194640.0*pow(xi2, 33) + 368593156629910.0*pow(xi2, 31) - 194689668307385.0*pow(xi2, 29) + 84414885419778.8*pow(xi2, 27) - 29977522291920.8*pow(xi2, 25) + 8677294497877.93*pow(xi2, 23) - 2031930156457.91*pow(xi2, 21) + 380836253965.713*pow(xi2, 19) - 56312570949.4745*pow(xi2, 17) + 6444024306.2957*pow(xi2, 15) - 556215115.741772*pow(xi2, 13) + 34974067.0802148*pow(xi2, 11) - 1526051.7193421*pow(xi2, 9) + 43038.0498681893*pow(xi2, 7) - 701.435038596799*pow(xi2, 5) + 5.41230739658024*pow(xi2, 3); case 28: return -535378258765.904*pow(xi1, 52) + 6957132282978.78*pow(xi1, 50) - 42595443276427.3*pow(xi1, 48) + 163362474138947.0*pow(xi1, 46) - 440138555906054.0*pow(xi1, 44) + 885546290235663.0*pow(xi1, 42) - 1.38071645028501e+15*pow(xi1, 40) + 1.70878839294907e+15*pow(xi1, 38) - 1.70569451657033e+15*pow(xi1, 36) + 1.38781541457191e+15*pow(xi1, 34) - 926502730715607.0*pow(xi1, 32) + 509276709063429.0*pow(xi1, 30) - 230677032527233.0*pow(xi1, 28) + 85958980709566.8*pow(xi1, 26) - 26246208822548.7*pow(xi1, 24) + 6523592143785.49*pow(xi1, 22) - 1307618157198.77*pow(xi1, 20) + 208700139822.507*pow(xi1, 18) - 26077648271.0214*pow(xi1, 16) + 2494527583.2682*pow(xi1, 14) - 177278640.712216*pow(xi1, 12) + 8983106.36013146*pow(xi1, 10) - 306127.817401721*pow(xi1, 8) + 6423.07661945851*pow(xi1, 6) - 71.6610315874133*pow(xi1, 4) + 0.31224850364886*pow(xi1, 2) + 535378258765.904*pow(xi2, 52) - 6957132282978.78*pow(xi2, 50) + 42595443276427.3*pow(xi2, 48) - 163362474138947.0*pow(xi2, 46) + 440138555906054.0*pow(xi2, 44) - 885546290235663.0*pow(xi2, 42) + 1.38071645028501e+15*pow(xi2, 40) - 1.70878839294907e+15*pow(xi2, 38) + 1.70569451657033e+15*pow(xi2, 36) - 1.38781541457191e+15*pow(xi2, 34) + 926502730715607.0*pow(xi2, 32) - 509276709063429.0*pow(xi2, 30) + 230677032527233.0*pow(xi2, 28) - 85958980709566.8*pow(xi2, 26) + 26246208822548.7*pow(xi2, 24) - 6523592143785.49*pow(xi2, 22) + 1307618157198.77*pow(xi2, 20) - 208700139822.507*pow(xi2, 18) + 26077648271.0214*pow(xi2, 16) - 2494527583.2682*pow(xi2, 14) + 177278640.712216*pow(xi2, 12) - 8983106.36013146*pow(xi2, 10) + 306127.817401721*pow(xi2, 8) - 6423.07661945851*pow(xi2, 6) + 71.6610315874133*pow(xi2, 4) - 0.31224850364886*pow(xi2, 2); case 29: return -1031098868734.33*pow(xi1, 53) + 13656799302216.0*pow(xi1, 51) - 85322239662808.6*pow(xi1, 49) + 334335254497875.0*pow(xi1, 47) - 921629169951347.0*pow(xi1, 45) + 1.90013792114849e+15*pow(xi1, 43) - 3.04108995585405e+15*pow(xi1, 41) + 3.87073358105217e+15*pow(xi1, 39) - 3.98213104426395e+15*pow(xi1, 37) + 3.34735422684659e+15*pow(xi1, 35) - 2.31503617547326e+15*pow(xi1, 33) + 1.32238476900186e+15*pow(xi1, 31) - 624675256927435.0*pow(xi1, 29) + 243773285298310.0*pow(xi1, 27) - 78326766091896.9*pow(xi1, 25) + 20604719081135.1*pow(xi1, 23) - 4401250638548.01*pow(xi1, 21) + 754840239473.165*pow(xi1, 19) - 102405233319.159*pow(xi1, 17) + 10775577645.0379*pow(xi1, 15) - 856837392.061791*pow(xi1, 13) + 49709190.4236064*pow(xi1, 11) - 2003680.2341744*pow(xi1, 9) + 52251.1293174511*pow(xi1, 7) - 787.990323808263*pow(xi1, 5) + 5.62047306567948*pow(xi1, 3) + 1031098868734.33*pow(xi2, 53) - 13656799302216.0*pow(xi2, 51) + 85322239662808.6*pow(xi2, 49) - 334335254497875.0*pow(xi2, 47) + 921629169951347.0*pow(xi2, 45) - 1.90013792114849e+15*pow(xi2, 43) + 3.04108995585405e+15*pow(xi2, 41) - 3.87073358105217e+15*pow(xi2, 39) + 3.98213104426395e+15*pow(xi2, 37) - 3.34735422684659e+15*pow(xi2, 35) + 2.31503617547326e+15*pow(xi2, 33) - 1.32238476900186e+15*pow(xi2, 31) + 624675256927435.0*pow(xi2, 29) - 243773285298310.0*pow(xi2, 27) + 78326766091896.9*pow(xi2, 25) - 20604719081135.1*pow(xi2, 23) + 4401250638548.01*pow(xi2, 21) - 754840239473.165*pow(xi2, 19) + 102405233319.159*pow(xi2, 17) - 10775577645.0379*pow(xi2, 15) + 856837392.061791*pow(xi2, 13) - 49709190.4236064*pow(xi2, 11) + 2003680.2341744*pow(xi2, 9) - 52251.1293174511*pow(xi2, 7) + 787.990323808263*pow(xi2, 5) - 5.62047306567948*pow(xi2, 3); default: return 0.; } case 28: switch(j) { case 0: return -395880.107061222*pow(xi1, 28)*y1t + 2716824.26414564*pow(xi1, 26)*y1t - 8289086.2753015*pow(xi1, 24)*y1t + 14814537.1728793*pow(xi1, 22)*y1t - 17201323.7173987*pow(xi1, 20)*y1t + 13601046.6602688*pow(xi1, 18)*y1t - 7463989.02087919*pow(xi1, 16)*y1t + 2843424.38890636*pow(xi1, 14)*y1t - 739674.587654695*pow(xi1, 12)*y1t + 126801.357883662*pow(xi1, 10)*y1t - 13448.628866449*pow(xi1, 8)*y1t + 788.775886595249*pow(xi1, 6)*y1t - 20.3993763774633*pow(xi1, 4)*y1t + 0.116235762834549*pow(xi1, 2)*y1t + 395880.107061222*pow(xi2, 28)*y1t - 2716824.26414564*pow(xi2, 26)*y1t + 8289086.2753015*pow(xi2, 24)*y1t - 14814537.1728793*pow(xi2, 22)*y1t + 17201323.7173987*pow(xi2, 20)*y1t - 13601046.6602688*pow(xi2, 18)*y1t + 7463989.02087919*pow(xi2, 16)*y1t - 2843424.38890636*pow(xi2, 14)*y1t + 739674.587654695*pow(xi2, 12)*y1t - 126801.357883662*pow(xi2, 10)*y1t + 13448.628866449*pow(xi2, 8)*y1t - 788.775886595249*pow(xi2, 6)*y1t + 20.3993763774633*pow(xi2, 4)*y1t - 0.116235762834549*pow(xi2, 2)*y1t; case 1: return -197940.053530611*pow(xi1, 28)*y1r + 68423.7222081125*pow(xi1, 27)*y1r + 1358412.13207282*pow(xi1, 26)*y1r - 470916.205785245*pow(xi1, 25)*y1r - 4144543.13765075*pow(xi1, 24)*y1r + 1441580.22179157*pow(xi1, 23)*y1r + 7407268.58643964*pow(xi1, 22)*y1r - 2586665.22066146*pow(xi1, 21)*y1r - 8600661.85869936*pow(xi1, 20)*y1r + 3017776.0907717*pow(xi1, 19)*y1r + 6800523.33013438*pow(xi1, 18)*y1r - 2400184.70475331*pow(xi1, 17)*y1r - 3731994.5104396*pow(xi1, 16)*y1r + 1326931.38148963*pow(xi1, 15)*y1r + 1421712.19445318*pow(xi1, 14)*y1r - 510358.223649859*pow(xi1, 13)*y1r - 369837.293827347*pow(xi1, 12)*y1r + 134486.28866449*pow(xi1, 11)*y1r + 63400.678941831*pow(xi1, 10)*y1r - 23481.7329414189*pow(xi1, 9)*y1r - 6724.3144332245*pow(xi1, 8)*y1r + 2561.64359360933*pow(xi1, 7)*y1r + 394.387943297625*pow(xi1, 6)*y1r - 157.75517731905*pow(xi1, 5)*y1r - 10.1996881887317*pow(xi1, 4)*y1r + 4.53319475054741*pow(xi1, 3)*y1r + 0.0581178814172745*pow(xi1, 2)*y1r - 0.038745254278183*xi1*y1r + 197940.053530611*pow(xi2, 28)*y1r - 68423.7222081125*pow(xi2, 27)*y1r - 1358412.13207282*pow(xi2, 26)*y1r + 470916.205785245*pow(xi2, 25)*y1r + 4144543.13765075*pow(xi2, 24)*y1r - 1441580.22179157*pow(xi2, 23)*y1r - 7407268.58643964*pow(xi2, 22)*y1r + 2586665.22066146*pow(xi2, 21)*y1r + 8600661.85869936*pow(xi2, 20)*y1r - 3017776.0907717*pow(xi2, 19)*y1r - 6800523.33013438*pow(xi2, 18)*y1r + 2400184.70475331*pow(xi2, 17)*y1r + 3731994.5104396*pow(xi2, 16)*y1r - 1326931.38148963*pow(xi2, 15)*y1r - 1421712.19445318*pow(xi2, 14)*y1r + 510358.223649859*pow(xi2, 13)*y1r + 369837.293827347*pow(xi2, 12)*y1r - 134486.28866449*pow(xi2, 11)*y1r - 63400.678941831*pow(xi2, 10)*y1r + 23481.7329414189*pow(xi2, 9)*y1r + 6724.3144332245*pow(xi2, 8)*y1r - 2561.64359360933*pow(xi2, 7)*y1r - 394.387943297625*pow(xi2, 6)*y1r + 157.75517731905*pow(xi2, 5)*y1r + 10.1996881887317*pow(xi2, 4)*y1r - 4.53319475054741*pow(xi2, 3)*y1r - 0.0581178814172745*pow(xi2, 2)*y1r + 0.038745254278183*xi2*y1r; case 2: return 395880.107061222*pow(xi1, 28)*y2t - 2716824.26414564*pow(xi1, 26)*y2t + 8289086.2753015*pow(xi1, 24)*y2t - 14814537.1728793*pow(xi1, 22)*y2t + 17201323.7173987*pow(xi1, 20)*y2t - 13601046.6602688*pow(xi1, 18)*y2t + 7463989.02087919*pow(xi1, 16)*y2t - 2843424.38890636*pow(xi1, 14)*y2t + 739674.587654695*pow(xi1, 12)*y2t - 126801.357883662*pow(xi1, 10)*y2t + 13448.628866449*pow(xi1, 8)*y2t - 788.775886595249*pow(xi1, 6)*y2t + 20.3993763774633*pow(xi1, 4)*y2t - 0.116235762834549*pow(xi1, 2)*y2t - 395880.107061222*pow(xi2, 28)*y2t + 2716824.26414564*pow(xi2, 26)*y2t - 8289086.2753015*pow(xi2, 24)*y2t + 14814537.1728793*pow(xi2, 22)*y2t - 17201323.7173987*pow(xi2, 20)*y2t + 13601046.6602688*pow(xi2, 18)*y2t - 7463989.02087919*pow(xi2, 16)*y2t + 2843424.38890636*pow(xi2, 14)*y2t - 739674.587654695*pow(xi2, 12)*y2t + 126801.357883662*pow(xi2, 10)*y2t - 13448.628866449*pow(xi2, 8)*y2t + 788.775886595249*pow(xi2, 6)*y2t - 20.3993763774633*pow(xi2, 4)*y2t + 0.116235762834549*pow(xi2, 2)*y2t; case 3: return -197940.053530611*pow(xi1, 28)*y2r - 68423.7222081125*pow(xi1, 27)*y2r + 1358412.13207282*pow(xi1, 26)*y2r + 470916.205785245*pow(xi1, 25)*y2r - 4144543.13765075*pow(xi1, 24)*y2r - 1441580.22179157*pow(xi1, 23)*y2r + 7407268.58643964*pow(xi1, 22)*y2r + 2586665.22066146*pow(xi1, 21)*y2r - 8600661.85869936*pow(xi1, 20)*y2r - 3017776.0907717*pow(xi1, 19)*y2r + 6800523.33013438*pow(xi1, 18)*y2r + 2400184.70475331*pow(xi1, 17)*y2r - 3731994.5104396*pow(xi1, 16)*y2r - 1326931.38148963*pow(xi1, 15)*y2r + 1421712.19445318*pow(xi1, 14)*y2r + 510358.223649859*pow(xi1, 13)*y2r - 369837.293827347*pow(xi1, 12)*y2r - 134486.28866449*pow(xi1, 11)*y2r + 63400.678941831*pow(xi1, 10)*y2r + 23481.7329414189*pow(xi1, 9)*y2r - 6724.3144332245*pow(xi1, 8)*y2r - 2561.64359360933*pow(xi1, 7)*y2r + 394.387943297625*pow(xi1, 6)*y2r + 157.75517731905*pow(xi1, 5)*y2r - 10.1996881887317*pow(xi1, 4)*y2r - 4.53319475054741*pow(xi1, 3)*y2r + 0.0581178814172745*pow(xi1, 2)*y2r + 0.038745254278183*xi1*y2r + 197940.053530611*pow(xi2, 28)*y2r + 68423.7222081125*pow(xi2, 27)*y2r - 1358412.13207282*pow(xi2, 26)*y2r - 470916.205785245*pow(xi2, 25)*y2r + 4144543.13765075*pow(xi2, 24)*y2r + 1441580.22179157*pow(xi2, 23)*y2r - 7407268.58643964*pow(xi2, 22)*y2r - 2586665.22066146*pow(xi2, 21)*y2r + 8600661.85869936*pow(xi2, 20)*y2r + 3017776.0907717*pow(xi2, 19)*y2r - 6800523.33013438*pow(xi2, 18)*y2r - 2400184.70475331*pow(xi2, 17)*y2r + 3731994.5104396*pow(xi2, 16)*y2r + 1326931.38148963*pow(xi2, 15)*y2r - 1421712.19445318*pow(xi2, 14)*y2r - 510358.223649859*pow(xi2, 13)*y2r + 369837.293827347*pow(xi2, 12)*y2r + 134486.28866449*pow(xi2, 11)*y2r - 63400.678941831*pow(xi2, 10)*y2r - 23481.7329414189*pow(xi2, 9)*y2r + 6724.3144332245*pow(xi2, 8)*y2r + 2561.64359360933*pow(xi2, 7)*y2r - 394.387943297625*pow(xi2, 6)*y2r - 157.75517731905*pow(xi2, 5)*y2r + 10.1996881887317*pow(xi2, 4)*y2r + 4.53319475054741*pow(xi2, 3)*y2r - 0.0581178814172745*pow(xi2, 2)*y2r - 0.038745254278183*xi2*y2r; case 4: return -382229.068886697*pow(xi1, 29) + 2753048.58766758*pow(xi1, 27) - 8899355.23585993*pow(xi1, 25) + 17053587.3045981*pow(xi1, 23) - 21555543.5055122*pow(xi1, 21) + 18920754.2807454*pow(xi1, 19) - 11825300.252687*pow(xi1, 17) + 5307725.52595854*pow(xi1, 15) - 1703492.98975021*pow(xi1, 13) + 384246.5390414*pow(xi1, 11) - 58917.8026530147*pow(xi1, 9) + 5799.38080430031*pow(xi1, 7) - 331.82985574007*pow(xi1, 5) + 9.14388000965118*pow(xi1, 3) - 0.077490508556366*xi1 + 382229.068886697*pow(xi2, 29) - 2753048.58766758*pow(xi2, 27) + 8899355.23585993*pow(xi2, 25) - 17053587.3045981*pow(xi2, 23) + 21555543.5055122*pow(xi2, 21) - 18920754.2807454*pow(xi2, 19) + 11825300.252687*pow(xi2, 17) - 5307725.52595854*pow(xi2, 15) + 1703492.98975021*pow(xi2, 13) - 384246.5390414*pow(xi2, 11) + 58917.8026530147*pow(xi2, 9) - 5799.38080430031*pow(xi2, 7) + 331.82985574007*pow(xi2, 5) - 9.14388000965118*pow(xi2, 3) + 0.077490508556366*xi2; case 5: return -615813.499873012*pow(xi1, 30) + 4600489.08728662*pow(xi1, 28) - 15469264.6876864*pow(xi1, 26) + 30922406.9560893*pow(xi1, 24) - 40877148.8659076*pow(xi1, 22) + 37602893.7078018*pow(xi1, 20) - 24658808.1726824*pow(xi1, 18) + 11610649.5880343*pow(xi1, 16) - 3900102.37127021*pow(xi1, 14) + 915787.584715337*pow(xi1, 12) - 144732.863038927*pow(xi1, 10) + 14434.5987246931*pow(xi1, 8) - 811.441860347986*pow(xi1, 6) + 20.4962395131588*pow(xi1, 4) - 0.116235762834549*pow(xi1, 2) + 615813.499873012*pow(xi2, 30) - 4600489.08728662*pow(xi2, 28) + 15469264.6876864*pow(xi2, 26) - 30922406.9560893*pow(xi2, 24) + 40877148.8659076*pow(xi2, 22) - 37602893.7078018*pow(xi2, 20) + 24658808.1726824*pow(xi2, 18) - 11610649.5880343*pow(xi2, 16) + 3900102.37127021*pow(xi2, 14) - 915787.584715337*pow(xi2, 12) + 144732.863038927*pow(xi2, 10) - 14434.5987246931*pow(xi2, 8) + 811.441860347986*pow(xi2, 6) - 20.4962395131588*pow(xi2, 4) + 0.116235762834549*pow(xi2, 2); case 6: return -1042909.95946236*pow(xi1, 31) + 8059911.98363207*pow(xi1, 29) - 28133362.1181482*pow(xi1, 27) + 58624160.113125*pow(xi1, 25) - 81214983.145294*pow(xi1, 23) + 78838147.1421372*pow(xi1, 21) - 55072273.9968482*pow(xi1, 19) + 27992398.0403953*pow(xi1, 17) - 10350961.3508769*pow(xi1, 15) + 2756968.91762204*pow(xi1, 13) - 518441.73184298*pow(xi1, 11) + 66642.1722281724*pow(xi1, 9) - 5566.69839374721*pow(xi1, 7) + 277.567127123475*pow(xi1, 5) - 6.99351839721203*pow(xi1, 3) + 0.0581178814172745*xi1 + 1042909.95946236*pow(xi2, 31) - 8059911.98363207*pow(xi2, 29) + 28133362.1181482*pow(xi2, 27) - 58624160.113125*pow(xi2, 25) + 81214983.145294*pow(xi2, 23) - 78838147.1421372*pow(xi2, 21) + 55072273.9968482*pow(xi2, 19) - 27992398.0403953*pow(xi2, 17) + 10350961.3508769*pow(xi2, 15) - 2756968.91762204*pow(xi2, 13) + 518441.73184298*pow(xi2, 11) - 66642.1722281724*pow(xi2, 9) + 5566.69839374721*pow(xi2, 7) - 277.567127123475*pow(xi2, 5) + 6.99351839721203*pow(xi2, 3) - 0.0581178814172745*xi2; case 7: return -1818574.24181249*pow(xi1, 32) + 14516897.6514182*pow(xi1, 30) - 52511869.8034722*pow(xi1, 28) + 113840304.253635*pow(xi1, 26) - 164833771.490504*pow(xi1, 24) + 168159990.091489*pow(xi1, 22) - 124255903.500852*pow(xi1, 20) + 67314123.2068179*pow(xi1, 18) - 26755766.9500322*pow(xi1, 16) + 7728158.51647016*pow(xi1, 14) - 1588058.92531319*pow(xi1, 12) + 223746.609440781*pow(xi1, 10) - 20315.2289499063*pow(xi1, 8) + 1065.5041789636*pow(xi1, 6) - 25.8382414467633*pow(xi1, 4) + 0.145294703543186*pow(xi1, 2) + 1818574.24181249*pow(xi2, 32) - 14516897.6514182*pow(xi2, 30) + 52511869.8034722*pow(xi2, 28) - 113840304.253635*pow(xi2, 26) + 164833771.490504*pow(xi2, 24) - 168159990.091489*pow(xi2, 22) + 124255903.500852*pow(xi2, 20) - 67314123.2068179*pow(xi2, 18) + 26755766.9500322*pow(xi2, 16) - 7728158.51647016*pow(xi2, 14) + 1588058.92531319*pow(xi2, 12) - 223746.609440781*pow(xi2, 10) + 20315.2289499063*pow(xi2, 8) - 1065.5041789636*pow(xi2, 6) + 25.8382414467633*pow(xi2, 4) - 0.145294703543186*pow(xi2, 2); case 8: return -3233020.87433331*pow(xi1, 33) + 26624877.7886273*pow(xi1, 31) - 99668638.718943*pow(xi1, 29) + 224421795.69438*pow(xi1, 27) - 338960904.584224*pow(xi1, 25) + 362568410.607603*pow(xi1, 23) - 282653208.096126*pow(xi1, 21) + 162807565.128513*pow(xi1, 19) - 69493811.927836*pow(xi1, 17) + 21849539.0316908*pow(xi1, 15) - 4984958.43316376*pow(xi1, 13) + 804945.792270452*pow(xi1, 11) - 88641.442552954*pow(xi1, 9) + 6313.27903792262*pow(xi1, 7) - 269.202026724815*pow(xi1, 5) + 6.00551441311836*pow(xi1, 3) - 0.0484315678477287*xi1 + 3233020.87433331*pow(xi2, 33) - 26624877.7886273*pow(xi2, 31) + 99668638.718943*pow(xi2, 29) - 224421795.69438*pow(xi2, 27) + 338960904.584224*pow(xi2, 25) - 362568410.607603*pow(xi2, 23) + 282653208.096126*pow(xi2, 21) - 162807565.128513*pow(xi2, 19) + 69493811.927836*pow(xi2, 17) - 21849539.0316908*pow(xi2, 15) + 4984958.43316376*pow(xi2, 13) - 804945.792270452*pow(xi2, 11) + 88641.442552954*pow(xi2, 9) - 6313.27903792262*pow(xi2, 7) + 269.202026724815*pow(xi2, 5) - 6.00551441311836*pow(xi2, 3) + 0.0484315678477287*xi2; case 9: return -5827588.0465924*pow(xi1, 34) + 49459785.7287714*pow(xi1, 32) - 191371992.258556*pow(xi1, 30) + 446908389.876074*pow(xi1, 28) - 702864733.260658*pow(xi1, 26) + 786571534.918486*pow(xi1, 24) - 645204185.079993*pow(xi1, 22) + 393744121.477465*pow(xi1, 20) - 179587759.860223*pow(xi1, 18) + 60975122.6641322*pow(xi1, 16) - 15220645.8223283*pow(xi1, 14) + 2731517.74901457*pow(xi1, 12) - 339940.64778775*pow(xi1, 10) + 27672.1318222582*pow(xi1, 8) - 1329.91148047149*pow(xi1, 6) + 30.5118877440691*pow(xi1, 4) - 0.169510487467051*pow(xi1, 2) + 5827588.0465924*pow(xi2, 34) - 49459785.7287714*pow(xi2, 32) + 191371992.258556*pow(xi2, 30) - 446908389.876074*pow(xi2, 28) + 702864733.260658*pow(xi2, 26) - 786571534.918486*pow(xi2, 24) + 645204185.079993*pow(xi2, 22) - 393744121.477465*pow(xi2, 20) + 179587759.860223*pow(xi2, 18) - 60975122.6641322*pow(xi2, 16) + 15220645.8223283*pow(xi2, 14) - 2731517.74901457*pow(xi2, 12) + 339940.64778775*pow(xi2, 10) - 27672.1318222582*pow(xi2, 8) + 1329.91148047149*pow(xi2, 6) - 30.5118877440691*pow(xi2, 4) + 0.169510487467051*pow(xi2, 2); case 10: return -10614535.370579*pow(xi1, 35) + 92755776.4082624*pow(xi1, 33) - 370544334.663235*pow(xi1, 31) + 896268350.896106*pow(xi1, 29) - 1465430395.17544*pow(xi1, 27) + 1712419554.36447*pow(xi1, 25) - 1474407039.04468*pow(xi1, 23) + 950436059.72244*pow(xi1, 21) - 461461192.923372*pow(xi1, 19) + 168410243.079443*pow(xi1, 17) - 45754476.8418039*pow(xi1, 15) + 9089465.50231274*pow(xi1, 13) - 1283771.85423849*pow(xi1, 11) + 123681.481937598*pow(xi1, 9) - 7661.47689465433*pow(xi1, 7) + 281.319605000317*pow(xi1, 5) - 5.46671322081238*pow(xi1, 3) + 0.0423776218667626*xi1 + 10614535.370579*pow(xi2, 35) - 92755776.4082624*pow(xi2, 33) + 370544334.663235*pow(xi2, 31) - 896268350.896106*pow(xi2, 29) + 1465430395.17544*pow(xi2, 27) - 1712419554.36447*pow(xi2, 25) + 1474407039.04468*pow(xi2, 23) - 950436059.72244*pow(xi2, 21) + 461461192.923372*pow(xi2, 19) - 168410243.079443*pow(xi2, 17) + 45754476.8418039*pow(xi2, 15) - 9089465.50231274*pow(xi2, 13) + 1283771.85423849*pow(xi2, 11) - 123681.481937598*pow(xi2, 9) + 7661.47689465433*pow(xi2, 7) - 281.319605000317*pow(xi2, 5) + 5.46671322081238*pow(xi2, 3) - 0.0423776218667626*xi2; case 11: return -19492742.4243658*pow(xi1, 36) + 175232335.012119*pow(xi1, 34) - 722008921.923926*pow(xi1, 32) + 1806628056.05124*pow(xi1, 30) - 3066428693.32447*pow(xi1, 28) + 3734932372.32101*pow(xi1, 26) - 3368124476.71676*pow(xi1, 24) + 2287179847.95449*pow(xi1, 22) - 1178061248.61469*pow(xi1, 20) + 460069121.41871*pow(xi1, 18) - 135223661.775479*pow(xi1, 16) + 29472096.8897768*pow(xi1, 14) - 4650842.96896293*pow(xi1, 12) + 512427.983994139*pow(xi1, 10) - 37260.1692651166*pow(xi1, 8) + 1624.96143495664*pow(xi1, 6) - 34.866188390879*pow(xi1, 4) + 0.190699298400432*pow(xi1, 2) + 19492742.4243658*pow(xi2, 36) - 175232335.012119*pow(xi2, 34) + 722008921.923926*pow(xi2, 32) - 1806628056.05124*pow(xi2, 30) + 3066428693.32447*pow(xi2, 28) - 3734932372.32101*pow(xi2, 26) + 3368124476.71676*pow(xi2, 24) - 2287179847.95449*pow(xi2, 22) + 1178061248.61469*pow(xi2, 20) - 460069121.41871*pow(xi2, 18) + 135223661.775479*pow(xi2, 16) - 29472096.8897768*pow(xi2, 14) + 4650842.96896293*pow(xi2, 12) - 512427.983994139*pow(xi2, 10) + 37260.1692651166*pow(xi2, 8) - 1624.96143495664*pow(xi2, 6) + 34.866188390879*pow(xi2, 4) - 0.190699298400432*pow(xi2, 2); case 12: return -36035231.94126*pow(xi1, 37) + 332981905.88446*pow(xi1, 35) - 1413726939.76667*pow(xi1, 33) + 3655354391.35564*pow(xi1, 31) - 6431952084.25*pow(xi1, 29) + 8152430288.7193*pow(xi1, 27) - 7684636644.4594*pow(xi1, 25) + 5483667102.29229*pow(xi1, 23) - 2987122332.19582*pow(xi1, 21) + 1243439492.18471*pow(xi1, 19) - 393380943.358236*pow(xi1, 17) + 93442880.9754944*pow(xi1, 15) - 16337382.0053395*pow(xi1, 13) + 2040497.55025906*pow(xi1, 11) - 174241.619613813*pow(xi1, 9) + 9541.69497068971*pow(xi1, 7) - 306.184250854421*pow(xi1, 5) + 5.16159434337169*pow(xi1, 3) - 0.0381398596800864*xi1 + 36035231.94126*pow(xi2, 37) - 332981905.88446*pow(xi2, 35) + 1413726939.76667*pow(xi2, 33) - 3655354391.35564*pow(xi2, 31) + 6431952084.25*pow(xi2, 29) - 8152430288.7193*pow(xi2, 27) + 7684636644.4594*pow(xi2, 25) - 5483667102.29229*pow(xi2, 23) + 2987122332.19582*pow(xi2, 21) - 1243439492.18471*pow(xi2, 19) + 393380943.358236*pow(xi2, 17) - 93442880.9754944*pow(xi2, 15) + 16337382.0053395*pow(xi2, 13) - 2040497.55025906*pow(xi2, 11) + 174241.619613813*pow(xi2, 9) - 9541.69497068971*pow(xi2, 7) + 306.184250854421*pow(xi2, 5) - 5.16159434337169*pow(xi2, 3) + 0.0381398596800864*xi2; case 13: return -66984151.2400934*pow(xi1, 38) + 635755272.974369*pow(xi1, 36) - 2778854981.71771*pow(xi1, 34) + 7416700465.30732*pow(xi1, 32) - 13512264351.8898*pow(xi1, 30) + 17795545479.9828*pow(xi1, 28) - 17501806486.5197*pow(xi1, 26) + 13094549563.7091*pow(xi1, 24) - 7522729401.02621*pow(xi1, 22) + 3326111850.47562*pow(xi1, 20) - 1127522417.34474*pow(xi1, 18) + 290172121.541803*pow(xi1, 16) - 55754538.0001717*pow(xi1, 14) + 7798909.77564694*pow(xi1, 12) - 765222.40460386*pow(xi1, 10) + 49811.8488852354*pow(xi1, 8) - 1964.34897631989*pow(xi1, 6) + 39.0869995288085*pow(xi1, 4) - 0.209769228240475*pow(xi1, 2) + 66984151.2400934*pow(xi2, 38) - 635755272.974369*pow(xi2, 36) + 2778854981.71771*pow(xi2, 34) - 7416700465.30732*pow(xi2, 32) + 13512264351.8898*pow(xi2, 30) - 17795545479.9828*pow(xi2, 28) + 17501806486.5197*pow(xi2, 26) - 13094549563.7091*pow(xi2, 24) + 7522729401.02621*pow(xi2, 22) - 3326111850.47562*pow(xi2, 20) + 1127522417.34474*pow(xi2, 18) - 290172121.541803*pow(xi2, 16) + 55754538.0001717*pow(xi2, 14) - 7798909.77564694*pow(xi2, 12) + 765222.40460386*pow(xi2, 10) - 49811.8488852354*pow(xi2, 8) + 1964.34897631989*pow(xi2, 6) - 39.0869995288085*pow(xi2, 4) + 0.209769228240475*pow(xi2, 2); case 14: return -125094333.726157*pow(xi1, 39) + 1218629967.16863*pow(xi1, 37) - 5479196736.83039*pow(xi1, 35) + 15080490963.6401*pow(xi1, 33) - 28413812500.6887*pow(xi1, 31) + 38827942540.1858*pow(xi1, 29) - 39775778008.2976*pow(xi1, 27) + 31138221454.6458*pow(xi1, 25) - 18818365412.316*pow(xi1, 23) + 8809669483.95246*pow(xi1, 21) - 3187162871.2602*pow(xi1, 19) + 884046946.742028*pow(xi1, 17) - 185394647.761177*pow(xi1, 15) + 28774004.6464238*pow(xi1, 13) - 3203798.15636541*pow(xi1, 11) + 244586.1160801*pow(xi1, 9) - 11973.6984699435*pow(xi1, 7) + 340.602295894059*pow(xi1, 5) - 4.99949993973132*pow(xi1, 3) + 0.0349615380400792*xi1 + 125094333.726157*pow(xi2, 39) - 1218629967.16863*pow(xi2, 37) + 5479196736.83039*pow(xi2, 35) - 15080490963.6401*pow(xi2, 33) + 28413812500.6887*pow(xi2, 31) - 38827942540.1858*pow(xi2, 29) + 39775778008.2976*pow(xi2, 27) - 31138221454.6458*pow(xi2, 25) + 18818365412.316*pow(xi2, 23) - 8809669483.95246*pow(xi2, 21) + 3187162871.2602*pow(xi2, 19) - 884046946.742028*pow(xi2, 17) + 185394647.761177*pow(xi2, 15) - 28774004.6464238*pow(xi2, 13) + 3203798.15636541*pow(xi2, 11) - 244586.1160801*pow(xi2, 9) + 11973.6984699435*pow(xi2, 7) - 340.602295894059*pow(xi2, 5) + 4.99949993973132*pow(xi2, 3) - 0.0349615380400792*xi2; case 15: return -234551875.736545*pow(xi1, 40) + 2343679134.81065*pow(xi1, 38) - 10831075689.4263*pow(xi1, 36) + 30713072121.1401*pow(xi1, 34) - 59780571314.211*pow(xi1, 32) + 84653008995.6795*pow(xi1, 30) - 90186685266.1405*pow(xi1, 28) + 73733585896.2953*pow(xi1, 26) - 46768558930.8651*pow(xi1, 24) + 23115653989.3216*pow(xi1, 22) - 8892958492.16441*pow(xi1, 20) + 2646430745.77703*pow(xi1, 18) - 602096347.338786*pow(xi1, 16) + 102847878.539102*pow(xi1, 14) - 12846714.7480362*pow(xi1, 12) + 1129681.26669604*pow(xi1, 10) - 66128.2185117568*pow(xi1, 8) + 2359.0822215614*pow(xi1, 6) - 43.291124478128*pow(xi1, 4) + 0.227249997260515*pow(xi1, 2) + 234551875.736545*pow(xi2, 40) - 2343679134.81065*pow(xi2, 38) + 10831075689.4263*pow(xi2, 36) - 30713072121.1401*pow(xi2, 34) + 59780571314.211*pow(xi2, 32) - 84653008995.6795*pow(xi2, 30) + 90186685266.1405*pow(xi2, 28) - 73733585896.2953*pow(xi2, 26) + 46768558930.8651*pow(xi2, 24) - 23115653989.3216*pow(xi2, 22) + 8892958492.16441*pow(xi2, 20) - 2646430745.77703*pow(xi2, 18) + 602096347.338786*pow(xi2, 16) - 102847878.539102*pow(xi2, 14) + 12846714.7480362*pow(xi2, 12) - 1129681.26669604*pow(xi2, 10) + 66128.2185117568*pow(xi2, 8) - 2359.0822215614*pow(xi2, 6) + 43.291124478128*pow(xi2, 4) - 0.227249997260515*pow(xi2, 2); case 16: return -441317118.110572*pow(xi1, 41) + 4520215420.35694*pow(xi1, 39) - 21455533946.584*pow(xi1, 37) + 62627825964.2131*pow(xi1, 35) - 125800745105.801*pow(xi1, 33) + 184377197521.378*pow(xi1, 31) - 203988345809.981*pow(xi1, 29) + 173868453386.539*pow(xi1, 27) - 115502709028.459*pow(xi1, 25) + 60116117167.5139*pow(xi1, 23) - 24514412771.7272*pow(xi1, 21) + 7794716434.77033*pow(xi1, 19) - 1913781501.17792*pow(xi1, 17) + 357278354.291477*pow(xi1, 15) - 49588694.3055459*pow(xi1, 13) + 4955565.44394926*pow(xi1, 11) - 340478.339523105*pow(xi1, 9) + 15018.1416393653*pow(xi1, 7) - 383.065581096453*pow(xi1, 5) + 4.93457136908546*pow(xi1, 3) - 0.0324642853229307*xi1 + 441317118.110572*pow(xi2, 41) - 4520215420.35694*pow(xi2, 39) + 21455533946.584*pow(xi2, 37) - 62627825964.2131*pow(xi2, 35) + 125800745105.801*pow(xi2, 33) - 184377197521.378*pow(xi2, 31) + 203988345809.981*pow(xi2, 29) - 173868453386.539*pow(xi2, 27) + 115502709028.459*pow(xi2, 25) - 60116117167.5139*pow(xi2, 23) + 24514412771.7272*pow(xi2, 21) - 7794716434.77033*pow(xi2, 19) + 1913781501.17792*pow(xi2, 17) - 357278354.291477*pow(xi2, 15) + 49588694.3055459*pow(xi2, 13) - 4955565.44394926*pow(xi2, 11) + 340478.339523105*pow(xi2, 9) - 15018.1416393653*pow(xi2, 7) + 383.065581096453*pow(xi2, 5) - 4.93457136908546*pow(xi2, 3) + 0.0324642853229307*xi2; case 17: return -832898497.513445*pow(xi1, 42) + 8739521151.39361*pow(xi1, 40) - 42576535481.4103*pow(xi1, 38) + 127826121298.421*pow(xi1, 36) - 264726932148.851*pow(xi1, 34) + 401118326084.344*pow(xi1, 32) - 460241028009.732*pow(xi1, 30) + 408314713395.208*pow(xi1, 28) - 283534587979.19*pow(xi1, 26) + 155032460976.396*pow(xi1, 24) - 66814844868.7664*pow(xi1, 22) + 22616390444.5483*pow(xi1, 20) - 5964425288.95009*pow(xi1, 18) + 1209523608.00284*pow(xi1, 16) - 185014866.413594*pow(xi1, 14) + 20772630.3016105*pow(xi1, 12) - 1646801.49301984*pow(xi1, 10) + 87125.360217566*pow(xi1, 8) - 2818.97128744604*pow(xi1, 6) + 47.5601779980934*pow(xi1, 4) - 0.24348213992198*pow(xi1, 2) + 832898497.513445*pow(xi2, 42) - 8739521151.39361*pow(xi2, 40) + 42576535481.4103*pow(xi2, 38) - 127826121298.421*pow(xi2, 36) + 264726932148.851*pow(xi2, 34) - 401118326084.344*pow(xi2, 32) + 460241028009.732*pow(xi2, 30) - 408314713395.208*pow(xi2, 28) + 283534587979.19*pow(xi2, 26) - 155032460976.396*pow(xi2, 24) + 66814844868.7664*pow(xi2, 22) - 22616390444.5483*pow(xi2, 20) + 5964425288.95009*pow(xi2, 18) - 1209523608.00284*pow(xi2, 16) + 185014866.413594*pow(xi2, 14) - 20772630.3016105*pow(xi2, 12) + 1646801.49301984*pow(xi2, 10) - 87125.360217566*pow(xi2, 8) + 2818.97128744604*pow(xi2, 6) - 47.5601779980934*pow(xi2, 4) + 0.24348213992198*pow(xi2, 2); case 18: return -1576211982.21294*pow(xi1, 43) + 16933561364.8873*pow(xi1, 41) - 84614559003.2213*pow(xi1, 39) + 261084075522.621*pow(xi1, 37) - 556967491278.751*pow(xi1, 35) + 871554447543.638*pow(xi1, 33) - 1035805550194.54*pow(xi1, 31) + 955069184599.961*pow(xi1, 29) - 692003707251.794*pow(xi1, 27) + 396644167130.276*pow(xi1, 25) - 180184197345.899*pow(xi1, 23) + 64714887198.5536*pow(xi1, 21) - 18255406234.0253*pow(xi1, 19) + 3999772030.77123*pow(xi1, 17) - 669517007.246176*pow(xi1, 15) + 83640451.2585604*pow(xi1, 13) - 7546458.86981693*pow(xi1, 11) + 469247.674788719*pow(xi1, 9) - 18761.013674985*pow(xi1, 7) + 432.842258174969*pow(xi1, 5) - 4.94065842258351*pow(xi1, 3) + 0.0304352674902475*xi1 + 1576211982.21294*pow(xi2, 43) - 16933561364.8873*pow(xi2, 41) + 84614559003.2213*pow(xi2, 39) - 261084075522.621*pow(xi2, 37) + 556967491278.751*pow(xi2, 35) - 871554447543.638*pow(xi2, 33) + 1035805550194.54*pow(xi2, 31) - 955069184599.961*pow(xi2, 29) + 692003707251.794*pow(xi2, 27) - 396644167130.276*pow(xi2, 25) + 180184197345.899*pow(xi2, 23) - 64714887198.5536*pow(xi2, 21) + 18255406234.0253*pow(xi2, 19) - 3999772030.77123*pow(xi2, 17) + 669517007.246176*pow(xi2, 15) - 83640451.2585604*pow(xi2, 13) + 7546458.86981693*pow(xi2, 11) - 469247.674788719*pow(xi2, 9) + 18761.013674985*pow(xi2, 7) - 432.842258174969*pow(xi2, 5) + 4.94065842258351*pow(xi2, 3) - 0.0304352674902475*xi2; case 19: return -2990166848.60985*pow(xi1, 44) + 32872291760.5344*pow(xi1, 42) - 168370927902.997*pow(xi1, 40) + 533545185426.962*pow(xi1, 38) - 1171446565841.26*pow(xi1, 36) + 1891235717065.74*pow(xi1, 34) - 2325370700007.72*pow(xi1, 32) + 2225327260993.79*pow(xi1, 30) - 1679622467988.24*pow(xi1, 28) + 1007198702447.56*pow(xi1, 26) - 481108506863.906*pow(xi1, 24) + 182797439097.335*pow(xi1, 22) - 54951131326.4392*pow(xi1, 20) + 12946492132.2885*pow(xi1, 18) - 2356797655.27788*pow(xi1, 16) + 324895309.523393*pow(xi1, 14) - 32978968.5669253*pow(xi1, 12) + 2369734.10762014*pow(xi1, 10) - 113866.472549779*pow(xi1, 8) + 3353.33545287931*pow(xi1, 6) - 51.9555378781433*pow(xi1, 4) + 0.258699773667104*pow(xi1, 2) + 2990166848.60985*pow(xi2, 44) - 32872291760.5344*pow(xi2, 42) + 168370927902.997*pow(xi2, 40) - 533545185426.962*pow(xi2, 38) + 1171446565841.26*pow(xi2, 36) - 1891235717065.74*pow(xi2, 34) + 2325370700007.72*pow(xi2, 32) - 2225327260993.79*pow(xi2, 30) + 1679622467988.24*pow(xi2, 28) - 1007198702447.56*pow(xi2, 26) + 481108506863.906*pow(xi2, 24) - 182797439097.335*pow(xi2, 22) + 54951131326.4392*pow(xi2, 20) - 12946492132.2885*pow(xi2, 18) + 2356797655.27788*pow(xi2, 16) - 324895309.523393*pow(xi2, 14) + 32978968.5669253*pow(xi2, 12) - 2369734.10762014*pow(xi2, 10) + 113866.472549779*pow(xi2, 8) - 3353.33545287931*pow(xi2, 6) + 51.9555378781433*pow(xi2, 4) - 0.258699773667104*pow(xi2, 2); case 20: return -5685008576.36934*pow(xi1, 45) + 63920516598.1696*pow(xi1, 43) - 335395652216.154*pow(xi1, 41) + 1090761466149.57*pow(xi1, 39) - 2462829664359.92*pow(xi1, 37) + 4098358985109.66*pow(xi1, 35) - 5207672102829.33*pow(xi1, 33) + 5165704568093.2*pow(xi1, 31) - 4055323997387.46*pow(xi1, 29) + 2539466092295.99*pow(xi1, 27) - 1272677592880.11*pow(xi1, 25) + 510159539292.741*pow(xi1, 23) - 162880969995.744*pow(xi1, 21) + 41090018295.1226*pow(xi1, 19) - 8090656221.72712*pow(xi1, 17) + 1221946438.94162*pow(xi1, 15) - 138186780.026711*pow(xi1, 13) + 11316135.0824385*pow(xi1, 11) - 639984.608374149*pow(xi1, 9) + 23307.6275589514*pow(xi1, 7) - 489.615191642361*pow(xi1, 5) + 5.00152895756401*pow(xi1, 3) - 0.0287444192963449*xi1 + 5685008576.36934*pow(xi2, 45) - 63920516598.1696*pow(xi2, 43) + 335395652216.154*pow(xi2, 41) - 1090761466149.57*pow(xi2, 39) + 2462829664359.92*pow(xi2, 37) - 4098358985109.66*pow(xi2, 35) + 5207672102829.33*pow(xi2, 33) - 5165704568093.2*pow(xi2, 31) + 4055323997387.46*pow(xi2, 29) - 2539466092295.99*pow(xi2, 27) + 1272677592880.11*pow(xi2, 25) - 510159539292.741*pow(xi2, 23) + 162880969995.744*pow(xi2, 21) - 41090018295.1226*pow(xi2, 19) + 8090656221.72712*pow(xi2, 17) - 1221946438.94162*pow(xi2, 15) + 138186780.026711*pow(xi2, 13) - 11316135.0824385*pow(xi2, 11) + 639984.608374149*pow(xi2, 9) - 23307.6275589514*pow(xi2, 7) + 489.615191642361*pow(xi2, 5) - 5.00152895756401*pow(xi2, 3) + 0.0287444192963449*xi2; case 21: return -10830136475.5778*pow(xi1, 46) + 124480567047.592*pow(xi1, 44) - 668730146595.075*pow(xi1, 42) + 2230520873347.34*pow(xi1, 40) - 5175289082189.45*pow(xi1, 38) + 8869111491786.76*pow(xi1, 36) - 11634680954177.8*pow(xi1, 34) + 11948152405933.1*pow(xi1, 32) - 9742174333567.36*pow(xi1, 30) + 6359880357274.0*pow(xi1, 28) - 3337238393035.54*pow(xi1, 26) + 1407861058998.53*pow(xi1, 24) - 475948085093.87*pow(xi1, 22) + 128075500365.761*pow(xi1, 20) - 27145281328.444*pow(xi1, 18) + 4463611836.62049*pow(xi1, 16) - 557674658.619336*pow(xi1, 14) + 51443527.1447734*pow(xi1, 12) - 3366668.49452746*pow(xi1, 10) + 147588.470953531*pow(xi1, 8) - 3971.39508214739*pow(xi1, 6) + 56.5259005462622*pow(xi1, 4) - 0.273071983315276*pow(xi1, 2) + 10830136475.5778*pow(xi2, 46) - 124480567047.592*pow(xi2, 44) + 668730146595.075*pow(xi2, 42) - 2230520873347.34*pow(xi2, 40) + 5175289082189.45*pow(xi2, 38) - 8869111491786.76*pow(xi2, 36) + 11634680954177.8*pow(xi2, 34) - 11948152405933.1*pow(xi2, 32) + 9742174333567.36*pow(xi2, 30) - 6359880357274.0*pow(xi2, 28) + 3337238393035.54*pow(xi2, 26) - 1407861058998.53*pow(xi2, 24) + 475948085093.87*pow(xi2, 22) - 128075500365.761*pow(xi2, 20) + 27145281328.444*pow(xi2, 18) - 4463611836.62049*pow(xi2, 16) + 557674658.619336*pow(xi2, 14) - 51443527.1447734*pow(xi2, 12) + 3366668.49452746*pow(xi2, 10) - 147588.470953531*pow(xi2, 8) + 3971.39508214739*pow(xi2, 6) - 56.5259005462622*pow(xi2, 4) + 0.273071983315276*pow(xi2, 2); case 22: return -20669430677.858*pow(xi1, 47) + 242743705984.959*pow(xi1, 45) - 1334422142073.76*pow(xi1, 43) + 4562055823778.34*pow(xi1, 41) - 10869272649002.0*pow(xi1, 39) + 19167029443937.3*pow(xi1, 37) - 25932850957625.2*pow(xi1, 35) + 27540158501634.1*pow(xi1, 33) - 23291845098194.7*pow(xi1, 31) + 15826677366730.5*pow(xi1, 29) - 8679084881270.15*pow(xi1, 27) + 3844559615681.35*pow(xi1, 25) - 1372398208003.19*pow(xi1, 23) + 392591422175.228*pow(xi1, 21) - 89182852887.1235*pow(xi1, 19) + 15878163957.8501*pow(xi1, 17) - 2175816995.68173*pow(xi1, 15) + 223875789.885968*pow(xi1, 13) - 16718513.386797*pow(xi1, 11) + 863805.394274895*pow(xi1, 9) - 28780.1493897359*pow(xi1, 7) + 553.314836912411*pow(xi1, 5) - 5.10644608799566*pow(xi1, 3) + 0.0273071983315276*xi1 + 20669430677.858*pow(xi2, 47) - 242743705984.959*pow(xi2, 45) + 1334422142073.76*pow(xi2, 43) - 4562055823778.34*pow(xi2, 41) + 10869272649002.0*pow(xi2, 39) - 19167029443937.3*pow(xi2, 37) + 25932850957625.2*pow(xi2, 35) - 27540158501634.1*pow(xi2, 33) + 23291845098194.7*pow(xi2, 31) - 15826677366730.5*pow(xi2, 29) + 8679084881270.15*pow(xi2, 27) - 3844559615681.35*pow(xi2, 25) + 1372398208003.19*pow(xi2, 23) - 392591422175.228*pow(xi2, 21) + 89182852887.1235*pow(xi2, 19) - 15878163957.8501*pow(xi2, 17) + 2175816995.68173*pow(xi2, 15) - 223875789.885968*pow(xi2, 13) + 16718513.386797*pow(xi2, 11) - 863805.394274895*pow(xi2, 9) + 28780.1493897359*pow(xi2, 7) - 553.314836912411*pow(xi2, 5) + 5.10644608799566*pow(xi2, 3) - 0.0273071983315276*xi2; case 23: return -39513881861.3416*pow(xi1, 48) + 473939816873.48*pow(xi1, 46) - 2664641921512.91*pow(xi1, 44) + 9331688393323.42*pow(xi1, 42) - 22814742457657.3*pow(xi1, 40) + 41365417755535.0*pow(xi1, 38) - 57671165870739.0*pow(xi1, 36) + 63268091738868.2*pow(xi1, 34) - 55432667648218.2*pow(xi1, 32) + 39147974586004.8*pow(xi1, 30) - 22396734632040.0*pow(xi1, 28) + 10395673205955.8*pow(xi1, 26) - 3908620671560.13*pow(xi1, 24) + 1184931540983.06*pow(xi1, 22) - 287389625108.033*pow(xi1, 20) + 55130639039.3158*pow(xi1, 18) - 8233581071.61553*pow(xi1, 16) + 936988776.947738*pow(xi1, 14) - 78914666.8737741*pow(xi1, 12) + 4724180.42568061*pow(xi1, 10) - 189726.537067971*pow(xi1, 8) + 4682.51548749786*pow(xi1, 6) - 61.3114870538624*pow(xi1, 4) + 0.28672558248104*pow(xi1, 2) + 39513881861.3416*pow(xi2, 48) - 473939816873.48*pow(xi2, 46) + 2664641921512.91*pow(xi2, 44) - 9331688393323.42*pow(xi2, 42) + 22814742457657.3*pow(xi2, 40) - 41365417755535.0*pow(xi2, 38) + 57671165870739.0*pow(xi2, 36) - 63268091738868.2*pow(xi2, 34) + 55432667648218.2*pow(xi2, 32) - 39147974586004.8*pow(xi2, 30) + 22396734632040.0*pow(xi2, 28) - 10395673205955.8*pow(xi2, 26) + 3908620671560.13*pow(xi2, 24) - 1184931540983.06*pow(xi2, 22) + 287389625108.033*pow(xi2, 20) - 55130639039.3158*pow(xi2, 18) + 8233581071.61553*pow(xi2, 16) - 936988776.947738*pow(xi2, 14) + 78914666.8737741*pow(xi2, 12) - 4724180.42568061*pow(xi2, 10) + 189726.537067971*pow(xi2, 8) - 4682.51548749786*pow(xi2, 6) + 61.3114870538624*pow(xi2, 4) - 0.28672558248104*pow(xi2, 2); case 24: return -75655521485.9082*pow(xi1, 49) + 926357529840.222*pow(xi1, 47) - 5324136684503.24*pow(xi1, 45) + 19088808068324.2*pow(xi1, 43) - 47859520057032.9*pow(xi1, 41) + 89152712018737.6*pow(xi1, 39) - 127970204724623.0*pow(xi1, 37) + 144881292955948.0*pow(xi1, 35) - 131350799622012.0*pow(xi1, 33) + 96281346590719.7*pow(xi1, 31) - 57373221024004.7*pow(xi1, 29) + 27850848100907.0*pow(xi1, 27) - 11003800602332.3*pow(xi1, 25) + 3525323265287.58*pow(xi1, 23) - 909714057948.449*pow(xi1, 21) + 187213093106.203*pow(xi1, 19) - 30302696016.6417*pow(xi1, 17) + 3786210901.09783*pow(xi1, 15) - 356077128.481597*pow(xi1, 13) + 24352785.8487305*pow(xi1, 11) - 1154167.4155017*pow(xi1, 9) + 35316.6945199066*pow(xi1, 7) - 624.033033173341*pow(xi1, 5) + 5.24794702480449*pow(xi1, 3) - 0.0260659620437309*xi1 + 75655521485.9082*pow(xi2, 49) - 926357529840.222*pow(xi2, 47) + 5324136684503.24*pow(xi2, 45) - 19088808068324.2*pow(xi2, 43) + 47859520057032.9*pow(xi2, 41) - 89152712018737.6*pow(xi2, 39) + 127970204724623.0*pow(xi2, 37) - 144881292955948.0*pow(xi2, 35) + 131350799622012.0*pow(xi2, 33) - 96281346590719.7*pow(xi2, 31) + 57373221024004.7*pow(xi2, 29) - 27850848100907.0*pow(xi2, 27) + 11003800602332.3*pow(xi2, 25) - 3525323265287.58*pow(xi2, 23) + 909714057948.449*pow(xi2, 21) - 187213093106.203*pow(xi2, 19) + 30302696016.6417*pow(xi2, 17) - 3786210901.09783*pow(xi2, 15) + 356077128.481597*pow(xi2, 13) - 24352785.8487305*pow(xi2, 11) + 1154167.4155017*pow(xi2, 9) - 35316.6945199066*pow(xi2, 7) + 624.033033173341*pow(xi2, 5) - 5.24794702480449*pow(xi2, 3) + 0.0260659620437309*xi2; case 25: return -145061239022.98*pow(xi1, 50) + 1812475393892.79*pow(xi1, 48) - 10643670964834.6*pow(xi1, 46) + 39047645249241.0*pow(xi1, 44) - 100334673478941.0*pow(xi1, 42) + 191891285821329.0*pow(xi1, 40) - 283354553901745.0*pow(xi1, 38) + 330753139825173.0*pow(xi1, 36) - 309949450203787.0*pow(xi1, 34) + 235512332226087.0*pow(xi1, 32) - 145956111105926.0*pow(xi1, 30) + 73967653689345.7*pow(xi1, 28) - 30644817310084.5*pow(xi1, 26) + 10348661764776.1*pow(xi1, 24) - 2832384684974.48*pow(xi1, 22) + 622866586202.908*pow(xi1, 20) - 108727766937.923*pow(xi1, 18) + 14820415476.7655*pow(xi1, 16) - 1543160445.53304*pow(xi1, 14) + 119159786.412311*pow(xi1, 12) - 6551119.55186054*pow(xi1, 10) + 241938.202705073*pow(xi1, 8) - 5496.37302038927*pow(xi1, 6) + 66.3465620553097*pow(xi1, 4) - 0.299758563502905*pow(xi1, 2) + 145061239022.98*pow(xi2, 50) - 1812475393892.79*pow(xi2, 48) + 10643670964834.6*pow(xi2, 46) - 39047645249241.0*pow(xi2, 44) + 100334673478941.0*pow(xi2, 42) - 191891285821329.0*pow(xi2, 40) + 283354553901745.0*pow(xi2, 38) - 330753139825173.0*pow(xi2, 36) + 309949450203787.0*pow(xi2, 34) - 235512332226087.0*pow(xi2, 32) + 145956111105926.0*pow(xi2, 30) - 73967653689345.7*pow(xi2, 28) + 30644817310084.5*pow(xi2, 26) - 10348661764776.1*pow(xi2, 24) + 2832384684974.48*pow(xi2, 22) - 622866586202.908*pow(xi2, 20) + 108727766937.923*pow(xi2, 18) - 14820415476.7655*pow(xi2, 16) + 1543160445.53304*pow(xi2, 14) - 119159786.412311*pow(xi2, 12) + 6551119.55186054*pow(xi2, 10) - 241938.202705073*pow(xi2, 8) + 5496.37302038927*pow(xi2, 6) - 66.3465620553097*pow(xi2, 4) + 0.299758563502905*pow(xi2, 2); case 26: return -278508097797.389*pow(xi1, 51) + 3549496820864.59*pow(xi1, 49) - 21288128648696.6*pow(xi1, 47) + 79871307262862.2*pow(xi1, 45) - 210212671150195.0*pow(xi1, 43) + 412486935729554.0*pow(xi1, 41) - 626112410202269.0*pow(xi1, 39) + 752856933338791.0*pow(xi1, 37) - 728486502684749.0*pow(xi1, 35) + 573113389622653.0*pow(xi1, 33) - 368879995670080.0*pow(xi1, 31) + 194841049824986.0*pow(xi1, 29) - 84480468246275.5*pow(xi1, 27) + 30000793028347.5*pow(xi1, 25) - 8684024948552.07*pow(xi1, 23) + 2033504922658.4*pow(xi1, 21) - 381131167800.204*pow(xi1, 19) + 56356143580.967*pow(xi1, 17) - 6449006483.44302*pow(xi1, 15) + 556644810.745324*pow(xi1, 13) - 35001064.4284215*pow(xi1, 11) + 1527228.79271278*pow(xi1, 9) - 43071.2202943735*pow(xi1, 7) + 701.974604011104*pow(xi1, 5) - 5.42063402334421*pow(xi1, 3) + 0.0249798802919088*xi1 + 278508097797.389*pow(xi2, 51) - 3549496820864.59*pow(xi2, 49) + 21288128648696.6*pow(xi2, 47) - 79871307262862.2*pow(xi2, 45) + 210212671150195.0*pow(xi2, 43) - 412486935729554.0*pow(xi2, 41) + 626112410202269.0*pow(xi2, 39) - 752856933338791.0*pow(xi2, 37) + 728486502684749.0*pow(xi2, 35) - 573113389622653.0*pow(xi2, 33) + 368879995670080.0*pow(xi2, 31) - 194841049824986.0*pow(xi2, 29) + 84480468246275.5*pow(xi2, 27) - 30000793028347.5*pow(xi2, 25) + 8684024948552.07*pow(xi2, 23) - 2033504922658.4*pow(xi2, 21) + 381131167800.204*pow(xi2, 19) - 56356143580.967*pow(xi2, 17) + 6449006483.44302*pow(xi2, 15) - 556644810.745324*pow(xi2, 13) + 35001064.4284215*pow(xi2, 11) - 1527228.79271278*pow(xi2, 9) + 43071.2202943735*pow(xi2, 7) - 701.974604011104*pow(xi2, 5) + 5.42063402334421*pow(xi2, 3) - 0.0249798802919088*xi2; case 27: return -535378258765.904*pow(xi1, 52) + 6957132282978.78*pow(xi1, 50) - 42595443276427.3*pow(xi1, 48) + 163362474138947.0*pow(xi1, 46) - 440138555906054.0*pow(xi1, 44) + 885546290235663.0*pow(xi1, 42) - 1.38071645028501e+15*pow(xi1, 40) + 1.70878839294907e+15*pow(xi1, 38) - 1.70569451657033e+15*pow(xi1, 36) + 1.38781541457191e+15*pow(xi1, 34) - 926502730715607.0*pow(xi1, 32) + 509276709063429.0*pow(xi1, 30) - 230677032527233.0*pow(xi1, 28) + 85958980709566.8*pow(xi1, 26) - 26246208822548.7*pow(xi1, 24) + 6523592143785.49*pow(xi1, 22) - 1307618157198.77*pow(xi1, 20) + 208700139822.507*pow(xi1, 18) - 26077648271.0214*pow(xi1, 16) + 2494527583.2682*pow(xi1, 14) - 177278640.712216*pow(xi1, 12) + 8983106.36013146*pow(xi1, 10) - 306127.817401721*pow(xi1, 8) + 6423.07661945851*pow(xi1, 6) - 71.6610315874133*pow(xi1, 4) + 0.31224850364886*pow(xi1, 2) + 535378258765.904*pow(xi2, 52) - 6957132282978.78*pow(xi2, 50) + 42595443276427.3*pow(xi2, 48) - 163362474138947.0*pow(xi2, 46) + 440138555906054.0*pow(xi2, 44) - 885546290235663.0*pow(xi2, 42) + 1.38071645028501e+15*pow(xi2, 40) - 1.70878839294907e+15*pow(xi2, 38) + 1.70569451657033e+15*pow(xi2, 36) - 1.38781541457191e+15*pow(xi2, 34) + 926502730715607.0*pow(xi2, 32) - 509276709063429.0*pow(xi2, 30) + 230677032527233.0*pow(xi2, 28) - 85958980709566.8*pow(xi2, 26) + 26246208822548.7*pow(xi2, 24) - 6523592143785.49*pow(xi2, 22) + 1307618157198.77*pow(xi2, 20) - 208700139822.507*pow(xi2, 18) + 26077648271.0214*pow(xi2, 16) - 2494527583.2682*pow(xi2, 14) + 177278640.712216*pow(xi2, 12) - 8983106.36013146*pow(xi2, 10) + 306127.817401721*pow(xi2, 8) - 6423.07661945851*pow(xi2, 6) + 71.6610315874133*pow(xi2, 4) - 0.31224850364886*pow(xi2, 2); case 28: return -1030350611209.85*pow(xi1, 53) + 13646896792072.1*pow(xi1, 51) - 85260422877749.6*pow(xi1, 49) + 334093220533705.0*pow(xi1, 47) - 920962512926415.0*pow(xi1, 45) + 1.89876455739826e+15*pow(xi1, 43) - 3.03889368452553e+15*pow(xi1, 41) + 3.86794034071254e+15*pow(xi1, 39) - 3.97925966295374e+15*pow(xi1, 37) + 3.34494243815037e+15*pow(xi1, 35) - 2.31336946732699e+15*pow(xi1, 33) + 1.32143345100665e+15*pow(xi1, 31) - 624226211633956.0*pow(xi1, 29) + 243598183030088.0*pow(xi1, 27) - 78270546525410.4*pow(xi1, 25) + 20589941021312.3*pow(xi1, 23) - 4398096345674.74*pow(xi1, 21) + 754299662069.146*pow(xi1, 19) - 102331950251.277*pow(xi1, 17) + 10767872117.2939*pow(xi1, 15) - 856225123.100907*pow(xi1, 13) + 49673695.6695208*pow(xi1, 11) - 2002250.54641144*pow(xi1, 9) + 52213.8736102729*pow(xi1, 7) - 787.428276501695*pow(xi1, 5) + 5.62047306567948*pow(xi1, 3) - 0.0240191156652969*xi1 + 1030350611209.85*pow(xi2, 53) - 13646896792072.1*pow(xi2, 51) + 85260422877749.6*pow(xi2, 49) - 334093220533705.0*pow(xi2, 47) + 920962512926415.0*pow(xi2, 45) - 1.89876455739826e+15*pow(xi2, 43) + 3.03889368452553e+15*pow(xi2, 41) - 3.86794034071254e+15*pow(xi2, 39) + 3.97925966295374e+15*pow(xi2, 37) - 3.34494243815037e+15*pow(xi2, 35) + 2.31336946732699e+15*pow(xi2, 33) - 1.32143345100665e+15*pow(xi2, 31) + 624226211633956.0*pow(xi2, 29) - 243598183030088.0*pow(xi2, 27) + 78270546525410.4*pow(xi2, 25) - 20589941021312.3*pow(xi2, 23) + 4398096345674.74*pow(xi2, 21) - 754299662069.146*pow(xi2, 19) + 102331950251.277*pow(xi2, 17) - 10767872117.2939*pow(xi2, 15) + 856225123.100907*pow(xi2, 13) - 49673695.6695208*pow(xi2, 11) + 2002250.54641144*pow(xi2, 9) - 52213.8736102729*pow(xi2, 7) + 787.428276501695*pow(xi2, 5) - 5.62047306567948*pow(xi2, 3) + 0.0240191156652969*xi2; case 29: return -1985085642584.69*pow(xi1, 54) + 26788741762693.9*pow(xi1, 52) - 170715251986214.0*pow(xi1, 50) + 683167689474105.0*pow(xi1, 48) - 1.92582698260844e+15*pow(xi1, 46) + 4.06633243625181e+15*pow(xi1, 44) - 6.67595460794649e+15*pow(xi1, 42) + 8.73238684495299e+15*pow(xi1, 40) - 9.25108297396294e+15*pow(xi1, 38) + 8.02612992827034e+15*pow(xi1, 36) - 5.74391288108549e+15*pow(xi1, 34) + 3.40505258328624e+15*pow(xi1, 32) - 1.67490311154428e+15*pow(xi1, 30) + 683229999465451.0*pow(xi1, 28) - 230508183911447.0*pow(xi1, 26) + 64007364830632.8*pow(xi1, 24) - 14522855116130.1*pow(xi1, 22) + 2665817039716.65*pow(xi1, 20) - 390684676159.123*pow(xi1, 18) + 44927685217.5777*pow(xi1, 16) - 3962823148.48188*pow(xi1, 14) + 260094754.560315*pow(xi1, 12) - 12187708.0158238*pow(xi1, 10) + 384471.912634116*pow(xi1, 8) - 7473.26201178072*pow(xi1, 6) + 77.2815046530928*pow(xi1, 4) - 0.324258061481508*pow(xi1, 2) + 1985085642584.69*pow(xi2, 54) - 26788741762693.9*pow(xi2, 52) + 170715251986214.0*pow(xi2, 50) - 683167689474105.0*pow(xi2, 48) + 1.92582698260844e+15*pow(xi2, 46) - 4.06633243625181e+15*pow(xi2, 44) + 6.67595460794649e+15*pow(xi2, 42) - 8.73238684495299e+15*pow(xi2, 40) + 9.25108297396294e+15*pow(xi2, 38) - 8.02612992827034e+15*pow(xi2, 36) + 5.74391288108549e+15*pow(xi2, 34) - 3.40505258328624e+15*pow(xi2, 32) + 1.67490311154428e+15*pow(xi2, 30) - 683229999465451.0*pow(xi2, 28) + 230508183911447.0*pow(xi2, 26) - 64007364830632.8*pow(xi2, 24) + 14522855116130.1*pow(xi2, 22) - 2665817039716.65*pow(xi2, 20) + 390684676159.123*pow(xi2, 18) - 44927685217.5777*pow(xi2, 16) + 3962823148.48188*pow(xi2, 14) - 260094754.560315*pow(xi2, 12) + 12187708.0158238*pow(xi2, 10) - 384471.912634116*pow(xi2, 8) + 7473.26201178072*pow(xi2, 6) - 77.2815046530928*pow(xi2, 4) + 0.324258061481508*pow(xi2, 2); default: return 0.; } case 29: switch(j) { case 0: return -750301.505592406*pow(xi1, 29)*y1t + 5337050.33223277*pow(xi1, 27)*y1t - 16952983.4082688*pow(xi1, 25)*y1t + 31714764.8794144*pow(xi1, 23)*y1t - 38799978.3099219*pow(xi1, 21)*y1t + 32591981.7803344*pow(xi1, 19)*y1t - 19201477.6380265*pow(xi1, 17)*y1t + 7961588.28893781*pow(xi1, 15)*y1t - 2296612.00642437*pow(xi1, 13)*y1t + 448287.628881633*pow(xi1, 11)*y1t - 56356.1590594053*pow(xi1, 9)*y1t + 4191.78042590618*pow(xi1, 7)*y1t - 157.75517731905*pow(xi1, 5)*y1t + 2.09224373102188*pow(xi1, 3)*y1t + 750301.505592406*pow(xi2, 29)*y1t - 5337050.33223277*pow(xi2, 27)*y1t + 16952983.4082688*pow(xi2, 25)*y1t - 31714764.8794144*pow(xi2, 23)*y1t + 38799978.3099219*pow(xi2, 21)*y1t - 32591981.7803344*pow(xi2, 19)*y1t + 19201477.6380265*pow(xi2, 17)*y1t - 7961588.28893781*pow(xi2, 15)*y1t + 2296612.00642437*pow(xi2, 13)*y1t - 448287.628881633*pow(xi2, 11)*y1t + 56356.1590594053*pow(xi2, 9)*y1t - 4191.78042590618*pow(xi2, 7)*y1t + 157.75517731905*pow(xi2, 5)*y1t - 2.09224373102188*pow(xi2, 3)*y1t; case 1: return -375150.752796203*pow(xi1, 29)*y1r + 129516.331322499*pow(xi1, 28)*y1r + 2668525.16611639*pow(xi1, 27)*y1r - 923720.249809518*pow(xi1, 26)*y1r - 8476491.7041344*pow(xi1, 25)*y1r + 2943226.28615778*pow(xi1, 24)*y1r + 15857382.4397072*pow(xi1, 23)*y1r - 5526057.51686767*pow(xi1, 22)*y1r - 19399989.154961*pow(xi1, 21)*y1r + 6789996.20423634*pow(xi1, 20)*y1r + 16295990.8901672*pow(xi1, 19)*y1r - 5733774.57246624*pow(xi1, 18)*y1r - 9600738.81901324*pow(xi1, 17)*y1r + 3400261.66506719*pow(xi1, 16)*y1r + 3980794.1444689*pow(xi1, 15)*y1r - 1421712.19445318*pow(xi1, 14)*y1r - 1148306.00321218*pow(xi1, 13)*y1r + 414666.056715511*pow(xi1, 12)*y1r + 224143.814440817*pow(xi1, 11)*y1r - 82186.0652949661*pow(xi1, 10)*y1r - 28178.0795297027*pow(xi1, 9)*y1r + 10566.7798236385*pow(xi1, 8)*y1r + 2095.89021295309*pow(xi1, 7)*y1r - 815.068416148424*pow(xi1, 6)*y1r - 78.8775886595249*pow(xi1, 5)*y1r + 32.8656619414687*pow(xi1, 4)*y1r + 1.04612186551094*pow(xi1, 3)*y1r - 0.52306093275547*pow(xi1, 2)*y1r + 375150.752796203*pow(xi2, 29)*y1r - 129516.331322499*pow(xi2, 28)*y1r - 2668525.16611639*pow(xi2, 27)*y1r + 923720.249809518*pow(xi2, 26)*y1r + 8476491.7041344*pow(xi2, 25)*y1r - 2943226.28615778*pow(xi2, 24)*y1r - 15857382.4397072*pow(xi2, 23)*y1r + 5526057.51686767*pow(xi2, 22)*y1r + 19399989.154961*pow(xi2, 21)*y1r - 6789996.20423634*pow(xi2, 20)*y1r - 16295990.8901672*pow(xi2, 19)*y1r + 5733774.57246624*pow(xi2, 18)*y1r + 9600738.81901324*pow(xi2, 17)*y1r - 3400261.66506719*pow(xi2, 16)*y1r - 3980794.1444689*pow(xi2, 15)*y1r + 1421712.19445318*pow(xi2, 14)*y1r + 1148306.00321218*pow(xi2, 13)*y1r - 414666.056715511*pow(xi2, 12)*y1r - 224143.814440817*pow(xi2, 11)*y1r + 82186.0652949661*pow(xi2, 10)*y1r + 28178.0795297027*pow(xi2, 9)*y1r - 10566.7798236385*pow(xi2, 8)*y1r - 2095.89021295309*pow(xi2, 7)*y1r + 815.068416148424*pow(xi2, 6)*y1r + 78.8775886595249*pow(xi2, 5)*y1r - 32.8656619414687*pow(xi2, 4)*y1r - 1.04612186551094*pow(xi2, 3)*y1r + 0.52306093275547*pow(xi2, 2)*y1r; case 2: return 750301.505592406*pow(xi1, 29)*y2t - 5337050.33223277*pow(xi1, 27)*y2t + 16952983.4082688*pow(xi1, 25)*y2t - 31714764.8794144*pow(xi1, 23)*y2t + 38799978.3099219*pow(xi1, 21)*y2t - 32591981.7803344*pow(xi1, 19)*y2t + 19201477.6380265*pow(xi1, 17)*y2t - 7961588.28893781*pow(xi1, 15)*y2t + 2296612.00642437*pow(xi1, 13)*y2t - 448287.628881633*pow(xi1, 11)*y2t + 56356.1590594053*pow(xi1, 9)*y2t - 4191.78042590618*pow(xi1, 7)*y2t + 157.75517731905*pow(xi1, 5)*y2t - 2.09224373102188*pow(xi1, 3)*y2t - 750301.505592406*pow(xi2, 29)*y2t + 5337050.33223277*pow(xi2, 27)*y2t - 16952983.4082688*pow(xi2, 25)*y2t + 31714764.8794144*pow(xi2, 23)*y2t - 38799978.3099219*pow(xi2, 21)*y2t + 32591981.7803344*pow(xi2, 19)*y2t - 19201477.6380265*pow(xi2, 17)*y2t + 7961588.28893781*pow(xi2, 15)*y2t - 2296612.00642437*pow(xi2, 13)*y2t + 448287.628881633*pow(xi2, 11)*y2t - 56356.1590594053*pow(xi2, 9)*y2t + 4191.78042590618*pow(xi2, 7)*y2t - 157.75517731905*pow(xi2, 5)*y2t + 2.09224373102188*pow(xi2, 3)*y2t; case 3: return -375150.752796203*pow(xi1, 29)*y2r - 129516.331322499*pow(xi1, 28)*y2r + 2668525.16611639*pow(xi1, 27)*y2r + 923720.249809518*pow(xi1, 26)*y2r - 8476491.7041344*pow(xi1, 25)*y2r - 2943226.28615778*pow(xi1, 24)*y2r + 15857382.4397072*pow(xi1, 23)*y2r + 5526057.51686767*pow(xi1, 22)*y2r - 19399989.154961*pow(xi1, 21)*y2r - 6789996.20423634*pow(xi1, 20)*y2r + 16295990.8901672*pow(xi1, 19)*y2r + 5733774.57246624*pow(xi1, 18)*y2r - 9600738.81901324*pow(xi1, 17)*y2r - 3400261.66506719*pow(xi1, 16)*y2r + 3980794.1444689*pow(xi1, 15)*y2r + 1421712.19445318*pow(xi1, 14)*y2r - 1148306.00321218*pow(xi1, 13)*y2r - 414666.056715511*pow(xi1, 12)*y2r + 224143.814440817*pow(xi1, 11)*y2r + 82186.0652949661*pow(xi1, 10)*y2r - 28178.0795297027*pow(xi1, 9)*y2r - 10566.7798236385*pow(xi1, 8)*y2r + 2095.89021295309*pow(xi1, 7)*y2r + 815.068416148424*pow(xi1, 6)*y2r - 78.8775886595249*pow(xi1, 5)*y2r - 32.8656619414687*pow(xi1, 4)*y2r + 1.04612186551094*pow(xi1, 3)*y2r + 0.52306093275547*pow(xi1, 2)*y2r + 375150.752796203*pow(xi2, 29)*y2r + 129516.331322499*pow(xi2, 28)*y2r - 2668525.16611639*pow(xi2, 27)*y2r - 923720.249809518*pow(xi2, 26)*y2r + 8476491.7041344*pow(xi2, 25)*y2r + 2943226.28615778*pow(xi2, 24)*y2r - 15857382.4397072*pow(xi2, 23)*y2r - 5526057.51686767*pow(xi2, 22)*y2r + 19399989.154961*pow(xi2, 21)*y2r + 6789996.20423634*pow(xi2, 20)*y2r - 16295990.8901672*pow(xi2, 19)*y2r - 5733774.57246624*pow(xi2, 18)*y2r + 9600738.81901324*pow(xi2, 17)*y2r + 3400261.66506719*pow(xi2, 16)*y2r - 3980794.1444689*pow(xi2, 15)*y2r - 1421712.19445318*pow(xi2, 14)*y2r + 1148306.00321218*pow(xi2, 13)*y2r + 414666.056715511*pow(xi2, 12)*y2r - 224143.814440817*pow(xi2, 11)*y2r - 82186.0652949661*pow(xi2, 10)*y2r + 28178.0795297027*pow(xi2, 9)*y2r + 10566.7798236385*pow(xi2, 8)*y2r - 2095.89021295309*pow(xi2, 7)*y2r - 815.068416148424*pow(xi2, 6)*y2r + 78.8775886595249*pow(xi2, 5)*y2r + 32.8656619414687*pow(xi2, 4)*y2r - 1.04612186551094*pow(xi2, 3)*y2r - 0.52306093275547*pow(xi2, 2)*y2r; case 4: return -725291.455405992*pow(xi1, 30) + 5405474.05444089*pow(xi1, 28) - 18148386.0844929*pow(xi1, 26) + 36279768.9150877*pow(xi1, 24) - 48088457.9659335*pow(xi1, 22) + 44542375.0997904*pow(xi1, 20) - 29602278.0252908*pow(xi1, 18) + 14264512.3510136*pow(xi1, 16) - 4975992.68058613*pow(xi1, 14) + 1240262.43990585*pow(xi1, 12) - 215092.673743397*pow(xi1, 10) + 24801.3675199449*pow(xi1, 8) - 1761.59948006272*pow(xi1, 6) + 67.3005066812038*pow(xi1, 4) - 1.04612186551094*pow(xi1, 2) + 725291.455405992*pow(xi2, 30) - 5405474.05444089*pow(xi2, 28) + 18148386.0844929*pow(xi2, 26) - 36279768.9150877*pow(xi2, 24) + 48088457.9659335*pow(xi2, 22) - 44542375.0997904*pow(xi2, 20) + 29602278.0252908*pow(xi2, 18) - 14264512.3510136*pow(xi2, 16) + 4975992.68058613*pow(xi2, 14) - 1240262.43990585*pow(xi2, 12) + 215092.673743397*pow(xi2, 10) - 24801.3675199449*pow(xi2, 8) + 1761.59948006272*pow(xi2, 6) - 67.3005066812038*pow(xi2, 4) + 1.04612186551094*pow(xi2, 2); case 5: return -1169824.92807418*pow(xi1, 31) + 9031931.33147085*pow(xi1, 29) - 31499061.7647464*pow(xi1, 27) + 65582289.5567043*pow(xi1, 25) - 90758210.1336434*pow(xi1, 23) + 87946617.5024897*pow(xi1, 21) - 61225764.2230055*pow(xi1, 19) + 30909695.7099938*pow(xi1, 17) - 11278916.7426619*pow(xi1, 15) + 2928812.50869334*pow(xi1, 13) - 525136.936689913*pow(xi1, 11) + 61789.9485003948*pow(xi1, 9) - 4379.58420842886*pow(xi1, 7) + 159.847421050072*pow(xi1, 5) - 2.09224373102188*pow(xi1, 3) + 1169824.92807418*pow(xi2, 31) - 9031931.33147085*pow(xi2, 29) + 31499061.7647464*pow(xi2, 27) - 65582289.5567043*pow(xi2, 25) + 90758210.1336434*pow(xi2, 23) - 87946617.5024897*pow(xi2, 21) + 61225764.2230055*pow(xi2, 19) - 30909695.7099938*pow(xi2, 17) + 11278916.7426619*pow(xi2, 15) - 2928812.50869334*pow(xi2, 13) + 525136.936689913*pow(xi2, 11) - 61789.9485003948*pow(xi2, 9) + 4379.58420842886*pow(xi2, 7) - 159.847421050072*pow(xi2, 5) + 2.09224373102188*pow(xi2, 3); case 6: return -1983218.82337576*pow(xi1, 32) + 15822985.760626*pow(xi1, 30) - 57208772.2688402*pow(xi1, 28) + 123966103.721286*pow(xi1, 26) - 179418908.264614*pow(xi1, 24) + 182977170.438836*pow(xi1, 22) - 135194614.345589*pow(xi1, 20) + 73288566.706319*pow(xi1, 18) - 29202857.0441898*pow(xi1, 16) + 8491314.83706627*pow(xi1, 14) - 1772603.99920279*pow(xi1, 12) + 258638.67419567*pow(xi1, 10) - 25307.2639591154*pow(xi1, 8) + 1554.31043241173*pow(xi1, 6) - 53.2214499078691*pow(xi1, 4) + 0.784591399133205*pow(xi1, 2) + 1983218.82337576*pow(xi2, 32) - 15822985.760626*pow(xi2, 30) + 57208772.2688402*pow(xi2, 28) - 123966103.721286*pow(xi2, 26) + 179418908.264614*pow(xi2, 24) - 182977170.438836*pow(xi2, 22) + 135194614.345589*pow(xi2, 20) - 73288566.706319*pow(xi2, 18) + 29202857.0441898*pow(xi2, 16) - 8491314.83706627*pow(xi2, 14) + 1772603.99920279*pow(xi2, 12) - 258638.67419567*pow(xi2, 10) + 25307.2639591154*pow(xi2, 8) - 1554.31043241173*pow(xi2, 6) + 53.2214499078691*pow(xi2, 4) - 0.784591399133205*pow(xi2, 2); case 7: return -3461618.30989224*pow(xi1, 33) + 28498480.2996788*pow(xi1, 31) - 106650445.835851*pow(xi1, 29) + 240073829.195359*pow(xi1, 27) - 362501705.126616*pow(xi1, 25) + 387645522.427694*pow(xi1, 23) - 302119490.023002*pow(xi1, 21) + 173956904.077601*pow(xi1, 19) - 74200832.0310932*pow(xi1, 17) + 23288542.3204008*pow(xi1, 15) - 5288299.728707*pow(xi1, 13) + 843336.470763026*pow(xi1, 11) - 89923.5811349005*pow(xi1, 9) + 5901.7463196069*pow(xi1, 7) - 204.516824707389*pow(xi1, 5) + 2.61530466377735*pow(xi1, 3) + 3461618.30989224*pow(xi2, 33) - 28498480.2996788*pow(xi2, 31) + 106650445.835851*pow(xi2, 29) - 240073829.195359*pow(xi2, 27) + 362501705.126616*pow(xi2, 25) - 387645522.427694*pow(xi2, 23) + 302119490.023002*pow(xi2, 21) - 173956904.077601*pow(xi2, 19) + 74200832.0310932*pow(xi2, 17) - 23288542.3204008*pow(xi2, 15) + 5288299.728707*pow(xi2, 13) - 843336.470763026*pow(xi2, 11) + 89923.5811349005*pow(xi2, 9) - 5901.7463196069*pow(xi2, 7) + 204.516824707389*pow(xi2, 5) - 2.61530466377735*pow(xi2, 3); case 8: return -6159644.34554354*pow(xi1, 34) + 52267170.8017219*pow(xi1, 32) - 202194111.58739*pow(xi1, 30) + 472090210.646781*pow(xi1, 28) - 742330528.164016*pow(xi1, 26) + 830587403.930279*pow(xi1, 24) - 681190082.905951*pow(xi1, 22) + 415637119.889813*pow(xi1, 20) - 189551172.160955*pow(xi1, 18) + 64362896.3166805*pow(xi1, 16) - 16078796.4261874*pow(xi1, 14) + 2894443.79047908*pow(xi1, 12) - 363906.137368977*pow(xi1, 10) + 30556.7713536322*pow(xi1, 8) - 1607.71495364606*pow(xi1, 6) + 47.9472521692514*pow(xi1, 4) - 0.653826165944338*pow(xi1, 2) + 6159644.34554354*pow(xi2, 34) - 52267170.8017219*pow(xi2, 32) + 202194111.58739*pow(xi2, 30) - 472090210.646781*pow(xi2, 28) + 742330528.164016*pow(xi2, 26) - 830587403.930279*pow(xi2, 24) + 681190082.905951*pow(xi2, 22) - 415637119.889813*pow(xi2, 20) + 189551172.160955*pow(xi2, 18) - 64362896.3166805*pow(xi2, 16) + 16078796.4261874*pow(xi2, 14) - 2894443.79047908*pow(xi2, 12) + 363906.137368977*pow(xi2, 10) - 30556.7713536322*pow(xi2, 8) + 1607.71495364606*pow(xi2, 6) - 47.9472521692514*pow(xi2, 4) + 0.653826165944338*pow(xi2, 2); case 9: return -11112501.2274704*pow(xi1, 35) + 97093261.8133116*pow(xi1, 33) - 387817607.62591*pow(xi1, 31) + 937921252.467321*pow(xi1, 29) - 1533331634.12215*pow(xi1, 27) + 1791534433.11565*pow(xi1, 25) - 1542331961.52872*pow(xi1, 23) + 994100047.035712*pow(xi1, 21) - 482601965.041428*pow(xi1, 19) + 176100565.554967*pow(xi1, 17) - 47831521.5085922*pow(xi1, 15) + 9494731.97971299*pow(xi1, 13) - 1337246.817251*pow(xi1, 11) + 127520.279397815*pow(xi1, 9) - 7617.85942465067*pow(xi1, 7) + 246.536052972078*pow(xi1, 5) - 3.05118877440691*pow(xi1, 3) + 11112501.2274704*pow(xi2, 35) - 97093261.8133116*pow(xi2, 33) + 387817607.62591*pow(xi2, 31) - 937921252.467321*pow(xi2, 29) + 1533331634.12215*pow(xi2, 27) - 1791534433.11565*pow(xi2, 25) + 1542331961.52872*pow(xi2, 23) - 994100047.035712*pow(xi2, 21) + 482601965.041428*pow(xi2, 19) - 176100565.554967*pow(xi2, 17) + 47831521.5085922*pow(xi2, 15) - 9494731.97971299*pow(xi2, 13) + 1337246.817251*pow(xi2, 11) - 127520.279397815*pow(xi2, 9) + 7617.85942465067*pow(xi2, 7) - 246.536052972078*pow(xi2, 5) + 3.05118877440691*pow(xi2, 3); case 10: return -20257163.6959095*pow(xi1, 36) + 182085146.881723*pow(xi1, 34) - 750168100.803257*pow(xi1, 32) + 1876902117.73599*pow(xi1, 30) - 3185397290.65285*pow(xi1, 28) + 3879469079.53952*pow(xi1, 26) - 3498141721.81091*pow(xi1, 24) + 2375254474.90776*pow(xi1, 22) - 1223317230.13363*pow(xi1, 20) + 477702027.144423*pow(xi1, 18) - 140396380.678918*pow(xi1, 16) + 30599953.4447357*pow(xi1, 14) - 4831031.28381934*pow(xi1, 12) + 533608.341681669*pow(xi1, 10) - 39235.2255529957*pow(xi1, 8) + 1791.96316720918*pow(xi1, 6) - 46.2445798621047*pow(xi1, 4) + 0.572097895201296*pow(xi1, 2) + 20257163.6959095*pow(xi2, 36) - 182085146.881723*pow(xi2, 34) + 750168100.803257*pow(xi2, 32) - 1876902117.73599*pow(xi2, 30) + 3185397290.65285*pow(xi2, 28) - 3879469079.53952*pow(xi2, 26) + 3498141721.81091*pow(xi2, 24) - 2375254474.90776*pow(xi2, 22) + 1223317230.13363*pow(xi2, 20) - 477702027.144423*pow(xi2, 18) + 140396380.678918*pow(xi2, 16) - 30599953.4447357*pow(xi2, 14) + 4831031.28381934*pow(xi2, 12) - 533608.341681669*pow(xi2, 10) + 39235.2255529957*pow(xi2, 8) - 1791.96316720918*pow(xi2, 6) + 46.2445798621047*pow(xi2, 4) - 0.572097895201296*pow(xi2, 2); case 11: return -37229381.9276175*pow(xi1, 37) + 343989572.19469*pow(xi1, 35) - 1460350397.15719*pow(xi1, 33) + 3775623106.58272*pow(xi1, 31) - 6643091344.53323*pow(xi1, 29) + 8419444305.04878*pow(xi1, 27) - 7935772040.54214*pow(xi1, 25) + 5662484321.43375*pow(xi1, 23) - 3084320984.90706*pow(xi1, 21) + 1283814730.95024*pow(xi1, 19) - 406127401.700268*pow(xi1, 17) + 96463492.5990974*pow(xi1, 15) - 16863098.3571735*pow(xi1, 13) + 2104960.9899391*pow(xi1, 11) - 179227.787553705*pow(xi1, 9) + 9672.70429898053*pow(xi1, 7) - 289.023856655695*pow(xi1, 5) + 3.43258737120777*pow(xi1, 3) + 37229381.9276175*pow(xi2, 37) - 343989572.19469*pow(xi2, 35) + 1460350397.15719*pow(xi2, 33) - 3775623106.58272*pow(xi2, 31) + 6643091344.53323*pow(xi2, 29) - 8419444305.04878*pow(xi2, 27) + 7935772040.54214*pow(xi2, 25) - 5662484321.43375*pow(xi2, 23) + 3084320984.90706*pow(xi2, 21) - 1283814730.95024*pow(xi2, 19) + 406127401.700268*pow(xi2, 17) - 96463492.5990974*pow(xi2, 15) + 16863098.3571735*pow(xi2, 13) - 2104960.9899391*pow(xi2, 11) + 179227.787553705*pow(xi2, 9) - 9672.70429898053*pow(xi2, 7) + 289.023856655695*pow(xi2, 5) - 3.43258737120777*pow(xi2, 3); case 12: return -68874356.5660925*pow(xi1, 38) + 653656629.297066*pow(xi1, 36) - 2856934570.48049*pow(xi1, 34) + 7624657571.27675*pow(xi1, 32) - 13890356342.0884*pow(xi1, 30) + 18292482306.1948*pow(xi1, 28) - 17989567245.6529*pow(xi1, 26) + 13458767751.5738*pow(xi1, 24) - 7731565722.77115*pow(xi1, 22) + 3418271096.48544*pow(xi1, 20) - 1158704884.14768*pow(xi1, 18) + 298182338.803168*pow(xi1, 16) - 57291281.6304182*pow(xi1, 14) + 8014068.54624802*pow(xi1, 12) - 786727.024230338*pow(xi1, 10) + 51392.5738947513*pow(xi1, 8) - 2070.38795685978*pow(xi1, 6) + 46.5115588798653*pow(xi1, 4) - 0.514888105681166*pow(xi1, 2) + 68874356.5660925*pow(xi2, 38) - 653656629.297066*pow(xi2, 36) + 2856934570.48049*pow(xi2, 34) - 7624657571.27675*pow(xi2, 32) + 13890356342.0884*pow(xi2, 30) - 18292482306.1948*pow(xi2, 28) + 17989567245.6529*pow(xi2, 26) - 13458767751.5738*pow(xi2, 24) + 7731565722.77115*pow(xi2, 22) - 3418271096.48544*pow(xi2, 20) + 1158704884.14768*pow(xi2, 18) - 298182338.803168*pow(xi2, 16) + 57291281.6304182*pow(xi2, 14) - 8014068.54624802*pow(xi2, 12) + 786727.024230338*pow(xi2, 10) - 51392.5738947513*pow(xi2, 8) + 2070.38795685978*pow(xi2, 6) - 46.5115588798653*pow(xi2, 4) + 0.514888105681166*pow(xi2, 2); case 13: return -128115935.990074*pow(xi1, 39) + 1248008066.49091*pow(xi1, 37) - 5611032814.52263*pow(xi1, 35) + 15442659831.8453*pow(xi1, 33) - 29094919819.8133*pow(xi1, 31) + 39756978325.8846*pow(xi1, 29) - 40725769961.2447*pow(xi1, 27) + 31880588934.2862*pow(xi1, 25) - 19266224339.3282*pow(xi1, 23) + 9018966525.34359*pow(xi1, 21) - 3262752368.84387*pow(xi1, 19) + 904978203.88722*pow(xi1, 17) - 189776731.449743*pow(xi1, 15) + 29452783.6369724*pow(xi1, 13) - 3278994.90893944*pow(xi1, 11) + 250145.992870219*pow(xi1, 9) - 12181.2751102983*pow(xi1, 7) + 333.784795976244*pow(xi1, 5) - 3.77584610832855*pow(xi1, 3) + 128115935.990074*pow(xi2, 39) - 1248008066.49091*pow(xi2, 37) + 5611032814.52263*pow(xi2, 35) - 15442659831.8453*pow(xi2, 33) + 29094919819.8133*pow(xi2, 31) - 39756978325.8846*pow(xi2, 29) + 40725769961.2447*pow(xi2, 27) - 31880588934.2862*pow(xi2, 25) + 19266224339.3282*pow(xi2, 23) - 9018966525.34359*pow(xi2, 21) + 3262752368.84387*pow(xi2, 19) - 904978203.88722*pow(xi2, 17) + 189776731.449743*pow(xi2, 15) - 29452783.6369724*pow(xi2, 13) + 3278994.90893944*pow(xi2, 11) - 250145.992870219*pow(xi2, 9) + 12181.2751102983*pow(xi2, 7) - 333.784795976244*pow(xi2, 5) + 3.77584610832855*pow(xi2, 3); case 14: return -239416655.381451*pow(xi1, 40) + 2392202512.34296*pow(xi1, 38) - 11054929261.3249*pow(xi1, 36) + 31346745935.6135*pow(xi1, 34) - 61011867959.9384*pow(xi1, 32) + 86393672600.7061*pow(xi1, 30) - 92038058619.7648*pow(xi1, 28) + 75244727145.7414*pow(xi1, 26) - 47725511673.3336*pow(xi1, 24) + 23587877790.3469*pow(xi1, 22) - 9074343443.38154*pow(xi1, 20) + 2700324281.39419*pow(xi1, 18) - 614338874.893327*pow(xi1, 16) + 104935950.467495*pow(xi1, 14) - 13107241.3893501*pow(xi1, 12) + 1152668.27657894*pow(xi1, 10) - 67538.8728697514*pow(xi1, 8) + 2430.98412069463*pow(xi1, 6) - 48.0633744205988*pow(xi1, 4) + 0.471980763541069*pow(xi1, 2) + 239416655.381451*pow(xi2, 40) - 2392202512.34296*pow(xi2, 38) + 11054929261.3249*pow(xi2, 36) - 31346745935.6135*pow(xi2, 34) + 61011867959.9384*pow(xi2, 32) - 86393672600.7061*pow(xi2, 30) + 92038058619.7648*pow(xi2, 28) - 75244727145.7414*pow(xi2, 26) + 47725511673.3336*pow(xi2, 24) - 23587877790.3469*pow(xi2, 22) + 9074343443.38154*pow(xi2, 20) - 2700324281.39419*pow(xi2, 18) + 614338874.893327*pow(xi2, 16) - 104935950.467495*pow(xi2, 14) + 13107241.3893501*pow(xi2, 12) - 1152668.27657894*pow(xi2, 10) + 67538.8728697514*pow(xi2, 8) - 2430.98412069463*pow(xi2, 6) + 48.0633744205988*pow(xi2, 4) - 0.471980763541069*pow(xi2, 2); case 15: return -449186970.696906*pow(xi1, 41) + 4600691607.03978*pow(xi1, 39) - 21836906271.7554*pow(xi1, 37) + 63739269950.2658*pow(xi1, 35) - 128029808068.442*pow(xi1, 33) + 187639118172.457*pow(xi1, 31) - 207591696263.244*pow(xi1, 29) + 176935105732.693*pow(xi1, 27) - 117536872874.726*pow(xi1, 25) + 61173279940.9544*pow(xi1, 23) - 24944876505.7779*pow(xi1, 21) + 7931390553.5376*pow(xi1, 19) - 1947290061.31368*pow(xi1, 17) + 363525099.100395*pow(xi1, 15) - 50454477.3027972*pow(xi1, 13) + 5041918.86101217*pow(xi1, 11) - 346355.058153282*pow(xi1, 9) + 15251.3706304313*pow(xi1, 7) - 382.052695394377*pow(xi1, 5) + 4.09049995068926*pow(xi1, 3) + 449186970.696906*pow(xi2, 41) - 4600691607.03978*pow(xi2, 39) + 21836906271.7554*pow(xi2, 37) - 63739269950.2658*pow(xi2, 35) + 128029808068.442*pow(xi2, 33) - 187639118172.457*pow(xi2, 31) + 207591696263.244*pow(xi2, 29) - 176935105732.693*pow(xi2, 27) + 117536872874.726*pow(xi2, 25) - 61173279940.9544*pow(xi2, 23) + 24944876505.7779*pow(xi2, 21) - 7931390553.5376*pow(xi2, 19) + 1947290061.31368*pow(xi2, 17) - 363525099.100395*pow(xi2, 15) + 50454477.3027972*pow(xi2, 13) - 5041918.86101217*pow(xi2, 11) + 346355.058153282*pow(xi2, 9) - 15251.3706304313*pow(xi2, 7) + 382.052695394377*pow(xi2, 5) - 4.09049995068926*pow(xi2, 3); case 16: return -845663225.444685*pow(xi1, 42) + 8873258791.09151*pow(xi1, 40) - 43227100388.3104*pow(xi1, 38) + 129776422613.693*pow(xi1, 36) - 268760127505.3*pow(xi1, 34) + 407220712012.68*pow(xi1, 32) - 467232929734.276*pow(xi1, 30) + 414509044430.427*pow(xi1, 28) - 287829964191.486*pow(xi1, 26) + 157377876444.681*pow(xi1, 24) - 67824279307.8417*pow(xi1, 22) + 22957616604.4428*pow(xi1, 20) - 6054293730.11595*pow(xi1, 18) + 1227723888.89943*pow(xi1, 16) - 187795227.13452*pow(xi1, 14) + 21084402.1336859*pow(xi1, 12) - 1671508.25061792*pow(xi1, 10) + 88451.3556036221*pow(xi1, 8) - 2871.35565824312*pow(xi1, 6) + 50.546892247803*pow(xi1, 4) - 0.438267851859564*pow(xi1, 2) + 845663225.444685*pow(xi2, 42) - 8873258791.09151*pow(xi2, 40) + 43227100388.3104*pow(xi2, 38) - 129776422613.693*pow(xi2, 36) + 268760127505.3*pow(xi2, 34) - 407220712012.68*pow(xi2, 32) + 467232929734.276*pow(xi2, 30) - 414509044430.427*pow(xi2, 28) + 287829964191.486*pow(xi2, 26) - 157377876444.681*pow(xi2, 24) + 67824279307.8417*pow(xi2, 22) - 22957616604.4428*pow(xi2, 20) + 6054293730.11595*pow(xi2, 18) - 1227723888.89943*pow(xi2, 16) + 187795227.13452*pow(xi2, 14) - 21084402.1336859*pow(xi2, 12) + 1671508.25061792*pow(xi2, 10) - 88451.3556036221*pow(xi2, 8) + 2871.35565824312*pow(xi2, 6) - 50.546892247803*pow(xi2, 4) + 0.438267851859564*pow(xi2, 2); case 17: return -1596926835.02578*pow(xi1, 43) + 17155794339.5873*pow(xi1, 41) - 85723491017.7124*pow(xi1, 39) + 264501085869.306*pow(xi1, 37) - 564247100944.487*pow(xi1, 35) + 882930489041.186*pow(xi1, 33) - 1049307583130.46*pow(xi1, 31) + 967502466115.826*pow(xi1, 29) - 701000649302.07*pow(xi1, 27) + 401794420031.072*pow(xi1, 25) - 182520829969.247*pow(xi1, 23) + 65553051819.9223*pow(xi1, 21) - 18491548120.5668*pow(xi1, 19) + 4051446741.34114*pow(xi1, 17) - 678156146.789769*pow(xi1, 15) + 84718393.9058041*pow(xi1, 13) - 7643593.31681862*pow(xi1, 11) + 475270.013535954*pow(xi1, 9) - 18992.8591077769*pow(xi1, 7) + 434.761709044687*pow(xi1, 5) - 4.38267851859564*pow(xi1, 3) + 1596926835.02578*pow(xi2, 43) - 17155794339.5873*pow(xi2, 41) + 85723491017.7124*pow(xi2, 39) - 264501085869.306*pow(xi2, 37) + 564247100944.487*pow(xi2, 35) - 882930489041.186*pow(xi2, 33) + 1049307583130.46*pow(xi2, 31) - 967502466115.826*pow(xi2, 29) + 701000649302.07*pow(xi2, 27) - 401794420031.072*pow(xi2, 25) + 182520829969.247*pow(xi2, 23) - 65553051819.9223*pow(xi2, 21) + 18491548120.5668*pow(xi2, 19) - 4051446741.34114*pow(xi2, 17) + 678156146.789769*pow(xi2, 15) - 84718393.9058041*pow(xi2, 13) + 7643593.31681862*pow(xi2, 11) - 475270.013535954*pow(xi2, 9) + 18992.8591077769*pow(xi2, 7) - 434.761709044687*pow(xi2, 5) + 4.38267851859564*pow(xi2, 3); case 18: return -3023726521.43375*pow(xi1, 44) + 33240747675.0678*pow(xi1, 42) - 170255712367.296*pow(xi1, 40) + 539510185383.932*pow(xi1, 38) - 1184526688778.06*pow(xi1, 36) + 1912326388450.07*pow(xi1, 34) - 2351270564754.81*pow(xi1, 32) + 2250082365455.32*pow(xi1, 30) - 1698284245818.33*pow(xi1, 28) + 1018375869131.64*pow(xi1, 26) - 486441112729.579*pow(xi1, 24) + 184821161665.788*pow(xi1, 22) - 55558771326.0834*pow(xi1, 20) + 13089485207.7017*pow(xi1, 18) - 2382798209.34807*pow(xi1, 16) + 328475493.04593*pow(xi1, 14) - 33341967.2140553*pow(xi1, 12) + 2395791.07105762*pow(xi1, 10) - 115121.977334549*pow(xi1, 8) + 3393.85493899799*pow(xi1, 6) - 53.7562912046496*pow(xi1, 4) + 0.410876111118341*pow(xi1, 2) + 3023726521.43375*pow(xi2, 44) - 33240747675.0678*pow(xi2, 42) + 170255712367.296*pow(xi2, 40) - 539510185383.932*pow(xi2, 38) + 1184526688778.06*pow(xi2, 36) - 1912326388450.07*pow(xi2, 34) + 2351270564754.81*pow(xi2, 32) - 2250082365455.32*pow(xi2, 30) + 1698284245818.33*pow(xi2, 28) - 1018375869131.64*pow(xi2, 26) + 486441112729.579*pow(xi2, 24) - 184821161665.788*pow(xi2, 22) + 55558771326.0834*pow(xi2, 20) - 13089485207.7017*pow(xi2, 18) + 2382798209.34807*pow(xi2, 16) - 328475493.04593*pow(xi2, 14) + 33341967.2140553*pow(xi2, 12) - 2395791.07105762*pow(xi2, 10) + 115121.977334549*pow(xi2, 8) - 3393.85493899799*pow(xi2, 6) + 53.7562912046496*pow(xi2, 4) - 0.410876111118341*pow(xi2, 2); case 19: return -5739151515.19191*pow(xi1, 45) + 64528538905.8027*pow(xi1, 43) - 338582125411.19*pow(xi1, 41) + 1101111962091.26*pow(xi1, 39) - 2486172256125.54*pow(xi1, 37) + 4137157284655.27*pow(xi1, 35) - 5256914464518.41*pow(xi1, 33) + 5214493554143.21*pow(xi1, 31) - 4093581718892.25*pow(xi1, 29) + 2563396026608.8*pow(xi1, 27) - 1284656774810.01*pow(xi1, 25) + 514956083882.467*pow(xi1, 23) - 164410684836.72*pow(xi1, 21) + 41475494866.957*pow(xi1, 19) - 8166473938.34107*pow(xi1, 17) + 1233384913.79123*pow(xi1, 15) - 139478936.421598*pow(xi1, 13) + 11421836.7765192*pow(xi1, 11) - 645954.797160119*pow(xi1, 9) + 23522.5504032993*pow(xi1, 7) - 492.667848971632*pow(xi1, 5) + 4.65659592600787*pow(xi1, 3) + 5739151515.19191*pow(xi2, 45) - 64528538905.8027*pow(xi2, 43) + 338582125411.19*pow(xi2, 41) - 1101111962091.26*pow(xi2, 39) + 2486172256125.54*pow(xi2, 37) - 4137157284655.27*pow(xi2, 35) + 5256914464518.41*pow(xi2, 33) - 5214493554143.21*pow(xi2, 31) + 4093581718892.25*pow(xi2, 29) - 2563396026608.8*pow(xi2, 27) + 1284656774810.01*pow(xi2, 25) - 514956083882.467*pow(xi2, 23) + 164410684836.72*pow(xi2, 21) - 41475494866.957*pow(xi2, 19) + 8166473938.34107*pow(xi2, 17) - 1233384913.79123*pow(xi2, 15) + 139478936.421598*pow(xi2, 13) - 11421836.7765192*pow(xi2, 11) + 645954.797160119*pow(xi2, 9) - 23522.5504032993*pow(xi2, 7) + 492.667848971632*pow(xi2, 5) - 4.65659592600787*pow(xi2, 3); case 20: return -10916864295.202*pow(xi1, 46) + 125476260721.295*pow(xi1, 44) - 674073073816.212*pow(xi1, 42) + 2248321823144.9*pow(xi1, 40) - 5216544812047.65*pow(xi1, 38) + 8939734579066.18*pow(xi1, 36) - 11727223625887.1*pow(xi1, 34) + 12043084537277.8*pow(xi1, 32) - 9819495279736.75*pow(xi1, 30) + 6410302670942.14*pow(xi1, 28) - 3363668401955.01*pow(xi1, 26) + 1418999123886.7*pow(xi1, 24) - 479709514691.903*pow(xi1, 22) + 129086628714.985*pow(xi1, 20) - 27359365638.4866*pow(xi1, 18) + 4498778446.81622*pow(xi1, 16) - 562063823.082374*pow(xi1, 14) + 51848002.1788295*pow(xi1, 12) - 3393112.46214019*pow(xi1, 10) + 148747.317821576*pow(xi1, 8) - 4003.61182729473*pow(xi1, 6) + 57.5606996409306*pow(xi1, 4) - 0.388049660500656*pow(xi1, 2) + 10916864295.202*pow(xi2, 46) - 125476260721.295*pow(xi2, 44) + 674073073816.212*pow(xi2, 42) - 2248321823144.9*pow(xi2, 40) + 5216544812047.65*pow(xi2, 38) - 8939734579066.18*pow(xi2, 36) + 11727223625887.1*pow(xi2, 34) - 12043084537277.8*pow(xi2, 32) + 9819495279736.75*pow(xi2, 30) - 6410302670942.14*pow(xi2, 28) + 3363668401955.01*pow(xi2, 26) - 1418999123886.7*pow(xi2, 24) + 479709514691.903*pow(xi2, 22) - 129086628714.985*pow(xi2, 20) + 27359365638.4866*pow(xi2, 18) - 4498778446.81622*pow(xi2, 16) + 562063823.082374*pow(xi2, 14) - 51848002.1788295*pow(xi2, 12) + 3393112.46214019*pow(xi2, 10) - 148747.317821576*pow(xi2, 8) + 4003.61182729473*pow(xi2, 6) - 57.5606996409306*pow(xi2, 4) + 0.388049660500656*pow(xi2, 2); case 21: return -20806834300.5978*pow(xi1, 47) + 244355631791.314*pow(xi1, 45) - 1343273740298.02*pow(xi1, 43) + 4592284861114.13*pow(xi1, 41) - 10941218087890.8*pow(xi1, 39) + 19293765550349.6*pow(xi1, 37) - 26104144978494.4*pow(xi1, 35) + 27721880835822.7*pow(xi1, 33) - 23445377187979.1*pow(xi1, 31) + 15930895144025.1*pow(xi1, 29) - 8736178307237.03*pow(xi1, 27) + 3869824780370.31*pow(xi1, 25) - 1381408154889.13*pow(xi1, 23) + 395166275983.381*pow(xi1, 21) - 89767193240.2531*pow(xi1, 19) + 15982098655.2556*pow(xi1, 17) - 2190045568.70281*pow(xi1, 15) + 225338397.125726*pow(xi1, 13) - 16827632.97963*pow(xi1, 11) + 869437.913538747*pow(xi1, 9) - 28967.2419283845*pow(xi1, 7) + 556.411473203207*pow(xi1, 5) - 4.91529569967497*pow(xi1, 3) + 20806834300.5978*pow(xi2, 47) - 244355631791.314*pow(xi2, 45) + 1343273740298.02*pow(xi2, 43) - 4592284861114.13*pow(xi2, 41) + 10941218087890.8*pow(xi2, 39) - 19293765550349.6*pow(xi2, 37) + 26104144978494.4*pow(xi2, 35) - 27721880835822.7*pow(xi2, 33) + 23445377187979.1*pow(xi2, 31) - 15930895144025.1*pow(xi2, 29) + 8736178307237.03*pow(xi2, 27) - 3869824780370.31*pow(xi2, 25) + 1381408154889.13*pow(xi2, 23) - 395166275983.381*pow(xi2, 21) + 89767193240.2531*pow(xi2, 19) - 15982098655.2556*pow(xi2, 17) + 2190045568.70281*pow(xi2, 15) - 225338397.125726*pow(xi2, 13) + 16827632.97963*pow(xi2, 11) - 869437.913538747*pow(xi2, 9) + 28967.2419283845*pow(xi2, 7) - 556.411473203207*pow(xi2, 5) + 4.91529569967497*pow(xi2, 3); case 22: return -39728049242.7039*pow(xi1, 48) + 476505949117.133*pow(xi1, 46) - 2679054791412.26*pow(xi1, 44) + 9382111673603.37*pow(xi1, 42) - 22937896621590.0*pow(xi1, 40) + 41588485583490.6*pow(xi1, 38) - 57981856038508.5*pow(xi1, 36) + 63608598673568.9*pow(xi1, 34) - 55730713154580.7*pow(xi1, 32) + 39358257862237.2*pow(xi1, 30) - 22516922818681.8*pow(xi1, 28) + 10451406445051.6*pow(xi1, 26) - 3929555657141.43*pow(xi1, 24) + 1191272175390.01*pow(xi1, 22) - 288926022756.805*pow(xi1, 20) + 55425095713.3247*pow(xi1, 18) - 8277516579.76024*pow(xi1, 16) + 941984086.723766*pow(xi1, 14) - 79334996.0209767*pow(xi1, 12) + 4749320.37729368*pow(xi1, 10) - 190735.308470803*pow(xi1, 8) + 4707.5998798852*pow(xi1, 6) - 61.8712846196587*pow(xi1, 4) + 0.368647177475623*pow(xi1, 2) + 39728049242.7039*pow(xi2, 48) - 476505949117.133*pow(xi2, 46) + 2679054791412.26*pow(xi2, 44) - 9382111673603.37*pow(xi2, 42) + 22937896621590.0*pow(xi2, 40) - 41588485583490.6*pow(xi2, 38) + 57981856038508.5*pow(xi2, 36) - 63608598673568.9*pow(xi2, 34) + 55730713154580.7*pow(xi2, 32) - 39358257862237.2*pow(xi2, 30) + 22516922818681.8*pow(xi2, 28) - 10451406445051.6*pow(xi2, 26) + 3929555657141.43*pow(xi2, 24) - 1191272175390.01*pow(xi2, 22) + 288926022756.805*pow(xi2, 20) - 55425095713.3247*pow(xi2, 18) + 8277516579.76024*pow(xi2, 16) - 941984086.723766*pow(xi2, 14) + 79334996.0209767*pow(xi2, 12) - 4749320.37729368*pow(xi2, 10) + 190735.308470803*pow(xi2, 8) - 4707.5998798852*pow(xi2, 6) + 61.8712846196587*pow(xi2, 4) - 0.368647177475623*pow(xi2, 2); case 23: return -75981341991.8768*pow(xi1, 49) + 930343104637.766*pow(xi1, 47) - 5347021071237.98*pow(xi1, 45) + 19170777097011.4*pow(xi1, 43) - 48064836289803.9*pow(xi1, 41) + 89534811535571.6*pow(xi1, 39) - 128518154466020.0*pow(xi1, 37) + 145501072157689.0*pow(xi1, 35) - 131912174618258.0*pow(xi1, 33) + 96692459335021.2*pow(xi1, 31) - 57617974678786.9*pow(xi1, 29) + 27969551245737.2*pow(xi1, 27) - 11050657441547.3*pow(xi1, 25) + 3540321435715.92*pow(xi1, 23) - 913580894724.717*pow(xi1, 21) + 188008155558.22*pow(xi1, 19) - 30431272882.66*pow(xi1, 17) + 3802262020.28662*pow(xi1, 15) - 357585352.728971*pow(xi1, 13) + 24455846.7974416*pow(xi1, 11) - 1159047.64875872*pow(xi1, 9) + 35465.8737443918*pow(xi1, 7) - 626.552742837569*pow(xi1, 5) + 5.16106048465872*pow(xi1, 3) + 75981341991.8768*pow(xi2, 49) - 930343104637.766*pow(xi2, 47) + 5347021071237.98*pow(xi2, 45) - 19170777097011.4*pow(xi2, 43) + 48064836289803.9*pow(xi2, 41) - 89534811535571.6*pow(xi2, 39) + 128518154466020.0*pow(xi2, 37) - 145501072157689.0*pow(xi2, 35) + 131912174618258.0*pow(xi2, 33) - 96692459335021.2*pow(xi2, 31) + 57617974678786.9*pow(xi2, 29) - 27969551245737.2*pow(xi2, 27) + 11050657441547.3*pow(xi2, 25) - 3540321435715.92*pow(xi2, 23) + 913580894724.717*pow(xi2, 21) - 188008155558.22*pow(xi2, 19) + 30431272882.66*pow(xi2, 17) - 3802262020.28662*pow(xi2, 15) + 357585352.728971*pow(xi2, 13) - 24455846.7974416*pow(xi2, 11) + 1159047.64875872*pow(xi2, 9) - 35465.8737443918*pow(xi2, 7) + 626.552742837569*pow(xi2, 5) - 5.16106048465872*pow(xi2, 3); case 24: return -145538806888.077*pow(xi1, 50) + 1818436825861.34*pow(xi1, 48) - 10678646758589.6*pow(xi1, 46) + 39175840371527.9*pow(xi1, 44) - 100663775838791.0*pow(xi1, 42) + 192520127394647.0*pow(xi1, 40) - 284282290970171.0*pow(xi1, 38) + 331835096922265.0*pow(xi1, 36) - 310962453524380.0*pow(xi1, 34) + 236281374337303.0*pow(xi1, 32) - 146432298299480.0*pow(xi1, 30) + 74208765606632.7*pow(xi1, 28) - 30744623546611.0*pow(xi1, 26) + 10382337028640.8*pow(xi1, 24) - 2841593580509.51*pow(xi1, 22) + 624889983293.009*pow(xi1, 20) - 109080673375.912*pow(xi1, 18) + 14868478903.0804*pow(xi1, 16) - 1548160823.61131*pow(xi1, 14) + 119545585.350288*pow(xi1, 12) - 6572312.36046044*pow(xi1, 10) + 242720.226250891*pow(xi1, 8) - 5514.13958011828*pow(xi1, 6) + 66.6245989837762*pow(xi1, 4) - 0.351890487590367*pow(xi1, 2) + 145538806888.077*pow(xi2, 50) - 1818436825861.34*pow(xi2, 48) + 10678646758589.6*pow(xi2, 46) - 39175840371527.9*pow(xi2, 44) + 100663775838791.0*pow(xi2, 42) - 192520127394647.0*pow(xi2, 40) + 284282290970171.0*pow(xi2, 38) - 331835096922265.0*pow(xi2, 36) + 310962453524380.0*pow(xi2, 34) - 236281374337303.0*pow(xi2, 32) + 146432298299480.0*pow(xi2, 30) - 74208765606632.7*pow(xi2, 28) + 30744623546611.0*pow(xi2, 26) - 10382337028640.8*pow(xi2, 24) + 2841593580509.51*pow(xi2, 22) - 624889983293.009*pow(xi2, 20) + 109080673375.912*pow(xi2, 18) - 14868478903.0804*pow(xi2, 16) + 1548160823.61131*pow(xi2, 14) - 119545585.350288*pow(xi2, 12) + 6572312.36046044*pow(xi2, 10) - 242720.226250891*pow(xi2, 8) + 5514.13958011828*pow(xi2, 6) - 66.6245989837762*pow(xi2, 4) + 0.351890487590367*pow(xi2, 2); case 25: return -279166509376.106*pow(xi1, 51) + 3557880594966.93*pow(xi1, 49) - 21338365920884.2*pow(xi1, 47) + 80059627822368.0*pow(xi1, 45) - 210707878128500.0*pow(xi1, 43) + 413457806621174.0*pow(xi1, 41) - 627584822582511.0*pow(xi1, 39) + 754625892772514.0*pow(xi1, 37) - 730196744663009.0*pow(xi1, 35) + 574457730986261.0*pow(xi1, 33) - 369744544138545.0*pow(xi1, 31) + 195297320104083.0*pow(xi1, 29) - 84678136859102.6*pow(xi1, 27) + 30070931450057.4*pow(xi1, 25) - 8704310569332.09*pow(xi1, 23) + 2038251259475.21*pow(xi1, 21) - 382020033084.267*pow(xi1, 19) + 56487470251.4904*pow(xi1, 17) - 6464022566.86872*pow(xi1, 15) + 557939889.530573*pow(xi1, 13) - 35082432.7556841*pow(xi1, 11) + 1530776.40533598*pow(xi1, 9) - 43171.1940575669*pow(xi1, 7) + 703.59330025402*pow(xi1, 5) - 5.3956541430523*pow(xi1, 3) + 279166509376.106*pow(xi2, 51) - 3557880594966.93*pow(xi2, 49) + 21338365920884.2*pow(xi2, 47) - 80059627822368.0*pow(xi2, 45) + 210707878128500.0*pow(xi2, 43) - 413457806621174.0*pow(xi2, 41) + 627584822582511.0*pow(xi2, 39) - 754625892772514.0*pow(xi2, 37) + 730196744663009.0*pow(xi2, 35) - 574457730986261.0*pow(xi2, 33) + 369744544138545.0*pow(xi2, 31) - 195297320104083.0*pow(xi2, 29) + 84678136859102.6*pow(xi2, 27) - 30070931450057.4*pow(xi2, 25) + 8704310569332.09*pow(xi2, 23) - 2038251259475.21*pow(xi2, 21) + 382020033084.267*pow(xi2, 19) - 56487470251.4904*pow(xi2, 17) + 6464022566.86872*pow(xi2, 15) - 557939889.530573*pow(xi2, 13) + 35082432.7556841*pow(xi2, 11) - 1530776.40533598*pow(xi2, 9) + 43171.1940575669*pow(xi2, 7) - 703.59330025402*pow(xi2, 5) + 5.3956541430523*pow(xi2, 3); case 26: return -536187598537.281*pow(xi1, 52) + 6967640531775.1*pow(xi1, 50) - 42659726193562.7*pow(xi1, 48) + 163608805357696.0*pow(xi1, 46) - 440801678175839.0*pow(xi1, 44) + 886879365892137.0*pow(xi1, 42) - 1.38279322603835e+15*pow(xi1, 40) + 1.71135652394663e+15*pow(xi1, 38) - 1.70825590882209e+15*pow(xi1, 36) + 1.38989776889186e+15*pow(xi1, 34) - 927891786877753.0*pow(xi1, 32) + 510039629345147.0*pow(xi1, 30) - 231022322507251.0*pow(xi1, 28) + 86087547010722.5*pow(xi1, 26) - 26285433620239.1*pow(xi1, 24) + 6533333986439.11*pow(xi1, 22) - 1309569337206.32*pow(xi1, 20) + 209011313677.242*pow(xi1, 18) - 26116500380.1459*pow(xi1, 16) + 2498241243.17268*pow(xi1, 14) - 177542358.650584*pow(xi1, 12) + 8996459.42651258*pow(xi1, 10) - 306582.523307831*pow(xi1, 8) + 6432.6089417779*pow(xi1, 6) - 71.7734410487269*pow(xi1, 4) + 0.337228383940769*pow(xi1, 2) + 536187598537.281*pow(xi2, 52) - 6967640531775.1*pow(xi2, 50) + 42659726193562.7*pow(xi2, 48) - 163608805357696.0*pow(xi2, 46) + 440801678175839.0*pow(xi2, 44) - 886879365892137.0*pow(xi2, 42) + 1.38279322603835e+15*pow(xi2, 40) - 1.71135652394663e+15*pow(xi2, 38) + 1.70825590882209e+15*pow(xi2, 36) - 1.38989776889186e+15*pow(xi2, 34) + 927891786877753.0*pow(xi2, 32) - 510039629345147.0*pow(xi2, 30) + 231022322507251.0*pow(xi2, 28) - 86087547010722.5*pow(xi2, 26) + 26285433620239.1*pow(xi2, 24) - 6533333986439.11*pow(xi2, 22) + 1309569337206.32*pow(xi2, 20) - 209011313677.242*pow(xi2, 18) + 26116500380.1459*pow(xi2, 16) - 2498241243.17268*pow(xi2, 14) + 177542358.650584*pow(xi2, 12) - 8996459.42651258*pow(xi2, 10) + 306582.523307831*pow(xi2, 8) - 6432.6089417779*pow(xi2, 6) + 71.7734410487269*pow(xi2, 4) - 0.337228383940769*pow(xi2, 2); case 27: return -1031098868734.33*pow(xi1, 53) + 13656799302216.0*pow(xi1, 51) - 85322239662808.6*pow(xi1, 49) + 334335254497875.0*pow(xi1, 47) - 921629169951347.0*pow(xi1, 45) + 1.90013792114849e+15*pow(xi1, 43) - 3.04108995585405e+15*pow(xi1, 41) + 3.87073358105217e+15*pow(xi1, 39) - 3.98213104426395e+15*pow(xi1, 37) + 3.34735422684659e+15*pow(xi1, 35) - 2.31503617547326e+15*pow(xi1, 33) + 1.32238476900186e+15*pow(xi1, 31) - 624675256927435.0*pow(xi1, 29) + 243773285298310.0*pow(xi1, 27) - 78326766091896.9*pow(xi1, 25) + 20604719081135.1*pow(xi1, 23) - 4401250638548.01*pow(xi1, 21) + 754840239473.165*pow(xi1, 19) - 102405233319.159*pow(xi1, 17) + 10775577645.0379*pow(xi1, 15) - 856837392.061791*pow(xi1, 13) + 49709190.4236064*pow(xi1, 11) - 2003680.2341744*pow(xi1, 9) + 52251.1293174511*pow(xi1, 7) - 787.990323808263*pow(xi1, 5) + 5.62047306567948*pow(xi1, 3) + 1031098868734.33*pow(xi2, 53) - 13656799302216.0*pow(xi2, 51) + 85322239662808.6*pow(xi2, 49) - 334335254497875.0*pow(xi2, 47) + 921629169951347.0*pow(xi2, 45) - 1.90013792114849e+15*pow(xi2, 43) + 3.04108995585405e+15*pow(xi2, 41) - 3.87073358105217e+15*pow(xi2, 39) + 3.98213104426395e+15*pow(xi2, 37) - 3.34735422684659e+15*pow(xi2, 35) + 2.31503617547326e+15*pow(xi2, 33) - 1.32238476900186e+15*pow(xi2, 31) + 624675256927435.0*pow(xi2, 29) - 243773285298310.0*pow(xi2, 27) + 78326766091896.9*pow(xi2, 25) - 20604719081135.1*pow(xi2, 23) + 4401250638548.01*pow(xi2, 21) - 754840239473.165*pow(xi2, 19) + 102405233319.159*pow(xi2, 17) - 10775577645.0379*pow(xi2, 15) + 856837392.061791*pow(xi2, 13) - 49709190.4236064*pow(xi2, 11) + 2003680.2341744*pow(xi2, 9) - 52251.1293174511*pow(xi2, 7) + 787.990323808263*pow(xi2, 5) - 5.62047306567948*pow(xi2, 3); case 28: return -1985085642584.69*pow(xi1, 54) + 26788741762693.9*pow(xi1, 52) - 170715251986214.0*pow(xi1, 50) + 683167689474105.0*pow(xi1, 48) - 1.92582698260844e+15*pow(xi1, 46) + 4.06633243625181e+15*pow(xi1, 44) - 6.67595460794649e+15*pow(xi1, 42) + 8.73238684495299e+15*pow(xi1, 40) - 9.25108297396294e+15*pow(xi1, 38) + 8.02612992827034e+15*pow(xi1, 36) - 5.74391288108549e+15*pow(xi1, 34) + 3.40505258328624e+15*pow(xi1, 32) - 1.67490311154428e+15*pow(xi1, 30) + 683229999465451.0*pow(xi1, 28) - 230508183911447.0*pow(xi1, 26) + 64007364830632.8*pow(xi1, 24) - 14522855116130.1*pow(xi1, 22) + 2665817039716.65*pow(xi1, 20) - 390684676159.123*pow(xi1, 18) + 44927685217.5777*pow(xi1, 16) - 3962823148.48188*pow(xi1, 14) + 260094754.560315*pow(xi1, 12) - 12187708.0158238*pow(xi1, 10) + 384471.912634116*pow(xi1, 8) - 7473.26201178072*pow(xi1, 6) + 77.2815046530928*pow(xi1, 4) - 0.324258061481508*pow(xi1, 2) + 1985085642584.69*pow(xi2, 54) - 26788741762693.9*pow(xi2, 52) + 170715251986214.0*pow(xi2, 50) - 683167689474105.0*pow(xi2, 48) + 1.92582698260844e+15*pow(xi2, 46) - 4.06633243625181e+15*pow(xi2, 44) + 6.67595460794649e+15*pow(xi2, 42) - 8.73238684495299e+15*pow(xi2, 40) + 9.25108297396294e+15*pow(xi2, 38) - 8.02612992827034e+15*pow(xi2, 36) + 5.74391288108549e+15*pow(xi2, 34) - 3.40505258328624e+15*pow(xi2, 32) + 1.67490311154428e+15*pow(xi2, 30) - 683229999465451.0*pow(xi2, 28) + 230508183911447.0*pow(xi2, 26) - 64007364830632.8*pow(xi2, 24) + 14522855116130.1*pow(xi2, 22) - 2665817039716.65*pow(xi2, 20) + 390684676159.123*pow(xi2, 18) - 44927685217.5777*pow(xi2, 16) + 3962823148.48188*pow(xi2, 14) - 260094754.560315*pow(xi2, 12) + 12187708.0158238*pow(xi2, 10) - 384471.912634116*pow(xi2, 8) + 7473.26201178072*pow(xi2, 6) - 77.2815046530928*pow(xi2, 4) + 0.324258061481508*pow(xi2, 2); case 29: return -3825801420254.13*pow(xi1, 55) + 52586042305451.0*pow(xi1, 53) - 341687969236169.0*pow(xi1, 51) + 1.39582701084848e+15*pow(xi1, 49) - 4.02184701701795e+15*pow(xi1, 47) + 8.69217561331876e+15*pow(xi1, 45) - 1.46296547399939e+16*pow(xi1, 43) + 1.96517271944361e+16*pow(xi1, 41) - 2.14212772656679e+16*pow(xi1, 39) + 1.91638297975192e+16*pow(xi1, 37) - 1.41763210139116e+16*pow(xi1, 35) + 8.71074098744053e+15*pow(xi1, 33) - 4.45512314357336e+15*pow(xi1, 31) + 1.89644758994893e+15*pow(xi1, 29) - 670465190273508.0*pow(xi1, 27) + 196044097813775.0*pow(xi1, 25) - 47109937320332.5*pow(xi1, 23) + 9221955750876.3*pow(xi1, 21) - 1453419608880.21*pow(xi1, 19) + 181616100635.238*pow(xi1, 17) - 17636765574.6625*pow(xi1, 15) + 1296385476.97221*pow(xi1, 13) - 69617217.8772325*pow(xi1, 11) + 2600317.96606451*pow(xi1, 9) - 62889.962198531*pow(xi1, 7) + 880.166082085406*pow(xi1, 5) - 5.83664510666715*pow(xi1, 3) + 3825801420254.13*pow(xi2, 55) - 52586042305451.0*pow(xi2, 53) + 341687969236169.0*pow(xi2, 51) - 1.39582701084848e+15*pow(xi2, 49) + 4.02184701701795e+15*pow(xi2, 47) - 8.69217561331876e+15*pow(xi2, 45) + 1.46296547399939e+16*pow(xi2, 43) - 1.96517271944361e+16*pow(xi2, 41) + 2.14212772656679e+16*pow(xi2, 39) - 1.91638297975192e+16*pow(xi2, 37) + 1.41763210139116e+16*pow(xi2, 35) - 8.71074098744053e+15*pow(xi2, 33) + 4.45512314357336e+15*pow(xi2, 31) - 1.89644758994893e+15*pow(xi2, 29) + 670465190273508.0*pow(xi2, 27) - 196044097813775.0*pow(xi2, 25) + 47109937320332.5*pow(xi2, 23) - 9221955750876.3*pow(xi2, 21) + 1453419608880.21*pow(xi2, 19) - 181616100635.238*pow(xi2, 17) + 17636765574.6625*pow(xi2, 15) - 1296385476.97221*pow(xi2, 13) + 69617217.8772325*pow(xi2, 11) - 2600317.96606451*pow(xi2, 9) + 62889.962198531*pow(xi2, 7) - 880.166082085406*pow(xi2, 5) + 5.83664510666715*pow(xi2, 3); default: return 0.; } default: return 0.; } }
the_stack_data/39619.c
/* Provide Declarations */ #include <stdarg.h> #include <setjmp.h> #include <limits.h> #include <stdint.h> struct l_struct_struct_OC_uint64v8_t; struct l_struct_union_OC_vec512_t; struct l_struct_union_OC_VectorReg; struct l_struct_struct_OC_ArithFlags; struct l_struct_union_OC_SegmentSelector; struct l_struct_struct_OC_Segments; struct l_struct_struct_OC_Reg; struct l_struct_struct_OC_AddressSpace; struct l_struct_struct_OC_GPR; struct l_struct_struct_OC_anon_OC_3; struct l_struct_struct_OC_X87Stack; struct l_struct_struct_OC_uint64v1_t; struct l_struct_union_OC_vec64_t; struct l_struct_struct_OC_anon_OC_4; struct l_struct_struct_OC_MMX; struct l_struct_struct_OC_FPUStatusFlags; struct l_struct_union_OC_FPUAbridgedTagWord; struct l_struct_union_OC_FPUControlStatus; struct l_struct_struct_OC_float80_t; struct l_struct_union_OC_anon_OC_11; struct l_struct_struct_OC_FPUStackElem; struct l_struct_struct_OC_uint128v1_t; struct l_struct_union_OC_vec128_t; struct l_struct_struct_OC_FpuFXSAVE; /* Types Definitions */ struct l_array_8_ureplace_u8int { int array[8]; }; struct l_struct___bss_start_type { struct l_array_8_ureplace_u8int field0; } ; struct l_struct_union_OC_anon { int field0; }; struct l_struct_struct_OC_ArchState { int field0; int field1; struct l_struct_union_OC_anon field2; }; struct l_array_8_ureplace_u64int { int array[8]; }; struct l_struct_struct_OC_uint64v8_t { struct l_array_8_ureplace_u64int field0; }; struct l_struct_union_OC_vec512_t { struct l_struct_struct_OC_uint64v8_t field0; }; struct l_struct_union_OC_VectorReg { struct l_struct_union_OC_vec512_t field0; }; struct l_array_32_struct_AC_l_struct_union_OC_VectorReg { struct l_struct_union_OC_VectorReg array[32]; }; struct l_struct_struct_OC_ArithFlags { int field0; int field1; int field2; int field3; int field4; int field5; int field6; int field7; int field8; int field9; int field10; int field11; int field12; int field13; int field14; int field15; }; struct l_struct_union_OC_SegmentSelector { int field0; }; struct l_struct_struct_OC_Segments { int field0; struct l_struct_union_OC_SegmentSelector field1; int field2; struct l_struct_union_OC_SegmentSelector field3; int field4; struct l_struct_union_OC_SegmentSelector field5; int field6; struct l_struct_union_OC_SegmentSelector field7; int field8; struct l_struct_union_OC_SegmentSelector field9; int field10; struct l_struct_union_OC_SegmentSelector field11; }; struct l_struct_struct_OC_Reg { struct l_struct_union_OC_anon field0; }; struct l_struct_struct_OC_AddressSpace { int field0; struct l_struct_struct_OC_Reg field1; int field2; struct l_struct_struct_OC_Reg field3; int field4; struct l_struct_struct_OC_Reg field5; int field6; struct l_struct_struct_OC_Reg field7; int field8; struct l_struct_struct_OC_Reg field9; int field10; struct l_struct_struct_OC_Reg field11; }; struct l_struct_struct_OC_GPR { int field0; struct l_struct_struct_OC_Reg field1; int field2; struct l_struct_struct_OC_Reg field3; int field4; struct l_struct_struct_OC_Reg field5; int field6; struct l_struct_struct_OC_Reg field7; int field8; struct l_struct_struct_OC_Reg field9; int field10; struct l_struct_struct_OC_Reg field11; int field12; struct l_struct_struct_OC_Reg field13; int field14; struct l_struct_struct_OC_Reg field15; int field16; struct l_struct_struct_OC_Reg field17; int field18; struct l_struct_struct_OC_Reg field19; int field20; struct l_struct_struct_OC_Reg field21; int field22; struct l_struct_struct_OC_Reg field23; int field24; struct l_struct_struct_OC_Reg field25; int field26; struct l_struct_struct_OC_Reg field27; int field28; struct l_struct_struct_OC_Reg field29; int field30; struct l_struct_struct_OC_Reg field31; int field32; struct l_struct_struct_OC_Reg field33; }; struct l_struct_struct_OC_anon_OC_3 { int field0; double field1; }; struct l_array_8_struct_AC_l_struct_struct_OC_anon_OC_3 { struct l_struct_struct_OC_anon_OC_3 array[8]; }; struct l_struct_struct_OC_X87Stack { struct l_array_8_struct_AC_l_struct_struct_OC_anon_OC_3 field0; }; struct l_array_1_ureplace_u64int { int array[1]; }; struct l_struct_struct_OC_uint64v1_t { struct l_array_1_ureplace_u64int field0; }; struct l_struct_union_OC_vec64_t { struct l_struct_struct_OC_uint64v1_t field0; }; struct l_struct_struct_OC_anon_OC_4 { int field0; struct l_struct_union_OC_vec64_t field1; }; struct l_array_8_struct_AC_l_struct_struct_OC_anon_OC_4 { struct l_struct_struct_OC_anon_OC_4 array[8]; }; struct l_struct_struct_OC_MMX { struct l_array_8_struct_AC_l_struct_struct_OC_anon_OC_4 field0; }; struct l_array_4_ureplace_u8int { int array[4]; }; struct l_struct_struct_OC_FPUStatusFlags { int field0; int field1; int field2; int field3; int field4; int field5; int field6; int field7; int field8; int field9; int field10; int field11; int field12; int field13; int field14; int field15; int field16; int field17; int field18; int field19; struct l_array_4_ureplace_u8int field20; }; struct l_struct_union_OC_FPUAbridgedTagWord { int field0; }; struct l_struct_union_OC_FPUControlStatus { int field0; }; struct l_array_10_ureplace_u8int { int array[10]; }; struct l_struct_struct_OC_float80_t { struct l_array_10_ureplace_u8int field0; }; struct l_struct_union_OC_anon_OC_11 { struct l_struct_struct_OC_float80_t field0; }; struct l_array_6_ureplace_u8int { int array[6]; }; struct l_struct_struct_OC_FPUStackElem { struct l_struct_union_OC_anon_OC_11 field0; struct l_array_6_ureplace_u8int field1; }; struct l_array_8_struct_AC_l_struct_struct_OC_FPUStackElem { struct l_struct_struct_OC_FPUStackElem array[8]; }; struct l_array_96_ureplace_u8int { int array[96]; }; struct l_struct_struct_OC_SegmentShadow { struct l_struct_union_OC_anon field0; int field1; int field2; }; struct l_struct_struct_OC_SegmentCaches { struct l_struct_struct_OC_SegmentShadow field0; struct l_struct_struct_OC_SegmentShadow field1; struct l_struct_struct_OC_SegmentShadow field2; struct l_struct_struct_OC_SegmentShadow field3; struct l_struct_struct_OC_SegmentShadow field4; struct l_struct_struct_OC_SegmentShadow field5; }; struct l_struct_struct_OC_State { struct l_struct_struct_OC_ArchState field0; struct l_array_32_struct_AC_l_struct_union_OC_VectorReg field1; struct l_struct_struct_OC_ArithFlags field2; struct l_struct_union_OC_anon field3; struct l_struct_struct_OC_Segments field4; struct l_struct_struct_OC_AddressSpace field5; struct l_struct_struct_OC_GPR field6; struct l_struct_struct_OC_X87Stack field7; struct l_struct_struct_OC_MMX field8; struct l_struct_struct_OC_FPUStatusFlags field9; struct l_struct_union_OC_anon field10; struct l_struct_struct_OC_SegmentCaches field12; }; /* External Global Variable Declarations */ /* Function Declarations */ int __VERIFIER_nondet_int() { int x; return x; }; void __mcsema_destructor(void) ; void __mcsema_constructor(void) ; /* Global Variable Definitions and Initialization */ struct l_struct___bss_start_type __bss_start; /* LLVM Intrinsic Builtin Function Bodies */ static int llvm_select_u64(int condition, int iftrue, int ifnot) { int r; r = condition ? iftrue : ifnot; return r; } static int llvm_add_u32(int a, int b) { int r = a + b; return r; } static int llvm_add_u64(int a, int b) { int r = a + b; return r; } static int llvm_sub_u32(int a, int b) { int r = a - b; return r; } static int llvm_lshr_u32(int a, int b) { int r = a >> b; return r; } static int llvm_lshr_u64(int a, int b) { int r = a >> b; return r; } static int llvm_and_u8(int a, int b) { int r = a & b; return r; } static int llvm_xor_u8(int a, int b) { int r = a ^ b; return r; } static int llvm_OC_ctpop_OC_i32(int a) { int r; r = LLVMCountPopulation(8 * sizeof(a), &a); return r; } /* Function Bodies */ int main() { struct l_struct_struct_OC_State* tmp__1; int tmp__2; void* tmp__3; struct l_struct_union_OC_anon* tmp__4; int* tmp__5; int* tmp__6; int* tmp__7; int* tmp__8; int* tmp__9; int* EAX; int tmp__10; int tmp__11; int tmp__12; int tmp__13; int* tmp__14; int tmp__15; int* tmp__16; int* tmp__17; int* tmp__18; int tmp__19; int* tmp__20; int tmp__21; int* tmp__22; int tmp__23; void* tmp__24; int tmp__25; int tmp__26; int tmp__27; int tmp__28; int tmp__29; void* tmp__30; int tmp__31; int tmp__32; int tmp__33; int tmp__34; int tmp__35; void* tmp__36; int tmp__37; int tmp__38; int tmp__39; int tmp__40; int tmp__41; int tmp__42; int tmp__43; int tmp__44; int tmp__45; int tmp__46; int tmp__47; int tmp__47__PHI_TEMPORARY; void* tmp__48; void* tmp__48__PHI_TEMPORARY; int tmp__49; int tmp__49__PHI_TEMPORARY; int tmp__50; int tmp__50__PHI_TEMPORARY; void* tmp__51; void* tmp__51__PHI_TEMPORARY; int tmp__52; int tmp__53; int tmp__54; int tmp__55; int tmp__56; int tmp__57; int tmp__58; int tmp__59; int tmp__60; int tmp__61; int tmp__62; void* tmp__63; int tmp__64; int tmp__65; int tmp__66; int tmp__67; int tmp__68; int tmp__69; int tmp__70; int tmp__71; int tmp__72; int tmp__73; int tmp__74; int tmp__75; int tmp__76; tmp__4 = (&tmp__1->field6.field1.field0); tmp__5 = (&tmp__4->field0); tmp__6 = (&tmp__1->field6.field7.field0.field0); tmp__7 = (&tmp__1->field6.field13.field0.field0); tmp__8 = (&tmp__1->field6.field15.field0.field0); tmp__9 = (&tmp__1->field6.field33.field0.field0); EAX = ((int*)tmp__4); tmp__10 = *tmp__8; tmp__11 = *tmp__7; tmp__12 = llvm_add_u64(tmp__11, (18446744073709551608UL)); *(((int*)tmp__12)) = tmp__10; *tmp__8 = tmp__12; tmp__13 = llvm_add_u64(tmp__11, (18446744073709551592UL)); tmp__14 = (&tmp__1->field2.field1); *tmp__14 = (((int)(int)(((((int)tmp__12) < ((int)(16UL)))&1)))); tmp__15 = /*tail*/ llvm_OC_ctpop_OC_i32(((((int)tmp__13)) & 255)); tmp__16 = (&tmp__1->field2.field3); *tmp__16 = (llvm_xor_u8((llvm_and_u8((((int)tmp__15)), 1)), 1)); tmp__17 = (&tmp__1->field2.field5); *tmp__17 = (llvm_and_u8((((int)(llvm_lshr_u64(((tmp__12 ^ (16UL)) ^ tmp__13), (4UL))))), 1)); tmp__18 = (&tmp__1->field2.field7); *tmp__18 = (((int)(int)(((tmp__13 == (0UL))&1)))); tmp__19 = llvm_lshr_u64(tmp__13, (63UL)); tmp__20 = (&tmp__1->field2.field9); *tmp__20 = (((int)tmp__19)); tmp__21 = llvm_lshr_u64(tmp__12, (63UL)); tmp__22 = (&tmp__1->field2.field13); *tmp__22 = (((int)(int)((((llvm_add_u64((tmp__19 ^ tmp__21), tmp__21)) == (2UL))&1)))); *tmp__5 = (0UL); tmp__23 = llvm_add_u64(tmp__11, (18446744073709551584UL)); *(((int*)tmp__23)) = (llvm_add_u64(tmp__2, (22UL))); *tmp__7 = tmp__23; tmp__24 = /*tail*/ sub_401106___VERIFIER_nondet_int(tmp__1, /*UNDEF*/(0UL), tmp__3); tmp__25 = *tmp__8; tmp__26 = *EAX; tmp__27 = *tmp__9; *(((int*)(llvm_add_u64(tmp__25, (18446744073709551604UL))))) = tmp__26; *tmp__5 = (0UL); tmp__28 = *tmp__7; tmp__29 = llvm_add_u64(tmp__28, (18446744073709551608UL)); *(((int*)tmp__29)) = (llvm_add_u64(tmp__27, (13UL))); *tmp__7 = tmp__29; tmp__30 = /*tail*/ sub_401106___VERIFIER_nondet_int(tmp__1, /*UNDEF*/(0UL), tmp__24); tmp__31 = *tmp__8; tmp__32 = *EAX; tmp__33 = *tmp__9; *(((int*)(llvm_add_u64(tmp__31, (18446744073709551612UL))))) = tmp__32; *tmp__5 = (0UL); tmp__34 = *tmp__7; tmp__35 = llvm_add_u64(tmp__34, (18446744073709551608UL)); *(((int*)tmp__35)) = (llvm_add_u64(tmp__33, (13UL))); *tmp__7 = tmp__35; tmp__36 = /*tail*/ sub_401106___VERIFIER_nondet_int(tmp__1, /*UNDEF*/(0UL), tmp__30); tmp__37 = *tmp__8; tmp__38 = *EAX; tmp__39 = *tmp__9; *(((int*)(llvm_add_u64(tmp__37, (18446744073709551608UL))))) = tmp__38; tmp__40 = llvm_add_u64(tmp__39, (47UL)); tmp__49__PHI_TEMPORARY = tmp__40; /* for PHI node */ tmp__50__PHI_TEMPORARY = tmp__37; /* for PHI node */ tmp__51__PHI_TEMPORARY = tmp__36; /* for PHI node */ goto block_401170; block_40117e: *tmp__5 = (0UL); tmp__41 = *(((int*)tmp__50)); *tmp__8 = tmp__41; tmp__42 = *(((int*)(llvm_add_u64(tmp__50, (8UL))))); *tmp__9 = tmp__42; *tmp__7 = (llvm_add_u64(tmp__50, (16UL))); return tmp__51; do { /* Syntactic loop 'block_401170' to make GCC happy */ block_401170: tmp__49 = tmp__49__PHI_TEMPORARY; tmp__50 = tmp__50__PHI_TEMPORARY; tmp__51 = tmp__51__PHI_TEMPORARY; tmp__52 = *(((int*)(llvm_add_u64(tmp__50, (18446744073709551612UL))))); tmp__53 = *(((int*)(llvm_add_u64(tmp__50, (18446744073709551608UL))))); tmp__54 = llvm_sub_u32(tmp__52, tmp__53); *tmp__14 = (((int)(int)(((((int)tmp__52) < ((int)tmp__53))&1)))); tmp__55 = /*tail*/ llvm_OC_ctpop_OC_i32((tmp__54 & 255)); *tmp__16 = (llvm_xor_u8((llvm_and_u8((((int)tmp__55)), 1)), 1)); *tmp__17 = (llvm_and_u8((((int)(llvm_lshr_u32(((tmp__53 ^ tmp__52) ^ tmp__54), 4)))), 1)); *tmp__18 = (((int)(int)(((tmp__54 == 0u)&1)))); tmp__56 = llvm_lshr_u32(tmp__54, 31); tmp__57 = ((int)tmp__56); *tmp__20 = tmp__57; tmp__58 = llvm_lshr_u32(tmp__52, 31); *tmp__22 = (((int)(int)((((llvm_add_u32((tmp__56 ^ tmp__58), ((llvm_lshr_u32(tmp__53, 31)) ^ tmp__58))) == 2u)&1)))); tmp__59 = (((((tmp__57 != ((int)0))&1)) ^ ((((llvm_add_u32((tmp__56 ^ tmp__58), ((llvm_lshr_u32(tmp__53, 31)) ^ tmp__58))) == 2u)&1)))&1); tmp__60 = llvm_add_u64((llvm_select_u64(tmp__59, (8UL), (2UL))), (llvm_add_u64(tmp__49, (6UL)))); if (tmp__59) { goto block_40117e; } else { goto block_401178; } block_401178: tmp__68 = *(((int*)(llvm_add_u64(tmp__50, (18446744073709551604UL))))); *tmp__14 = 0; tmp__69 = /*tail*/ llvm_OC_ctpop_OC_i32((tmp__68 & 255)); *tmp__16 = (llvm_xor_u8((llvm_and_u8((((int)tmp__69)), 1)), 1)); *tmp__17 = 0; *tmp__18 = (((int)(int)(((tmp__68 == 0u)&1)))); tmp__70 = ((int)(llvm_lshr_u32(tmp__68, 31))); *tmp__20 = tmp__70; *tmp__22 = 0; tmp__71 = llvm_add_u64((llvm_select_u64((((tmp__70 == ((int)0))&1)), (18446744073709551562UL), (2UL))), (llvm_add_u64(tmp__60, (4UL)))); if ((((tmp__70 == ((int)0))&1))) { goto block_401146; } else { goto block_40117e; } block_401146: *tmp__5 = (0UL); tmp__61 = *tmp__7; tmp__62 = llvm_add_u64(tmp__61, (18446744073709551608UL)); *(((int*)tmp__62)) = (llvm_add_u64(tmp__71, (10UL))); *tmp__7 = tmp__62; tmp__63 = /*tail*/ sub_401106___VERIFIER_nondet_int(tmp__1, /*UNDEF*/(0UL), tmp__51); tmp__64 = *EAX; tmp__65 = *tmp__9; tmp__66 = llvm_add_u64((llvm_add_u64(tmp__65, (2UL))), (llvm_select_u64((((tmp__64 == 0u)&1)), (16UL), (2UL)))); tmp__67 = *tmp__8; if ((((tmp__64 == 0u)&1))) { goto block_401162; } else { goto block_401154; } block_401154: tmp__43 = llvm_add_u64(tmp__67, (18446744073709551612UL)); tmp__44 = *(((int*)tmp__43)); tmp__45 = *(((int*)(llvm_add_u64(tmp__67, (18446744073709551604UL))))); *(((int*)tmp__43)) = (llvm_sub_u32((llvm_add_u32(tmp__44, -1)), tmp__45)); tmp__46 = llvm_add_u64(tmp__66, (28UL)); tmp__47__PHI_TEMPORARY = tmp__46; /* for PHI node */ tmp__48__PHI_TEMPORARY = tmp__63; /* for PHI node */ goto block_401170_2e_backedge; block_401162: tmp__72 = llvm_add_u64(tmp__67, (18446744073709551608UL)); tmp__73 = *(((int*)tmp__72)); tmp__74 = llvm_add_u32(tmp__73, 1); *tmp__6 = (((int)(int)tmp__74)); tmp__75 = *(((int*)(llvm_add_u64(tmp__67, (18446744073709551604UL))))); tmp__76 = llvm_add_u64(tmp__66, (14UL)); *(((int*)tmp__72)) = (llvm_add_u32(tmp__74, tmp__75)); tmp__47__PHI_TEMPORARY = tmp__76; /* for PHI node */ tmp__48__PHI_TEMPORARY = tmp__63; /* for PHI node */ goto block_401170_2e_backedge; block_401170_2e_backedge: tmp__47 = tmp__47__PHI_TEMPORARY; tmp__48 = tmp__48__PHI_TEMPORARY; tmp__49__PHI_TEMPORARY = tmp__47; /* for PHI node */ tmp__50__PHI_TEMPORARY = tmp__67; /* for PHI node */ tmp__51__PHI_TEMPORARY = tmp__48; /* for PHI node */ goto block_401170; } while (1); /* end of syntactic loop 'block_401170' */ }
the_stack_data/77895.c
#include <stdio.h> void divisores_i(){ int n, i = 1; scanf("%d", &n); while (i<=n){ if (n%i == 0){ printf("%d\n", i); } i++; } } int main(){ divisores_i(); return 0; }
the_stack_data/170453836.c
/** ****************************************************************************** * @file stm32l4xx_ll_opamp.c * @author MCD Application Team * @version V1.3.0 * @date 29-January-2016 * @brief OPAMP LL module driver ****************************************************************************** * @attention * * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2> * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. 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. * 3. Neither the name of STMicroelectronics nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * 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 HOLDER 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. * ****************************************************************************** */ #if defined(USE_FULL_LL_DRIVER) /* Includes ------------------------------------------------------------------*/ #include "stm32l4xx_ll_opamp.h" #ifdef USE_FULL_ASSERT #include "stm32_assert.h" #else #define assert_param(expr) ((void)0) #endif /** @addtogroup STM32L4xx_LL_Driver * @{ */ #if defined (OPAMP1) || defined (OPAMP2) /** @addtogroup OPAMP_LL OPAMP * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /* Private macros ------------------------------------------------------------*/ /** @addtogroup OPAMP_LL_Private_Macros * @{ */ /* Check of parameters for configuration of OPAMP hierarchical scope: */ /* OPAMP instance. */ #define IS_LL_OPAMP_POWER_MODE(__POWER_MODE__) \ ( ((__POWER_MODE__) == LL_OPAMP_POWERMODE_NORMAL) \ || ((__POWER_MODE__) == LL_OPAMP_POWERMODE_LOWPOWER)) #define IS_LL_OPAMP_FUNCTIONAL_MODE(__FUNCTIONAL_MODE__) \ ( ((__FUNCTIONAL_MODE__) == LL_OPAMP_MODE_STANDALONE) \ || ((__FUNCTIONAL_MODE__) == LL_OPAMP_MODE_FOLLOWER) \ || ((__FUNCTIONAL_MODE__) == LL_OPAMP_MODE_PGA) ) /* Note: Comparator non-inverting inputs parameters are the same on all */ /* OPAMP instances. */ /* However, comparator instance kept as macro parameter for */ /* compatibility with other STM32 families. */ #define IS_LL_OPAMP_INPUT_NONINVERTING(__OPAMPX__, __INPUT_NONINVERTING__) \ ( ((__INPUT_NONINVERTING__) == LL_OPAMP_INPUT_NONINVERT_IO0) \ || ((__INPUT_NONINVERTING__) == LL_OPAMP_INPUT_NONINVERT_DAC1_CH1)) /* Note: Comparator non-inverting inputs parameters are the same on all */ /* OPAMP instances. */ /* However, comparator instance kept as macro parameter for */ /* compatibility with other STM32 families. */ #define IS_LL_OPAMP_INPUT_INVERTING(__OPAMPX__, __INPUT_INVERTING__) \ ( ((__INPUT_INVERTING__) == LL_OPAMP_INPUT_INVERT_IO0) \ || ((__INPUT_INVERTING__) == LL_OPAMP_INPUT_INVERT_IO1) \ || ((__INPUT_INVERTING__) == LL_OPAMP_INPUT_INVERT_CONNECT_NO)) /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup OPAMP_LL_Exported_Functions * @{ */ /** @addtogroup OPAMP_LL_EF_Init * @{ */ /** * @brief De-initialize registers of the selected OPAMP instance * to their default reset values. * @param OPAMPx OPAMP instance * @retval An ErrorStatus enumeration value: * - SUCCESS: OPAMP registers are de-initialized * - ERROR: OPAMP registers are not de-initialized */ ErrorStatus LL_OPAMP_DeInit(OPAMP_TypeDef* OPAMPx) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_OPAMP_ALL_INSTANCE(OPAMPx)); LL_OPAMP_WriteReg(OPAMPx, CSR, 0x00000000); return status; } /** * @brief Initialize some features of OPAMP instance. * @note This function reset bit of calibration mode to ensure * to be in functional mode, in order to have OPAMP parameters * (inputs selection, ...) set with the corresponding OPAMP mode * to be effective. * @note This function configures features of the selected OPAMP instance. * Some features are also available at scope OPAMP common instance * (common to several OPAMP instances). * Refer to functions having argument "OPAMPxy_COMMON" as parameter. * @param OPAMPx OPAMP instance * @param OPAMP_InitStruct Pointer to a @ref LL_OPAMP_InitTypeDef structure * @retval An ErrorStatus enumeration value: * - SUCCESS: OPAMP registers are initialized * - ERROR: OPAMP registers are not initialized */ ErrorStatus LL_OPAMP_Init(OPAMP_TypeDef *OPAMPx, LL_OPAMP_InitTypeDef *OPAMP_InitStruct) { /* Check the parameters */ assert_param(IS_OPAMP_ALL_INSTANCE(OPAMPx)); assert_param(IS_LL_OPAMP_POWER_MODE(OPAMP_InitStruct->PowerMode)); assert_param(IS_LL_OPAMP_FUNCTIONAL_MODE(OPAMP_InitStruct->FunctionalMode)); assert_param(IS_LL_OPAMP_INPUT_NONINVERTING(OPAMPx, OPAMP_InitStruct->InputNonInverting)); /* Note: OPAMP inverting input can be used with OPAMP in mode standalone */ /* or PGA with external capacitors for filtering circuit. */ /* Otherwise (OPAMP in mode follower), OPAMP inverting input is */ /* not used (not connected to GPIO pin). */ if(OPAMP_InitStruct->FunctionalMode != LL_OPAMP_MODE_FOLLOWER) { assert_param(IS_LL_OPAMP_INPUT_INVERTING(OPAMPx, OPAMP_InitStruct->InputInverting)); } /* Configuration of OPAMP instance : */ /* - PowerMode */ /* - Functional mode */ /* - Input non-inverting */ /* - Input inverting */ /* Note: Bit OPAMP_CSR_CALON reset to ensure to be in functional mode. */ if(OPAMP_InitStruct->FunctionalMode != LL_OPAMP_MODE_FOLLOWER) { MODIFY_REG(OPAMPx->CSR, OPAMP_CSR_OPALPM | OPAMP_CSR_OPAMODE | OPAMP_CSR_CALON | OPAMP_CSR_VMSEL | OPAMP_CSR_VPSEL , (OPAMP_InitStruct->PowerMode & OPAMP_POWERMODE_CSR_BIT_MASK) | OPAMP_InitStruct->FunctionalMode | OPAMP_InitStruct->InputNonInverting | OPAMP_InitStruct->InputInverting ); } else { MODIFY_REG(OPAMPx->CSR, OPAMP_CSR_OPALPM | OPAMP_CSR_OPAMODE | OPAMP_CSR_CALON | OPAMP_CSR_VMSEL | OPAMP_CSR_VPSEL , (OPAMP_InitStruct->PowerMode & OPAMP_POWERMODE_CSR_BIT_MASK) | LL_OPAMP_MODE_FOLLOWER | OPAMP_InitStruct->InputNonInverting | LL_OPAMP_INPUT_INVERT_CONNECT_NO ); } return SUCCESS; } /** * @brief Set each @ref LL_OPAMP_InitTypeDef field to default value. * @param OPAMP_InitStruct pointer to a @ref LL_OPAMP_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_OPAMP_StructInit(LL_OPAMP_InitTypeDef *OPAMP_InitStruct) { /* Set OPAMP_InitStruct fields to default values */ OPAMP_InitStruct->PowerMode = LL_OPAMP_POWERMODE_NORMAL; OPAMP_InitStruct->FunctionalMode = LL_OPAMP_MODE_FOLLOWER; OPAMP_InitStruct->InputNonInverting = LL_OPAMP_INPUT_NONINVERT_IO0; /* Note: Parameter discarded if OPAMP in functional mode follower, */ /* set anyway to its default value. */ OPAMP_InitStruct->InputInverting = LL_OPAMP_INPUT_INVERT_CONNECT_NO; } /** * @} */ /** * @} */ /** * @} */ #endif /* OPAMP1 || OPAMP2 */ /** * @} */ #endif /* USE_FULL_LL_DRIVER */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
the_stack_data/1059140.c
#include <stdio.h> int main(int argc, char *argv[]) { int distance = 100; float power = 2.345f; double super_power = 56789.4532; char initial = 'A'; char first_name[] = "Zed"; char last_name[] = "Shaw"; printf("You are %d miles away\n", distance); printf("You have %f levels of power.\n", power); printf("You have %f awesome super powers.\n", super_power); printf("I have an inital %c\n", initial); printf("I have a first name %s\n", first_name); printf("I have a last name %s\n", last_name); printf("My whole name is %s %s.\n", first_name, last_name); return 0; }
the_stack_data/460435.c
#include <stdio.h> typedef struct { int i; float f; } S; S s = {1, 1.1}; int main() { printf("%d %f\n", s.i, s.f); s.i = 2; s.f = 2.2; s.i = 3; s.f = 3.3; return 0; }
the_stack_data/25137447.c
#include <stdio.h> int main() { float x,y,z,max; scanf("%f",&x); scanf("%f",&y); scanf("%f",&z); max=x; if(y>max)max=y; if(z>max)max=z; printf("%.1f\n",max); return 0; }
the_stack_data/173577286.c
/* Adler32 for POWER8 using VSX instructions. * Copyright (C) 2020 IBM Corporation * Author: Rogerio Alves <[email protected]> * For conditions of distribution and use, see copyright notice in zlib.h * * Calculate adler32 checksum for 16 bytes at once using POWER8+ VSX (vector) * instructions. * * If adler32 do 1 byte at time on the first iteration s1 is s1_0 (_n means * iteration n) is the initial value of adler - at start _0 is 1 unless * adler initial value is different than 1. So s1_1 = s1_0 + c[0] after * the first calculation. For the iteration s1_2 = s1_1 + c[1] and so on. * Hence, for iteration N, s1_N = s1_(N-1) + c[N] is the value of s1 on * after iteration N. * * Therefore, for s2 and iteration N, s2_N = s2_0 + N*s1_N + N*c[0] + * N-1*c[1] + ... + c[N] * * In a more general way: * * s1_N = s1_0 + sum(i=1 to N)c[i] * s2_N = s2_0 + N*s1 + sum (i=1 to N)(N-i+1)*c[i] * * Where s1_N, s2_N are the values for s1, s2 after N iterations. So if we * can process N-bit at time we can do this at once. * * Since VSX can support 16-bit vector instructions, we can process * 16-bit at time using N = 16 we have: * * s1 = s1_16 = s1_(16-1) + c[16] = s1_0 + sum(i=1 to 16)c[i] * s2 = s2_16 = s2_0 + 16*s1 + sum(i=1 to 16)(16-i+1)*c[i] * * After the first iteration we calculate the adler32 checksum for 16 bytes. * * For more background about adler32 please check the RFC: * https://www.ietf.org/rfc/rfc1950.txt */ #ifdef POWER8_VSX_ADLER32 #include <altivec.h> #include "zbuild.h" #include "zutil.h" #include "adler32_p.h" /* Vector across sum unsigned int (saturate). */ inline vector unsigned int vec_sumsu(vector unsigned int __a, vector unsigned int __b) { __b = vec_sld(__a, __a, 8); __b = vec_add(__b, __a); __a = vec_sld(__b, __b, 4); __a = vec_add(__a, __b); return __a; } uint32_t adler32_power8(uint32_t adler, const unsigned char* buf, size_t len) { uint32_t s1 = adler & 0xffff; uint32_t s2 = (adler >> 16) & 0xffff; /* in case user likes doing a byte at a time, keep it fast */ if (UNLIKELY(len == 1)) return adler32_len_1(s1, buf, s2); /* If buffer is empty or len=0 we need to return adler initial value. */ if (UNLIKELY(buf == NULL)) return 1; /* This is faster than VSX code for len < 64. */ if (len < 64) return adler32_len_64(s1, buf, len, s2); /* Use POWER VSX instructions for len >= 64. */ const vector unsigned int v_zeros = { 0 }; const vector unsigned char v_mul = {16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1}; const vector unsigned char vsh = vec_splat_u8(4); const vector unsigned int vmask = {0xffffffff, 0x0, 0x0, 0x0}; vector unsigned int vs1 = { 0 }; vector unsigned int vs2 = { 0 }; vector unsigned int vs1_save = { 0 }; vector unsigned int vsum1, vsum2; vector unsigned char vbuf; int n; vs1[0] = s1; vs2[0] = s2; /* Do length bigger than NMAX in blocks of NMAX size. */ while (len >= NMAX) { len -= NMAX; n = NMAX / 16; do { vbuf = vec_xl(0, (unsigned char *) buf); vsum1 = vec_sum4s(vbuf, v_zeros); /* sum(i=1 to 16) buf[i]. */ /* sum(i=1 to 16) buf[i]*(16-i+1). */ vsum2 = vec_msum(vbuf, v_mul, v_zeros); /* Save vs1. */ vs1_save = vec_add(vs1_save, vs1); /* Accumulate the sums. */ vs1 = vec_add(vsum1, vs1); vs2 = vec_add(vsum2, vs2); buf += 16; } while (--n); /* Once each block of NMAX size. */ vs1 = vec_sumsu(vs1, vsum1); vs1_save = vec_sll(vs1_save, vsh); /* 16*vs1_save. */ vs2 = vec_add(vs1_save, vs2); vs2 = vec_sumsu(vs2, vsum2); /* vs1[0] = (s1_i + sum(i=1 to 16)buf[i]) mod 65521. */ vs1[0] = vs1[0] % BASE; /* vs2[0] = s2_i + 16*s1_save + sum(i=1 to 16)(16-i+1)*buf[i] mod 65521. */ vs2[0] = vs2[0] % BASE; vs1 = vec_and(vs1, vmask); vs2 = vec_and(vs2, vmask); vs1_save = v_zeros; } /* len is less than NMAX one modulo is needed. */ if (len >= 16) { while (len >= 16) { len -= 16; vbuf = vec_xl(0, (unsigned char *) buf); vsum1 = vec_sum4s(vbuf, v_zeros); /* sum(i=1 to 16) buf[i]. */ /* sum(i=1 to 16) buf[i]*(16-i+1). */ vsum2 = vec_msum(vbuf, v_mul, v_zeros); /* Save vs1. */ vs1_save = vec_add(vs1_save, vs1); /* Accumulate the sums. */ vs1 = vec_add(vsum1, vs1); vs2 = vec_add(vsum2, vs2); buf += 16; } /* Since the size will be always less than NMAX we do this once. */ vs1 = vec_sumsu(vs1, vsum1); vs1_save = vec_sll(vs1_save, vsh); /* 16*vs1_save. */ vs2 = vec_add(vs1_save, vs2); vs2 = vec_sumsu(vs2, vsum2); } /* Copy result back to s1, s2 (mod 65521). */ s1 = vs1[0] % BASE; s2 = vs2[0] % BASE; /* Process tail (len < 16).and return */ return adler32_len_16(s1, buf, len, s2); } #endif /* POWER8_VSX_ADLER32 */
the_stack_data/31386627.c
/* * assert.c - diagnostics */ /* $Header$ */ #include <assert.h> #include <stdio.h> #include <stdlib.h> void __bad_assertion(const char *mess) { fputs(mess, stderr); abort(); }
the_stack_data/26755.c
#include <string.h> #include <stdio.h> #include <ctype.h> #include <limits.h> #include <stdint.h> #include <signal.h> #include <assert.h> #include "stdlib.h" /*************************************************************************** * 7.22.1 Numeric conversion functions ***************************************************************************/ int atoi(const char *s) { int n=0, neg=0; while (isspace(*s)) s++; switch (*s) { case '-': neg=1; case '+': s++; } /* Compute n as a negative number to avoid overflow on INT_MIN */ while (isdigit(*s)) n = 10*n - (*s++ - '0'); return neg ? n : -n; } long atol(const char *s) { long n=0; int neg=0; while (isspace(*s)) s++; switch (*s) { case '-': neg=1; case '+': s++; } /* Compute n as a negative number to avoid overflow on LONG_MIN */ while (isdigit(*s)) n = 10*n - (*s++ - '0'); return neg ? n : -n; } long long atoll(const char *s) { long long n=0; int neg=0; while (isspace(*s)) s++; switch (*s) { case '-': neg=1; case '+': s++; } /* Compute n as a negative number to avoid overflow on LLONG_MIN */ while (isdigit(*s)) n = 10*n - (*s++ - '0'); return neg ? n : -n; } double atof(const char *s) { return strtod(s, 0); } // stdio.c long double __strtoxd(const char *s, char **p, int prec); float strtof(const char *restrict s, char **restrict p) { return __strtoxd(s, p, 0); } double strtod(const char *restrict s, char **restrict p) { return __strtoxd(s, p, 1); } long double strtold(const char *restrict s, char **restrict p) { return __strtoxd(s, p, 2); } // stdio.c unsigned long long __strtox(const char *, char **, int, unsigned long long); unsigned long long strtoull(const char *restrict s, char **restrict p, int base) { return __strtox(s, p, base, ULLONG_MAX); } long long strtoll(const char *restrict s, char **restrict p, int base) { return __strtox(s, p, base, LLONG_MIN); } unsigned long strtoul(const char *restrict s, char **restrict p, int base) { return __strtox(s, p, base, ULONG_MAX); } long strtol(const char *restrict s, char **restrict p, int base) { return __strtox(s, p, base, 0UL+LONG_MIN); } /*************************************************************************** * 7.22.2 Pseudo-random sequence generation functions ***************************************************************************/ static unsigned long int __seed = 1; int rand(void) { __seed = __seed * 1103515245 + 12345; return (unsigned int)(__seed/65536) % RAND_MAX; } void srand(unsigned int seed) { __seed = seed; } /*************************************************************************** * 7.22.3 Memory management functions ***************************************************************************/ void *calloc(size_t nmemb, size_t size) { unsigned char *ret; ret = malloc(nmemb * size); if (!ret) return ret; for (int i=0; i < nmemb*size; i++) ret[i] = 0; return ret; } /*************************************************************************** * 7.22.4 Communication with the environment ***************************************************************************/ _Noreturn void abort(void) { raise(SIGABRT); _Exit(127); } /* Ensure that at least 32 atexit handlers can be registered without malloc */ #define COUNT 32 static struct fl { struct fl *next; void (*f[COUNT])(void *); void *a[COUNT]; } builtin, *head; static int slot; static void __funcs_on_exit() { void (*func)(void *), *arg; for (; head; head=head->next, slot=COUNT) while(slot-->0) { func = head->f[slot]; arg = head->a[slot]; func(arg); } } int __cxa_atexit(void (*func)(void *), void *arg, void *dso) { /* Defer initialization of head so it can be in BSS */ if (!head) head = &builtin; /* If the current function list is full, add a new one */ if (slot==COUNT) { struct fl *new_fl = calloc(sizeof(struct fl), 1); if (!new_fl) { return -1; } new_fl->next = head; head = new_fl; slot = 0; } /* Append function to the list. */ head->f[slot] = func; head->a[slot] = arg; slot++; return 0; } static void call(void *p) { ((void (*)(void))(uintptr_t)p)(); } int atexit(void (*func)(void)) { return __cxa_atexit(call, (void *)(uintptr_t)func, 0); } static void (*funcs[COUNT])(void); static int count; static void __funcs_on_quick_exit() { void (*func)(void); while (count > 0) { func = funcs[--count]; func(); } } int at_quick_exit(void (*func)(void)) { int r = 0; if (count == 32) r = -1; else funcs[count++] = func; return r; } _Noreturn void exit(int code) { __funcs_on_exit(); _Exit(code); } _Noreturn void quick_exit(int code) { __funcs_on_quick_exit(); _Exit(code); } _Noreturn void _Exit(int ec) { _Noreturn void __builtin_exit(int); __builtin_exit(ec); } // TODO: not sure about this!! // I might need to include as a Cerberus variable static char **__environ; static char *__strchrnul(const char *s, int c) { c = (unsigned char)c; if (!c) return (char *)s + strlen(s); for (; *s && *(unsigned char *)s != c; s++); return (char *)s; } char *getenv(const char *name) { size_t l = __strchrnul(name, '=') - (char*)name; if (l && !name[l] && __environ) for (char **e = __environ; *e; e++) if (!strncmp(name, *e, l) && l[*e] == '=') return *e + l+1; return 0; } int system(const char *string) { // Command processor is not available in Cerberus. return 0; } /*************************************************************************** * 7.22.5 Searching and sorting utilities ***************************************************************************/ void *bsearch(const void *key, const void *base, size_t nel, size_t width, int (*cmp)(const void *, const void *)) { void *try; int sign; while (nel > 0) { try = (char *)base + width*(nel/2); sign = cmp(key, try); if (sign < 0) { nel /= 2; } else if (sign > 0) { base = (char *)try + width; nel -= nel/2+1; } else { return try; } } return NULL; } #define a_ctz_32 a_ctz_32 static inline int a_ctz_32(uint32_t x) { static const char debruijn32[32] = { 0, 1, 23, 2, 29, 24, 19, 3, 30, 27, 25, 11, 20, 8, 4, 13, 31, 22, 28, 18, 26, 10, 7, 12, 21, 17, 9, 6, 16, 5, 15, 14 }; return debruijn32[(x&-x)*0x076be629 >> 27]; } #define a_ctz_64 a_ctz_64 static inline int a_ctz_64(uint64_t x) { static const char debruijn64[64] = { 0, 1, 2, 53, 3, 7, 54, 27, 4, 38, 41, 8, 34, 55, 48, 28, 62, 5, 39, 46, 44, 42, 22, 9, 24, 35, 59, 56, 49, 18, 29, 11, 63, 52, 6, 26, 37, 40, 33, 47, 61, 45, 43, 21, 23, 58, 17, 10, 51, 25, 36, 32, 60, 20, 57, 16, 50, 31, 19, 15, 30, 14, 13, 12 }; if (sizeof(long) < 8) { uint32_t y = x; if (!y) { y = x>>32; return 32 + a_ctz_32(y); } return a_ctz_32(y); } return debruijn64[(x&-x)*0x022fdd63cc95386dull >> 58]; } static inline int a_ctz_l(unsigned long x) { return (sizeof(long) < 8) ? a_ctz_32(x) : a_ctz_64(x); } #define ntz(x) a_ctz_l((x)) typedef int (*cmpfun)(const void *, const void *); static inline int pntz(size_t p[2]) { int r = ntz(p[0] - 1); if(r != 0 || (r = 8*sizeof(size_t) + ntz(p[1])) != 8*sizeof(size_t)) { return r; } return 0; } static void cycle(size_t width, unsigned char* ar[], int n) { unsigned char tmp[256]; size_t l; int i; if(n < 2) { return; } ar[n] = tmp; while(width) { l = sizeof(tmp) < width ? sizeof(tmp) : width; memcpy(ar[n], ar[0], l); for(i = 0; i < n; i++) { memcpy(ar[i], ar[i + 1], l); ar[i] += l; } width -= l; } } /* shl() and shr() need n > 0 */ static inline void shl(size_t p[2], int n) { if(n >= 8 * sizeof(size_t)) { n -= 8 * sizeof(size_t); p[1] = p[0]; p[0] = 0; } p[1] <<= n; p[1] |= p[0] >> (sizeof(size_t) * 8 - n); p[0] <<= n; } static inline void shr(size_t p[2], int n) { if(n >= 8 * sizeof(size_t)) { n -= 8 * sizeof(size_t); p[0] = p[1]; p[1] = 0; } p[0] >>= n; p[0] |= p[1] << (sizeof(size_t) * 8 - n); p[1] >>= n; } static void sift(unsigned char *head, size_t width, cmpfun cmp, int pshift, size_t lp[]) { unsigned char *rt, *lf; unsigned char *ar[14 * sizeof(size_t) + 1]; int i = 1; ar[0] = head; while(pshift > 1) { rt = head - width; lf = head - width - lp[pshift - 2]; if((*cmp)(ar[0], lf) >= 0 && (*cmp)(ar[0], rt) >= 0) { break; } if((*cmp)(lf, rt) >= 0) { ar[i++] = lf; head = lf; pshift -= 1; } else { ar[i++] = rt; head = rt; pshift -= 2; } } cycle(width, ar, i); } static void trinkle(unsigned char *head, size_t width, cmpfun cmp, size_t pp[2], int pshift, int trusty, size_t lp[]) { unsigned char *stepson, *rt, *lf; size_t p[2]; unsigned char *ar[14 * sizeof(size_t) + 1]; int i = 1; int trail; p[0] = pp[0]; p[1] = pp[1]; ar[0] = head; while(p[0] != 1 || p[1] != 0) { stepson = head - lp[pshift]; if((*cmp)(stepson, ar[0]) <= 0) { break; } if(!trusty && pshift > 1) { rt = head - width; lf = head - width - lp[pshift - 2]; if((*cmp)(rt, stepson) >= 0 || (*cmp)(lf, stepson) >= 0) { break; } } ar[i++] = stepson; head = stepson; trail = pntz(p); shr(p, trail); pshift += trail; trusty = 0; } if(!trusty) { cycle(width, ar, i); sift(head, width, cmp, pshift, lp); } } void qsort(void *base, size_t nel, size_t width, cmpfun cmp) { size_t lp[12*sizeof(size_t)]; size_t i, size = width * nel; unsigned char *head, *high; size_t p[2] = {1, 0}; int pshift = 1; int trail; if (!size) return; head = base; high = head + size - width; /* Precompute Leonardo numbers, scaled by element width */ for(lp[0]=lp[1]=width, i=2; (lp[i]=lp[i-2]+lp[i-1]+width) < size; i++); while(head < high) { if((p[0] & 3) == 3) { sift(head, width, cmp, pshift, lp); shr(p, 2); pshift += 2; } else { if(lp[pshift - 1] >= high - head) { trinkle(head, width, cmp, p, pshift, 0, lp); } else { sift(head, width, cmp, pshift, lp); } if(pshift == 1) { shl(p, 1); pshift = 0; } else { shl(p, pshift - 1); pshift = 1; } } p[0] |= 1; head += width; } trinkle(head, width, cmp, p, pshift, 0, lp); while(pshift != 1 || p[0] != 1 || p[1] != 0) { if(pshift <= 1) { trail = pntz(p); shr(p, trail); pshift += trail; } else { shl(p, 2); pshift -= 2; p[0] ^= 7; shr(p, 1); trinkle(head - lp[pshift] - width, width, cmp, p, pshift + 1, 1, lp); shl(p, 1); p[0] |= 1; trinkle(head - width, width, cmp, p, pshift, 1, lp); } head -= width; } } /*************************************************************************** * 7.22.6 Integer arithmetic functions ***************************************************************************/ int abs(int a) { return a>0 ? a : -a; } long labs(long a) { return a>0 ? a : -a; } long long llabs(long long a) { return a>0 ? a : -a; } div_t div(int num, int den) { return (div_t){ num/den, num%den }; } ldiv_t ldiv(long num, long den) { return (ldiv_t){ num/den, num%den }; } lldiv_t lldiv(long long num, long long den) { return (lldiv_t){ num/den, num%den }; } /*************************************************************************** * 7.22.7 Multibyte/wide character conversion functions ***************************************************************************/ int mblen(const char *s, size_t n) { assert(0 && "not supported"); _Exit(127); } int mbtowc(wchar_t * restrict pwc, const char * restrict s, size_t n) { assert(0 && "not supported"); _Exit(127); } int wctomb(char *s, wchar_t wchar) { assert(0 && "not supported"); _Exit(127); } /*************************************************************************** * 7.22.8 Multibyte/wide string conversion functions ***************************************************************************/ size_t mbstowcs(wchar_t * restrict pwcs, const char * restrict s, size_t n) { assert(0 && "not supported"); _Exit(127); } size_t wcstombs(char * restrict s, const wchar_t * restrict pwcs, size_t n) { assert(0 && "not supported"); _Exit(127); }
the_stack_data/145453678.c
#include <stdio.h> #include <signal.h> #include <setjmp.h> #include <string.h> #include <assert.h> static jmp_buf env_sigtrap; static void handler_sigtrap ( int x ) { longjmp(env_sigtrap,1); } void try ( char* who, void(*maybe_traps)(long), long arg ) { struct sigaction tmp_act; int r, trapped = 0; memset(&tmp_act, 0, sizeof(tmp_act)); tmp_act.sa_handler = handler_sigtrap; sigemptyset(&tmp_act.sa_mask); tmp_act.sa_flags = SA_NODEFER; r = sigaction(SIGTRAP, &tmp_act, NULL); assert(r == 0); if (setjmp(env_sigtrap)) { trapped = 1; } else { maybe_traps(arg); } signal(SIGTRAP, SIG_DFL); printf("%s(%4lld) -> %s\n", who, (long long int)arg, trapped ? "TRAP" : "no trap" ); } static void twi_0_neg100 ( long n ) { __asm__ __volatile__("twi 0, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_1_neg100 ( long n ) { __asm__ __volatile__("twi 1, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_2_neg100 ( long n ) { __asm__ __volatile__("twi 2, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_3_neg100 ( long n ) { __asm__ __volatile__("twi 3, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_4_neg100 ( long n ) { __asm__ __volatile__("twi 4, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_5_neg100 ( long n ) { __asm__ __volatile__("twi 5, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_6_neg100 ( long n ) { __asm__ __volatile__("twi 6, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_7_neg100 ( long n ) { __asm__ __volatile__("twi 7, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_8_neg100 ( long n ) { __asm__ __volatile__("twi 8, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_9_neg100 ( long n ) { __asm__ __volatile__("twi 9, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_10_neg100 ( long n ) { __asm__ __volatile__("twi 10, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_11_neg100 ( long n ) { __asm__ __volatile__("twi 11, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_12_neg100 ( long n ) { __asm__ __volatile__("twi 12, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_13_neg100 ( long n ) { __asm__ __volatile__("twi 13, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_14_neg100 ( long n ) { __asm__ __volatile__("twi 14, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_15_neg100 ( long n ) { __asm__ __volatile__("twi 15, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_16_neg100 ( long n ) { __asm__ __volatile__("twi 16, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_17_neg100 ( long n ) { __asm__ __volatile__("twi 17, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_18_neg100 ( long n ) { __asm__ __volatile__("twi 18, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_19_neg100 ( long n ) { __asm__ __volatile__("twi 19, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_20_neg100 ( long n ) { __asm__ __volatile__("twi 20, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_21_neg100 ( long n ) { __asm__ __volatile__("twi 21, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_22_neg100 ( long n ) { __asm__ __volatile__("twi 22, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_23_neg100 ( long n ) { __asm__ __volatile__("twi 23, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_24_neg100 ( long n ) { __asm__ __volatile__("twi 24, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_25_neg100 ( long n ) { __asm__ __volatile__("twi 25, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_26_neg100 ( long n ) { __asm__ __volatile__("twi 26, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_27_neg100 ( long n ) { __asm__ __volatile__("twi 27, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_28_neg100 ( long n ) { __asm__ __volatile__("twi 28, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_29_neg100 ( long n ) { __asm__ __volatile__("twi 29, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_30_neg100 ( long n ) { __asm__ __volatile__("twi 30, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void twi_31_neg100 ( long n ) { __asm__ __volatile__("twi 31, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } #if defined(__powerpc64__) static void tdi_0_neg100 ( long n ) { __asm__ __volatile__("tdi 0, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_1_neg100 ( long n ) { __asm__ __volatile__("tdi 1, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_2_neg100 ( long n ) { __asm__ __volatile__("tdi 2, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_3_neg100 ( long n ) { __asm__ __volatile__("tdi 3, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_4_neg100 ( long n ) { __asm__ __volatile__("tdi 4, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_5_neg100 ( long n ) { __asm__ __volatile__("tdi 5, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_6_neg100 ( long n ) { __asm__ __volatile__("tdi 6, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_7_neg100 ( long n ) { __asm__ __volatile__("tdi 7, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_8_neg100 ( long n ) { __asm__ __volatile__("tdi 8, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_9_neg100 ( long n ) { __asm__ __volatile__("tdi 9, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_10_neg100 ( long n ) { __asm__ __volatile__("tdi 10, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_11_neg100 ( long n ) { __asm__ __volatile__("tdi 11, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_12_neg100 ( long n ) { __asm__ __volatile__("tdi 12, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_13_neg100 ( long n ) { __asm__ __volatile__("tdi 13, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_14_neg100 ( long n ) { __asm__ __volatile__("tdi 14, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_15_neg100 ( long n ) { __asm__ __volatile__("tdi 15, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_16_neg100 ( long n ) { __asm__ __volatile__("tdi 16, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_17_neg100 ( long n ) { __asm__ __volatile__("tdi 17, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_18_neg100 ( long n ) { __asm__ __volatile__("tdi 18, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_19_neg100 ( long n ) { __asm__ __volatile__("tdi 19, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_20_neg100 ( long n ) { __asm__ __volatile__("tdi 20, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_21_neg100 ( long n ) { __asm__ __volatile__("tdi 21, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_22_neg100 ( long n ) { __asm__ __volatile__("tdi 22, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_23_neg100 ( long n ) { __asm__ __volatile__("tdi 23, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_24_neg100 ( long n ) { __asm__ __volatile__("tdi 24, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_25_neg100 ( long n ) { __asm__ __volatile__("tdi 25, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_26_neg100 ( long n ) { __asm__ __volatile__("tdi 26, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_27_neg100 ( long n ) { __asm__ __volatile__("tdi 27, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_28_neg100 ( long n ) { __asm__ __volatile__("tdi 28, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_29_neg100 ( long n ) { __asm__ __volatile__("tdi 29, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_30_neg100 ( long n ) { __asm__ __volatile__("tdi 30, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } static void tdi_31_neg100 ( long n ) { __asm__ __volatile__("tdi 31, %0,-100" : /*out*/ : /*in*/ "r" (n) ); } #endif int main ( void ) { #define TWI_GROUP(cmp) \ try("twi_" #cmp "_neg100", twi_##cmp##_neg100, -150); \ try("twi_" #cmp "_neg100", twi_##cmp##_neg100, -100); \ try("twi_" #cmp "_neg100", twi_##cmp##_neg100, -50); TWI_GROUP(0); TWI_GROUP(1); TWI_GROUP(2); TWI_GROUP(3); TWI_GROUP(4); TWI_GROUP(5); TWI_GROUP(6); TWI_GROUP(7); TWI_GROUP(8); TWI_GROUP(9); TWI_GROUP(10); TWI_GROUP(11); TWI_GROUP(12); TWI_GROUP(13); TWI_GROUP(14); TWI_GROUP(15); TWI_GROUP(16); TWI_GROUP(17); TWI_GROUP(18); TWI_GROUP(19); TWI_GROUP(20); TWI_GROUP(21); TWI_GROUP(22); TWI_GROUP(23); TWI_GROUP(24); TWI_GROUP(25); TWI_GROUP(26); TWI_GROUP(27); TWI_GROUP(28); TWI_GROUP(29); TWI_GROUP(30); TWI_GROUP(31); #if defined(__powerpc64__) #define TDI_GROUP(cmp) \ try("tdi_" #cmp "_neg100", tdi_##cmp##_neg100, -150); \ try("tdi_" #cmp "_neg100", tdi_##cmp##_neg100, -100); \ try("tdi_" #cmp "_neg100", tdi_##cmp##_neg100, -50); TDI_GROUP(0); TDI_GROUP(1); TDI_GROUP(2); TDI_GROUP(3); TDI_GROUP(4); TDI_GROUP(5); TDI_GROUP(6); TDI_GROUP(7); TDI_GROUP(8); TDI_GROUP(9); TDI_GROUP(10); TDI_GROUP(11); TDI_GROUP(12); TDI_GROUP(13); TDI_GROUP(14); TDI_GROUP(15); TDI_GROUP(16); TDI_GROUP(17); TDI_GROUP(18); TDI_GROUP(19); TDI_GROUP(20); TDI_GROUP(21); TDI_GROUP(22); TDI_GROUP(23); TDI_GROUP(24); TDI_GROUP(25); TDI_GROUP(26); TDI_GROUP(27); TDI_GROUP(28); TDI_GROUP(29); TDI_GROUP(30); TDI_GROUP(31); #endif return 0; }
the_stack_data/100141755.c
float doZVDShaping(float unshapedVelocity) { /* ------------------------------------------------------------------------ Function that does input shaping for a single axis The shaper is hard-coded into the function for now, will probably be better to pass it as a parameter later (func will be more reusable). The function takes in an unshaped velocity reference command for the current timestep and returns the shaped velocity for the current timestep, while propagating the later impulses into a buffer for future output. Arguments: * float unshaped_velocity : the unshaped velocity command at current timestep Returns: * float shaped_velocity : the input shaped velocity at the current timestop * NOTE: Also saves the future input into a buffer from the curent input dependent on shaper parameters Created: 02/07/16 - Joshua Vaughan - [email protected] Modified: * -------------------------------------------------------------------------*/ // ZVD-shaper for undamped system float TAU = 0.5; // damped period (s) int NUM_IMPULSES = 3; // the number of shaper impulses float AMPS[3] = {0.25, 0.5, 0.25}; // shaper impulse amplitudes float TIMES[3] = {0.0, 0.5 * TAU, TAU}; // shaper impulse times (s) // buffer length should be 2x shaper duration (sec.) * samples/sec at min // could be just the shaper length, but have to be more elegant to execute #define BUFFER_LENGTH (151) // Define the buffer to fill with shaped values static float shaped_output_buffer[BUFFER_LENGTH]; // Define the two buffer locations, the impulse1 location can also be // thought of as the "current" output location, the impulse2 location // is offset by the time of the the impulse (* samples/s) // Each of these locations gets updated each time the function is called static int impulse1_buffer_pos = -1; // The impulse1 buffer position static int impulse2_buffer_pos = 49; // The impulse2 buffer position static int impulse3_buffer_pos = 99; // The impulse3 buffer position // Increment the current positions in the buffer impulse1_buffer_pos++; impulse2_buffer_pos++; impulse3_buffer_pos++; // For the first impulse, check that there is enough room in the buffer // If not, wrap to the beginning and overwrite if (impulse1_buffer_pos > BUFFER_LENGTH) { //printf("\n Wrapping 1st impulse \n"); impulse1_buffer_pos = 0; } // First impulse happens immediately, add it to the current buffer location shaped_output_buffer[impulse1_buffer_pos] += AMPS[0] * unshapedVelocity; // For the second impulse, check that there is enough room in the buffer // If not, wrap to the beginning and overwrite if (impulse2_buffer_pos > BUFFER_LENGTH) { // printf("\n Wrapping 2nd impulse \n"); impulse2_buffer_pos = 0; } // Add the second impulse portion to the correct buffer location shaped_output_buffer[impulse2_buffer_pos] += AMPS[1] * unshapedVelocity; // For the third impulse, check that there is enough room in the buffer // If not, wrap to the beginning and overwrite if (impulse3_buffer_pos > BUFFER_LENGTH) { // printf("\n Wrapping 2nd impulse \n"); impulse3_buffer_pos = 0; } // Add the third impulse portion to the correct buffer location shaped_output_buffer[impulse3_buffer_pos] += AMPS[2] * unshapedVelocity; // set up the current output float current_shaped_output = shaped_output_buffer[impulse1_buffer_pos]; // clear the current position in the buffer, because it's been used shaped_output_buffer[impulse1_buffer_pos] = 0; return current_shaped_output; }
the_stack_data/92325737.c
#include <stdio.h> typedef enum{false,true}bool; int find_longest_word(char[]); char* strTok(char*,const char*); int strLen(const char*); int main(void) { char str[] = "The Silmarillion is a collection of mythopoeic works by English write J. R. R. Tolkien, edited and published posthumously by his son, Christopher Tolkien, in 1977, with assistance from Guy Gavriel Kay. The Silmarillion, incomplete, narrative that describes the universe of Ea in which are found the lands of Valinor, Beleriand, Numenor, and Middle-earth, within which The Hobbit and The Lord of the Rings take place."; find_longest_word(str); return 0; } int find_longest_word(char text[]) { int len=0,maxLen=0; char* word = NULL , *theLongestWord = NULL , *txt = text; bool exit = false; for(int i=0 ; (word = strTok(txt," .,")) ;) { if(word && (len = strLen(word)) > maxLen) { theLongestWord = word; maxLen = len; } if(i == 0) txt = NULL , ++i; } printf("The longest word is %s with the number of %d letters.\n",theLongestWord,maxLen); return maxLen; } char* strTok(char* str, const char* delim) { static char* buff = NULL; if(str) buff = str; if(!buff || *buff == '\0') return NULL; char* ret = buff; for(char* i = buff ; *i ; ++i) for(const char* j = delim ; *j ; ++j) if(*i == *j) { *i = '\0'; buff = i+1; if(i == ret) { ++ret; continue; } return ret; } for(; *buff ; ++buff); return ret; } int strLen(const char* str) { int len=0; while(str[len]) ++len; return len; }
the_stack_data/190768309.c
#include <stdio.h> #include <stdlib.h> #include <pthread.h> #include <errno.h> #include <unistd.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <signal.h> #include <sys/un.h> /* Socket name for PSCTRL. */ #define UNIX_DOMAIN "/tmp/psctrl_l1c" /* fd for psctl socket. */ int g_psctl_server_fd = -1; int g_psctl_client_fd = -1; #define UINT8 unsigned char /* * Note: This structure is a duplicate of _SOCK_MSG_HEADER_DPDK_T * from this file: * 5gnb_code\01.app\common\sock_lib\inc\sock_msg.h */ typedef struct _PSCTL_SOCK_MSG_HEADER_T{ /* Need to remove fd's length, so read data length eq. sizeof(PSCTL_SOCK_MSG_HEADER_T) - sizeof(INT32). */ #if 0 INT32 sock_fd; /**< the socket fd received to/from */ #endif UINT8 msg_len_low; /**< low 8bits of length of msg data */ UINT8 msg_len_high; /**< high 8bits of length of msg data */ UINT8 msg_group; /**< config msg group */ UINT8 msg_id; /**< config msg id */ }PSCTL_SOCK_MSG_HEADER_T; typedef struct _PsCtl_Socket_Msg_T{ PSCTL_SOCK_MSG_HEADER_T header; void *payload; }PsCtl_Socket_Msg_T; int main (void) { unsigned int cnt = 0; int srv_fd_flags = 0; #if 0 /* init server socket */ g_psctl_server_fd = socket(PF_UNIX, SOCK_STREAM, 0); if (g_psctl_server_fd < 0) { L2_UXM_E("fail to create psctl server socket"); return L2_ERR_RES; } /* set NON-BLOCK socket */ srv_fd_flags = fcntl(g_psctl_server_fd, F_GETFL, 0); srv_fd_flags |= O_NONBLOCK; if (-1 == fcntl(g_psctl_server_fd, F_SETFL, srv_fd_flags)) { L2_UXM_E("fail to modify psctl server socket"); return L2_ERR_RES; } /* set srv addr */ memset(&srv_addr, 0, sizeof(struct sockaddr_un)); srv_addr.sun_family = AF_UNIX; strncpy(srv_addr.sun_path, CFG_PSCTRL_L1C_SOCK_NAME, sizeof(srv_addr.sun_path) - 1); unlink(CFG_PSCTRL_L1C_SOCK_NAME); /* bind srv addr */ if (-1 == bind(g_psctl_server_fd, (struct sockaddr *)&srv_addr, sizeof(srv_addr))) { L2_UXM_E("fail to bind svr socket"); close(g_psctl_server_fd); unlink(CFG_PSCTRL_L1C_SOCK_NAME); return L2_ERR_RES; } /* listen srv fd */ if (-1 == listen(g_psctl_server_fd, 1)) { L2_UXM_E("fail to listen svr socket"); close(g_psctl_server_fd); unlink(CFG_PSCTRL_L1C_SOCK_NAME); return L2_ERR_RES; } #else struct sockaddr_un serverAddr; /* init server socket */ g_psctl_server_fd = socket(PF_UNIX, SOCK_STREAM, 0); if (g_psctl_server_fd < 0) { printf("fail to create psctl server socket"); } /* * Connect to server. */ memset(&serverAddr, 0, sizeof(serverAddr)); serverAddr.sun_family = AF_LOCAL;/* AF_UNIX */ strncpy(serverAddr.sun_path, UNIX_DOMAIN, sizeof(serverAddr.sun_path)); if (connect(g_psctl_server_fd, (struct sockaddr *) &serverAddr, sizeof(serverAddr)) != 0) { printf("SOCKMSG : inter-process socket (%d) connect() failed in sockmsg_tcp_client_start_service\n",g_psctl_server_fd); close(g_psctl_server_fd); g_psctl_server_fd = -1; } #endif while (1) { PsCtl_Socket_Msg_T shotmsg; unsigned char pl[10]; unsigned char i = 0; unsigned short dwByteSend = 0; unsigned short dwByteExLen = 0; for(i =0; i < 10; i++){ pl[i] = 10 + i; } memset(&shotmsg, 0, sizeof(PsCtl_Socket_Msg_T)); shotmsg.header.msg_group = 12; shotmsg.header.msg_id = 13; shotmsg.header.msg_len_high = 01; shotmsg.header.msg_len_low = 02; shotmsg.payload = pl; dwByteExLen = sizeof(PsCtl_Socket_Msg_T) + 10; dwByteSend = write(g_psctl_server_fd, (void *)&shotmsg, dwByteExLen); if(dwByteSend != dwByteExLen){ printf("Error: dwByteSend = %d, dwByteExLen = %d\n", dwByteSend, dwByteExLen); } printf("Hello world(%d).\n", cnt++);/* code */ sleep(1); } } /* End of this file. */
the_stack_data/232956333.c
/* File generated automatically by the QuickJS compiler. */ #include <inttypes.h> const uint32_t qjsc_qjscalc_size = 31967; const uint8_t qjsc_qjscalc[31967] = { 0x02, 0xba, 0x02, 0x0e, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x65, 0x72, 0x0a, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x10, 0x46, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0e, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x06, 0x4d, 0x6f, 0x64, 0x14, 0x50, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x0e, 0x50, 0x6f, 0x6c, 0x79, 0x4d, 0x6f, 0x64, 0x20, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0c, 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x0c, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x02, 0x49, 0x02, 0x58, 0x02, 0x4f, 0x06, 0x67, 0x63, 0x64, 0x08, 0x66, 0x61, 0x63, 0x74, 0x08, 0x63, 0x6f, 0x6d, 0x62, 0x08, 0x70, 0x6d, 0x6f, 0x64, 0x0c, 0x69, 0x6e, 0x76, 0x6d, 0x6f, 0x64, 0x0c, 0x66, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x0e, 0x69, 0x73, 0x70, 0x72, 0x69, 0x6d, 0x65, 0x12, 0x6e, 0x65, 0x78, 0x74, 0x70, 0x72, 0x69, 0x6d, 0x65, 0x0a, 0x64, 0x65, 0x72, 0x69, 0x76, 0x0a, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x0a, 0x6e, 0x6f, 0x72, 0x6d, 0x32, 0x06, 0x61, 0x62, 0x73, 0x08, 0x63, 0x6f, 0x6e, 0x6a, 0x06, 0x61, 0x72, 0x67, 0x0e, 0x69, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x65, 0x0a, 0x74, 0x72, 0x75, 0x6e, 0x63, 0x0a, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x08, 0x63, 0x65, 0x69, 0x6c, 0x08, 0x73, 0x71, 0x72, 0x74, 0x06, 0x65, 0x78, 0x70, 0x06, 0x6c, 0x6f, 0x67, 0x08, 0x6c, 0x6f, 0x67, 0x32, 0x0a, 0x6c, 0x6f, 0x67, 0x31, 0x30, 0x08, 0x74, 0x6f, 0x64, 0x62, 0x0c, 0x66, 0x72, 0x6f, 0x6d, 0x64, 0x62, 0x06, 0x73, 0x69, 0x6e, 0x06, 0x63, 0x6f, 0x73, 0x06, 0x74, 0x61, 0x6e, 0x08, 0x61, 0x73, 0x69, 0x6e, 0x08, 0x61, 0x63, 0x6f, 0x73, 0x08, 0x61, 0x74, 0x61, 0x6e, 0x0a, 0x61, 0x74, 0x61, 0x6e, 0x32, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x0a, 0x74, 0x6f, 0x64, 0x65, 0x67, 0x0e, 0x66, 0x72, 0x6f, 0x6d, 0x64, 0x65, 0x67, 0x08, 0x73, 0x69, 0x6e, 0x68, 0x08, 0x63, 0x6f, 0x73, 0x68, 0x08, 0x74, 0x61, 0x6e, 0x68, 0x0a, 0x61, 0x73, 0x69, 0x6e, 0x68, 0x0a, 0x61, 0x63, 0x6f, 0x73, 0x68, 0x0a, 0x61, 0x74, 0x61, 0x6e, 0x68, 0x0e, 0x73, 0x69, 0x67, 0x6d, 0x6f, 0x69, 0x64, 0x08, 0x6c, 0x65, 0x72, 0x70, 0x06, 0x69, 0x64, 0x6e, 0x08, 0x64, 0x69, 0x61, 0x67, 0x0a, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65, 0x10, 0x63, 0x68, 0x61, 0x72, 0x70, 0x6f, 0x6c, 0x79, 0x12, 0x65, 0x69, 0x67, 0x65, 0x6e, 0x76, 0x61, 0x6c, 0x73, 0x06, 0x64, 0x65, 0x74, 0x08, 0x72, 0x61, 0x6e, 0x6b, 0x06, 0x6b, 0x65, 0x72, 0x04, 0x63, 0x70, 0x04, 0x64, 0x70, 0x10, 0x70, 0x6f, 0x6c, 0x72, 0x6f, 0x6f, 0x74, 0x73, 0x10, 0x62, 0x65, 0x73, 0x74, 0x61, 0x70, 0x70, 0x72, 0x14, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x10, 0x75, 0x73, 0x65, 0x20, 0x6d, 0x61, 0x74, 0x68, 0x04, 0x50, 0x49, 0x0e, 0x69, 0x73, 0x50, 0x72, 0x69, 0x6d, 0x65, 0x12, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x72, 0x69, 0x6d, 0x65, 0x0a, 0x72, 0x6f, 0x6f, 0x74, 0x73, 0x14, 0x71, 0x6a, 0x73, 0x63, 0x61, 0x6c, 0x63, 0x2e, 0x6a, 0x73, 0x12, 0x61, 0x64, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x73, 0x1a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x5f, 0x73, 0x65, 0x74, 0x16, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x69, 0x63, 0x5f, 0x70, 0x6f, 0x77, 0x18, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x65, 0x73, 0x22, 0x6d, 0x69, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x72, 0x61, 0x62, 0x69, 0x6e, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x10, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x18, 0x66, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x64, 0x64, 0x18, 0x66, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x75, 0x62, 0x18, 0x66, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x75, 0x6c, 0x18, 0x66, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x69, 0x76, 0x18, 0x66, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x6f, 0x64, 0x16, 0x66, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x71, 0x16, 0x66, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x74, 0x12, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x12, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x73, 0x75, 0x62, 0x12, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x6d, 0x75, 0x6c, 0x12, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x64, 0x69, 0x76, 0x12, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x12, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x70, 0x6f, 0x77, 0x10, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x71, 0x10, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x6c, 0x74, 0x12, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x5f, 0x74, 0x61, 0x62, 0x12, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x16, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x5f, 0x61, 0x64, 0x64, 0x16, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x5f, 0x73, 0x75, 0x62, 0x16, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x5f, 0x6d, 0x75, 0x6c, 0x16, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x5f, 0x64, 0x69, 0x76, 0x14, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x5f, 0x65, 0x71, 0x0e, 0x6d, 0x6f, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x0e, 0x6d, 0x6f, 0x64, 0x5f, 0x73, 0x75, 0x62, 0x0e, 0x6d, 0x6f, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x0e, 0x6d, 0x6f, 0x64, 0x5f, 0x64, 0x69, 0x76, 0x0c, 0x6d, 0x6f, 0x64, 0x5f, 0x65, 0x71, 0x28, 0x70, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x5f, 0x69, 0x73, 0x5f, 0x73, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x22, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x6e, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x22, 0x6d, 0x6f, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x5f, 0x74, 0x6f, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x26, 0x70, 0x6f, 0x6c, 0x79, 0x5f, 0x72, 0x6f, 0x6f, 0x74, 0x5f, 0x6c, 0x61, 0x67, 0x75, 0x65, 0x72, 0x72, 0x65, 0x31, 0x14, 0x70, 0x6f, 0x6c, 0x79, 0x5f, 0x72, 0x6f, 0x6f, 0x74, 0x73, 0x1c, 0x70, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x5f, 0x61, 0x64, 0x64, 0x1c, 0x70, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x5f, 0x73, 0x75, 0x62, 0x1c, 0x70, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x5f, 0x6d, 0x75, 0x6c, 0x2a, 0x70, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x5f, 0x64, 0x69, 0x76, 0x5f, 0x73, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x1c, 0x70, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x5f, 0x64, 0x69, 0x76, 0x1c, 0x70, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x5f, 0x6d, 0x6f, 0x64, 0x1a, 0x70, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x5f, 0x65, 0x71, 0x16, 0x70, 0x6f, 0x6c, 0x79, 0x6d, 0x6f, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x16, 0x70, 0x6f, 0x6c, 0x79, 0x6d, 0x6f, 0x64, 0x5f, 0x73, 0x75, 0x62, 0x16, 0x70, 0x6f, 0x6c, 0x79, 0x6d, 0x6f, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x16, 0x70, 0x6f, 0x6c, 0x79, 0x6d, 0x6f, 0x64, 0x5f, 0x64, 0x69, 0x76, 0x14, 0x70, 0x6f, 0x6c, 0x79, 0x6d, 0x6f, 0x64, 0x5f, 0x65, 0x71, 0x16, 0x72, 0x61, 0x74, 0x66, 0x75, 0x6e, 0x63, 0x5f, 0x61, 0x64, 0x64, 0x16, 0x72, 0x61, 0x74, 0x66, 0x75, 0x6e, 0x63, 0x5f, 0x73, 0x75, 0x62, 0x16, 0x72, 0x61, 0x74, 0x66, 0x75, 0x6e, 0x63, 0x5f, 0x6d, 0x75, 0x6c, 0x16, 0x72, 0x61, 0x74, 0x66, 0x75, 0x6e, 0x63, 0x5f, 0x64, 0x69, 0x76, 0x14, 0x72, 0x61, 0x74, 0x66, 0x75, 0x6e, 0x63, 0x5f, 0x65, 0x71, 0x10, 0x67, 0x65, 0x74, 0x5f, 0x65, 0x6d, 0x69, 0x6e, 0x3c, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x5f, 0x69, 0x73, 0x5f, 0x73, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x5f, 0x6f, 0x72, 0x5f, 0x70, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x14, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x5f, 0x61, 0x64, 0x64, 0x14, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x5f, 0x73, 0x75, 0x62, 0x14, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x5f, 0x6d, 0x75, 0x6c, 0x14, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x5f, 0x64, 0x69, 0x76, 0x14, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x5f, 0x70, 0x6f, 0x77, 0x12, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x5f, 0x65, 0x71, 0x12, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x61, 0x64, 0x64, 0x12, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x73, 0x75, 0x62, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x73, 0x63, 0x61, 0x6c, 0x61, 0x72, 0x5f, 0x6d, 0x75, 0x6c, 0x12, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x6d, 0x75, 0x6c, 0x12, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x64, 0x69, 0x76, 0x34, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x77, 0x69, 0x73, 0x65, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x65, 0x10, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x65, 0x71, 0x1a, 0x61, 0x6c, 0x67, 0x65, 0x62, 0x72, 0x61, 0x69, 0x63, 0x4d, 0x6f, 0x64, 0x65, 0x2a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x69, 0x67, 0x49, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x02, 0x2f, 0x04, 0x2a, 0x2a, 0x12, 0x69, 0x73, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x65, 0x72, 0x02, 0x2b, 0x02, 0x2d, 0x02, 0x25, 0x04, 0x3d, 0x3d, 0x02, 0x3c, 0x06, 0x70, 0x6f, 0x73, 0x06, 0x6e, 0x65, 0x67, 0x08, 0x6c, 0x65, 0x66, 0x74, 0x0a, 0x72, 0x69, 0x67, 0x68, 0x74, 0x14, 0x74, 0x6f, 0x46, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x16, 0x74, 0x6f, 0x50, 0x72, 0x69, 0x6d, 0x69, 0x74, 0x69, 0x76, 0x65, 0x0e, 0x69, 0x73, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x02, 0x45, 0x08, 0x4c, 0x4e, 0x31, 0x30, 0x0a, 0x4c, 0x4f, 0x47, 0x32, 0x45, 0x0c, 0x4c, 0x4f, 0x47, 0x31, 0x30, 0x45, 0x0e, 0x53, 0x51, 0x52, 0x54, 0x31, 0x5f, 0x32, 0x0a, 0x53, 0x51, 0x52, 0x54, 0x32, 0x12, 0x74, 0x6f, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x08, 0x74, 0x72, 0x69, 0x6d, 0x06, 0x64, 0x65, 0x67, 0x0c, 0x64, 0x69, 0x76, 0x72, 0x65, 0x6d, 0x24, 0x74, 0x6f, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x08, 0x7a, 0x65, 0x72, 0x6f, 0x0e, 0x68, 0x69, 0x6c, 0x62, 0x65, 0x72, 0x74, 0x18, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x06, 0x64, 0x75, 0x70, 0x06, 0x6f, 0x62, 0x6a, 0x0a, 0x70, 0x72, 0x6f, 0x70, 0x73, 0x02, 0x69, 0x06, 0x76, 0x61, 0x6c, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x06, 0x74, 0x61, 0x62, 0x08, 0x64, 0x65, 0x73, 0x63, 0x0e, 0x52, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x0a, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x0e, 0x6f, 0x70, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x16, 0x6e, 0x65, 0x77, 0x5f, 0x6f, 0x70, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x02, 0x61, 0x02, 0x6a, 0x02, 0x62, 0x02, 0x6b, 0x0c, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x0e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x0c, 0x61, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x08, 0x70, 0x75, 0x73, 0x68, 0x16, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x53, 0x65, 0x74, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x08, 0x63, 0x61, 0x6c, 0x6c, 0x02, 0x72, 0x0c, 0x69, 0x73, 0x5f, 0x6e, 0x65, 0x67, 0x12, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x4c, 0x6f, 0x67, 0x32, 0x5e, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x20, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x74, 0x79, 0x70, 0x65, 0x02, 0x6e, 0x02, 0x74, 0x02, 0x64, 0x02, 0x73, 0x1a, 0x69, 0x73, 0x53, 0x61, 0x66, 0x65, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x65, 0x72, 0x08, 0x74, 0x64, 0x69, 0x76, 0x02, 0x78, 0x02, 0x79, 0x02, 0x71, 0x02, 0x75, 0x02, 0x76, 0x02, 0x63, 0x0e, 0x66, 0x64, 0x69, 0x76, 0x72, 0x65, 0x6d, 0x1c, 0x6e, 0x6f, 0x74, 0x20, 0x69, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x02, 0x6d, 0x04, 0x6e, 0x31, 0x18, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x74, 0x79, 0x70, 0x65, 0x22, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x65, 0x72, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x64, 0x69, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x62, 0x79, 0x20, 0x7a, 0x65, 0x72, 0x6f, 0x06, 0x6e, 0x75, 0x6d, 0x06, 0x64, 0x65, 0x6e, 0x04, 0x61, 0x31, 0x04, 0x62, 0x31, 0x08, 0x65, 0x64, 0x69, 0x76, 0x0a, 0x69, 0x73, 0x4e, 0x61, 0x4e, 0x08, 0x68, 0x69, 0x6e, 0x74, 0x02, 0x70, 0x08, 0x70, 0x72, 0x65, 0x63, 0x08, 0x6e, 0x75, 0x6d, 0x31, 0x08, 0x6e, 0x75, 0x6d, 0x30, 0x08, 0x64, 0x65, 0x6e, 0x31, 0x08, 0x64, 0x65, 0x6e, 0x30, 0x30, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x04, 0x72, 0x65, 0x04, 0x69, 0x6d, 0x04, 0x2d, 0x49, 0x04, 0x2a, 0x49, 0x32, 0x74, 0x68, 0x65, 0x20, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x6f, 0x20, 0x63, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x3c, 0x3d, 0x20, 0x30, 0x1a, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x74, 0x79, 0x70, 0x65, 0x73, 0x06, 0x72, 0x65, 0x73, 0x06, 0x6d, 0x6f, 0x64, 0x48, 0x64, 0x69, 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x6f, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x62, 0x69, 0x6e, 0x61, 0x72, 0x79, 0x20, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x20, 0x75, 0x6e, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x74, 0x79, 0x70, 0x65, 0x08, 0x4d, 0x6f, 0x64, 0x28, 0x02, 0x2c, 0x02, 0x29, 0x08, 0x73, 0x74, 0x72, 0x31, 0x02, 0x28, 0x02, 0x5e, 0x02, 0x7a, 0x0c, 0x6d, 0x61, 0x78, 0x5f, 0x69, 0x74, 0x04, 0x70, 0x31, 0x04, 0x70, 0x32, 0x04, 0x7a, 0x30, 0x04, 0x7a, 0x31, 0x04, 0x7a, 0x32, 0x04, 0x74, 0x30, 0x04, 0x74, 0x31, 0x04, 0x64, 0x31, 0x04, 0x64, 0x32, 0x02, 0x65, 0x04, 0x65, 0x6c, 0x04, 0x7a, 0x6c, 0x06, 0x65, 0x70, 0x73, 0x18, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x26, 0x70, 0x6f, 0x6c, 0x79, 0x6e, 0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x3e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x69, 0x6e, 0x20, 0x72, 0x6f, 0x6f, 0x74, 0x20, 0x66, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x06, 0x73, 0x74, 0x72, 0x10, 0x49, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x06, 0x74, 0x6d, 0x70, 0x04, 0x6e, 0x32, 0x48, 0x74, 0x68, 0x65, 0x20, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x6f, 0x20, 0x63, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x61, 0x20, 0x64, 0x65, 0x67, 0x72, 0x65, 0x65, 0x20, 0x3c, 0x3d, 0x20, 0x30, 0x10, 0x50, 0x6f, 0x6c, 0x79, 0x4d, 0x6f, 0x64, 0x28, 0x04, 0x2f, 0x28, 0x08, 0x65, 0x6d, 0x69, 0x6e, 0x06, 0x6d, 0x69, 0x6e, 0x04, 0x76, 0x31, 0x04, 0x76, 0x32, 0x0e, 0x76, 0x32, 0x5f, 0x65, 0x6d, 0x69, 0x6e, 0x04, 0x63, 0x31, 0x04, 0x63, 0x32, 0x06, 0x73, 0x75, 0x6d, 0x04, 0x4f, 0x28, 0x36, 0x63, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x20, 0x72, 0x65, 0x70, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x28, 0x31, 0x2f, 0x58, 0x29, 0x30, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x20, 0x65, 0x78, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x6e, 0x20, 0x65, 0x78, 0x70, 0x5e, 0x6c, 0x6f, 0x67, 0x20, 0x61, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x6d, 0x75, 0x73, 0x74, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x61, 0x20, 0x6e, 0x6f, 0x6e, 0x20, 0x7a, 0x65, 0x72, 0x6f, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x20, 0x74, 0x65, 0x72, 0x6d, 0x0c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4f, 0x28, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x4f, 0x28, 0x29, 0x20, 0x61, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x02, 0x68, 0x02, 0x77, 0x04, 0x72, 0x6c, 0x1e, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x1c, 0x61, 0x72, 0x72, 0x61, 0x79, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x2c, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x20, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x08, 0x63, 0x6f, 0x65, 0x66, 0x06, 0x73, 0x72, 0x63, 0x06, 0x64, 0x73, 0x74, 0x30, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x69, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x02, 0x6c, 0x0e, 0x69, 0x6d, 0x5f, 0x63, 0x6f, 0x6c, 0x73, 0x0e, 0x6b, 0x65, 0x72, 0x5f, 0x64, 0x69, 0x6d, 0x32, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x20, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x38, 0x76, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x20, 0x6d, 0x75, 0x73, 0x74, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x33, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2e, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x20, 0x73, 0x69, 0x7a, 0x65, 0x0a, 0x61, 0x5f, 0x6d, 0x61, 0x74, 0x0a, 0x62, 0x5f, 0x6d, 0x61, 0x74, 0x30, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x20, 0x73, 0x69, 0x7a, 0x65, 0x08, 0x66, 0x64, 0x69, 0x76, 0x08, 0x63, 0x64, 0x69, 0x76, 0x0e, 0x00, 0x06, 0x05, 0xa0, 0x01, 0x00, 0x02, 0x00, 0x06, 0x00, 0x25, 0x97, 0x0b, 0x02, 0xa2, 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xca, 0x3f, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xe2, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xea, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xeb, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xec, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xed, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xee, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xef, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xf6, 0x00, 0x00, 0x00, 0x40, 0x3f, 0xf7, 0x00, 0x00, 0x00, 0x40, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x40, 0x3f, 0xf9, 0x00, 0x00, 0x00, 0x40, 0x3f, 0xfa, 0x00, 0x00, 0x00, 0x40, 0x3f, 0xfb, 0x00, 0x00, 0x00, 0x40, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x40, 0x3f, 0xfd, 0x00, 0x00, 0x00, 0x40, 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x40, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x40, 0x3f, 0x00, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x01, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x02, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x03, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x04, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x05, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x06, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x07, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x08, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x09, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x0a, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x0b, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x0c, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x0d, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x0e, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x0f, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x10, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x11, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x12, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x13, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x14, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x15, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x16, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x17, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x18, 0x01, 0x00, 0x00, 0x40, 0x3f, 0x19, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x1b, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x1c, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x1d, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x1f, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x20, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x21, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x22, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x23, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x24, 0x01, 0x00, 0x00, 0x00, 0x3f, 0x25, 0x01, 0x00, 0x00, 0x00, 0x3e, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xe2, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xea, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xeb, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xec, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xed, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xee, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xef, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x3e, 0xf5, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x02, 0x40, 0xf6, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x40, 0xf7, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x04, 0x40, 0xf8, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x05, 0x40, 0xf9, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x06, 0x40, 0xfa, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x07, 0x40, 0xfb, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x08, 0x40, 0xfc, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x09, 0x40, 0xfd, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0a, 0x40, 0xfe, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0b, 0x40, 0xff, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0c, 0x40, 0x00, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x0d, 0x40, 0x01, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x0e, 0x40, 0x02, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x0f, 0x40, 0x03, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x10, 0x40, 0x04, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x11, 0x40, 0x05, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x12, 0x40, 0x06, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x13, 0x40, 0x07, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x14, 0x40, 0x08, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x15, 0x40, 0x09, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x16, 0x40, 0x0a, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x17, 0x40, 0x0b, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x18, 0x40, 0x0c, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x19, 0x40, 0x0d, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x1a, 0x40, 0x0e, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x1b, 0x40, 0x0f, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x1c, 0x40, 0x10, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x1d, 0x40, 0x11, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x1e, 0x40, 0x12, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x1f, 0x40, 0x13, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x20, 0x40, 0x14, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x21, 0x40, 0x15, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x22, 0x40, 0x16, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x23, 0x40, 0x17, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x24, 0x40, 0x18, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x19, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x1b, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x1c, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x1d, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x1f, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x20, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x21, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x22, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x23, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x24, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x25, 0x01, 0x00, 0x00, 0x00, 0x04, 0x26, 0x01, 0x00, 0x00, 0xc9, 0x04, 0x27, 0x01, 0x00, 0x00, 0xc9, 0xc0, 0x00, 0xc6, 0xef, 0xc9, 0x36, 0xeb, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xb5, 0xb6, 0xf0, 0x3b, 0xeb, 0x00, 0x00, 0x00, 0x36, 0xec, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xb5, 0xb6, 0x26, 0x02, 0x00, 0xef, 0x3b, 0xec, 0x00, 0x00, 0x00, 0x36, 0xed, 0x00, 0x00, 0x00, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x41, 0xed, 0x00, 0x00, 0x00, 0x3b, 0xed, 0x00, 0x00, 0x00, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0x65, 0x00, 0x00, 0x00, 0xc6, 0x04, 0x28, 0x01, 0x00, 0x00, 0x0b, 0xc0, 0x01, 0x4d, 0x41, 0x00, 0x00, 0x00, 0x4c, 0x41, 0x00, 0x00, 0x00, 0x24, 0x03, 0x00, 0xc9, 0x36, 0xee, 0x00, 0x00, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x41, 0xee, 0x00, 0x00, 0x00, 0x3b, 0xee, 0x00, 0x00, 0x00, 0x36, 0xef, 0x00, 0x00, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x41, 0xef, 0x00, 0x00, 0x00, 0x3b, 0xef, 0x00, 0x00, 0x00, 0x36, 0xf0, 0x00, 0x00, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x41, 0xf0, 0x00, 0x00, 0x00, 0x3b, 0xf0, 0x00, 0x00, 0x00, 0x36, 0xf1, 0x00, 0x00, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x41, 0xf1, 0x00, 0x00, 0x00, 0x3b, 0xf1, 0x00, 0x00, 0x00, 0x36, 0xf2, 0x00, 0x00, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x41, 0xf2, 0x00, 0x00, 0x00, 0x3b, 0xf2, 0x00, 0x00, 0x00, 0x36, 0xf3, 0x00, 0x00, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x41, 0xf3, 0x00, 0x00, 0x00, 0x3b, 0xf3, 0x00, 0x00, 0x00, 0x36, 0xf4, 0x00, 0x00, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x41, 0x29, 0x01, 0x00, 0x00, 0x3b, 0xf4, 0x00, 0x00, 0x00, 0x36, 0xf5, 0x00, 0x00, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x41, 0x2a, 0x01, 0x00, 0x00, 0x3b, 0xf5, 0x00, 0x00, 0x00, 0x36, 0x19, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x19, 0x01, 0x00, 0x00, 0x3b, 0x19, 0x01, 0x00, 0x00, 0x36, 0x1a, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x1a, 0x01, 0x00, 0x00, 0x3b, 0x1a, 0x01, 0x00, 0x00, 0x36, 0x1b, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x1b, 0x01, 0x00, 0x00, 0x3b, 0x1b, 0x01, 0x00, 0x00, 0x36, 0x1c, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x1c, 0x01, 0x00, 0x00, 0x3b, 0x1c, 0x01, 0x00, 0x00, 0x36, 0x1d, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x1d, 0x01, 0x00, 0x00, 0x3b, 0x1d, 0x01, 0x00, 0x00, 0x36, 0x1e, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x1e, 0x01, 0x00, 0x00, 0x3b, 0x1e, 0x01, 0x00, 0x00, 0x36, 0x1f, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x1f, 0x01, 0x00, 0x00, 0x3b, 0x1f, 0x01, 0x00, 0x00, 0x36, 0x20, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x20, 0x01, 0x00, 0x00, 0x3b, 0x20, 0x01, 0x00, 0x00, 0x36, 0x21, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x21, 0x01, 0x00, 0x00, 0x3b, 0x21, 0x01, 0x00, 0x00, 0x36, 0x22, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x22, 0x01, 0x00, 0x00, 0x3b, 0x22, 0x01, 0x00, 0x00, 0x36, 0x23, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x41, 0x23, 0x01, 0x00, 0x00, 0x3b, 0x23, 0x01, 0x00, 0x00, 0x36, 0x24, 0x01, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x41, 0x2b, 0x01, 0x00, 0x00, 0x3b, 0x24, 0x01, 0x00, 0x00, 0x36, 0x25, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x25, 0x01, 0x00, 0x00, 0x3b, 0x25, 0x01, 0x00, 0x00, 0xc5, 0x28, 0xd8, 0x04, 0x01, 0x2c, 0x00, 0xa0, 0x03, 0x01, 0x00, 0xe4, 0x03, 0x02, 0x00, 0x05, 0x2e, 0x21, 0x00, 0x01, 0xea, 0x24, 0x1e, 0x5d, 0x6c, 0x68, 0xaa, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x00, 0x14, 0xea, 0x03, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x68, 0x67, 0x0e, 0x43, 0x06, 0x05, 0x00, 0x01, 0x46, 0x01, 0x20, 0x00, 0xcd, 0x01, 0x8b, 0x1d, 0x47, 0xdc, 0x01, 0x00, 0x01, 0x40, 0xda, 0x04, 0x00, 0x00, 0x00, 0xdc, 0x04, 0x00, 0x01, 0x00, 0xde, 0x04, 0x00, 0x02, 0x40, 0xe0, 0x04, 0x00, 0x03, 0x40, 0xe2, 0x04, 0x00, 0x04, 0x40, 0xe4, 0x04, 0x00, 0x05, 0x40, 0xe6, 0x04, 0x00, 0x06, 0x00, 0xe8, 0x04, 0x00, 0x07, 0x00, 0xea, 0x04, 0x00, 0x08, 0x00, 0xec, 0x04, 0x00, 0x09, 0x00, 0xee, 0x04, 0x00, 0x0a, 0x00, 0xf0, 0x04, 0x00, 0x0b, 0x00, 0xf2, 0x04, 0x00, 0x0c, 0x00, 0xf4, 0x04, 0x00, 0x0d, 0x00, 0xf6, 0x04, 0x00, 0x0e, 0x00, 0xf8, 0x04, 0x00, 0x0f, 0x00, 0xfa, 0x04, 0x00, 0x10, 0x00, 0xfc, 0x04, 0x00, 0x11, 0x00, 0xfe, 0x04, 0x00, 0x12, 0x00, 0x80, 0x05, 0x00, 0x13, 0x00, 0x82, 0x05, 0x00, 0x14, 0x00, 0x84, 0x05, 0x00, 0x15, 0x40, 0x86, 0x05, 0x00, 0x16, 0x40, 0x88, 0x05, 0x00, 0x17, 0x00, 0x8a, 0x05, 0x00, 0x18, 0x00, 0x8c, 0x05, 0x00, 0x19, 0x00, 0x8e, 0x05, 0x00, 0x1a, 0x00, 0x90, 0x05, 0x00, 0x1b, 0x00, 0x92, 0x05, 0x00, 0x1c, 0x00, 0x94, 0x05, 0x00, 0x1d, 0x00, 0x96, 0x05, 0x00, 0x1e, 0x40, 0x98, 0x05, 0x00, 0x1f, 0x00, 0x9a, 0x05, 0x00, 0x20, 0x00, 0x9c, 0x05, 0x00, 0x21, 0x40, 0x9e, 0x05, 0x00, 0x22, 0x40, 0xa0, 0x05, 0x00, 0x23, 0x40, 0xa2, 0x05, 0x00, 0x24, 0x40, 0xa4, 0x05, 0x00, 0x25, 0x40, 0xa6, 0x05, 0x00, 0x26, 0x40, 0xa8, 0x05, 0x00, 0x27, 0x00, 0xaa, 0x05, 0x00, 0x28, 0x00, 0xac, 0x05, 0x00, 0x29, 0x00, 0xae, 0x05, 0x00, 0x2a, 0x00, 0xb0, 0x05, 0x00, 0x2b, 0x00, 0xb2, 0x05, 0x00, 0x2c, 0x00, 0xb4, 0x05, 0x00, 0x2d, 0x40, 0xb6, 0x05, 0x00, 0x2e, 0x00, 0xb8, 0x05, 0x00, 0x2f, 0x40, 0xba, 0x05, 0x00, 0x30, 0x00, 0xbc, 0x05, 0x00, 0x31, 0x00, 0xbe, 0x05, 0x00, 0x32, 0x00, 0xc0, 0x05, 0x00, 0x33, 0x00, 0xc2, 0x05, 0x00, 0x34, 0x00, 0xc4, 0x05, 0x00, 0x35, 0x00, 0xc6, 0x05, 0x00, 0x36, 0x00, 0xc8, 0x05, 0x00, 0x37, 0x40, 0xca, 0x05, 0x00, 0x38, 0x40, 0xcc, 0x05, 0x00, 0x39, 0x40, 0xce, 0x05, 0x00, 0x3a, 0x00, 0xd0, 0x05, 0x00, 0x3b, 0x40, 0xd2, 0x05, 0x00, 0x3c, 0x00, 0xd4, 0x05, 0x00, 0x3d, 0x00, 0xd6, 0x05, 0x00, 0x3e, 0x00, 0xd8, 0x05, 0x00, 0x3f, 0x00, 0xda, 0x05, 0x00, 0x40, 0x00, 0xdc, 0x05, 0x00, 0x41, 0x40, 0xde, 0x05, 0x00, 0x42, 0x40, 0xe0, 0x05, 0x00, 0x43, 0x00, 0xe2, 0x05, 0x00, 0x44, 0x40, 0xe4, 0x05, 0x00, 0x45, 0x00, 0xc0, 0x00, 0xc9, 0xc0, 0x01, 0xca, 0xc0, 0x02, 0xcb, 0xc0, 0x03, 0xc3, 0x04, 0xc0, 0x04, 0xc3, 0x05, 0xc0, 0x18, 0xc3, 0x06, 0xc0, 0x19, 0xc3, 0x07, 0xc0, 0x1a, 0xc3, 0x08, 0xc0, 0x1b, 0xc3, 0x09, 0xc0, 0x1c, 0xc3, 0x0a, 0xc0, 0x1d, 0xc3, 0x0b, 0xc0, 0x1e, 0xc3, 0x0c, 0xc0, 0x1f, 0xc3, 0x0d, 0xc0, 0x20, 0xc3, 0x0e, 0xc0, 0x21, 0xc3, 0x0f, 0xc0, 0x22, 0xc3, 0x10, 0xc0, 0x23, 0xc3, 0x11, 0xc0, 0x24, 0xc3, 0x12, 0xc0, 0x25, 0xc3, 0x13, 0xc0, 0x26, 0xc3, 0x14, 0xc0, 0x3a, 0xc3, 0x16, 0xc0, 0x4b, 0xc3, 0x17, 0xc0, 0x4c, 0xc3, 0x18, 0xc0, 0x4d, 0xc3, 0x19, 0xc0, 0x4e, 0xc3, 0x1a, 0xc0, 0x4f, 0xc3, 0x1b, 0xc0, 0x5c, 0xc3, 0x1c, 0xc0, 0x5d, 0xc3, 0x1d, 0xc0, 0x5e, 0xc3, 0x1e, 0xc0, 0x5f, 0xc3, 0x1f, 0xc0, 0x60, 0xc3, 0x20, 0xc0, 0x65, 0xc3, 0x21, 0xc0, 0x67, 0xc3, 0x22, 0xc0, 0x68, 0xc3, 0x23, 0xc0, 0x69, 0xc3, 0x24, 0xc0, 0x6a, 0xc3, 0x25, 0xc0, 0x74, 0xc3, 0x26, 0xc0, 0x75, 0xc3, 0x27, 0xc0, 0x76, 0xc3, 0x28, 0xc0, 0x77, 0xc3, 0x29, 0xc0, 0x78, 0xc3, 0x2a, 0xc0, 0x79, 0xc3, 0x2b, 0xc0, 0x7a, 0xc3, 0x2c, 0xc0, 0x82, 0xc3, 0x2d, 0xc0, 0x83, 0xc3, 0x2e, 0xc0, 0x84, 0xc3, 0x2f, 0xc0, 0x85, 0xc3, 0x30, 0xc0, 0x86, 0xc3, 0x31, 0xc0, 0x91, 0xc3, 0x32, 0xc0, 0x92, 0xc3, 0x33, 0xc0, 0x93, 0xc3, 0x34, 0xc0, 0x94, 0xc3, 0x35, 0xc0, 0x95, 0xc3, 0x36, 0xc0, 0x99, 0xc3, 0x37, 0xc0, 0x9a, 0xc3, 0x38, 0xc0, 0x9c, 0xc3, 0x39, 0xc0, 0x9d, 0xc3, 0x3a, 0xc0, 0x9e, 0xc3, 0x3b, 0xc0, 0x9f, 0xc3, 0x3c, 0xc0, 0xa0, 0xc3, 0x3d, 0xc0, 0xa1, 0xc3, 0x3e, 0xc0, 0xbe, 0xc3, 0x3f, 0xc0, 0xbf, 0xc3, 0x40, 0xc0, 0xc0, 0xc3, 0x41, 0xc0, 0xc1, 0xc3, 0x42, 0xc0, 0xc2, 0xc3, 0x43, 0xc0, 0xc3, 0xc3, 0x44, 0xc0, 0xc4, 0xc3, 0x45, 0xd1, 0xd1, 0x41, 0xb2, 0x00, 0x00, 0x00, 0x43, 0xe1, 0x00, 0x00, 0x00, 0xd1, 0xd1, 0x41, 0xb3, 0x00, 0x00, 0x00, 0x43, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0x0a, 0x43, 0x73, 0x01, 0x00, 0x00, 0xb7, 0xb8, 0xba, 0xbc, 0xbd, 0x0b, 0xbd, 0x0d, 0xbd, 0x11, 0xbd, 0x13, 0xbd, 0x17, 0xbd, 0x1d, 0xbd, 0x1f, 0xbd, 0x25, 0xbd, 0x29, 0xbd, 0x2b, 0xbd, 0x2f, 0xbd, 0x35, 0xbd, 0x3b, 0xbd, 0x3d, 0xbd, 0x43, 0xbd, 0x47, 0xbd, 0x49, 0xbd, 0x4f, 0xbd, 0x53, 0xbd, 0x59, 0xbd, 0x61, 0xbd, 0x65, 0xbd, 0x67, 0xbd, 0x6b, 0xbd, 0x6d, 0xbd, 0x71, 0xbd, 0x7f, 0xbe, 0x83, 0x00, 0x26, 0x20, 0x00, 0xbe, 0x89, 0x00, 0x4c, 0x20, 0x00, 0x00, 0x80, 0xbe, 0x8b, 0x00, 0x4c, 0x21, 0x00, 0x00, 0x80, 0xbe, 0x95, 0x00, 0x4c, 0x22, 0x00, 0x00, 0x80, 0xbe, 0x97, 0x00, 0x4c, 0x23, 0x00, 0x00, 0x80, 0xbe, 0x9d, 0x00, 0x4c, 0x24, 0x00, 0x00, 0x80, 0xbe, 0xa3, 0x00, 0x4c, 0x25, 0x00, 0x00, 0x80, 0xbe, 0xa7, 0x00, 0x4c, 0x26, 0x00, 0x00, 0x80, 0xbe, 0xad, 0x00, 0x4c, 0x27, 0x00, 0x00, 0x80, 0xbe, 0xb3, 0x00, 0x4c, 0x28, 0x00, 0x00, 0x80, 0xbe, 0xb5, 0x00, 0x4c, 0x29, 0x00, 0x00, 0x80, 0xbe, 0xbf, 0x00, 0x4c, 0x2a, 0x00, 0x00, 0x80, 0xbe, 0xc1, 0x00, 0x4c, 0x2b, 0x00, 0x00, 0x80, 0xbe, 0xc5, 0x00, 0x4c, 0x2c, 0x00, 0x00, 0x80, 0xbe, 0xc7, 0x00, 0x4c, 0x2d, 0x00, 0x00, 0x80, 0xbe, 0xd3, 0x00, 0x4c, 0x2e, 0x00, 0x00, 0x80, 0xbe, 0xdf, 0x00, 0x4c, 0x2f, 0x00, 0x00, 0x80, 0xbe, 0xe3, 0x00, 0x4c, 0x30, 0x00, 0x00, 0x80, 0xbe, 0xe5, 0x00, 0x4c, 0x31, 0x00, 0x00, 0x80, 0xbe, 0xe9, 0x00, 0x4c, 0x32, 0x00, 0x00, 0x80, 0xbe, 0xef, 0x00, 0x4c, 0x33, 0x00, 0x00, 0x80, 0xbe, 0xf1, 0x00, 0x4c, 0x34, 0x00, 0x00, 0x80, 0xbe, 0xfb, 0x00, 0x4c, 0x35, 0x00, 0x00, 0x80, 0xbe, 0x01, 0x01, 0x4c, 0x36, 0x00, 0x00, 0x80, 0xbe, 0x07, 0x01, 0x4c, 0x37, 0x00, 0x00, 0x80, 0xbe, 0x0d, 0x01, 0x4c, 0x38, 0x00, 0x00, 0x80, 0xbe, 0x0f, 0x01, 0x4c, 0x39, 0x00, 0x00, 0x80, 0xbe, 0x15, 0x01, 0x4c, 0x3a, 0x00, 0x00, 0x80, 0xbe, 0x19, 0x01, 0x4c, 0x3b, 0x00, 0x00, 0x80, 0xbe, 0x1b, 0x01, 0x4c, 0x3c, 0x00, 0x00, 0x80, 0xbe, 0x25, 0x01, 0x4c, 0x3d, 0x00, 0x00, 0x80, 0xbe, 0x33, 0x01, 0x4c, 0x3e, 0x00, 0x00, 0x80, 0xbe, 0x37, 0x01, 0x4c, 0x3f, 0x00, 0x00, 0x80, 0xbe, 0x39, 0x01, 0x4c, 0x40, 0x00, 0x00, 0x80, 0xbe, 0x3d, 0x01, 0x4c, 0x41, 0x00, 0x00, 0x80, 0xbe, 0x4b, 0x01, 0x4c, 0x42, 0x00, 0x00, 0x80, 0xbe, 0x51, 0x01, 0x4c, 0x43, 0x00, 0x00, 0x80, 0xbe, 0x5b, 0x01, 0x4c, 0x44, 0x00, 0x00, 0x80, 0xbe, 0x5d, 0x01, 0x4c, 0x45, 0x00, 0x00, 0x80, 0xbe, 0x61, 0x01, 0x4c, 0x46, 0x00, 0x00, 0x80, 0xbe, 0x67, 0x01, 0x4c, 0x47, 0x00, 0x00, 0x80, 0xbe, 0x6f, 0x01, 0x4c, 0x48, 0x00, 0x00, 0x80, 0xbe, 0x75, 0x01, 0x4c, 0x49, 0x00, 0x00, 0x80, 0xbe, 0x7b, 0x01, 0x4c, 0x4a, 0x00, 0x00, 0x80, 0xbe, 0x7f, 0x01, 0x4c, 0x4b, 0x00, 0x00, 0x80, 0xbe, 0x85, 0x01, 0x4c, 0x4c, 0x00, 0x00, 0x80, 0xbe, 0x8d, 0x01, 0x4c, 0x4d, 0x00, 0x00, 0x80, 0xbe, 0x91, 0x01, 0x4c, 0x4e, 0x00, 0x00, 0x80, 0xbe, 0x99, 0x01, 0x4c, 0x4f, 0x00, 0x00, 0x80, 0xbe, 0xa3, 0x01, 0x4c, 0x50, 0x00, 0x00, 0x80, 0xbe, 0xa5, 0x01, 0x4c, 0x51, 0x00, 0x00, 0x80, 0xbe, 0xaf, 0x01, 0x4c, 0x52, 0x00, 0x00, 0x80, 0xbe, 0xb1, 0x01, 0x4c, 0x53, 0x00, 0x00, 0x80, 0xbe, 0xb7, 0x01, 0x4c, 0x54, 0x00, 0x00, 0x80, 0xbe, 0xbb, 0x01, 0x4c, 0x55, 0x00, 0x00, 0x80, 0xbe, 0xc1, 0x01, 0x4c, 0x56, 0x00, 0x00, 0x80, 0xbe, 0xc9, 0x01, 0x4c, 0x57, 0x00, 0x00, 0x80, 0xbe, 0xcd, 0x01, 0x4c, 0x58, 0x00, 0x00, 0x80, 0xbe, 0xcf, 0x01, 0x4c, 0x59, 0x00, 0x00, 0x80, 0xbe, 0xd3, 0x01, 0x4c, 0x5a, 0x00, 0x00, 0x80, 0xbe, 0xdf, 0x01, 0x4c, 0x5b, 0x00, 0x00, 0x80, 0xbe, 0xe7, 0x01, 0x4c, 0x5c, 0x00, 0x00, 0x80, 0xbe, 0xeb, 0x01, 0x4c, 0x5d, 0x00, 0x00, 0x80, 0xbe, 0xf3, 0x01, 0x4c, 0x5e, 0x00, 0x00, 0x80, 0xcc, 0x38, 0xb7, 0x00, 0x00, 0x00, 0x42, 0x74, 0x01, 0x00, 0x00, 0x0b, 0xc0, 0x05, 0x54, 0x75, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x06, 0x54, 0x76, 0x01, 0x00, 0x00, 0x04, 0x24, 0x01, 0x00, 0x0e, 0xc5, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x07, 0x54, 0x77, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x08, 0x54, 0xee, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x09, 0x54, 0xef, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x0a, 0x54, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x0b, 0x54, 0xf2, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x0c, 0x54, 0xf1, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x0d, 0x54, 0x29, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x0e, 0x54, 0x2a, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x0f, 0x54, 0xf3, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0xc5, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x10, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x11, 0x54, 0xf8, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x12, 0x54, 0xf9, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x13, 0x54, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x14, 0x54, 0xfb, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x15, 0x54, 0x01, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x16, 0x54, 0x02, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0x36, 0xe3, 0x00, 0x00, 0x00, 0xc0, 0x17, 0x3b, 0xe3, 0x00, 0x00, 0x00, 0xc6, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc2, 0x06, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x07, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x08, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x09, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc2, 0x0a, 0x4c, 0x7a, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x0b, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc2, 0x0c, 0x4c, 0x7c, 0x01, 0x00, 0x00, 0xc0, 0x27, 0x54, 0x7d, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x28, 0x54, 0x7e, 0x01, 0x00, 0x00, 0x04, 0x0b, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x26, 0x02, 0x00, 0x4c, 0x7f, 0x01, 0x00, 0x00, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x26, 0x02, 0x00, 0x4c, 0x80, 0x01, 0x00, 0x00, 0xc2, 0x06, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x07, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x08, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x09, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc2, 0x0a, 0x4c, 0x7a, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x0b, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc2, 0x0c, 0x4c, 0x7c, 0x01, 0x00, 0x00, 0x0b, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x4c, 0x7f, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x4c, 0x80, 0x01, 0x00, 0x00, 0xc2, 0x0d, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x0e, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x0f, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x10, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc2, 0x11, 0x4c, 0x7a, 0x01, 0x00, 0x00, 0xc2, 0x12, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x13, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc2, 0x14, 0x4c, 0x7c, 0x01, 0x00, 0x00, 0x22, 0x04, 0x00, 0x0e, 0xc5, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x29, 0x54, 0x81, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0xc5, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0x38, 0x9b, 0x00, 0x00, 0x00, 0x41, 0x82, 0x01, 0x00, 0x00, 0xc0, 0x2a, 0x55, 0x04, 0xc0, 0x2b, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x2c, 0x54, 0x37, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x2d, 0x54, 0xf8, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x2e, 0x54, 0xf9, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x2f, 0x54, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x30, 0x54, 0xfb, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x31, 0x54, 0x01, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x32, 0x54, 0x02, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0xc5, 0x38, 0x98, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x33, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x34, 0x54, 0xf8, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x35, 0x54, 0xf9, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x36, 0x54, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x37, 0x54, 0xfb, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x38, 0x54, 0x01, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x39, 0x54, 0x02, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0x26, 0x00, 0x00, 0xc3, 0x15, 0xc5, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x3b, 0x54, 0x83, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x3c, 0x54, 0x25, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x3d, 0x54, 0x84, 0x01, 0x00, 0x00, 0x05, 0xc0, 0x3e, 0x54, 0x85, 0x01, 0x00, 0x00, 0x05, 0xc0, 0x3f, 0x54, 0x86, 0x01, 0x00, 0x00, 0x05, 0xc0, 0x40, 0x54, 0x87, 0x01, 0x00, 0x00, 0x05, 0xc0, 0x41, 0x54, 0x88, 0x01, 0x00, 0x00, 0x05, 0xc0, 0x42, 0x54, 0x89, 0x01, 0x00, 0x00, 0x05, 0xf0, 0x0e, 0xc5, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x43, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x44, 0x54, 0xf8, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x45, 0x54, 0xf9, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x46, 0x54, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x47, 0x54, 0xfb, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x48, 0x54, 0x01, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x49, 0x54, 0x02, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0x36, 0xe4, 0x00, 0x00, 0x00, 0xc0, 0x4a, 0x3b, 0xe4, 0x00, 0x00, 0x00, 0xc6, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc2, 0x17, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x18, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x19, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x1a, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x1b, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc0, 0x50, 0x54, 0x7d, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x51, 0x54, 0x7e, 0x01, 0x00, 0x00, 0x04, 0x0b, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x26, 0x04, 0x00, 0x4c, 0x7f, 0x01, 0x00, 0x00, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x26, 0x04, 0x00, 0x4c, 0x80, 0x01, 0x00, 0x00, 0xc2, 0x17, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x18, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x19, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x1a, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x1b, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xf1, 0x0e, 0xc5, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x52, 0x54, 0x8a, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0xc5, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x53, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x54, 0x54, 0x37, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x55, 0x54, 0xf8, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x56, 0x54, 0xf9, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x57, 0x54, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x58, 0x54, 0xfb, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x59, 0x54, 0x01, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x5a, 0x54, 0x02, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0x36, 0xe5, 0x00, 0x00, 0x00, 0xc0, 0x5b, 0x3b, 0xe5, 0x00, 0x00, 0x00, 0xc6, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc2, 0x1c, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x1d, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x1e, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x1f, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x20, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc0, 0x61, 0x54, 0x7d, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x62, 0x54, 0x7e, 0x01, 0x00, 0x00, 0x04, 0x0b, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x26, 0x04, 0x00, 0x4c, 0x7f, 0x01, 0x00, 0x00, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x26, 0x04, 0x00, 0x4c, 0x80, 0x01, 0x00, 0x00, 0xc2, 0x1c, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x1d, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x1e, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x1f, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xf1, 0x0e, 0xc5, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x63, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x64, 0x54, 0x37, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0x36, 0xe6, 0x00, 0x00, 0x00, 0xc0, 0x66, 0x3b, 0xe6, 0x00, 0x00, 0x00, 0xc5, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x6b, 0x54, 0x8b, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x6c, 0x54, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x6d, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x6e, 0x54, 0x37, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x6f, 0x54, 0x8c, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x70, 0x54, 0x5a, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x71, 0x54, 0xf6, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x72, 0x54, 0xf7, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x73, 0x54, 0xf8, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0xc6, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc2, 0x26, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x27, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x28, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x2a, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x2c, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc0, 0x7b, 0x54, 0x7d, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x7c, 0x54, 0x7e, 0x01, 0x00, 0x00, 0x04, 0x0b, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x26, 0x06, 0x00, 0x4c, 0x7f, 0x01, 0x00, 0x00, 0xc2, 0x26, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x27, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x28, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x2a, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0x0b, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x26, 0x06, 0x00, 0x4c, 0x80, 0x01, 0x00, 0x00, 0xc2, 0x26, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x27, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x28, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x29, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0x22, 0x04, 0x00, 0x0e, 0xc5, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x7d, 0x54, 0x8d, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x7e, 0x54, 0xee, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x7f, 0x54, 0xf2, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x80, 0x54, 0x2b, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0x36, 0xe7, 0x00, 0x00, 0x00, 0xc0, 0x81, 0x3b, 0xe7, 0x00, 0x00, 0x00, 0xc6, 0x38, 0xe7, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc2, 0x2d, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x2e, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x2f, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x30, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x31, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc0, 0x87, 0x54, 0x7d, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x88, 0x54, 0x7e, 0x01, 0x00, 0x00, 0x04, 0x0b, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x26, 0x07, 0x00, 0x4c, 0x7f, 0x01, 0x00, 0x00, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x26, 0x07, 0x00, 0x4c, 0x80, 0x01, 0x00, 0x00, 0xc2, 0x2d, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x2e, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x2f, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x30, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xf1, 0x0e, 0xc5, 0x38, 0xe7, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x89, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x8a, 0x54, 0x37, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0x36, 0xe8, 0x00, 0x00, 0x00, 0xc0, 0x8b, 0x3b, 0xe8, 0x00, 0x00, 0x00, 0xc5, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x8c, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x8d, 0x54, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x8e, 0x54, 0x37, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x8f, 0x54, 0x5a, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x90, 0x54, 0xf6, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0xc6, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc2, 0x32, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x33, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x34, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x35, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x36, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc0, 0x96, 0x54, 0x7d, 0x01, 0x00, 0x00, 0x04, 0xc0, 0x97, 0x54, 0x7e, 0x01, 0x00, 0x00, 0x04, 0x0b, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x26, 0x07, 0x00, 0x4c, 0x7f, 0x01, 0x00, 0x00, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x26, 0x07, 0x00, 0x4c, 0x80, 0x01, 0x00, 0x00, 0xc2, 0x32, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x33, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x34, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x35, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xf1, 0x0e, 0xc5, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x98, 0x54, 0x8e, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0x36, 0xe9, 0x00, 0x00, 0x00, 0xc0, 0x9b, 0x3b, 0xe9, 0x00, 0x00, 0x00, 0xc6, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc2, 0x39, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x3a, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x3b, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x3c, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc2, 0x3d, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x3e, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc0, 0xa2, 0x54, 0x7d, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xa3, 0x54, 0x7e, 0x01, 0x00, 0x00, 0x04, 0x0b, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x26, 0x07, 0x00, 0x4c, 0x7f, 0x01, 0x00, 0x00, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x26, 0x07, 0x00, 0x4c, 0x80, 0x01, 0x00, 0x00, 0xc2, 0x39, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x3a, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x3b, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x3c, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc2, 0x3d, 0x4c, 0x76, 0x01, 0x00, 0x00, 0xf1, 0x0e, 0xc5, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0xa4, 0x54, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xc0, 0xa5, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0xa6, 0x54, 0x8b, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xa7, 0x54, 0x37, 0x00, 0x00, 0x00, 0x04, 0xc0, 0xa8, 0x54, 0x5a, 0x00, 0x00, 0x00, 0x04, 0xc0, 0xa9, 0x54, 0xf6, 0x00, 0x00, 0x00, 0x04, 0xc0, 0xaa, 0x54, 0xf7, 0x00, 0x00, 0x00, 0x04, 0xc0, 0xab, 0x54, 0x01, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xac, 0x54, 0x02, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0xc5, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0xad, 0x54, 0x8f, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xae, 0x54, 0xed, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0x36, 0xea, 0x00, 0x00, 0x00, 0xc0, 0xaf, 0x3b, 0xea, 0x00, 0x00, 0x00, 0xc5, 0x38, 0xea, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0xb0, 0x54, 0x19, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xb1, 0x54, 0x1a, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xb2, 0x54, 0x90, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xb3, 0x54, 0x1b, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xb4, 0x54, 0x91, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xb5, 0x54, 0x1c, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xb6, 0x54, 0x1d, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xb7, 0x54, 0x1e, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xb8, 0x54, 0x1f, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xb9, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0xba, 0x54, 0x20, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xbb, 0x54, 0x21, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xbc, 0x54, 0x23, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xbd, 0x54, 0x22, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x0e, 0xc6, 0x38, 0x96, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc2, 0x3f, 0x4c, 0x78, 0x01, 0x00, 0x00, 0xc2, 0x40, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc2, 0x42, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc2, 0x43, 0x4c, 0x75, 0x01, 0x00, 0x00, 0xc2, 0x45, 0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc0, 0xc5, 0x54, 0x7d, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xc6, 0x54, 0x7e, 0x01, 0x00, 0x00, 0x04, 0x0b, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x38, 0xe7, 0x00, 0x00, 0x00, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x26, 0x0a, 0x00, 0x4c, 0x80, 0x01, 0x00, 0x00, 0xc2, 0x41, 0x4c, 0x7d, 0x00, 0x00, 0x00, 0xc0, 0xc7, 0x54, 0x75, 0x01, 0x00, 0x00, 0x04, 0xc7, 0x4c, 0x76, 0x01, 0x00, 0x00, 0x0b, 0x38, 0x98, 0x00, 0x00, 0x00, 0x38, 0xb2, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x38, 0xe7, 0x00, 0x00, 0x00, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x26, 0x0a, 0x00, 0x4c, 0x7f, 0x01, 0x00, 0x00, 0xc0, 0xc8, 0x54, 0x7d, 0x00, 0x00, 0x00, 0x04, 0xc0, 0xc9, 0x54, 0x75, 0x01, 0x00, 0x00, 0x04, 0x22, 0x04, 0x00, 0x0e, 0xc5, 0x38, 0x96, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0xca, 0x54, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xc0, 0xcb, 0x54, 0x92, 0x01, 0x00, 0x00, 0x04, 0xc0, 0xcc, 0x54, 0xfc, 0x00, 0x00, 0x00, 0x04, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x41, 0xf8, 0x00, 0x00, 0x00, 0x4c, 0xf8, 0x00, 0x00, 0x00, 0xf0, 0x29, 0xd8, 0x04, 0x1d, 0xb7, 0x04, 0x00, 0x8d, 0x02, 0x02, 0x3f, 0x3f, 0x00, 0x07, 0xba, 0x01, 0x00, 0xb9, 0x04, 0x5a, 0x35, 0x00, 0x01, 0x0e, 0x00, 0x08, 0x0e, 0x2b, 0x18, 0x00, 0x07, 0x0a, 0x00, 0x08, 0x12, 0x2d, 0x00, 0x08, 0x14, 0x00, 0x08, 0x2a, 0x00, 0x08, 0x2a, 0x00, 0x08, 0x34, 0x00, 0x08, 0x16, 0x00, 0x08, 0x50, 0x2b, 0x0e, 0x41, 0x2d, 0x00, 0x08, 0x0c, 0x2d, 0x00, 0x08, 0x0c, 0x00, 0x08, 0x0c, 0x00, 0x08, 0x0c, 0x2b, 0x00, 0x02, 0x08, 0x00, 0x05, 0x42, 0x00, 0x07, 0x90, 0x01, 0x3a, 0x08, 0x26, 0x26, 0x26, 0x26, 0x26, 0x21, 0x26, 0x28, 0x2d, 0x2c, 0x08, 0x5d, 0x5d, 0x26, 0x26, 0x26, 0x26, 0x26, 0x21, 0x26, 0x27, 0x08, 0x35, 0x35, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x18, 0x00, 0x07, 0x10, 0x2b, 0x0e, 0x3f, 0x00, 0x0a, 0x0c, 0x19, 0x2d, 0x2d, 0x00, 0x08, 0x0c, 0x2d, 0x00, 0x08, 0x0c, 0x2d, 0x2d, 0x2b, 0x00, 0x02, 0x08, 0x41, 0x2d, 0x2d, 0x2d, 0x00, 0x08, 0x0c, 0x2d, 0x00, 0x08, 0x0e, 0x2b, 0x00, 0x02, 0x08, 0x00, 0x05, 0x36, 0x28, 0x00, 0x08, 0x2e, 0x2c, 0x2b, 0x2c, 0x2b, 0x2c, 0x2b, 0x2b, 0x0e, 0x41, 0x2d, 0x2d, 0x2d, 0x00, 0x08, 0x0c, 0x2d, 0x00, 0x08, 0x0e, 0x2b, 0x00, 0x02, 0x08, 0x00, 0x05, 0x1c, 0x00, 0x07, 0x3c, 0x3a, 0x08, 0x26, 0x26, 0x26, 0x26, 0x21, 0x28, 0x2d, 0x2c, 0x08, 0x8f, 0x8f, 0x26, 0x26, 0x26, 0x26, 0x21, 0x26, 0x0e, 0x00, 0x07, 0x0e, 0x2b, 0x0e, 0x00, 0x0c, 0x08, 0x00, 0x08, 0x24, 0x2d, 0x2d, 0x2d, 0x2d, 0x00, 0x08, 0x08, 0x2d, 0x2b, 0x00, 0x02, 0x08, 0x00, 0x05, 0x2a, 0x00, 0x07, 0x58, 0x3a, 0x08, 0x26, 0x26, 0x26, 0x26, 0x21, 0x28, 0x2d, 0x2c, 0x08, 0x8f, 0x8f, 0x26, 0x26, 0x26, 0x26, 0x21, 0x0e, 0x00, 0x0c, 0x10, 0x2d, 0x2b, 0x00, 0x02, 0x22, 0x00, 0x05, 0x24, 0x00, 0x07, 0xf0, 0x01, 0x00, 0x0c, 0x10, 0x00, 0x08, 0x12, 0x2d, 0x00, 0x08, 0x28, 0x00, 0x08, 0x0c, 0x00, 0x08, 0x14, 0x00, 0x08, 0x1a, 0x00, 0x08, 0x12, 0x00, 0x08, 0x12, 0x2b, 0x00, 0x02, 0x80, 0x01, 0x3a, 0x08, 0x26, 0x26, 0x26, 0x26, 0x21, 0x28, 0x00, 0x08, 0x10, 0x2c, 0x08, 0xc1, 0x26, 0x26, 0x26, 0x26, 0x22, 0x08, 0xc1, 0x26, 0x26, 0x26, 0x26, 0x21, 0x18, 0x00, 0x07, 0x36, 0x00, 0x08, 0x14, 0x00, 0x08, 0x28, 0x2d, 0x2b, 0x00, 0x02, 0x08, 0x00, 0x05, 0x2a, 0x00, 0x07, 0x48, 0x3a, 0x08, 0x26, 0x26, 0x26, 0x26, 0x21, 0x28, 0x2d, 0x2c, 0x08, 0xda, 0xda, 0x26, 0x26, 0x26, 0x26, 0x21, 0x0e, 0x00, 0x0c, 0x10, 0x2d, 0x2b, 0x00, 0x02, 0x08, 0x00, 0x05, 0x2a, 0x27, 0x41, 0x2d, 0x00, 0x08, 0x14, 0x2d, 0x00, 0x08, 0x08, 0x2b, 0x00, 0x02, 0x3a, 0x3a, 0x08, 0x26, 0x26, 0x26, 0x26, 0x21, 0x28, 0x2d, 0x2c, 0x08, 0xda, 0xda, 0x26, 0x26, 0x26, 0x26, 0x21, 0x0e, 0x00, 0x07, 0x1c, 0x2b, 0x00, 0x02, 0x2c, 0x00, 0x05, 0x2e, 0x00, 0x07, 0xc0, 0x01, 0x3a, 0x08, 0x26, 0x26, 0x26, 0x26, 0x26, 0x28, 0x00, 0x08, 0x12, 0x2c, 0x08, 0xda, 0xda, 0x26, 0x26, 0x26, 0x26, 0x26, 0x0e, 0x00, 0x0c, 0x12, 0x00, 0x08, 0x20, 0x00, 0x08, 0x1e, 0x00, 0x08, 0x2c, 0x00, 0x08, 0x1c, 0x00, 0x08, 0x20, 0x00, 0x08, 0x1c, 0x00, 0x08, 0x22, 0x00, 0x08, 0x12, 0x2b, 0x0e, 0x00, 0x07, 0x1a, 0x00, 0x08, 0x2a, 0x2b, 0x00, 0x02, 0x08, 0x00, 0x05, 0x18, 0x27, 0x00, 0x07, 0x0e, 0x00, 0x08, 0x10, 0x00, 0x08, 0x14, 0x00, 0x08, 0x2c, 0x00, 0x08, 0x12, 0x00, 0x08, 0x12, 0x00, 0x08, 0x22, 0x2d, 0x00, 0x08, 0x44, 0x00, 0x08, 0x54, 0x00, 0x08, 0x52, 0x00, 0x08, 0x94, 0x01, 0x00, 0x08, 0x18, 0x00, 0x08, 0x16, 0x2b, 0x00, 0x02, 0xd2, 0x01, 0x3a, 0x08, 0x26, 0x26, 0x26, 0x26, 0x28, 0x00, 0x08, 0x10, 0x2c, 0x08, 0x99, 0x8f, 0x26, 0x2b, 0x22, 0x08, 0x99, 0x8f, 0x2b, 0x2b, 0x18, 0x00, 0x0c, 0x10, 0x00, 0x08, 0x18, 0x2d, 0x2b, 0x67, 0x09, 0x0e, 0x43, 0x06, 0x05, 0xda, 0x04, 0x02, 0x05, 0x02, 0x05, 0x00, 0x00, 0x77, 0x07, 0xa6, 0x06, 0x00, 0x01, 0x00, 0xa8, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xac, 0x06, 0x00, 0x01, 0x00, 0xae, 0x06, 0x00, 0x02, 0x00, 0xb0, 0x06, 0x00, 0x03, 0x00, 0xb2, 0x06, 0x00, 0x04, 0x00, 0x38, 0x9a, 0x01, 0x00, 0x00, 0x42, 0x67, 0x00, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xcc, 0xb5, 0xc9, 0xc5, 0xc8, 0xe9, 0xa3, 0xea, 0x60, 0xc8, 0xc5, 0x47, 0xcb, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0x66, 0x00, 0x00, 0x00, 0xd2, 0xc7, 0x24, 0x02, 0x00, 0xc4, 0x04, 0x09, 0x43, 0x3f, 0x00, 0x00, 0x00, 0x04, 0x40, 0x00, 0x00, 0x00, 0xc2, 0x04, 0xa8, 0xea, 0x1d, 0xc2, 0x04, 0x41, 0x40, 0x00, 0x00, 0x00, 0xf5, 0xeb, 0x11, 0xc2, 0x04, 0x09, 0x43, 0x3e, 0x00, 0x00, 0x00, 0xc2, 0x04, 0x09, 0x43, 0x3d, 0x00, 0x00, 0x00, 0xec, 0x09, 0xc2, 0x04, 0x09, 0x43, 0x3d, 0x00, 0x00, 0x00, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0x65, 0x00, 0x00, 0x00, 0xd1, 0xc7, 0xc2, 0x04, 0x24, 0x03, 0x00, 0x0e, 0x93, 0x00, 0xec, 0x9c, 0x29, 0xd8, 0x04, 0x23, 0x0e, 0x04, 0x4e, 0x2b, 0x17, 0x58, 0x21, 0x35, 0x35, 0x2b, 0x2c, 0x0e, 0x2c, 0x5d, 0x17, 0x0e, 0x41, 0x06, 0x05, 0xdc, 0x04, 0x02, 0x09, 0x01, 0x07, 0x00, 0x00, 0xfd, 0x01, 0x0b, 0xb6, 0x06, 0x00, 0x01, 0x00, 0xb8, 0x06, 0x00, 0x01, 0x00, 0xba, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xbc, 0x06, 0x00, 0x02, 0x00, 0xbe, 0x06, 0x00, 0x03, 0x00, 0xc0, 0x06, 0x00, 0x04, 0x00, 0xc2, 0x06, 0x00, 0x05, 0x00, 0xa6, 0x06, 0x00, 0x06, 0x00, 0xb0, 0x06, 0x00, 0x07, 0x00, 0xc4, 0x06, 0x00, 0x08, 0x00, 0x0d, 0x01, 0x00, 0xd6, 0x04, 0x7f, 0x01, 0x00, 0x00, 0x04, 0x80, 0x01, 0x00, 0x00, 0x26, 0x02, 0x00, 0xc3, 0x08, 0x26, 0x00, 0x00, 0xc9, 0xb5, 0xca, 0xc6, 0xd2, 0xe9, 0xa3, 0x69, 0xb6, 0x00, 0x00, 0x00, 0xd2, 0xc6, 0x47, 0xcf, 0x41, 0x7f, 0x01, 0x00, 0x00, 0x11, 0xeb, 0x08, 0x0e, 0xc7, 0x41, 0x80, 0x01, 0x00, 0x00, 0x69, 0x8e, 0x00, 0x00, 0x00, 0xc7, 0x41, 0x7f, 0x01, 0x00, 0x00, 0xc7, 0x41, 0x80, 0x01, 0x00, 0x00, 0x26, 0x02, 0x00, 0xc3, 0x07, 0xc7, 0x04, 0x7f, 0x01, 0x00, 0x00, 0x98, 0x0e, 0xc7, 0x04, 0x80, 0x01, 0x00, 0x00, 0x98, 0x0e, 0xb5, 0xc3, 0x05, 0xc2, 0x05, 0xb7, 0xa3, 0xea, 0x6c, 0xc2, 0x07, 0xc2, 0x05, 0x47, 0xc4, 0x06, 0xea, 0x54, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xc2, 0x06, 0x24, 0x01, 0x00, 0x96, 0xea, 0x08, 0xc2, 0x06, 0x26, 0x01, 0x00, 0xc3, 0x06, 0xb5, 0xcc, 0xc8, 0xc2, 0x06, 0xe9, 0xa3, 0xea, 0x32, 0x0b, 0xc3, 0x04, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0xa4, 0x01, 0x00, 0x00, 0xc2, 0x04, 0xc7, 0x24, 0x02, 0x00, 0x0e, 0xc2, 0x04, 0xc2, 0x08, 0xc2, 0x05, 0x47, 0x71, 0xc2, 0x06, 0xc8, 0x47, 0x49, 0xc5, 0x42, 0xa5, 0x01, 0x00, 0x00, 0xc2, 0x04, 0x24, 0x01, 0x00, 0x0e, 0x93, 0x03, 0xec, 0xc9, 0x93, 0x05, 0xec, 0x9b, 0xc5, 0x42, 0xa5, 0x01, 0x00, 0x00, 0xc7, 0x24, 0x01, 0x00, 0x0e, 0x93, 0x01, 0xed, 0x47, 0xff, 0xd1, 0x38, 0x9b, 0x00, 0x00, 0x00, 0x41, 0xa6, 0x01, 0x00, 0x00, 0x71, 0x38, 0xb7, 0x00, 0x00, 0x00, 0x41, 0xa7, 0x01, 0x00, 0x00, 0x42, 0xa8, 0x01, 0x00, 0x00, 0x07, 0x26, 0x01, 0x00, 0xb6, 0xc5, 0x52, 0x0e, 0x18, 0x27, 0x00, 0x00, 0x49, 0x29, 0xd8, 0x04, 0x3a, 0x19, 0x19, 0x4e, 0x17, 0x3a, 0x17, 0x67, 0x58, 0x2b, 0x2b, 0x30, 0x26, 0x0d, 0x5d, 0x27, 0x30, 0x12, 0x58, 0x44, 0x3f, 0x18, 0x18, 0x3b, 0x1c, 0x3f, 0x8f, 0x0e, 0x43, 0x06, 0x05, 0xde, 0x04, 0x02, 0x03, 0x02, 0x04, 0x00, 0x00, 0xbc, 0x01, 0x05, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x02, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0x96, 0xea, 0x12, 0x38, 0x01, 0x01, 0x00, 0x00, 0x38, 0x02, 0x01, 0x00, 0x00, 0xd1, 0xef, 0xd2, 0x9a, 0x23, 0x01, 0x00, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xea, 0x2d, 0xd1, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xa7, 0x11, 0xeb, 0x09, 0x0e, 0xd1, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x18, 0x38, 0x19, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x42, 0x91, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xef, 0xc9, 0xec, 0x03, 0xb6, 0xc9, 0xd2, 0xb5, 0xa9, 0xea, 0x03, 0xc5, 0x28, 0x09, 0xca, 0xd2, 0xb5, 0xa3, 0xea, 0x06, 0x0a, 0xca, 0xd2, 0x8c, 0xd6, 0xd1, 0xc9, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xab, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xb6, 0x9e, 0xcb, 0xc7, 0xb5, 0xa6, 0xea, 0x14, 0xc5, 0xc5, 0x9a, 0xc9, 0xd2, 0xc7, 0xa1, 0xb6, 0xad, 0xea, 0x05, 0xc5, 0xd1, 0x9a, 0xc9, 0x92, 0x02, 0xec, 0xe9, 0xc6, 0xea, 0x1a, 0xc5, 0x41, 0xfc, 0x00, 0x00, 0x00, 0xf5, 0xeb, 0x07, 0x04, 0xac, 0x01, 0x00, 0x00, 0x2f, 0xc5, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc9, 0xc5, 0x28, 0xd8, 0x04, 0x5d, 0x18, 0x04, 0x58, 0x59, 0x8a, 0x35, 0x6c, 0x0d, 0x0e, 0x1c, 0x0d, 0x0d, 0x1c, 0x0d, 0x13, 0x0d, 0x71, 0x17, 0x26, 0x17, 0x17, 0x12, 0x30, 0x21, 0x36, 0x0e, 0x43, 0x06, 0x05, 0xe2, 0x04, 0x02, 0x06, 0x02, 0x05, 0x01, 0x00, 0x72, 0x08, 0xda, 0x06, 0x00, 0x01, 0x00, 0xdc, 0x06, 0x00, 0x01, 0x00, 0xde, 0x06, 0x00, 0x00, 0x00, 0xd2, 0x06, 0x00, 0x01, 0x00, 0xe0, 0x06, 0x00, 0x02, 0x00, 0xaa, 0x06, 0x00, 0x03, 0x00, 0xbe, 0x06, 0x00, 0x04, 0x00, 0xbc, 0x06, 0x00, 0x05, 0x00, 0xe0, 0x04, 0x03, 0x01, 0xd1, 0xb6, 0x9e, 0xc9, 0xb5, 0xcb, 0xc5, 0xb6, 0xad, 0xb5, 0xa9, 0xea, 0x09, 0xc5, 0xb6, 0xa1, 0xc9, 0x93, 0x02, 0xec, 0xf2, 0xdd, 0xe9, 0xd2, 0xa3, 0xea, 0x04, 0xdd, 0xe9, 0xd6, 0xb5, 0xc3, 0x04, 0xc2, 0x04, 0xd2, 0xa3, 0xea, 0x4a, 0xdd, 0xc2, 0x04, 0x47, 0xc3, 0x05, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xf1, 0x00, 0x00, 0x00, 0xc2, 0x05, 0xc5, 0xd1, 0x24, 0x03, 0x00, 0xce, 0xb6, 0xa9, 0x11, 0xeb, 0x07, 0x0e, 0xc6, 0xd1, 0xb6, 0x9e, 0xa9, 0xeb, 0x21, 0xb6, 0xcc, 0xc8, 0xc7, 0xa3, 0xea, 0x18, 0xc6, 0xc6, 0x9a, 0xd1, 0xb2, 0xce, 0xb6, 0xa9, 0xea, 0x03, 0x09, 0x28, 0xc6, 0xd1, 0xb6, 0x9e, 0xa9, 0xeb, 0x07, 0x93, 0x03, 0xec, 0xe5, 0x09, 0x28, 0x93, 0x04, 0xec, 0xb2, 0x0a, 0x28, 0xd8, 0x04, 0x7f, 0x17, 0x04, 0x17, 0x0d, 0x26, 0x17, 0x0d, 0x0d, 0x21, 0x12, 0x30, 0x21, 0x5d, 0x3a, 0x0d, 0x26, 0x21, 0x17, 0x0d, 0x1c, 0x0d, 0x17, 0x08, 0x1c, 0x0e, 0x43, 0x06, 0x05, 0xe4, 0x04, 0x02, 0x02, 0x02, 0x04, 0x01, 0x00, 0x2e, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xd2, 0x06, 0x00, 0x01, 0x00, 0xe4, 0x04, 0x05, 0x01, 0xd2, 0xd1, 0x9e, 0xba, 0xa4, 0xea, 0x16, 0xd1, 0xca, 0xd1, 0xb6, 0x9d, 0xc9, 0xc5, 0xd2, 0xa4, 0xea, 0x09, 0xc6, 0xc5, 0x9a, 0xca, 0x93, 0x00, 0xec, 0xf4, 0xc6, 0x28, 0xd1, 0xd2, 0x9d, 0xb6, 0xa1, 0xc9, 0xdd, 0xd1, 0xc5, 0xf0, 0xdd, 0xc5, 0xb6, 0x9d, 0xd2, 0xf0, 0x9a, 0x28, 0xd8, 0x04, 0x9a, 0x01, 0x08, 0x04, 0x26, 0x0d, 0x30, 0x2b, 0x08, 0x0a, 0x21, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x00, 0x02, 0x04, 0x00, 0x00, 0x26, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0x73, 0x01, 0x00, 0x00, 0xea, 0x10, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x42, 0x81, 0x01, 0x00, 0x00, 0xd1, 0xd2, 0x25, 0x02, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0x9b, 0x28, 0xd8, 0x04, 0xac, 0x01, 0x03, 0x03, 0x26, 0x4f, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x00, 0x02, 0x03, 0x01, 0x00, 0x1d, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xde, 0x04, 0x02, 0x01, 0x38, 0x73, 0x01, 0x00, 0x00, 0xea, 0x07, 0xdd, 0xd1, 0xd2, 0x23, 0x02, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0x9f, 0x28, 0xd8, 0x04, 0xb3, 0x01, 0x03, 0x03, 0x26, 0x22, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x03, 0x00, 0x00, 0x27, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x97, 0x04, 0x8b, 0x00, 0x00, 0x00, 0xab, 0x11, 0xeb, 0x1c, 0x0e, 0xd1, 0x97, 0x04, 0x46, 0x00, 0x00, 0x00, 0xab, 0x11, 0xea, 0x10, 0x0e, 0x38, 0x98, 0x00, 0x00, 0x00, 0x42, 0xb1, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x28, 0xd8, 0x04, 0xbd, 0x01, 0x02, 0x04, 0x3f, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x01, 0x02, 0x02, 0x00, 0x00, 0x11, 0x03, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xd2, 0xb5, 0xaa, 0xea, 0x0b, 0xd1, 0xd2, 0xb2, 0xc9, 0xd2, 0xd5, 0xc5, 0xd6, 0xec, 0xf2, 0xd1, 0x28, 0xd8, 0x04, 0xc2, 0x01, 0x06, 0x04, 0x1c, 0x17, 0x0d, 0x0d, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x03, 0x01, 0x00, 0x0c, 0x01, 0xda, 0x06, 0x00, 0x01, 0x00, 0xe4, 0x04, 0x05, 0x01, 0xd1, 0xb5, 0xa4, 0xea, 0x03, 0xb6, 0x28, 0xdd, 0xb6, 0xd1, 0xf0, 0x28, 0xd8, 0x04, 0xcb, 0x01, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x00, 0x02, 0x06, 0x01, 0x00, 0x39, 0x02, 0xda, 0x06, 0x00, 0x01, 0x00, 0xc2, 0x06, 0x00, 0x01, 0x00, 0xe4, 0x04, 0x05, 0x01, 0xd2, 0xb5, 0xa3, 0x11, 0xeb, 0x05, 0x0e, 0xd2, 0xd1, 0xa5, 0xea, 0x03, 0xb5, 0x28, 0xd2, 0xd1, 0xd2, 0x9e, 0xa5, 0xea, 0x05, 0xd1, 0xd2, 0x9e, 0xd6, 0xd2, 0xb5, 0xa9, 0xea, 0x03, 0xb6, 0x28, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xb2, 0x01, 0x00, 0x00, 0xdd, 0xd1, 0xd2, 0x9e, 0xb6, 0x9d, 0xd1, 0xf0, 0xdd, 0xb6, 0xd2, 0xf0, 0x25, 0x02, 0x00, 0xd8, 0x04, 0xcf, 0x01, 0x07, 0x03, 0x3f, 0x0d, 0x26, 0x17, 0x1c, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x06, 0x02, 0x04, 0x00, 0x00, 0x4f, 0x08, 0xe6, 0x06, 0x00, 0x01, 0x00, 0xe8, 0x06, 0x00, 0x01, 0x00, 0xea, 0x06, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x01, 0x00, 0xee, 0x06, 0x00, 0x02, 0x00, 0xbc, 0x06, 0x00, 0x03, 0x00, 0xf0, 0x06, 0x00, 0x04, 0x00, 0xdc, 0x06, 0x00, 0x05, 0x00, 0xd1, 0xca, 0xd2, 0xcb, 0xb6, 0xc3, 0x04, 0xb5, 0xcc, 0xc6, 0xb5, 0xaa, 0xea, 0x2d, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xb9, 0x01, 0x00, 0x00, 0xc7, 0xc6, 0x24, 0x02, 0x00, 0xc4, 0x05, 0xb5, 0x47, 0xc9, 0xc6, 0xcb, 0xc2, 0x05, 0xb6, 0x47, 0xca, 0xc2, 0x04, 0xc3, 0x05, 0xc8, 0xc5, 0xc2, 0x04, 0x9a, 0x9e, 0xc3, 0x04, 0xc2, 0x05, 0xcc, 0xec, 0xd0, 0xc7, 0xb6, 0xaa, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0xba, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xc8, 0xd2, 0xb2, 0x28, 0xd8, 0x04, 0xd9, 0x01, 0x10, 0x04, 0x0d, 0x0d, 0x12, 0x0d, 0x1c, 0x58, 0x12, 0x0d, 0x1c, 0x17, 0x2b, 0x12, 0x0e, 0x1c, 0x3f, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x03, 0x01, 0x03, 0x04, 0x00, 0x00, 0x3e, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xf6, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xd2, 0xb5, 0xa9, 0xea, 0x03, 0xb6, 0x28, 0xd2, 0xb5, 0xa3, 0xea, 0x14, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xf2, 0x00, 0x00, 0x00, 0xd1, 0xd3, 0x24, 0x02, 0x00, 0xd5, 0xd2, 0x8c, 0xd6, 0xb6, 0xc9, 0xd2, 0xb6, 0xad, 0xea, 0x07, 0xc5, 0xd1, 0x9a, 0xd3, 0xb2, 0xc9, 0xd2, 0xb6, 0xa1, 0xda, 0xb5, 0xa9, 0xeb, 0x09, 0xd1, 0xd1, 0x9a, 0xd3, 0xb2, 0xd5, 0xec, 0xe6, 0xc5, 0x28, 0xd8, 0x04, 0xee, 0x01, 0x0e, 0x04, 0x1c, 0x0d, 0x1c, 0x53, 0x13, 0x0e, 0x1c, 0x22, 0x17, 0x0d, 0x0d, 0x21, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x03, 0x02, 0x03, 0x02, 0x00, 0x62, 0x05, 0xda, 0x06, 0x00, 0x01, 0x00, 0xdc, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xde, 0x06, 0x00, 0x01, 0x00, 0xf8, 0x06, 0x00, 0x02, 0x00, 0xe0, 0x04, 0x03, 0x01, 0xe2, 0x04, 0x04, 0x01, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbd, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0xb6, 0xa4, 0xea, 0x03, 0x09, 0x28, 0xdd, 0xe9, 0xcb, 0xb5, 0xc9, 0xc5, 0xc7, 0xa3, 0xea, 0x1f, 0xdd, 0xc5, 0x47, 0xce, 0xd1, 0xa9, 0xea, 0x03, 0x0a, 0x28, 0xc6, 0xd1, 0xa5, 0xea, 0x03, 0x09, 0x28, 0xd1, 0xc6, 0xb2, 0xb5, 0xa9, 0xea, 0x03, 0x09, 0x28, 0x93, 0x00, 0xec, 0xde, 0xd1, 0xc6, 0xc6, 0x9a, 0xa3, 0xea, 0x03, 0x0a, 0x28, 0xd2, 0xf4, 0xea, 0x04, 0xbd, 0x40, 0xd6, 0xde, 0xd1, 0xd2, 0x23, 0x02, 0x00, 0xd8, 0x04, 0x85, 0x02, 0x13, 0x04, 0x58, 0x3f, 0x1c, 0x0d, 0x13, 0x26, 0x17, 0x17, 0x0d, 0x1c, 0x0d, 0x26, 0x0d, 0x17, 0x26, 0x0d, 0x17, 0x12, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x03, 0x00, 0x00, 0x39, 0x01, 0xda, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbd, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0xb6, 0xa3, 0xea, 0x03, 0xb6, 0xd5, 0xd1, 0x8f, 0xd5, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x29, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xea, 0xee, 0xd1, 0x28, 0xd8, 0x04, 0x9c, 0x02, 0x08, 0x03, 0x58, 0x3f, 0x1c, 0x0e, 0x12, 0x53, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x02, 0x01, 0x04, 0x00, 0x00, 0xbb, 0x01, 0x03, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xde, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbd, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x26, 0x00, 0x00, 0xc9, 0x38, 0xf9, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xb6, 0xa4, 0xea, 0x0e, 0xc5, 0x42, 0xa5, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x0e, 0xc5, 0x28, 0xd1, 0xb5, 0xa3, 0xea, 0x0f, 0xc5, 0x42, 0xa5, 0x01, 0x00, 0x00, 0xb4, 0x24, 0x01, 0x00, 0x0e, 0xd1, 0x8c, 0xd5, 0xd1, 0xb7, 0xb2, 0xb5, 0xa9, 0xea, 0x12, 0xd1, 0xb6, 0xa1, 0xd5, 0xc5, 0x42, 0xa5, 0x01, 0x00, 0x00, 0xb7, 0x24, 0x01, 0x00, 0x0e, 0xec, 0xe9, 0xb8, 0xca, 0xd1, 0xb6, 0xaa, 0xea, 0x4f, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x29, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xea, 0x0e, 0xc5, 0x42, 0xa5, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x0e, 0xec, 0x32, 0xd1, 0xc6, 0xb2, 0xb5, 0xa9, 0xeb, 0x06, 0xb7, 0x94, 0x01, 0xec, 0xf5, 0xc5, 0x42, 0xa5, 0x01, 0x00, 0x00, 0xc6, 0x24, 0x01, 0x00, 0x0e, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xb2, 0x01, 0x00, 0x00, 0xd1, 0xc6, 0x24, 0x02, 0x00, 0xd9, 0xc6, 0xb2, 0xb5, 0xaa, 0xeb, 0x03, 0xec, 0xde, 0xec, 0xae, 0xc5, 0x28, 0xd8, 0x04, 0xa7, 0x02, 0x20, 0x04, 0x58, 0x3f, 0x17, 0x3a, 0x3a, 0x08, 0x08, 0x1c, 0x3a, 0x14, 0x26, 0x17, 0x3a, 0x0e, 0x0d, 0x1c, 0x53, 0x3a, 0x00, 0x02, 0x08, 0x1c, 0x0d, 0x12, 0x0e, 0x3a, 0x53, 0x17, 0x0d, 0x0d, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x06, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xb6, 0xc5, 0x9b, 0x28, 0xd8, 0x04, 0xd2, 0x02, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x06, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xc5, 0x9a, 0x28, 0xd8, 0x04, 0xd5, 0x02, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x0d, 0x02, 0xee, 0x06, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xca, 0xc6, 0xcd, 0xb5, 0xa3, 0xea, 0x04, 0xc5, 0x8c, 0xc9, 0xc5, 0x28, 0xd8, 0x04, 0xd8, 0x02, 0x04, 0x0d, 0x08, 0x1c, 0x12, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x04, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x28, 0xd8, 0x04, 0xde, 0x02, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x14, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xb5, 0xa6, 0xea, 0x03, 0xb5, 0x28, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x28, 0x01, 0x00, 0x00, 0x28, 0xd8, 0x04, 0xe1, 0x02, 0x04, 0x0d, 0x1c, 0x08, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x17, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xb5, 0xa9, 0xea, 0x03, 0xb6, 0x28, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x01, 0x01, 0x00, 0x00, 0xc5, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xe7, 0x02, 0x04, 0x0d, 0x1c, 0x08, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x18, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xb6, 0xa9, 0xea, 0x03, 0xb5, 0x28, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xc5, 0xef, 0x42, 0x02, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xed, 0x02, 0x04, 0x0d, 0x1c, 0x08, 0x08, 0x0e, 0x43, 0x06, 0x05, 0xc6, 0x03, 0x02, 0x05, 0x02, 0x04, 0x00, 0x00, 0xd4, 0x01, 0x07, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xde, 0x06, 0x00, 0x00, 0x00, 0xd2, 0x06, 0x00, 0x01, 0x00, 0xa6, 0x06, 0x00, 0x02, 0x00, 0xe2, 0x01, 0x00, 0x01, 0x00, 0xc6, 0x03, 0x00, 0x01, 0x14, 0x0c, 0x03, 0xcc, 0x0c, 0x02, 0xc3, 0x04, 0xc8, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbe, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0xc2, 0x04, 0xa7, 0xea, 0x03, 0xd1, 0x28, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbf, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd2, 0xf4, 0xea, 0x05, 0xb6, 0xd6, 0xec, 0x6e, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbf, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd2, 0xb5, 0xa9, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xee, 0x00, 0x00, 0x00, 0xd1, 0xd2, 0x24, 0x02, 0x00, 0xcd, 0xb6, 0xaa, 0xea, 0x21, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xb2, 0x01, 0x00, 0x00, 0xd1, 0xc5, 0x24, 0x02, 0x00, 0xd5, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xb2, 0x01, 0x00, 0x00, 0xd2, 0xc5, 0x24, 0x02, 0x00, 0xd6, 0xd2, 0xb5, 0xa3, 0xea, 0x07, 0xd1, 0x8c, 0xd5, 0xd2, 0x8c, 0xd6, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0xa7, 0x01, 0x00, 0x00, 0xc2, 0x04, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcf, 0xd1, 0x43, 0xc1, 0x01, 0x00, 0x00, 0xc7, 0xd2, 0x43, 0xc2, 0x01, 0x00, 0x00, 0xc7, 0x28, 0xd8, 0x04, 0xf7, 0x02, 0x1c, 0x00, 0x07, 0x08, 0x12, 0x3f, 0x21, 0x0d, 0x58, 0x3f, 0x17, 0x0d, 0x0d, 0x58, 0x3f, 0x1c, 0x3f, 0x53, 0x17, 0x53, 0x00, 0x10, 0x08, 0x1c, 0x12, 0x14, 0x6c, 0x21, 0x26, 0x0e, 0x43, 0x06, 0x05, 0xe6, 0x04, 0x02, 0x00, 0x02, 0x05, 0x00, 0x00, 0x45, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x42, 0x81, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x9a, 0x9d, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0x25, 0x02, 0x00, 0xd8, 0x04, 0x9a, 0x03, 0x03, 0x03, 0x2b, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0xe8, 0x04, 0x02, 0x00, 0x02, 0x05, 0x00, 0x00, 0x45, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x42, 0x81, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x9a, 0x9e, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0x25, 0x02, 0x00, 0xd8, 0x04, 0x9f, 0x03, 0x03, 0x03, 0x2b, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0xea, 0x04, 0x02, 0x00, 0x02, 0x05, 0x00, 0x00, 0x37, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x42, 0x81, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0x25, 0x02, 0x00, 0xd8, 0x04, 0xa4, 0x03, 0x03, 0x03, 0x2b, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0xec, 0x04, 0x02, 0x00, 0x02, 0x05, 0x00, 0x00, 0x37, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0x38, 0xe3, 0x00, 0x00, 0x00, 0x42, 0x81, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x9a, 0x25, 0x02, 0x00, 0xd8, 0x04, 0xa9, 0x03, 0x03, 0x03, 0x2b, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0xee, 0x04, 0x02, 0x02, 0x02, 0x06, 0x00, 0x00, 0x3c, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x86, 0x07, 0x00, 0x00, 0x00, 0x88, 0x07, 0x00, 0x01, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xc9, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xca, 0xd1, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xc5, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xc6, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0xc5, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xc6, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x9a, 0x24, 0x02, 0x00, 0xd2, 0x9a, 0x9e, 0x28, 0xd8, 0x04, 0xae, 0x03, 0x03, 0x03, 0x2b, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0xf0, 0x04, 0x02, 0x00, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xa9, 0x11, 0xea, 0x0f, 0x0e, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xa9, 0x28, 0xd8, 0x04, 0xb3, 0x03, 0x03, 0x03, 0x2b, 0x2c, 0x0e, 0x43, 0x06, 0x05, 0xf2, 0x04, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x2c, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0xa3, 0x28, 0xd8, 0x04, 0xb9, 0x03, 0x03, 0x03, 0x2b, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0xf4, 0x04, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x10, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0x9d, 0x28, 0xd8, 0x04, 0xc0, 0x03, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xf6, 0x04, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x10, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0x9e, 0x28, 0xd8, 0x04, 0xc3, 0x03, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xf8, 0x04, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x10, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0x9a, 0x28, 0xd8, 0x04, 0xc6, 0x03, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xfa, 0x04, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x10, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0x9b, 0x28, 0xd8, 0x04, 0xc9, 0x03, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xfc, 0x04, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x10, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xb2, 0x28, 0xd8, 0x04, 0xcc, 0x03, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xfe, 0x04, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x10, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0x9f, 0x28, 0xd8, 0x04, 0xcf, 0x03, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0x80, 0x05, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x10, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xab, 0x28, 0xd8, 0x04, 0xd2, 0x03, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x82, 0x05, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x3c, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0xc6, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x11, 0xeb, 0x10, 0x0e, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0xc6, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xea, 0x07, 0x38, 0x45, 0x00, 0x00, 0x00, 0x28, 0xd1, 0xd2, 0xa3, 0x28, 0xd8, 0x04, 0xd6, 0x03, 0x06, 0x03, 0x2b, 0x2c, 0xad, 0x1c, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x01, 0x00, 0x00, 0x02, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x28, 0xd8, 0x04, 0xea, 0x03, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x03, 0x00, 0x00, 0x15, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x8c, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xed, 0x03, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x01, 0x02, 0x03, 0x00, 0x00, 0x23, 0x03, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xd1, 0xd2, 0xf0, 0xc9, 0x38, 0x73, 0x01, 0x00, 0x00, 0xea, 0x12, 0xc5, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xb6, 0xa9, 0xea, 0x08, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x28, 0xc5, 0x28, 0xd8, 0x04, 0x8c, 0x04, 0x05, 0x03, 0x30, 0x58, 0x21, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x01, 0x01, 0x02, 0x00, 0x00, 0x28, 0x02, 0x8e, 0x07, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xd1, 0x04, 0x48, 0x00, 0x00, 0x00, 0xab, 0xea, 0x0a, 0xc5, 0x42, 0x37, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xef, 0xc5, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9b, 0x28, 0xd8, 0x04, 0x96, 0x04, 0x03, 0x0d, 0x30, 0x31, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x16, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0x9d, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x16, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x04, 0x75, 0x01, 0x00, 0x00, 0x9d, 0xc5, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9d, 0x28, 0xd8, 0x04, 0xa0, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x06, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xc5, 0x9a, 0x28, 0xd8, 0x04, 0xa3, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x11, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xb5, 0xa3, 0xea, 0x04, 0xc5, 0x8c, 0x28, 0xc5, 0x28, 0xd8, 0x04, 0xa6, 0x04, 0x04, 0x0d, 0x35, 0x0d, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x04, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x28, 0xd8, 0x04, 0xac, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x19, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xb5, 0xa6, 0xea, 0x03, 0xb5, 0x28, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x28, 0x01, 0x00, 0x00, 0x28, 0xd8, 0x04, 0xaf, 0x04, 0x04, 0x0d, 0x35, 0x08, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x16, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x01, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xc5, 0xef, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xb5, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x11, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xc5, 0xef, 0x42, 0x02, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xb8, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x06, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xb6, 0xc5, 0x9b, 0x28, 0xd8, 0x04, 0xc0, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x06, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xc5, 0x9a, 0x28, 0xd8, 0x04, 0xc3, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x10, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0x9d, 0x00, 0x00, 0x00, 0x42, 0xf9, 0x00, 0x00, 0x00, 0xc5, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xc6, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x04, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x28, 0xd8, 0x04, 0xc9, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x14, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xb5, 0xa6, 0xea, 0x03, 0xb5, 0x28, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x28, 0x01, 0x00, 0x00, 0x28, 0xd8, 0x04, 0xcc, 0x04, 0x04, 0x0d, 0x1c, 0x08, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x10, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x01, 0x01, 0x00, 0x00, 0xc5, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xd2, 0x04, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x24, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xb5, 0xa3, 0xea, 0x10, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xc5, 0xef, 0x42, 0x02, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x02, 0x01, 0x00, 0x00, 0xc5, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xd5, 0x04, 0x03, 0x0d, 0x1c, 0x4f, 0x0e, 0x43, 0x06, 0x05, 0x86, 0x05, 0x01, 0x03, 0x01, 0x05, 0x01, 0x01, 0xcb, 0x01, 0x04, 0xda, 0x06, 0x00, 0x01, 0x00, 0xdc, 0x06, 0x00, 0x00, 0x00, 0xf0, 0x06, 0x00, 0x01, 0x00, 0x90, 0x07, 0x00, 0x02, 0x00, 0x84, 0x05, 0x15, 0x01, 0xdd, 0xd1, 0x47, 0xc9, 0x38, 0xb4, 0x00, 0x00, 0x00, 0x41, 0xc9, 0x01, 0x00, 0x00, 0xcb, 0xc5, 0xea, 0x12, 0xc5, 0x41, 0xc9, 0x01, 0x00, 0x00, 0xc7, 0xa9, 0xea, 0x08, 0xc5, 0x41, 0x96, 0x01, 0x00, 0x00, 0x28, 0xd1, 0x11, 0xb5, 0xab, 0xea, 0x12, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x01, 0x01, 0x00, 0x00, 0xb6, 0x24, 0x01, 0x00, 0xca, 0xec, 0x77, 0x11, 0xb6, 0xab, 0xea, 0x13, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x02, 0x01, 0x00, 0x00, 0xbd, 0x0a, 0x24, 0x01, 0x00, 0xca, 0xec, 0x60, 0x11, 0xb8, 0xab, 0xea, 0x14, 0xb6, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x02, 0x01, 0x00, 0x00, 0xb7, 0x24, 0x01, 0x00, 0x9b, 0xca, 0xec, 0x48, 0x11, 0xb9, 0xab, 0xea, 0x15, 0xb6, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x02, 0x01, 0x00, 0x00, 0xbd, 0x0a, 0x24, 0x01, 0x00, 0x9b, 0xca, 0xec, 0x2f, 0x11, 0xbb, 0xab, 0xea, 0x16, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x00, 0x01, 0x00, 0x00, 0xbf, 0x00, 0xbd, 0xed, 0xb1, 0x24, 0x01, 0x00, 0xca, 0xec, 0x15, 0x11, 0xbc, 0xab, 0xea, 0x10, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x00, 0x01, 0x00, 0x00, 0xb7, 0x24, 0x01, 0x00, 0xca, 0x0e, 0xc7, 0xbe, 0x00, 0x04, 0xa4, 0xea, 0x12, 0xdd, 0xd1, 0x71, 0x0b, 0xc7, 0x4c, 0xc9, 0x01, 0x00, 0x00, 0xc6, 0x4c, 0x96, 0x01, 0x00, 0x00, 0x49, 0xc6, 0x28, 0xd8, 0x04, 0xe3, 0x04, 0x10, 0x04, 0x17, 0x3a, 0x44, 0x21, 0x08, 0x08, 0x71, 0x77, 0x7b, 0x81, 0x85, 0x67, 0x08, 0x26, 0x59, 0x0b, 0x88, 0x02, 0x06, 0xe8, 0x89, 0x04, 0x23, 0xc7, 0x8a, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x15, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x97, 0x04, 0x46, 0x00, 0x00, 0x00, 0xab, 0x11, 0xeb, 0x0a, 0x0e, 0xd1, 0x97, 0x04, 0x8c, 0x00, 0x00, 0x00, 0xab, 0x28, 0xd8, 0x04, 0xfc, 0x04, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x07, 0x02, 0x04, 0x00, 0x01, 0x61, 0x09, 0xec, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x94, 0x07, 0x00, 0x00, 0x00, 0x96, 0x07, 0x00, 0x01, 0x00, 0x98, 0x07, 0x00, 0x02, 0x00, 0x9a, 0x07, 0x00, 0x03, 0x00, 0x82, 0x07, 0x00, 0x04, 0x00, 0x84, 0x07, 0x00, 0x05, 0x00, 0xda, 0x06, 0x00, 0x06, 0x00, 0xd2, 0xf4, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xce, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xb6, 0xc9, 0xb5, 0xca, 0xb5, 0xcb, 0xb6, 0xcc, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0xfe, 0x00, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xef, 0xc4, 0x06, 0xc5, 0x9a, 0xc6, 0x9d, 0xc3, 0x04, 0xc2, 0x06, 0xc7, 0x9a, 0xc8, 0x9d, 0xc4, 0x05, 0xd2, 0xa5, 0xeb, 0x18, 0xbf, 0x00, 0xbd, 0xee, 0xb1, 0xd1, 0xc2, 0x06, 0x9e, 0x9b, 0xd5, 0xc5, 0xca, 0xc2, 0x04, 0xc9, 0xc7, 0xcc, 0xc2, 0x05, 0xcb, 0xec, 0xc2, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xc5, 0xc7, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xff, 0x04, 0x12, 0x05, 0x17, 0x3f, 0x0d, 0x0d, 0x0d, 0x0e, 0x71, 0x21, 0x2b, 0x0d, 0x0d, 0x3a, 0x0d, 0x12, 0x0d, 0x12, 0x0d, 0x0b, 0xfc, 0x01, 0x06, 0x40, 0x76, 0x3a, 0x6b, 0x0b, 0xde, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x05, 0x00, 0x86, 0x05, 0x16, 0x01, 0xdd, 0xb5, 0x23, 0x01, 0x00, 0xd8, 0x04, 0x97, 0x05, 0x00, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x05, 0x00, 0x86, 0x05, 0x16, 0x01, 0xdd, 0xb6, 0x23, 0x01, 0x00, 0xd8, 0x04, 0x98, 0x05, 0x00, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x05, 0x00, 0x86, 0x05, 0x16, 0x01, 0xdd, 0xb8, 0x23, 0x01, 0x00, 0xd8, 0x04, 0x9a, 0x05, 0x00, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x05, 0x00, 0x86, 0x05, 0x16, 0x01, 0xdd, 0xb9, 0x23, 0x01, 0x00, 0xd8, 0x04, 0x9b, 0x05, 0x00, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x05, 0x00, 0x86, 0x05, 0x16, 0x01, 0xdd, 0xbb, 0x23, 0x01, 0x00, 0xd8, 0x04, 0x9d, 0x05, 0x00, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x05, 0x00, 0x86, 0x05, 0x16, 0x01, 0xdd, 0xbc, 0x23, 0x01, 0x00, 0xd8, 0x04, 0x9e, 0x05, 0x00, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x0a, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xbf, 0x00, 0xbd, 0xee, 0xb1, 0xc5, 0x9b, 0x28, 0xd8, 0x04, 0xa2, 0x05, 0x01, 0x0d, 0x0b, 0xfc, 0x01, 0x06, 0x40, 0x76, 0x3a, 0x6b, 0x0b, 0xde, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x06, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xc5, 0x9a, 0x28, 0xd8, 0x04, 0xa5, 0x05, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x10, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0xf9, 0x00, 0x00, 0x00, 0xc5, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xa8, 0x05, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x04, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x28, 0xd8, 0x04, 0xab, 0x05, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x14, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xb5, 0xa6, 0xea, 0x03, 0xb5, 0x28, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x28, 0x01, 0x00, 0x00, 0x28, 0xd8, 0x04, 0xae, 0x05, 0x04, 0x0d, 0x1c, 0x08, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x10, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x01, 0x01, 0x00, 0x00, 0xc5, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xb4, 0x05, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x24, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xb5, 0xa3, 0xea, 0x10, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xc5, 0xef, 0x42, 0x02, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x02, 0x01, 0x00, 0x00, 0xc5, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xb7, 0x05, 0x03, 0x0d, 0x1c, 0x4f, 0x0e, 0x43, 0x06, 0x05, 0xc8, 0x03, 0x02, 0x03, 0x02, 0x03, 0x00, 0x00, 0x45, 0x05, 0x9e, 0x07, 0x00, 0x01, 0x00, 0xa0, 0x07, 0x00, 0x01, 0x00, 0xa6, 0x06, 0x00, 0x00, 0x00, 0xe2, 0x01, 0x00, 0x01, 0x00, 0xc8, 0x03, 0x00, 0x01, 0x14, 0x0c, 0x03, 0xca, 0x0c, 0x02, 0xcb, 0xc6, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbe, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0xc7, 0xa7, 0xea, 0x03, 0xd1, 0x28, 0xd2, 0xf4, 0xea, 0x03, 0xb5, 0xd6, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0xa7, 0x01, 0x00, 0x00, 0xc7, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcd, 0xd1, 0x43, 0xcf, 0x01, 0x00, 0x00, 0xc5, 0xd2, 0x43, 0xd0, 0x01, 0x00, 0x00, 0xc5, 0x28, 0xd8, 0x04, 0xc2, 0x05, 0x0a, 0x23, 0x12, 0x3f, 0x1c, 0x0d, 0x17, 0x0e, 0x67, 0x21, 0x26, 0x0e, 0x43, 0x06, 0x05, 0x88, 0x05, 0x02, 0x00, 0x02, 0x05, 0x00, 0x00, 0x37, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x42, 0x8a, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xcf, 0x01, 0x00, 0x00, 0x9d, 0xd1, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd0, 0x01, 0x00, 0x00, 0x9d, 0x25, 0x02, 0x00, 0xd8, 0x04, 0xd3, 0x05, 0x03, 0x03, 0x2b, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0x8a, 0x05, 0x02, 0x00, 0x02, 0x05, 0x00, 0x00, 0x37, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x42, 0x8a, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xcf, 0x01, 0x00, 0x00, 0x9e, 0xd1, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd0, 0x01, 0x00, 0x00, 0x9e, 0x25, 0x02, 0x00, 0xd8, 0x04, 0xd8, 0x05, 0x03, 0x03, 0x2b, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0x8c, 0x05, 0x02, 0x00, 0x02, 0x06, 0x00, 0x00, 0x53, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x42, 0x8a, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xcf, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd0, 0x01, 0x00, 0x00, 0x9a, 0x9e, 0xd1, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd0, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xcf, 0x01, 0x00, 0x00, 0x9a, 0x9d, 0x25, 0x02, 0x00, 0xd8, 0x04, 0xdd, 0x05, 0x04, 0x03, 0x2b, 0x2b, 0xbc, 0x0e, 0x43, 0x06, 0x05, 0x8e, 0x05, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x1c, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0xd1, 0xd2, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x9a, 0x28, 0xd8, 0x04, 0xe3, 0x05, 0x03, 0x03, 0x2b, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0x90, 0x05, 0x02, 0x00, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0xd1, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xa9, 0x11, 0xea, 0x0f, 0x0e, 0xd1, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xa9, 0x28, 0xd8, 0x04, 0xe8, 0x05, 0x03, 0x03, 0x2b, 0x2b, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x01, 0x00, 0x00, 0x02, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x28, 0xd8, 0x04, 0xf6, 0x05, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x03, 0x00, 0x00, 0x16, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xcf, 0x01, 0x00, 0x00, 0x8c, 0xd1, 0x41, 0xd0, 0x01, 0x00, 0x00, 0x8c, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xf9, 0x05, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x18, 0x02, 0x9e, 0x07, 0x00, 0x01, 0x00, 0xa0, 0x07, 0x00, 0x01, 0x00, 0x38, 0x73, 0x01, 0x00, 0x00, 0xea, 0x08, 0xd2, 0xb5, 0xa9, 0xea, 0x03, 0xd1, 0x28, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xd1, 0xd2, 0x23, 0x02, 0x00, 0xd8, 0x04, 0x8a, 0x06, 0x04, 0x03, 0x3f, 0x08, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x25, 0x02, 0xf0, 0x06, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xca, 0xc6, 0x42, 0xf8, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc9, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xc6, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xc5, 0x9b, 0xc6, 0x41, 0xd0, 0x01, 0x00, 0x00, 0x8c, 0xc5, 0x9b, 0x23, 0x02, 0x00, 0xd8, 0x04, 0x93, 0x06, 0x02, 0x0d, 0x35, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x04, 0x00, 0x03, 0x00, 0x00, 0x83, 0x01, 0x04, 0xee, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x06, 0x00, 0x01, 0x00, 0xbc, 0x06, 0x00, 0x02, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xcc, 0xc1, 0xca, 0xc8, 0xcf, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xb5, 0xaa, 0xea, 0x12, 0xc6, 0xc7, 0x41, 0xcf, 0x01, 0x00, 0x00, 0x42, 0x37, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x9d, 0xca, 0xc7, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xb6, 0xa9, 0xea, 0x16, 0xc6, 0xc1, 0xaa, 0xea, 0x08, 0x04, 0x78, 0x01, 0x00, 0x00, 0x94, 0x01, 0x04, 0xeb, 0x00, 0x00, 0x00, 0x94, 0x01, 0xec, 0x43, 0xc7, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xb4, 0xa9, 0xea, 0x0a, 0x04, 0xd1, 0x01, 0x00, 0x00, 0x94, 0x01, 0xec, 0x30, 0xc7, 0x41, 0xd0, 0x01, 0x00, 0x00, 0x42, 0x37, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xcd, 0xb5, 0x47, 0x04, 0x79, 0x01, 0x00, 0x00, 0xaa, 0xea, 0x0d, 0xc6, 0xc1, 0xaa, 0xea, 0x08, 0x04, 0x78, 0x01, 0x00, 0x00, 0x94, 0x01, 0xc6, 0xc5, 0x04, 0xd2, 0x01, 0x00, 0x00, 0x9d, 0x9d, 0xca, 0xc6, 0x28, 0xd8, 0x04, 0x97, 0x06, 0x0f, 0x0d, 0x12, 0x35, 0x58, 0x35, 0x1c, 0x26, 0x26, 0x3f, 0x26, 0x0d, 0x4e, 0x4e, 0x26, 0x36, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x1e, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xcf, 0x01, 0x00, 0x00, 0x9a, 0xc5, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xd0, 0x01, 0x00, 0x00, 0x9a, 0x9d, 0x28, 0xd8, 0x04, 0xa9, 0x06, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x16, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x00, 0x01, 0x00, 0x00, 0x38, 0xf8, 0x00, 0x00, 0x00, 0xc5, 0xef, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xac, 0x06, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x17, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xd0, 0x01, 0x00, 0x00, 0x8c, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xaf, 0x06, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x1b, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x0d, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xcf, 0x01, 0x00, 0x00, 0x25, 0x02, 0x00, 0xd8, 0x04, 0xb2, 0x06, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x32, 0x03, 0xf6, 0x03, 0x00, 0x00, 0x00, 0xd2, 0x06, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xcb, 0xc7, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xc9, 0xc7, 0x41, 0xcf, 0x01, 0x00, 0x00, 0x42, 0x01, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xca, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xc6, 0x38, 0x08, 0x01, 0x00, 0x00, 0xc5, 0xef, 0x9a, 0xc6, 0x38, 0x07, 0x01, 0x00, 0x00, 0xc5, 0xef, 0x9a, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xb5, 0x06, 0x02, 0x0d, 0x71, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x2b, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x38, 0xf9, 0x00, 0x00, 0x00, 0xc5, 0xef, 0x42, 0x02, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0x38, 0x0d, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xf0, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xb9, 0x06, 0x01, 0x0d, 0x0e, 0x43, 0x06, 0x05, 0xca, 0x03, 0x02, 0x04, 0x02, 0x03, 0x00, 0x00, 0xa2, 0x01, 0x06, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xf6, 0x06, 0x00, 0x01, 0x00, 0xa6, 0x06, 0x00, 0x00, 0x00, 0xdc, 0x06, 0x00, 0x01, 0x00, 0xe2, 0x01, 0x00, 0x01, 0x00, 0xca, 0x03, 0x00, 0x01, 0x14, 0x0c, 0x03, 0xcb, 0x0c, 0x02, 0xcc, 0xc7, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbe, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0xa7, 0x01, 0x00, 0x00, 0xc8, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xc9, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xea, 0x4e, 0xd2, 0xb5, 0xa4, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0xd3, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xea, 0x07, 0xd1, 0xd2, 0xb2, 0xd5, 0xec, 0x33, 0xd1, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x12, 0xc8, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0xf0, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9b, 0x28, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xd4, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xd4, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xc5, 0xd1, 0x43, 0xd5, 0x01, 0x00, 0x00, 0xc5, 0xd2, 0x43, 0xd6, 0x01, 0x00, 0x00, 0xc5, 0x28, 0xd8, 0x04, 0xc0, 0x06, 0x12, 0x22, 0x12, 0x3f, 0x67, 0x53, 0x1c, 0x3f, 0x53, 0x17, 0x3a, 0x53, 0x08, 0x3b, 0x08, 0x3a, 0x08, 0x26, 0x26, 0x0e, 0x43, 0x06, 0x05, 0x92, 0x05, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x76, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x17, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd1, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9d, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd2, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x17, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x9d, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xaa, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xd7, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9d, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xd7, 0x06, 0x07, 0x03, 0x35, 0x71, 0x35, 0x72, 0x4e, 0x3f, 0x0e, 0x43, 0x06, 0x05, 0x94, 0x05, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x76, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x17, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd1, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9e, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd2, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x17, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x9e, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xaa, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xd7, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9e, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xe2, 0x06, 0x07, 0x03, 0x35, 0x71, 0x35, 0x72, 0x4e, 0x3f, 0x0e, 0x43, 0x06, 0x05, 0x96, 0x05, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x76, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x17, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd1, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9a, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd2, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x17, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x9a, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xaa, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xd7, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xed, 0x06, 0x07, 0x03, 0x35, 0x71, 0x35, 0x72, 0x4e, 0x3f, 0x0e, 0x43, 0x06, 0x05, 0x98, 0x05, 0x02, 0x00, 0x02, 0x04, 0x01, 0x00, 0x26, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x96, 0x05, 0x1e, 0x01, 0xd2, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x0f, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd2, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xf0, 0xd6, 0xdd, 0xd1, 0xd2, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xf8, 0x06, 0x03, 0x03, 0x35, 0x49, 0x0e, 0x43, 0x06, 0x05, 0x9a, 0x05, 0x02, 0x00, 0x02, 0x02, 0x00, 0x00, 0x1f, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xa9, 0x11, 0xea, 0x0f, 0x0e, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xa9, 0x28, 0xd8, 0x04, 0xfd, 0x06, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x01, 0x00, 0x00, 0x02, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x28, 0xd8, 0x04, 0x89, 0x07, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x03, 0x00, 0x00, 0x15, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x8c, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0x8c, 0x07, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x43, 0x03, 0xbc, 0x06, 0x00, 0x00, 0x00, 0xf6, 0x06, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xcb, 0xc7, 0xcd, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xca, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xc6, 0x24, 0x01, 0x00, 0xea, 0x1e, 0x38, 0xe5, 0x00, 0x00, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xf2, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xc6, 0x24, 0x02, 0x00, 0xc6, 0x23, 0x02, 0x00, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xd8, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd8, 0x04, 0x9b, 0x07, 0x04, 0x0d, 0x2b, 0x53, 0x95, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x22, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x04, 0xd9, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9d, 0x04, 0xda, 0x01, 0x00, 0x00, 0x9d, 0xc5, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x9d, 0x04, 0xdb, 0x01, 0x00, 0x00, 0x9d, 0x28, 0xd8, 0x04, 0xa3, 0x07, 0x01, 0x0d, 0x0e, 0x43, 0x06, 0x05, 0x9c, 0x05, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x47, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x97, 0x04, 0x46, 0x00, 0x00, 0x00, 0xab, 0x11, 0xeb, 0x16, 0x0e, 0xd1, 0x97, 0x04, 0x8b, 0x00, 0x00, 0x00, 0xab, 0x11, 0xeb, 0x0a, 0x0e, 0xd1, 0x97, 0x04, 0x8c, 0x00, 0x00, 0x00, 0xab, 0xea, 0x03, 0x0a, 0x28, 0xd1, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xa7, 0x11, 0xeb, 0x14, 0x0e, 0xd1, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xa7, 0x11, 0xeb, 0x09, 0x0e, 0xd1, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x03, 0x0a, 0x28, 0x09, 0x28, 0xd8, 0x04, 0xaa, 0x07, 0x09, 0x04, 0x3f, 0x3f, 0x35, 0x0d, 0x3a, 0x3a, 0x30, 0x0d, 0x0e, 0x43, 0x06, 0x05, 0xcc, 0x03, 0x01, 0x02, 0x01, 0x04, 0x01, 0x00, 0x82, 0x01, 0x03, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xe2, 0x01, 0x00, 0x01, 0x00, 0xcc, 0x03, 0x00, 0x01, 0x14, 0x9c, 0x05, 0x21, 0x01, 0x0c, 0x03, 0xc9, 0x0c, 0x02, 0xca, 0xc5, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbe, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0xc6, 0xa7, 0xea, 0x03, 0xd1, 0x28, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xea, 0x2a, 0xd1, 0xe9, 0xb5, 0xa9, 0xea, 0x06, 0xb5, 0x26, 0x01, 0x00, 0xd5, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0x60, 0x00, 0x00, 0x00, 0xd1, 0xc6, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0xd1, 0x42, 0x8b, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0xdd, 0xd1, 0xef, 0xea, 0x1d, 0xd1, 0x26, 0x01, 0x00, 0xd5, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0x60, 0x00, 0x00, 0x00, 0xd1, 0xc6, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0xd1, 0x28, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbd, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd8, 0x04, 0xb7, 0x07, 0x0f, 0x22, 0x12, 0x3f, 0x1c, 0x08, 0x58, 0x21, 0x1c, 0x6c, 0x30, 0x1c, 0x1c, 0x6c, 0x08, 0x08, 0x0e, 0x43, 0x06, 0x05, 0x9e, 0x05, 0x01, 0x00, 0x01, 0x03, 0x00, 0x00, 0x44, 0x01, 0xf0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x11, 0xeb, 0x32, 0x0e, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x83, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x11, 0xeb, 0x20, 0x0e, 0xd1, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xa7, 0x11, 0xeb, 0x15, 0x0e, 0xd1, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xa7, 0x11, 0xea, 0x0a, 0x0e, 0xd1, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xb5, 0xa9, 0x96, 0x28, 0xd8, 0x04, 0xcb, 0x07, 0x04, 0x04, 0x5d, 0x5d, 0x3a, 0x0e, 0x43, 0x06, 0x05, 0xa0, 0x05, 0x02, 0x01, 0x02, 0x03, 0x01, 0x00, 0x63, 0x03, 0xf0, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xb8, 0x07, 0x00, 0x00, 0x00, 0x9e, 0x05, 0x22, 0x01, 0xd2, 0xb5, 0xa9, 0xea, 0x0d, 0xd1, 0x42, 0x37, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc9, 0xec, 0x51, 0xd1, 0xb6, 0xa9, 0xea, 0x05, 0xc1, 0xc9, 0xec, 0x32, 0xd1, 0xb4, 0xa9, 0xea, 0x09, 0x04, 0x79, 0x01, 0x00, 0x00, 0xc9, 0xec, 0x25, 0xdd, 0xd1, 0xef, 0xea, 0x11, 0x04, 0xdd, 0x01, 0x00, 0x00, 0xd1, 0x9d, 0x04, 0xdb, 0x01, 0x00, 0x00, 0x9d, 0xc9, 0xec, 0x09, 0x38, 0x99, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xc9, 0x04, 0x7d, 0x00, 0x00, 0x00, 0x94, 0x00, 0x04, 0xec, 0x00, 0x00, 0x00, 0x94, 0x00, 0xd2, 0xb6, 0xaa, 0xea, 0x0b, 0xc5, 0x04, 0xde, 0x01, 0x00, 0x00, 0xd2, 0x9d, 0x9d, 0xc9, 0xc5, 0x28, 0xd8, 0x04, 0xd4, 0x07, 0x11, 0x05, 0x1c, 0x35, 0x0d, 0x1c, 0x0d, 0x26, 0x21, 0x0d, 0x1c, 0x49, 0x0d, 0x2c, 0x27, 0x26, 0x1c, 0x37, 0x0e, 0x43, 0x06, 0x05, 0xa2, 0x05, 0x03, 0x0e, 0x03, 0x04, 0x00, 0x06, 0xb2, 0x02, 0x11, 0x90, 0x07, 0x00, 0x01, 0x00, 0xbe, 0x07, 0x00, 0x01, 0x00, 0xc0, 0x07, 0x00, 0x01, 0x00, 0xc2, 0x07, 0x00, 0x00, 0x00, 0xc4, 0x07, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x02, 0x00, 0xc6, 0x07, 0x00, 0x03, 0x00, 0xc8, 0x07, 0x00, 0x04, 0x00, 0xca, 0x07, 0x00, 0x05, 0x00, 0xde, 0x06, 0x00, 0x06, 0x00, 0xcc, 0x07, 0x00, 0x07, 0x00, 0xce, 0x07, 0x00, 0x08, 0x00, 0xd0, 0x07, 0x00, 0x09, 0x00, 0xd2, 0x07, 0x00, 0x0a, 0x00, 0xd4, 0x07, 0x00, 0x0b, 0x00, 0xd6, 0x07, 0x00, 0x0c, 0x00, 0xd8, 0x07, 0x00, 0x0d, 0x00, 0xd1, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc4, 0x06, 0xb6, 0xa9, 0xea, 0x0a, 0xd1, 0xb5, 0x47, 0x8c, 0xd1, 0xb6, 0x47, 0x9b, 0x28, 0xd1, 0xb5, 0x47, 0xb5, 0xa9, 0xea, 0x07, 0xbf, 0x00, 0xbd, 0xed, 0xb1, 0x28, 0xd1, 0x42, 0xf6, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xcd, 0x42, 0xf6, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xca, 0xbf, 0x01, 0xbd, 0xed, 0xb1, 0xc3, 0x0c, 0xbf, 0x02, 0xbd, 0xed, 0xb1, 0xc3, 0x0d, 0xb5, 0xcb, 0xc7, 0xd3, 0xa3, 0x69, 0xe4, 0x00, 0x00, 0x00, 0xd1, 0x42, 0x5a, 0x00, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xd0, 0xb5, 0xa9, 0xea, 0x03, 0xd2, 0x28, 0x38, 0xf9, 0x00, 0x00, 0x00, 0xd2, 0xc2, 0x0d, 0x9e, 0xef, 0xc3, 0x0b, 0xc7, 0xb7, 0xa6, 0xea, 0x3b, 0xc2, 0x0b, 0xc2, 0x0c, 0xa6, 0xea, 0x34, 0x38, 0xf9, 0x00, 0x00, 0x00, 0xc2, 0x0d, 0xef, 0xbf, 0x03, 0xbd, 0xea, 0xb1, 0xa3, 0xea, 0x0e, 0xc2, 0x0b, 0xbf, 0x04, 0xbd, 0xe7, 0xb1, 0xa3, 0xea, 0x1a, 0xc2, 0x0d, 0x28, 0xc2, 0x0b, 0x38, 0xf9, 0x00, 0x00, 0x00, 0xc2, 0x0d, 0xef, 0xbf, 0x05, 0xbd, 0xeb, 0xb1, 0x9a, 0xa3, 0xea, 0x04, 0xc2, 0x0d, 0x28, 0xc2, 0x0b, 0xc3, 0x0c, 0xd2, 0xc3, 0x0d, 0xc5, 0x42, 0x5a, 0x00, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xc3, 0x04, 0xc6, 0x42, 0x5a, 0x00, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xc3, 0x05, 0xc2, 0x06, 0xb6, 0x9e, 0xc2, 0x04, 0x9a, 0xc4, 0x07, 0xc2, 0x07, 0x9a, 0xc3, 0x07, 0xc2, 0x06, 0xc2, 0x06, 0xb6, 0x9e, 0x9a, 0xc8, 0x9a, 0xc2, 0x05, 0x9a, 0xc3, 0x08, 0x38, 0x00, 0x01, 0x00, 0x00, 0xc2, 0x07, 0xc2, 0x08, 0x9e, 0xef, 0xc3, 0x07, 0xc2, 0x04, 0xc2, 0x07, 0x9d, 0xc3, 0x09, 0xc2, 0x04, 0xc2, 0x07, 0x9e, 0xc3, 0x0a, 0x38, 0xf8, 0x00, 0x00, 0x00, 0xc2, 0x0a, 0xef, 0x38, 0xf8, 0x00, 0x00, 0x00, 0xc2, 0x09, 0xef, 0xa5, 0xea, 0x05, 0xc2, 0x0a, 0xc3, 0x09, 0xc2, 0x09, 0xb5, 0xa9, 0xea, 0x03, 0x07, 0x28, 0xd2, 0xc2, 0x06, 0xc8, 0x9a, 0xc2, 0x09, 0x9b, 0x9e, 0xd6, 0x93, 0x02, 0xed, 0x1a, 0xff, 0x07, 0x28, 0xd8, 0x04, 0xf0, 0x07, 0x29, 0x00, 0x00, 0x08, 0x3a, 0x18, 0x2b, 0x09, 0x26, 0x22, 0x35, 0x30, 0x26, 0x26, 0x35, 0x3a, 0x17, 0x0f, 0x40, 0x3f, 0x53, 0x35, 0x0d, 0x08, 0x62, 0x14, 0x17, 0x13, 0x3f, 0x3f, 0x30, 0x1c, 0x49, 0x44, 0x26, 0x26, 0x62, 0x17, 0x21, 0x0d, 0x35, 0x1c, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x0b, 0xfc, 0x01, 0x06, 0x40, 0x76, 0x3a, 0x6b, 0x0b, 0xde, 0x0b, 0xfc, 0x01, 0x06, 0x40, 0x76, 0x3a, 0x6b, 0x0b, 0xde, 0x0b, 0xfc, 0x01, 0x06, 0x40, 0x76, 0x3a, 0x6b, 0x0b, 0xde, 0x0e, 0x43, 0x06, 0x05, 0xa4, 0x05, 0x01, 0x07, 0x01, 0x05, 0x01, 0x04, 0xab, 0x01, 0x08, 0x90, 0x07, 0x00, 0x01, 0x00, 0xde, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xd6, 0x04, 0x00, 0x02, 0x00, 0xbe, 0x06, 0x00, 0x03, 0x00, 0xbe, 0x07, 0x00, 0x04, 0x00, 0xda, 0x07, 0x00, 0x05, 0x00, 0xdc, 0x07, 0x00, 0x06, 0x00, 0xa2, 0x05, 0x24, 0x01, 0xbf, 0x00, 0xbd, 0xed, 0xb1, 0xbf, 0x01, 0xbd, 0xee, 0xb1, 0x8c, 0xbf, 0x02, 0xbd, 0xee, 0xb1, 0x26, 0x03, 0x00, 0xc3, 0x06, 0xd1, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xef, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xcd, 0xb5, 0xa4, 0xea, 0x05, 0x26, 0x00, 0x00, 0x28, 0xbf, 0x03, 0xbd, 0xee, 0xb1, 0x38, 0xb4, 0x00, 0x00, 0x00, 0x41, 0xc9, 0x01, 0x00, 0x00, 0x8c, 0x9f, 0xc3, 0x05, 0x26, 0x00, 0x00, 0xcb, 0xb5, 0xca, 0xc6, 0xc5, 0xa3, 0xea, 0x4f, 0xb5, 0xcc, 0xc8, 0xb8, 0xa3, 0xea, 0x15, 0xdd, 0xd1, 0xc2, 0x06, 0xc8, 0x47, 0xbd, 0x64, 0xf1, 0xc4, 0x04, 0xf3, 0xeb, 0x03, 0xec, 0x05, 0x93, 0x03, 0xec, 0xe8, 0xc8, 0xb8, 0xa9, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xc7, 0xc6, 0xc2, 0x04, 0x49, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x8d, 0x01, 0x00, 0x00, 0xd1, 0x38, 0xec, 0x00, 0x00, 0x00, 0xc2, 0x04, 0x9e, 0x24, 0x02, 0x00, 0xb5, 0x47, 0xd5, 0x93, 0x01, 0xec, 0xae, 0xc7, 0x28, 0xd8, 0x04, 0xa6, 0x08, 0x14, 0x05, 0x6d, 0x35, 0x3f, 0x35, 0x17, 0x17, 0x62, 0x17, 0x27, 0x26, 0x3a, 0x12, 0x0d, 0x17, 0x1c, 0x3f, 0x1c, 0x80, 0x17, 0x0b, 0xfc, 0x01, 0x06, 0x40, 0x76, 0x3a, 0x6b, 0x0b, 0xde, 0x0b, 0x80, 0x02, 0x06, 0x60, 0xec, 0xa8, 0x64, 0x6e, 0x9b, 0x0b, 0x80, 0x02, 0x06, 0x50, 0xb1, 0xf1, 0xe7, 0xbc, 0xbc, 0x0b, 0x80, 0x02, 0x06, 0x40, 0x76, 0x3a, 0x6b, 0x0b, 0xde, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x21, 0x03, 0xbc, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xcb, 0xc7, 0xcd, 0xe9, 0xca, 0xc6, 0xb6, 0xa5, 0xea, 0x0e, 0xc5, 0xc6, 0xb6, 0x9e, 0x47, 0xb5, 0xa9, 0xea, 0x05, 0x92, 0x01, 0xec, 0xef, 0xc5, 0xc6, 0x43, 0x30, 0x00, 0x00, 0x00, 0xc5, 0x28, 0xd8, 0x04, 0xc2, 0x08, 0x06, 0x0d, 0x08, 0x12, 0x49, 0x17, 0x26, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x2f, 0x05, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x02, 0x00, 0xbc, 0x06, 0x00, 0x03, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x04, 0xc2, 0x04, 0xd0, 0xe9, 0xcb, 0x26, 0x00, 0x00, 0xc9, 0xb5, 0xca, 0xc6, 0xc7, 0xa3, 0xea, 0x14, 0xc5, 0xc6, 0x71, 0xc8, 0xc6, 0x47, 0x42, 0xfa, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x49, 0x93, 0x01, 0xec, 0xe9, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xc5, 0x23, 0x01, 0x00, 0xd8, 0x04, 0xca, 0x08, 0x06, 0x13, 0x12, 0x0d, 0x17, 0x26, 0x62, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x15, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xb6, 0x26, 0x01, 0x00, 0xef, 0xc5, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xd3, 0x08, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x06, 0x00, 0x03, 0x01, 0x00, 0x67, 0x06, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xe2, 0x07, 0x00, 0x01, 0x00, 0xb8, 0x07, 0x00, 0x02, 0x00, 0xf0, 0x06, 0x00, 0x03, 0x00, 0xbc, 0x06, 0x00, 0x04, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa0, 0x05, 0x23, 0x01, 0x08, 0xc3, 0x05, 0xc2, 0x05, 0xc4, 0x04, 0xe9, 0xb6, 0xa9, 0xea, 0x0d, 0xc2, 0x04, 0xb5, 0x47, 0x42, 0x37, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0xc1, 0xca, 0xc2, 0x04, 0xe9, 0xb6, 0x9e, 0xc9, 0xc5, 0xb5, 0xa6, 0xea, 0x41, 0xc2, 0x04, 0xc5, 0x47, 0xd0, 0xb5, 0xa9, 0x11, 0xeb, 0x13, 0x0e, 0xc8, 0x38, 0xe5, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x0b, 0xc8, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xb5, 0xa9, 0xeb, 0x1f, 0xdd, 0xc8, 0xc5, 0xf0, 0xcf, 0xb5, 0x47, 0x04, 0x79, 0x01, 0x00, 0x00, 0xaa, 0xea, 0x0d, 0xc6, 0xc1, 0xaa, 0xea, 0x08, 0x04, 0x78, 0x01, 0x00, 0x00, 0x94, 0x01, 0xc7, 0x94, 0x01, 0x92, 0x00, 0xec, 0xbc, 0xc6, 0x28, 0xd8, 0x04, 0xd6, 0x08, 0x10, 0x12, 0x0d, 0x26, 0x40, 0x0d, 0x3a, 0x1c, 0x21, 0x58, 0x0d, 0x1c, 0x35, 0x1c, 0x27, 0x12, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x1b, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0xe9, 0xb6, 0xa9, 0xea, 0x0f, 0xc5, 0xb5, 0x47, 0xb5, 0xa9, 0xea, 0x08, 0x38, 0xf2, 0x01, 0x00, 0x00, 0x8c, 0x28, 0xc5, 0xe9, 0xb6, 0x9e, 0x28, 0xd8, 0x04, 0xea, 0x08, 0x04, 0x0d, 0x44, 0x21, 0x08, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x05, 0x01, 0x03, 0x00, 0x00, 0x21, 0x06, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0xbc, 0x06, 0x00, 0x03, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x04, 0xc2, 0x04, 0xd0, 0xe9, 0xb6, 0x9e, 0xca, 0xc8, 0xc6, 0x47, 0xcb, 0xc6, 0xb5, 0xa5, 0xea, 0x0d, 0x92, 0x01, 0xc7, 0xd1, 0x9a, 0xc8, 0xc6, 0x47, 0x9d, 0xcb, 0xec, 0xf0, 0xc7, 0x28, 0xd8, 0x04, 0xf0, 0x08, 0x08, 0x12, 0x0d, 0x1c, 0x17, 0x1c, 0x0d, 0x2b, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x38, 0x05, 0xbc, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0xaa, 0x06, 0x00, 0x03, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x04, 0xc2, 0x04, 0xcd, 0xe9, 0xce, 0xb6, 0xa9, 0xea, 0x0a, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xb5, 0x23, 0x01, 0x00, 0x26, 0x00, 0x00, 0xcb, 0xb6, 0xcc, 0xc8, 0xc6, 0xa3, 0xea, 0x10, 0xc7, 0xc8, 0xb6, 0x9e, 0x71, 0xc8, 0xc5, 0xc8, 0x47, 0x9a, 0x49, 0x93, 0x03, 0xec, 0xed, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xc7, 0x23, 0x01, 0x00, 0xd8, 0x04, 0xfa, 0x08, 0x09, 0x12, 0x0d, 0x12, 0x17, 0x31, 0x17, 0x26, 0x3a, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x2e, 0x05, 0xbc, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0xaa, 0x06, 0x00, 0x03, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x04, 0xc2, 0x04, 0xcd, 0xe9, 0xca, 0xb5, 0x26, 0x01, 0x00, 0xcb, 0xb5, 0xcc, 0xc8, 0xc6, 0xa3, 0xea, 0x12, 0xc7, 0xc8, 0xb6, 0x9d, 0x71, 0xc5, 0xc8, 0x47, 0xc8, 0xb6, 0x9d, 0x9b, 0x49, 0x93, 0x03, 0xec, 0xeb, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xc7, 0x23, 0x01, 0x00, 0xd8, 0x04, 0x87, 0x09, 0x07, 0x12, 0x0d, 0x12, 0x1c, 0x26, 0x44, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x25, 0x05, 0xbc, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0xaa, 0x06, 0x00, 0x03, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x04, 0xc2, 0x04, 0xcd, 0xe9, 0xca, 0xb5, 0xcb, 0xb5, 0xcc, 0xc8, 0xc6, 0xa3, 0xea, 0x13, 0xc7, 0xc5, 0xc8, 0x47, 0x42, 0xf8, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x9d, 0xcb, 0x93, 0x03, 0xec, 0xea, 0xc7, 0x28, 0xd8, 0x04, 0x90, 0x09, 0x07, 0x12, 0x0d, 0x12, 0x0d, 0x26, 0x49, 0x17, 0x0e, 0x43, 0x06, 0x05, 0xa6, 0x05, 0x02, 0x05, 0x02, 0x05, 0x00, 0x00, 0x5a, 0x07, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xe6, 0x07, 0x00, 0x00, 0x00, 0xd2, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x02, 0x00, 0xf8, 0x06, 0x00, 0x03, 0x00, 0xe8, 0x07, 0x00, 0x04, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0xd1, 0xe9, 0xd2, 0xe9, 0xa3, 0xea, 0x07, 0xd1, 0xc9, 0xd2, 0xd5, 0xc5, 0xd6, 0xd2, 0xe9, 0xcc, 0xd1, 0xe9, 0xc3, 0x04, 0x26, 0x00, 0x00, 0xca, 0xb5, 0xcb, 0xc7, 0xc8, 0xa3, 0xea, 0x10, 0xc6, 0xc7, 0x71, 0xd1, 0xc7, 0x47, 0xd2, 0xc7, 0x47, 0x9d, 0x49, 0x93, 0x02, 0xec, 0xed, 0xc8, 0xcb, 0xc7, 0xc2, 0x04, 0xa3, 0xea, 0x0c, 0xc6, 0xc7, 0x71, 0xd1, 0xc7, 0x47, 0x49, 0x93, 0x02, 0xec, 0xf0, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xc6, 0x23, 0x01, 0x00, 0xd8, 0x04, 0x9c, 0x09, 0x0e, 0x04, 0x2b, 0x2b, 0x26, 0x0d, 0x0d, 0x0e, 0x12, 0x17, 0x17, 0x26, 0x4e, 0x2b, 0x3a, 0x0e, 0x43, 0x06, 0x05, 0xa8, 0x05, 0x02, 0x00, 0x02, 0x03, 0x01, 0x00, 0x07, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xa6, 0x05, 0x26, 0x01, 0xdd, 0xd1, 0xd2, 0x8c, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xae, 0x09, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xaa, 0x05, 0x02, 0x06, 0x02, 0x06, 0x00, 0x00, 0x64, 0x08, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xbe, 0x06, 0x00, 0x01, 0x00, 0xf8, 0x06, 0x00, 0x02, 0x00, 0xe8, 0x07, 0x00, 0x03, 0x00, 0xda, 0x06, 0x00, 0x04, 0x00, 0xd2, 0x06, 0x00, 0x05, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0xd1, 0xe9, 0xcb, 0xd2, 0xe9, 0xcc, 0xc7, 0xc8, 0x9d, 0xb6, 0x9e, 0xc3, 0x04, 0x26, 0x00, 0x00, 0xc3, 0x05, 0xb5, 0xc9, 0xc5, 0xc2, 0x04, 0xa3, 0xea, 0x0a, 0xc2, 0x05, 0xc5, 0xb5, 0x49, 0x93, 0x00, 0xec, 0xf2, 0xb5, 0xc9, 0xc5, 0xc7, 0xa3, 0xea, 0x21, 0xb5, 0xca, 0xc6, 0xc8, 0xa3, 0xea, 0x16, 0xc2, 0x05, 0xc5, 0xc6, 0x9d, 0x71, 0x13, 0x47, 0xd1, 0xc5, 0x47, 0xd2, 0xc6, 0x47, 0x9a, 0x9d, 0x49, 0x93, 0x01, 0xec, 0xe7, 0x93, 0x00, 0xec, 0xdc, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xc2, 0x05, 0x23, 0x01, 0x00, 0xd8, 0x04, 0xb1, 0x09, 0x0e, 0x04, 0x2b, 0x2b, 0x12, 0x12, 0x26, 0x1c, 0x2b, 0x30, 0x26, 0x26, 0x58, 0x17, 0x17, 0x0e, 0x43, 0x06, 0x05, 0xac, 0x05, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x06, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd1, 0xb6, 0xd2, 0x9b, 0x9a, 0x28, 0xd8, 0x04, 0xc2, 0x09, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xae, 0x05, 0x02, 0x00, 0x02, 0x04, 0x00, 0x00, 0x16, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd2, 0xef, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xc5, 0x09, 0x02, 0x04, 0x3f, 0x0e, 0x43, 0x06, 0x05, 0xb0, 0x05, 0x02, 0x00, 0x02, 0x04, 0x00, 0x00, 0x12, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x8d, 0x01, 0x00, 0x00, 0xd1, 0xd2, 0x24, 0x02, 0x00, 0xb6, 0x47, 0x28, 0xd8, 0x04, 0xca, 0x09, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xb2, 0x05, 0x02, 0x02, 0x02, 0x03, 0x00, 0x00, 0x22, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xd1, 0xe9, 0xcd, 0xd2, 0xe9, 0xaa, 0xea, 0x03, 0x09, 0x28, 0xb5, 0xca, 0xc6, 0xc5, 0xa3, 0xea, 0x10, 0xd1, 0xc6, 0x47, 0xd2, 0xc6, 0x47, 0xaa, 0xea, 0x03, 0x09, 0x28, 0x93, 0x01, 0xec, 0xed, 0x0a, 0x28, 0xd8, 0x04, 0xcd, 0x09, 0x08, 0x04, 0x12, 0x1c, 0x0d, 0x26, 0x30, 0x0d, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x01, 0x00, 0x00, 0x02, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x28, 0xd8, 0x04, 0xe1, 0x09, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x03, 0x01, 0x04, 0x00, 0x00, 0x23, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x02, 0x00, 0xd1, 0xe9, 0xcb, 0x26, 0x00, 0x00, 0xc9, 0xb5, 0xca, 0xc6, 0xc7, 0xa3, 0xea, 0x0d, 0xc5, 0xc6, 0x71, 0xd1, 0xc6, 0x47, 0x8c, 0x49, 0x93, 0x01, 0xec, 0xf0, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xc5, 0x23, 0x01, 0x00, 0xd8, 0x04, 0xe4, 0x09, 0x05, 0x04, 0x12, 0x17, 0x26, 0x3f, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x08, 0x02, 0x05, 0x00, 0x00, 0xc8, 0x01, 0x0a, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xf8, 0x06, 0x00, 0x00, 0x00, 0xe8, 0x07, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x02, 0x00, 0xbe, 0x06, 0x00, 0x03, 0x00, 0xea, 0x06, 0x00, 0x04, 0x00, 0xd2, 0x06, 0x00, 0x05, 0x00, 0xda, 0x06, 0x00, 0x06, 0x00, 0xf0, 0x06, 0x00, 0x07, 0x00, 0xd2, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xa3, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0xe9, 0xc9, 0xd2, 0xe9, 0xca, 0xc5, 0xc6, 0xa3, 0xea, 0x10, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xb5, 0x26, 0x01, 0x00, 0xef, 0xd1, 0x26, 0x02, 0x00, 0x28, 0x38, 0x96, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x41, 0x92, 0x01, 0x00, 0x00, 0x42, 0xa8, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xc3, 0x05, 0x26, 0x00, 0x00, 0xc3, 0x04, 0x92, 0x01, 0xc5, 0xc6, 0x9e, 0xc3, 0x06, 0xb5, 0xcb, 0xc7, 0xc2, 0x06, 0xa3, 0xea, 0x0a, 0xc2, 0x04, 0xc7, 0xb5, 0x49, 0x93, 0x02, 0xec, 0xf2, 0xc2, 0x06, 0xb6, 0x9e, 0xcb, 0xc7, 0xb5, 0xa6, 0xea, 0x41, 0xc2, 0x05, 0xc7, 0xc6, 0x9d, 0x47, 0xc4, 0x07, 0xb5, 0xaa, 0xea, 0x31, 0xc2, 0x07, 0xd2, 0xc6, 0x47, 0x9b, 0xc3, 0x07, 0xc2, 0x05, 0xc7, 0xc6, 0x9d, 0xb5, 0x49, 0xb5, 0xcc, 0xc8, 0xc6, 0xa3, 0xea, 0x15, 0xc2, 0x05, 0xc7, 0xc8, 0x9d, 0x71, 0x13, 0x47, 0xd2, 0xc8, 0x47, 0xc2, 0x07, 0x9a, 0x9e, 0x49, 0x93, 0x03, 0xec, 0xe8, 0xc2, 0x04, 0xc7, 0xc2, 0x07, 0x49, 0x92, 0x02, 0xec, 0xbc, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xc2, 0x04, 0xef, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xc2, 0x05, 0xef, 0x26, 0x02, 0x00, 0x28, 0xd8, 0x04, 0xff, 0x09, 0x17, 0x04, 0x44, 0x3f, 0x12, 0x12, 0x1c, 0x4e, 0x85, 0x1c, 0x0d, 0x1c, 0x2b, 0x30, 0x35, 0x2b, 0x17, 0x2b, 0x26, 0x26, 0x53, 0x17, 0x22, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x01, 0x02, 0x04, 0x00, 0x00, 0x2e, 0x03, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xdc, 0x06, 0x00, 0x00, 0x00, 0xd2, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xa6, 0xea, 0x19, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x8d, 0x01, 0x00, 0x00, 0xd1, 0xd2, 0x24, 0x02, 0x00, 0xc9, 0xd2, 0xd5, 0xc5, 0xb6, 0x47, 0xd6, 0xec, 0xdc, 0xd1, 0xd1, 0xd1, 0xe9, 0xb6, 0x9e, 0x47, 0x9b, 0x28, 0xd8, 0x04, 0x9a, 0x0a, 0x06, 0x04, 0x44, 0x53, 0x0d, 0x17, 0x0e, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x06, 0x02, 0x04, 0x00, 0x00, 0x7f, 0x08, 0xe6, 0x06, 0x00, 0x01, 0x00, 0xe8, 0x06, 0x00, 0x01, 0x00, 0xea, 0x06, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x01, 0x00, 0xee, 0x06, 0x00, 0x02, 0x00, 0xbc, 0x06, 0x00, 0x03, 0x00, 0xf0, 0x06, 0x00, 0x04, 0x00, 0xdc, 0x06, 0x00, 0x05, 0x00, 0xd1, 0xca, 0xd2, 0xcb, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xb6, 0x26, 0x01, 0x00, 0xef, 0xc3, 0x04, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xb5, 0x26, 0x01, 0x00, 0xef, 0xcc, 0xc6, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xa6, 0xea, 0x2d, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x8d, 0x01, 0x00, 0x00, 0xc7, 0xc6, 0x24, 0x02, 0x00, 0xc4, 0x05, 0xb5, 0x47, 0xc9, 0xc6, 0xcb, 0xc2, 0x05, 0xb6, 0x47, 0xca, 0xc2, 0x04, 0xc3, 0x05, 0xc8, 0xc5, 0xc2, 0x04, 0x9a, 0x9e, 0xc3, 0x04, 0xc2, 0x05, 0xcc, 0xec, 0xc8, 0xc7, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xa5, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0xba, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x8d, 0x01, 0x00, 0x00, 0xc8, 0xd2, 0x24, 0x02, 0x00, 0xb6, 0x47, 0x28, 0xd8, 0x04, 0xa4, 0x0a, 0x10, 0x04, 0x0d, 0x0d, 0x3f, 0x3a, 0x44, 0x58, 0x12, 0x0d, 0x1c, 0x17, 0x2b, 0x12, 0x0e, 0x44, 0x3f, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x02, 0x01, 0x00, 0x05, 0x01, 0x90, 0x07, 0x00, 0x01, 0x00, 0xa4, 0x05, 0x25, 0x01, 0xdd, 0xd1, 0x23, 0x01, 0x00, 0xd8, 0x04, 0xb8, 0x0a, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xce, 0x03, 0x02, 0x04, 0x02, 0x04, 0x00, 0x00, 0x9e, 0x01, 0x06, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xf6, 0x06, 0x00, 0x01, 0x00, 0xa6, 0x06, 0x00, 0x00, 0x00, 0xdc, 0x06, 0x00, 0x01, 0x00, 0xe2, 0x01, 0x00, 0x01, 0x00, 0xce, 0x03, 0x00, 0x01, 0x14, 0x0c, 0x03, 0xcb, 0x0c, 0x02, 0xcc, 0xc7, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbe, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0xa7, 0x01, 0x00, 0x00, 0xc8, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xc9, 0xd2, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x51, 0xd2, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xa4, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0xf5, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x12, 0xc8, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0xf0, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9b, 0x28, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x8d, 0x01, 0x00, 0x00, 0xd1, 0xd2, 0x24, 0x02, 0x00, 0xce, 0xb6, 0x47, 0xd5, 0xec, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xd4, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xc5, 0xd1, 0x43, 0xd5, 0x01, 0x00, 0x00, 0xc5, 0xd2, 0x43, 0xd6, 0x01, 0x00, 0x00, 0xc5, 0x28, 0xd8, 0x04, 0xbf, 0x0a, 0x12, 0x22, 0x12, 0x3f, 0x67, 0x30, 0x44, 0x3f, 0x30, 0x53, 0x08, 0x2b, 0x53, 0x13, 0x0d, 0x3a, 0x08, 0x26, 0x26, 0x0e, 0x43, 0x06, 0x05, 0xb4, 0x05, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x76, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x17, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xd1, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9d, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd2, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x17, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x9d, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xaa, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xd7, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9d, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xd6, 0x0a, 0x07, 0x03, 0x35, 0x71, 0x35, 0x72, 0x4e, 0x3f, 0x0e, 0x43, 0x06, 0x05, 0xb6, 0x05, 0x02, 0x00, 0x02, 0x03, 0x01, 0x00, 0x07, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xb4, 0x05, 0x2d, 0x01, 0xdd, 0xd1, 0xd2, 0x8c, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xe1, 0x0a, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xb8, 0x05, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x76, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x17, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xd1, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9a, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd2, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x17, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x9a, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xaa, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xd7, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xe4, 0x0a, 0x07, 0x03, 0x35, 0x71, 0x35, 0x72, 0x4e, 0x3f, 0x0e, 0x43, 0x06, 0x05, 0xba, 0x05, 0x02, 0x00, 0x02, 0x04, 0x01, 0x00, 0x26, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xb8, 0x05, 0x2f, 0x01, 0xd2, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x0f, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xd2, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xf0, 0xd6, 0xdd, 0xd1, 0xd2, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xef, 0x0a, 0x03, 0x03, 0x35, 0x49, 0x0e, 0x43, 0x06, 0x05, 0xbc, 0x05, 0x02, 0x00, 0x02, 0x02, 0x00, 0x00, 0x1f, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xa9, 0x11, 0xea, 0x0f, 0x0e, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xa9, 0x28, 0xd8, 0x04, 0xf4, 0x0a, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x01, 0x00, 0x00, 0x02, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x28, 0xd8, 0x04, 0x80, 0x0b, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x03, 0x00, 0x00, 0x15, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe7, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x8c, 0xd1, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0x83, 0x0b, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x3b, 0x03, 0xbc, 0x06, 0x00, 0x00, 0x00, 0xf6, 0x06, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xcb, 0xc7, 0xcd, 0x41, 0xd6, 0x01, 0x00, 0x00, 0xce, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x1e, 0x38, 0xe7, 0x00, 0x00, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xf2, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xd5, 0x01, 0x00, 0x00, 0xc6, 0x24, 0x02, 0x00, 0xc6, 0x23, 0x02, 0x00, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xd8, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd8, 0x04, 0x92, 0x0b, 0x04, 0x0d, 0x26, 0x30, 0x95, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x22, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x04, 0xf6, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xd5, 0x01, 0x00, 0x00, 0x9d, 0x04, 0xda, 0x01, 0x00, 0x00, 0x9d, 0xc5, 0x41, 0xd6, 0x01, 0x00, 0x00, 0x9d, 0x04, 0xdb, 0x01, 0x00, 0x00, 0x9d, 0x28, 0xd8, 0x04, 0x9a, 0x0b, 0x01, 0x0d, 0x0e, 0x43, 0x06, 0x05, 0xd0, 0x03, 0x02, 0x06, 0x02, 0x04, 0x00, 0x00, 0xc1, 0x01, 0x08, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xdc, 0x06, 0x00, 0x00, 0x00, 0xd2, 0x06, 0x00, 0x01, 0x00, 0xde, 0x06, 0x00, 0x02, 0x00, 0xa6, 0x06, 0x00, 0x03, 0x00, 0xe2, 0x01, 0x00, 0x01, 0x00, 0xd0, 0x03, 0x00, 0x01, 0x14, 0x0c, 0x03, 0xc3, 0x04, 0x0c, 0x02, 0xc3, 0x05, 0xc2, 0x04, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbe, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xa7, 0x96, 0x11, 0xeb, 0x0a, 0x0e, 0xd2, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xef, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x8d, 0x01, 0x00, 0x00, 0xd1, 0xd2, 0x24, 0x02, 0x00, 0xcd, 0xb6, 0x47, 0xce, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xa3, 0xea, 0x05, 0xc5, 0xb5, 0x47, 0x28, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xee, 0x00, 0x00, 0x00, 0xd2, 0xc6, 0x24, 0x02, 0x00, 0xcf, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xa5, 0xea, 0x25, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x8d, 0x01, 0x00, 0x00, 0xd1, 0xc7, 0x24, 0x02, 0x00, 0xb5, 0x47, 0xd5, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x8d, 0x01, 0x00, 0x00, 0xd2, 0xc7, 0x24, 0x02, 0x00, 0xb5, 0x47, 0xd6, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0xa7, 0x01, 0x00, 0x00, 0xc2, 0x05, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xd0, 0xd1, 0x43, 0xc1, 0x01, 0x00, 0x00, 0xc8, 0xd2, 0x43, 0xc2, 0x01, 0x00, 0x00, 0xc8, 0x28, 0xd8, 0x04, 0xa1, 0x0b, 0x11, 0x2d, 0x17, 0x3f, 0x3f, 0x35, 0x3f, 0x53, 0x12, 0x3f, 0x17, 0x53, 0x3f, 0x5d, 0x5e, 0x6c, 0x21, 0x26, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x16, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xb9, 0x0b, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x26, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x42, 0xfa, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc5, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x42, 0xfa, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xbc, 0x0b, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x02, 0x00, 0x04, 0x01, 0x00, 0x6b, 0x02, 0xe2, 0x07, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x05, 0x22, 0x01, 0x08, 0xca, 0xc6, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xa4, 0xea, 0x1f, 0xdd, 0xc6, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xb5, 0x47, 0xef, 0x96, 0xea, 0x12, 0xc6, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x42, 0x37, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc9, 0xec, 0x1c, 0x04, 0xdd, 0x01, 0x00, 0x00, 0xc6, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x42, 0x37, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x9d, 0x04, 0xdb, 0x01, 0x00, 0x00, 0x9d, 0xc9, 0xc5, 0x04, 0xf7, 0x01, 0x00, 0x00, 0xc6, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x42, 0x37, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x9d, 0x04, 0xdb, 0x01, 0x00, 0x00, 0x9d, 0x9d, 0xcd, 0x28, 0xd8, 0x04, 0xbf, 0x0b, 0x06, 0x0e, 0x5d, 0x44, 0x59, 0x8a, 0x94, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x01, 0x01, 0x04, 0x00, 0x00, 0x22, 0x02, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x42, 0x5a, 0x00, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xc5, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x42, 0x5a, 0x00, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x9b, 0x28, 0xd8, 0x04, 0xc9, 0x0b, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x32, 0x03, 0xda, 0x06, 0x00, 0x00, 0x00, 0xde, 0x06, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xcb, 0xc7, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xc9, 0xc7, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xca, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xc5, 0x42, 0xf6, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc6, 0x9a, 0xc5, 0xc6, 0x42, 0xf6, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x9a, 0x9e, 0xc6, 0xc6, 0x9a, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xcc, 0x0b, 0x02, 0x0d, 0x49, 0x0e, 0x43, 0x06, 0x05, 0xbe, 0x05, 0x02, 0x00, 0x02, 0x04, 0x00, 0x00, 0x4e, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x42, 0x8e, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xd5, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x42, 0x8e, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xd6, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x9a, 0x9d, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xd2, 0x0b, 0x03, 0x03, 0x4e, 0x4e, 0x0e, 0x43, 0x06, 0x05, 0xc0, 0x05, 0x02, 0x00, 0x02, 0x04, 0x00, 0x00, 0x4e, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x42, 0x8e, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xd5, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x42, 0x8e, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xd6, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x9a, 0x9e, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xd7, 0x0b, 0x03, 0x03, 0x4e, 0x4e, 0x0e, 0x43, 0x06, 0x05, 0xc2, 0x05, 0x02, 0x00, 0x02, 0x04, 0x00, 0x00, 0x40, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x42, 0x8e, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xd5, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x42, 0x8e, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xd6, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xdc, 0x0b, 0x03, 0x03, 0x4e, 0x4e, 0x0e, 0x43, 0x06, 0x05, 0xc4, 0x05, 0x02, 0x00, 0x02, 0x04, 0x00, 0x00, 0x40, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x42, 0x8e, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xd5, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x42, 0x8e, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xd6, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9a, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x9a, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xe1, 0x0b, 0x03, 0x03, 0x4e, 0x4e, 0x0e, 0x43, 0x06, 0x05, 0xc6, 0x05, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x3d, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x42, 0x8e, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xd5, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x42, 0x8e, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xd6, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xa9, 0x11, 0xea, 0x0f, 0x0e, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xa9, 0x28, 0xd8, 0x04, 0xe6, 0x0b, 0x03, 0x03, 0x4e, 0x4f, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x01, 0x00, 0x00, 0x02, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x28, 0xd8, 0x04, 0xf5, 0x0b, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x01, 0x01, 0x03, 0x00, 0x00, 0x17, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x8c, 0xc5, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xf8, 0x0b, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x01, 0x01, 0x03, 0x00, 0x00, 0x3e, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xa6, 0x06, 0x00, 0x00, 0x00, 0xd1, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x03, 0xd1, 0x28, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0xa7, 0x01, 0x00, 0x00, 0x38, 0xe8, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcd, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x43, 0xc1, 0x01, 0x00, 0x00, 0xc5, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xb6, 0xef, 0x43, 0xc2, 0x01, 0x00, 0x00, 0xc5, 0x28, 0xd8, 0x04, 0x8a, 0x0c, 0x07, 0x04, 0x30, 0x08, 0x08, 0x7b, 0x3f, 0x44, 0x0e, 0x43, 0x06, 0x05, 0xc8, 0x05, 0x01, 0x02, 0x01, 0x02, 0x00, 0x00, 0x19, 0x03, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd1, 0xe9, 0xca, 0xb5, 0xc9, 0xc5, 0xc6, 0xa3, 0xea, 0x0e, 0xd1, 0xc5, 0x47, 0xb5, 0xaa, 0xea, 0x03, 0xc5, 0x28, 0x93, 0x00, 0xec, 0xef, 0xc6, 0x28, 0xd8, 0x04, 0x9a, 0x0c, 0x06, 0x04, 0x12, 0x26, 0x26, 0x0d, 0x17, 0x0e, 0x43, 0x06, 0x05, 0xca, 0x05, 0x01, 0x00, 0x01, 0x02, 0x01, 0x00, 0x0f, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x9c, 0x05, 0x21, 0x01, 0xdd, 0xd1, 0xef, 0x11, 0xeb, 0x09, 0x0e, 0xd1, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xa7, 0x28, 0xd8, 0x04, 0xa4, 0x0c, 0x02, 0x04, 0x26, 0x0e, 0x43, 0x06, 0x05, 0xd2, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x00, 0x86, 0x01, 0x06, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x00, 0xd2, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x02, 0x00, 0xd2, 0x03, 0x00, 0x01, 0x14, 0xca, 0x05, 0x38, 0x01, 0xc8, 0x05, 0x37, 0x01, 0x0c, 0x02, 0xcc, 0xd1, 0xc8, 0xa7, 0xea, 0x03, 0xd1, 0x28, 0xdd, 0xd1, 0xef, 0xea, 0x52, 0xd2, 0xb5, 0xa4, 0xea, 0x0c, 0xc8, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xb5, 0xb5, 0x25, 0x02, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0xde, 0xd1, 0xef, 0xc9, 0xc8, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xd2, 0xc5, 0x24, 0x02, 0x00, 0xca, 0x38, 0x9d, 0x00, 0x00, 0x00, 0x42, 0xf9, 0x01, 0x00, 0x00, 0xd1, 0xe9, 0xc5, 0x9e, 0xd2, 0x24, 0x02, 0x00, 0xd6, 0xb5, 0xcb, 0xc7, 0xd2, 0xa3, 0xea, 0x0e, 0xc6, 0xc7, 0x71, 0xd1, 0xc7, 0xc5, 0x9d, 0x47, 0x49, 0x93, 0x02, 0xec, 0xef, 0xc6, 0x28, 0xd1, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x12, 0xc8, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd2, 0xf0, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x9b, 0x28, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0xbd, 0x01, 0x00, 0x00, 0xef, 0x2f, 0xd8, 0x04, 0xab, 0x0c, 0x10, 0x14, 0x1c, 0x08, 0x21, 0x1d, 0x3b, 0x2b, 0x17, 0x3f, 0x62, 0x26, 0x44, 0x09, 0x35, 0x53, 0x08, 0x0e, 0x43, 0x06, 0x05, 0xcc, 0x05, 0x02, 0x0a, 0x02, 0x05, 0x02, 0x00, 0x95, 0x02, 0x0c, 0xf4, 0x07, 0x00, 0x01, 0x00, 0xf6, 0x07, 0x00, 0x01, 0x00, 0xe6, 0x07, 0x00, 0x00, 0x00, 0xde, 0x06, 0x00, 0x01, 0x00, 0xf0, 0x07, 0x00, 0x02, 0x00, 0xda, 0x06, 0x00, 0x03, 0x00, 0xd2, 0x06, 0x00, 0x04, 0x00, 0xaa, 0x06, 0x00, 0x05, 0x00, 0xbe, 0x06, 0x00, 0x06, 0x00, 0xf8, 0x07, 0x00, 0x07, 0x00, 0xfa, 0x07, 0x00, 0x08, 0x00, 0xfc, 0x07, 0x00, 0x09, 0x00, 0xca, 0x05, 0x38, 0x01, 0xc8, 0x05, 0x37, 0x01, 0xd1, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x07, 0xd1, 0xc9, 0xd2, 0xd5, 0xc5, 0xd6, 0xd1, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xd1, 0xe9, 0x9d, 0xca, 0xdd, 0xd2, 0xef, 0xea, 0x15, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd2, 0xef, 0xd6, 0xc6, 0xb5, 0xa4, 0xea, 0x03, 0xd1, 0x28, 0xb5, 0xc3, 0x07, 0xec, 0x56, 0xd2, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x31, 0xde, 0xd2, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xef, 0xde, 0xd2, 0x41, 0xc2, 0x01, 0x00, 0x00, 0xef, 0x9e, 0xc3, 0x05, 0xc6, 0xc2, 0x05, 0xa4, 0xea, 0x03, 0xd1, 0x28, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xd2, 0xc6, 0xc2, 0x05, 0x9e, 0xf0, 0xda, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xc3, 0x07, 0xec, 0x1d, 0xd2, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xc3, 0x07, 0x38, 0x9d, 0x00, 0x00, 0x00, 0x42, 0xf9, 0x01, 0x00, 0x00, 0xc6, 0xc2, 0x07, 0xd2, 0xe9, 0x9d, 0x24, 0x02, 0x00, 0xca, 0x38, 0x9d, 0x00, 0x00, 0x00, 0x42, 0xf9, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xc2, 0x07, 0x24, 0x02, 0x00, 0xcb, 0xc6, 0xc7, 0x9e, 0xcc, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xc8, 0xc7, 0x24, 0x02, 0x00, 0xc3, 0x04, 0xc7, 0xc3, 0x05, 0xc2, 0x05, 0xc6, 0xa3, 0xea, 0x50, 0xc2, 0x05, 0xd1, 0x41, 0xf8, 0x01, 0x00, 0x00, 0x9e, 0xc4, 0x06, 0xb5, 0xa6, 0xea, 0x10, 0xc2, 0x06, 0xd1, 0xe9, 0xa3, 0xea, 0x09, 0xd1, 0xc2, 0x06, 0x47, 0xc3, 0x08, 0xec, 0x04, 0xb5, 0xc3, 0x08, 0xc2, 0x05, 0xc2, 0x07, 0x9e, 0xc4, 0x06, 0xb5, 0xa6, 0xea, 0x10, 0xc2, 0x06, 0xd2, 0xe9, 0xa3, 0xea, 0x09, 0xd2, 0xc2, 0x06, 0x47, 0xc3, 0x09, 0xec, 0x04, 0xb5, 0xc3, 0x09, 0xc2, 0x04, 0xc2, 0x05, 0xc7, 0x9e, 0x71, 0xc2, 0x08, 0xc2, 0x09, 0x9d, 0x49, 0x93, 0x05, 0xec, 0xac, 0xc2, 0x04, 0x42, 0x8b, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xc4, 0x0c, 0x22, 0x04, 0x35, 0x0d, 0x0d, 0x0e, 0x35, 0x1c, 0x2b, 0x1c, 0x0d, 0x12, 0x3b, 0x62, 0x21, 0x0e, 0x3f, 0x26, 0x0d, 0x2b, 0x68, 0x71, 0x17, 0x59, 0x30, 0x3a, 0x3a, 0x2c, 0x12, 0x26, 0x3a, 0x2c, 0x12, 0x44, 0x17, 0x0e, 0x43, 0x06, 0x05, 0xce, 0x05, 0x02, 0x00, 0x02, 0x03, 0x01, 0x00, 0x07, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xcc, 0x05, 0x39, 0x01, 0xdd, 0xd1, 0xd2, 0x8c, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xf0, 0x0c, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xd0, 0x05, 0x02, 0x08, 0x02, 0x06, 0x00, 0x00, 0xa9, 0x01, 0x0a, 0xf4, 0x07, 0x00, 0x01, 0x00, 0xf6, 0x07, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xbe, 0x06, 0x00, 0x02, 0x00, 0xd2, 0x06, 0x00, 0x03, 0x00, 0xf0, 0x07, 0x00, 0x04, 0x00, 0xf8, 0x06, 0x00, 0x05, 0x00, 0xe8, 0x07, 0x00, 0x06, 0x00, 0xc2, 0x06, 0x00, 0x07, 0x00, 0xd1, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x0d, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xd1, 0xd2, 0xe9, 0xf0, 0xd5, 0xec, 0x15, 0xd2, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x0b, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xd2, 0xd1, 0xe9, 0xf0, 0xd6, 0xd1, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xf8, 0x01, 0x00, 0x00, 0x9d, 0xc3, 0x04, 0x38, 0x9d, 0x00, 0x00, 0x00, 0x42, 0xf9, 0x01, 0x00, 0x00, 0xd1, 0xe9, 0xd2, 0xe9, 0x24, 0x02, 0x00, 0xc9, 0xd1, 0xe9, 0xc3, 0x05, 0xd2, 0xe9, 0xc3, 0x06, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xc5, 0xc2, 0x04, 0x24, 0x02, 0x00, 0xcc, 0xb5, 0xca, 0xc6, 0xc2, 0x05, 0xa3, 0xea, 0x35, 0x38, 0x9d, 0x00, 0x00, 0x00, 0x42, 0xf9, 0x01, 0x00, 0x00, 0xc2, 0x06, 0xc5, 0xc6, 0x9e, 0x24, 0x02, 0x00, 0xc3, 0x07, 0xb5, 0xcb, 0xc7, 0xc2, 0x07, 0xa3, 0xea, 0x15, 0xc8, 0xc6, 0xc7, 0x9d, 0x71, 0x13, 0x47, 0xd1, 0xc6, 0x47, 0xd2, 0xc7, 0x47, 0x9a, 0x9d, 0x49, 0x93, 0x02, 0xec, 0xe7, 0x93, 0x01, 0xec, 0xc7, 0xc8, 0x42, 0x8b, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xf3, 0x0c, 0x10, 0x04, 0x35, 0x3f, 0x35, 0x35, 0x4e, 0x5d, 0x17, 0x17, 0x58, 0x2b, 0x67, 0x2b, 0x53, 0x17, 0x17, 0x0e, 0x43, 0x06, 0x05, 0xd2, 0x05, 0x02, 0x00, 0x02, 0x04, 0x01, 0x00, 0x22, 0x02, 0xf4, 0x07, 0x00, 0x01, 0x00, 0xf6, 0x07, 0x00, 0x01, 0x00, 0xd0, 0x05, 0x3b, 0x01, 0xd2, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x0b, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xd2, 0xd1, 0xe9, 0xf0, 0xd6, 0xdd, 0xd1, 0xd2, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0x86, 0x0d, 0x03, 0x03, 0x35, 0x35, 0x0e, 0x43, 0x06, 0x05, 0xd4, 0x05, 0x02, 0x00, 0x02, 0x03, 0x01, 0x00, 0x3b, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xde, 0x04, 0x02, 0x01, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd2, 0x24, 0x01, 0x00, 0xea, 0x07, 0xdd, 0xd1, 0xd2, 0x23, 0x02, 0x00, 0xd1, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xa7, 0x96, 0xea, 0x0b, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xd1, 0xd2, 0xe9, 0xf0, 0xd5, 0x38, 0x01, 0x01, 0x00, 0x00, 0x38, 0x02, 0x01, 0x00, 0x00, 0xd1, 0xef, 0xd2, 0x9a, 0x23, 0x01, 0x00, 0xd8, 0x04, 0x8b, 0x0d, 0x05, 0x03, 0x53, 0x22, 0x35, 0x35, 0x0e, 0x43, 0x06, 0x05, 0xd6, 0x05, 0x02, 0x02, 0x02, 0x03, 0x00, 0x00, 0x33, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xd2, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xaa, 0xea, 0x03, 0x09, 0x28, 0xd1, 0xe9, 0xcd, 0xd2, 0xe9, 0xaa, 0xea, 0x03, 0x09, 0x28, 0xb5, 0xca, 0xc6, 0xc5, 0xa3, 0xea, 0x10, 0xd1, 0xc6, 0x47, 0xd2, 0xc6, 0x47, 0xaa, 0xea, 0x03, 0x09, 0x28, 0x93, 0x01, 0xec, 0xed, 0x0a, 0x28, 0xd8, 0x04, 0x94, 0x0d, 0x0a, 0x04, 0x4e, 0x0d, 0x12, 0x1c, 0x0d, 0x26, 0x30, 0x0d, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x01, 0x00, 0x00, 0x02, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x28, 0xd8, 0x04, 0xaa, 0x0d, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x03, 0x01, 0x04, 0x00, 0x00, 0x2e, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xa6, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x02, 0x00, 0xd1, 0xe9, 0xca, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xd1, 0xe9, 0xd1, 0x41, 0xf8, 0x01, 0x00, 0x00, 0x24, 0x02, 0x00, 0xc9, 0xb5, 0xcb, 0xc7, 0xc6, 0xa3, 0xea, 0x0d, 0xc5, 0xc7, 0x71, 0xd1, 0xc7, 0x47, 0x8c, 0x49, 0x93, 0x02, 0xec, 0xf0, 0xc5, 0x28, 0xd8, 0x04, 0xad, 0x0d, 0x06, 0x04, 0x12, 0x71, 0x26, 0x2b, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x37, 0x04, 0xa6, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x02, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xcc, 0xc8, 0xe9, 0xca, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xc8, 0xe9, 0xc8, 0x41, 0xf8, 0x01, 0x00, 0x00, 0x24, 0x02, 0x00, 0xc9, 0xb5, 0xcb, 0xc7, 0xc6, 0xa3, 0xea, 0x14, 0xc5, 0xc7, 0x71, 0xc8, 0xc7, 0x47, 0x42, 0xfa, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x49, 0x93, 0x02, 0xec, 0xe9, 0xc5, 0x28, 0xd8, 0x04, 0xc2, 0x0d, 0x06, 0x0e, 0x12, 0x71, 0x26, 0x4e, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x6e, 0x07, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x02, 0x00, 0xbe, 0x06, 0x00, 0x03, 0x00, 0xfe, 0x07, 0x00, 0x04, 0x00, 0xf4, 0x07, 0x00, 0x05, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x06, 0xc2, 0x06, 0xc4, 0x05, 0xe9, 0xce, 0xb5, 0xa9, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x01, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xc6, 0xc2, 0x05, 0x41, 0xf8, 0x01, 0x00, 0x00, 0x8c, 0x24, 0x02, 0x00, 0xcd, 0xb5, 0x71, 0xb6, 0xc2, 0x05, 0xb5, 0x47, 0x9b, 0x49, 0xb6, 0xcb, 0xc7, 0xc6, 0xa3, 0xea, 0x2d, 0xb5, 0xc3, 0x04, 0xb6, 0xcc, 0xc8, 0xc7, 0xa4, 0xea, 0x14, 0xc2, 0x04, 0xc2, 0x05, 0xc8, 0x47, 0xc5, 0xc7, 0xc8, 0x9e, 0x47, 0x9a, 0x9d, 0xc3, 0x04, 0x93, 0x03, 0xec, 0xe9, 0xc5, 0xc7, 0x71, 0xc2, 0x04, 0x8c, 0xc5, 0xb5, 0x47, 0x9a, 0x49, 0x93, 0x02, 0xec, 0xd0, 0xc5, 0x28, 0xd8, 0x04, 0xcb, 0x0d, 0x0e, 0x12, 0x0d, 0x17, 0x17, 0x3f, 0x76, 0x30, 0x26, 0x12, 0x26, 0x4e, 0x17, 0x3a, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x06, 0x00, 0x04, 0x00, 0x00, 0x5a, 0x06, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xbe, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x02, 0x00, 0xd2, 0x06, 0x00, 0x03, 0x00, 0xf4, 0x07, 0x00, 0x04, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x05, 0xc2, 0x05, 0xc4, 0x04, 0xe9, 0xcb, 0xb5, 0xc9, 0xc5, 0xc7, 0xa3, 0xea, 0x0d, 0xc2, 0x04, 0xc5, 0x47, 0xb5, 0xa9, 0xea, 0x05, 0x93, 0x00, 0xec, 0xf0, 0xc5, 0xb5, 0xa9, 0xea, 0x04, 0xc2, 0x04, 0x28, 0xc5, 0xca, 0xc6, 0xc7, 0xa3, 0xea, 0x10, 0xc2, 0x04, 0xc6, 0xc5, 0x9e, 0x71, 0xc2, 0x04, 0xc6, 0x47, 0x49, 0x93, 0x01, 0xec, 0xed, 0xc2, 0x04, 0xc7, 0xc5, 0x9e, 0x43, 0x30, 0x00, 0x00, 0x00, 0xc2, 0x04, 0x41, 0x44, 0x00, 0x00, 0x00, 0x42, 0xf8, 0x01, 0x00, 0x00, 0xc5, 0x9d, 0x43, 0xf8, 0x01, 0x00, 0x00, 0xc2, 0x04, 0x28, 0xd8, 0x04, 0xdc, 0x0d, 0x0c, 0x12, 0x0d, 0x17, 0x0d, 0x44, 0x17, 0x1c, 0x12, 0x26, 0x4e, 0x35, 0x62, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x09, 0x00, 0x06, 0x01, 0x00, 0x75, 0x09, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xbe, 0x06, 0x00, 0x01, 0x00, 0xe2, 0x07, 0x00, 0x02, 0x00, 0xb8, 0x07, 0x00, 0x03, 0x00, 0xf0, 0x06, 0x00, 0x04, 0x00, 0xbc, 0x06, 0x00, 0x05, 0x00, 0xf0, 0x07, 0x00, 0x06, 0x00, 0xda, 0x06, 0x00, 0x07, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa0, 0x05, 0x23, 0x01, 0x08, 0xc3, 0x08, 0xc2, 0x08, 0xc3, 0x05, 0xc1, 0xcb, 0xc2, 0x08, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xc3, 0x06, 0xc2, 0x08, 0xe9, 0xc3, 0x07, 0xb5, 0xca, 0xc6, 0xc2, 0x07, 0xa3, 0xea, 0x33, 0xc6, 0xc2, 0x06, 0x9d, 0xc9, 0xc2, 0x05, 0xc6, 0x47, 0xc4, 0x04, 0xb5, 0xaa, 0xea, 0x20, 0xdd, 0xc2, 0x04, 0xc5, 0xf0, 0xd0, 0xb5, 0x47, 0x04, 0x79, 0x01, 0x00, 0x00, 0xaa, 0xea, 0x0d, 0xc7, 0xc1, 0xaa, 0xea, 0x08, 0x04, 0x78, 0x01, 0x00, 0x00, 0x94, 0x02, 0xc8, 0x94, 0x02, 0x93, 0x01, 0xec, 0xc9, 0xc7, 0xc1, 0xaa, 0xea, 0x08, 0x04, 0x78, 0x01, 0x00, 0x00, 0x94, 0x02, 0xc7, 0x04, 0x00, 0x02, 0x00, 0x00, 0xdd, 0xb6, 0xc2, 0x07, 0xc2, 0x06, 0x9d, 0xf0, 0x9d, 0x04, 0xdb, 0x01, 0x00, 0x00, 0x9d, 0x9d, 0xcf, 0x28, 0xd8, 0x04, 0xea, 0x0d, 0x12, 0x12, 0x17, 0x0d, 0x30, 0x1c, 0x2b, 0x1c, 0x21, 0x17, 0x21, 0x35, 0x1c, 0x27, 0x13, 0x17, 0x1c, 0x26, 0x76, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x05, 0x01, 0x03, 0x00, 0x00, 0x3c, 0x06, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0xbc, 0x06, 0x00, 0x03, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x04, 0xc2, 0x04, 0xd0, 0xe9, 0xce, 0xb5, 0xa9, 0xea, 0x03, 0xb5, 0x28, 0xc8, 0xc6, 0x8e, 0xce, 0x47, 0xcb, 0xc6, 0xb5, 0xa5, 0xea, 0x0d, 0x92, 0x01, 0xc7, 0xd1, 0x9a, 0xc8, 0xc6, 0x47, 0x9d, 0xcb, 0xec, 0xf0, 0xc8, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xb5, 0xaa, 0xea, 0x0c, 0xc7, 0xd1, 0xc8, 0x41, 0xf8, 0x01, 0x00, 0x00, 0x9f, 0x9a, 0xcb, 0xc7, 0x28, 0xd8, 0x04, 0x80, 0x0e, 0x0c, 0x12, 0x0d, 0x12, 0x17, 0x0d, 0x21, 0x1c, 0x0d, 0x2b, 0x0d, 0x35, 0x3a, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x6d, 0x07, 0xbc, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xf0, 0x07, 0x00, 0x02, 0x00, 0xd2, 0x06, 0x00, 0x03, 0x00, 0xaa, 0x06, 0x00, 0x04, 0x00, 0xbe, 0x06, 0x00, 0x05, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x06, 0xc2, 0x06, 0xcd, 0xe9, 0xca, 0xc5, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xcb, 0xc6, 0xb5, 0xa9, 0xea, 0x15, 0xc7, 0xb5, 0xa9, 0xea, 0x10, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xb5, 0xb5, 0x25, 0x02, 0x00, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xc6, 0xc7, 0xb6, 0x9e, 0x24, 0x02, 0x00, 0xcc, 0xb5, 0xc3, 0x04, 0xc2, 0x04, 0xc6, 0xa3, 0xea, 0x22, 0xc7, 0xc2, 0x04, 0x9d, 0xc4, 0x05, 0xb5, 0xa9, 0xea, 0x08, 0xc8, 0xc2, 0x04, 0xb5, 0x49, 0xec, 0x0d, 0xc8, 0xc2, 0x04, 0x71, 0xc2, 0x05, 0xc5, 0xc2, 0x04, 0x47, 0x9a, 0x49, 0x93, 0x04, 0xec, 0xda, 0xc8, 0x42, 0x8b, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0x8e, 0x0e, 0x0b, 0x12, 0x3f, 0x35, 0x4f, 0x5d, 0x30, 0x21, 0x17, 0x27, 0x3f, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x60, 0x07, 0xbc, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xf0, 0x07, 0x00, 0x02, 0x00, 0xaa, 0x06, 0x00, 0x03, 0x00, 0xbe, 0x06, 0x00, 0x04, 0x00, 0xd2, 0x06, 0x00, 0x05, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x06, 0xc2, 0x06, 0xcd, 0xe9, 0xca, 0xc5, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xcb, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xc6, 0xc7, 0xb6, 0x9d, 0x24, 0x02, 0x00, 0xc3, 0x05, 0xb5, 0xcc, 0xc8, 0xc6, 0xa3, 0xea, 0x2e, 0xc7, 0xc8, 0x9d, 0xc4, 0x04, 0xb4, 0xa9, 0xea, 0x14, 0xc5, 0xc8, 0x47, 0xb5, 0xaa, 0xea, 0x1a, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0x01, 0x02, 0x00, 0x00, 0xef, 0x2f, 0xc2, 0x05, 0xc8, 0x71, 0xc5, 0xc8, 0x47, 0xc2, 0x04, 0xb6, 0x9d, 0x9b, 0x49, 0x93, 0x03, 0xec, 0xcf, 0xc2, 0x05, 0x42, 0x8b, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0x9e, 0x0e, 0x0b, 0x12, 0x3f, 0x62, 0x26, 0x1c, 0x17, 0x26, 0x3a, 0x08, 0x45, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x06, 0x00, 0x05, 0x01, 0x00, 0x8b, 0x01, 0x06, 0xf0, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0xda, 0x06, 0x00, 0x03, 0x00, 0xbc, 0x06, 0x00, 0x04, 0x00, 0x10, 0x00, 0x01, 0x00, 0xdc, 0x01, 0x00, 0x03, 0x08, 0xc3, 0x05, 0xc2, 0x05, 0xc4, 0x04, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xb5, 0xa3, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0x02, 0x02, 0x00, 0x00, 0xef, 0x2f, 0xc2, 0x04, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xc2, 0x04, 0xe9, 0x9d, 0xcc, 0xc2, 0x04, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xb5, 0xa5, 0x11, 0xeb, 0x08, 0x0e, 0xc2, 0x04, 0xb5, 0x47, 0xb5, 0xa9, 0xea, 0x05, 0xb6, 0xc9, 0xec, 0x18, 0xdd, 0x42, 0x01, 0x01, 0x00, 0x00, 0xc2, 0x04, 0xb5, 0x47, 0x24, 0x01, 0x00, 0xc9, 0xc2, 0x04, 0xc2, 0x04, 0xb5, 0x47, 0x9e, 0xc3, 0x04, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xc8, 0xb5, 0x24, 0x02, 0x00, 0xcb, 0xb5, 0xca, 0xc6, 0xc8, 0xa3, 0xea, 0x12, 0xc7, 0xc6, 0x71, 0xc5, 0x38, 0xef, 0x00, 0x00, 0x00, 0xc6, 0xef, 0x9b, 0x49, 0x93, 0x01, 0xec, 0xeb, 0xc7, 0x42, 0x5a, 0x00, 0x00, 0x00, 0xc2, 0x04, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xac, 0x0e, 0x0e, 0x12, 0x0d, 0x3a, 0x3f, 0x3f, 0x6c, 0x0d, 0x0d, 0x49, 0x31, 0x53, 0x26, 0x44, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x03, 0x00, 0x05, 0x01, 0x00, 0x38, 0x03, 0xbc, 0x06, 0x00, 0x00, 0x00, 0xd2, 0x06, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0xdc, 0x01, 0x00, 0x03, 0x08, 0xcb, 0xc7, 0xcd, 0x41, 0xf8, 0x01, 0x00, 0x00, 0xb5, 0xaa, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0x03, 0x02, 0x00, 0x00, 0xef, 0x2f, 0x38, 0xf7, 0x00, 0x00, 0x00, 0x38, 0xf6, 0x00, 0x00, 0x00, 0xc5, 0xef, 0xc5, 0x9b, 0xef, 0xce, 0xdd, 0x42, 0x02, 0x01, 0x00, 0x00, 0xc5, 0xb5, 0x47, 0x24, 0x01, 0x00, 0x9d, 0xce, 0x28, 0xd8, 0x04, 0xbd, 0x0e, 0x06, 0x0d, 0x08, 0x35, 0x3f, 0x54, 0x49, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x03, 0x02, 0x04, 0x00, 0x00, 0x43, 0x05, 0xda, 0x06, 0x00, 0x01, 0x00, 0xf0, 0x07, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xa6, 0x06, 0x00, 0x02, 0x00, 0x26, 0x00, 0x00, 0xc9, 0xb5, 0xca, 0xc6, 0xd1, 0xa3, 0xea, 0x09, 0xc5, 0xc6, 0xb5, 0x49, 0x93, 0x01, 0xec, 0xf4, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0xa7, 0x01, 0x00, 0x00, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcf, 0xd2, 0x43, 0xf8, 0x01, 0x00, 0x00, 0x38, 0x95, 0x00, 0x00, 0x00, 0x42, 0x60, 0x00, 0x00, 0x00, 0xc5, 0xc7, 0x24, 0x02, 0x00, 0x0e, 0xc5, 0x28, 0xd8, 0x04, 0xca, 0x0e, 0x07, 0x05, 0x17, 0x26, 0x2c, 0x7b, 0x21, 0x53, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x02, 0x01, 0x04, 0x01, 0x01, 0x6b, 0x03, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x88, 0x08, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xca, 0x05, 0x38, 0x01, 0xc0, 0x00, 0xc9, 0xdd, 0xd1, 0xef, 0xea, 0x19, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd9, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xce, 0xb5, 0xa3, 0xea, 0x40, 0xc5, 0xee, 0x2f, 0xd1, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x31, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xaa, 0xea, 0x04, 0xc5, 0xee, 0x2f, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x42, 0x8c, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xce, 0xb5, 0xa3, 0xea, 0x04, 0xc5, 0xee, 0x2f, 0xc6, 0x8c, 0xca, 0xec, 0x04, 0xc5, 0xee, 0x2f, 0x38, 0xe9, 0x00, 0x00, 0x00, 0x42, 0x8f, 0x01, 0x00, 0x00, 0xb5, 0xc6, 0x25, 0x02, 0x00, 0xd8, 0x04, 0xd6, 0x0e, 0x11, 0x00, 0x03, 0x0a, 0x1c, 0x2b, 0x30, 0x17, 0x0d, 0x35, 0x5d, 0x12, 0x4e, 0x17, 0x12, 0x12, 0x0d, 0x12, 0x0e, 0x43, 0x06, 0x05, 0x88, 0x08, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x0d, 0x00, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x05, 0x02, 0x00, 0x00, 0x23, 0x01, 0x00, 0xd8, 0x04, 0xd7, 0x0e, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xd4, 0x03, 0x02, 0x04, 0x02, 0x03, 0x00, 0x00, 0x2e, 0x06, 0x8c, 0x08, 0x00, 0x01, 0x00, 0x8e, 0x08, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xbe, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0x90, 0x08, 0x00, 0x03, 0x00, 0xd2, 0xf4, 0xea, 0x03, 0xd1, 0xd6, 0x26, 0x00, 0x00, 0xcb, 0xb5, 0xc9, 0xc5, 0xd1, 0xa3, 0xea, 0x1c, 0x26, 0x00, 0x00, 0xcc, 0xb5, 0xca, 0xc6, 0xd2, 0xa3, 0xea, 0x09, 0xc8, 0xc6, 0xb5, 0x49, 0x93, 0x01, 0xec, 0xf4, 0xc7, 0xc5, 0xc8, 0x49, 0x93, 0x00, 0xec, 0xe1, 0xc7, 0x28, 0xd8, 0x04, 0xef, 0x0e, 0x0a, 0x04, 0x17, 0x0d, 0x17, 0x26, 0x17, 0x26, 0x2b, 0x17, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x02, 0x01, 0x03, 0x00, 0x00, 0x1c, 0x03, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0xd1, 0xd1, 0xf0, 0xc9, 0xb5, 0xca, 0xc6, 0xd1, 0xa3, 0xea, 0x0b, 0xc5, 0xc6, 0x47, 0xc6, 0xb6, 0x49, 0x93, 0x01, 0xec, 0xf2, 0xc5, 0x28, 0xd8, 0x04, 0xfe, 0x0e, 0x04, 0x04, 0x30, 0x26, 0x35, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x03, 0x01, 0x04, 0x00, 0x00, 0x22, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x02, 0x00, 0xd1, 0xe9, 0xcb, 0x38, 0xea, 0x00, 0x00, 0x00, 0xc7, 0xc7, 0xf0, 0xc9, 0xb5, 0xca, 0xc6, 0xc7, 0xa3, 0xea, 0x0e, 0xc5, 0xc6, 0x47, 0xc6, 0x71, 0xd1, 0xc6, 0x47, 0x49, 0x93, 0x01, 0xec, 0xef, 0xc5, 0x28, 0xd8, 0x04, 0x85, 0x0f, 0x05, 0x04, 0x12, 0x30, 0x26, 0x44, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x03, 0x01, 0x05, 0x00, 0x00, 0x2d, 0x04, 0xda, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xbe, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xcb, 0xb5, 0xc9, 0xc5, 0xd1, 0xa3, 0xea, 0x1d, 0xb5, 0xca, 0xc6, 0xd1, 0xa3, 0xea, 0x12, 0xc7, 0xc5, 0x47, 0xc6, 0x71, 0xb6, 0xb6, 0xc5, 0x9d, 0xc6, 0x9d, 0x9b, 0x49, 0x93, 0x01, 0xec, 0xeb, 0x93, 0x00, 0xec, 0xe0, 0xc7, 0x28, 0xd8, 0x04, 0x8d, 0x0f, 0x07, 0x04, 0x2b, 0x26, 0x26, 0x44, 0x17, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x05, 0x01, 0x04, 0x00, 0x00, 0x87, 0x01, 0x06, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x8c, 0x08, 0x00, 0x00, 0x00, 0x8e, 0x08, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0xaa, 0x06, 0x00, 0x03, 0x00, 0xbe, 0x06, 0x00, 0x04, 0x00, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x09, 0x02, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0xe9, 0xc9, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0xb5, 0x47, 0x24, 0x01, 0x00, 0x96, 0xea, 0x20, 0xb6, 0xca, 0x38, 0xea, 0x00, 0x00, 0x00, 0xc6, 0xc5, 0xf0, 0xcb, 0xb5, 0xcc, 0xc8, 0xc5, 0xa3, 0xea, 0x41, 0xc7, 0xb5, 0x47, 0xc8, 0x71, 0xd1, 0xc8, 0x47, 0x49, 0x93, 0x03, 0xec, 0xef, 0xd1, 0xb5, 0x47, 0xe9, 0xca, 0x38, 0xea, 0x00, 0x00, 0x00, 0xc6, 0xc5, 0xf0, 0xcb, 0xb5, 0xcc, 0xc8, 0xc5, 0xa3, 0xea, 0x1f, 0xb5, 0xc3, 0x04, 0xc2, 0x04, 0xc6, 0xa3, 0xea, 0x12, 0xc7, 0xc2, 0x04, 0x47, 0xc8, 0x71, 0xd1, 0xc8, 0x47, 0xc2, 0x04, 0x47, 0x49, 0x93, 0x04, 0xec, 0xea, 0x93, 0x03, 0xec, 0xde, 0xc7, 0x28, 0xd8, 0x04, 0x97, 0x0f, 0x11, 0x04, 0x58, 0x3f, 0x12, 0x62, 0x0d, 0x30, 0x26, 0x30, 0x18, 0x1c, 0x30, 0x26, 0x30, 0x44, 0x17, 0x18, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x01, 0x01, 0x04, 0x00, 0x00, 0x4b, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x00, 0x00, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x0a, 0x02, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0xe9, 0xc9, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0xb5, 0x47, 0x24, 0x01, 0x00, 0x96, 0x11, 0xeb, 0x08, 0x0e, 0xc5, 0xd1, 0xb5, 0x47, 0xe9, 0xaa, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x0b, 0x02, 0x00, 0x00, 0xef, 0x2f, 0xc5, 0x28, 0xd8, 0x04, 0xad, 0x0f, 0x06, 0x04, 0x58, 0x3f, 0x12, 0x94, 0x3f, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x03, 0x01, 0x03, 0x00, 0x00, 0x2a, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x00, 0x00, 0xd2, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x02, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x42, 0x91, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xc9, 0xd1, 0xb5, 0x47, 0xb5, 0x47, 0xca, 0xb6, 0xcb, 0xc7, 0xc5, 0xa3, 0xea, 0x0d, 0xc6, 0xd1, 0xc7, 0x47, 0xc7, 0x47, 0x9d, 0xca, 0x93, 0x02, 0xec, 0xf0, 0xc6, 0x28, 0xd8, 0x04, 0xb6, 0x0f, 0x06, 0x04, 0x4e, 0x21, 0x26, 0x2b, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x06, 0x01, 0x04, 0x00, 0x00, 0x80, 0x01, 0x07, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x00, 0x00, 0x90, 0x07, 0x00, 0x01, 0x00, 0xf0, 0x06, 0x00, 0x02, 0x00, 0xaa, 0x06, 0x00, 0x03, 0x00, 0xbe, 0x06, 0x00, 0x04, 0x00, 0x98, 0x08, 0x00, 0x05, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x42, 0x91, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xc9, 0x26, 0x00, 0x00, 0xca, 0xb5, 0xcc, 0xc8, 0xc5, 0xb6, 0x9d, 0xa3, 0xea, 0x09, 0xc6, 0xc8, 0xb5, 0x49, 0x93, 0x03, 0xec, 0xf2, 0xc6, 0xc5, 0xb6, 0x49, 0x38, 0xea, 0x00, 0x00, 0x00, 0x42, 0x19, 0x01, 0x00, 0x00, 0xc5, 0x24, 0x01, 0x00, 0xcb, 0xb5, 0xcc, 0xc8, 0xc5, 0xa3, 0xea, 0x3a, 0xc7, 0xd1, 0x9a, 0xcb, 0x38, 0x1c, 0x01, 0x00, 0x00, 0xc7, 0xef, 0x8c, 0xc8, 0xb6, 0x9d, 0x9b, 0xc3, 0x05, 0xc6, 0xc5, 0xc8, 0x9e, 0xb6, 0x9e, 0xc2, 0x05, 0x49, 0xb5, 0xc3, 0x04, 0xc2, 0x04, 0xc5, 0xa3, 0xea, 0x12, 0xc7, 0xc2, 0x04, 0x47, 0xc2, 0x04, 0x71, 0x13, 0x47, 0xc2, 0x05, 0x9d, 0x49, 0x93, 0x04, 0xec, 0xea, 0x93, 0x03, 0xec, 0xc3, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xc6, 0x23, 0x01, 0x00, 0xd8, 0x04, 0xbf, 0x0f, 0x0e, 0x04, 0x4e, 0x17, 0x30, 0x2b, 0x17, 0x4e, 0x26, 0x17, 0x49, 0x30, 0x30, 0x58, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x05, 0x00, 0x00, 0x1b, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x2b, 0x01, 0x00, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x42, 0x1d, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xd0, 0x0f, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x08, 0x01, 0x05, 0x00, 0x00, 0xdd, 0x01, 0x09, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xbe, 0x06, 0x00, 0x02, 0x00, 0xc2, 0x06, 0x00, 0x03, 0x00, 0xe0, 0x06, 0x00, 0x04, 0x00, 0x9a, 0x08, 0x00, 0x05, 0x00, 0xee, 0x06, 0x00, 0x06, 0x00, 0xf0, 0x06, 0x00, 0x07, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x42, 0x91, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xc9, 0xb6, 0xc3, 0x04, 0xd1, 0x42, 0x92, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc3, 0x05, 0xb5, 0xca, 0xc6, 0xc5, 0xa3, 0x69, 0x9d, 0x00, 0x00, 0x00, 0xc6, 0xcb, 0xc7, 0xc5, 0xa3, 0xea, 0x0f, 0xc2, 0x05, 0xc7, 0x47, 0xc6, 0x47, 0xb5, 0xaa, 0xeb, 0x05, 0x93, 0x02, 0xec, 0xee, 0xc7, 0xc5, 0xa9, 0xea, 0x03, 0xb5, 0x28, 0xc7, 0xc6, 0xaa, 0xea, 0x2e, 0xb5, 0xcc, 0xc8, 0xc5, 0xa3, 0xea, 0x22, 0xc2, 0x05, 0xc7, 0x47, 0xc8, 0x47, 0xc3, 0x06, 0xc2, 0x05, 0xc7, 0x47, 0xc8, 0x71, 0xc2, 0x05, 0xc6, 0x47, 0xc8, 0x47, 0x49, 0xc2, 0x05, 0xc6, 0x47, 0xc8, 0xc2, 0x06, 0x49, 0x93, 0x03, 0xec, 0xdb, 0xc2, 0x04, 0x8c, 0xc3, 0x04, 0xc2, 0x05, 0xc6, 0x47, 0xc6, 0x47, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc3, 0x07, 0xc6, 0xb6, 0x9d, 0xcb, 0xc7, 0xc5, 0xa3, 0xea, 0x2e, 0xc2, 0x07, 0xc2, 0x05, 0xc7, 0x47, 0xc6, 0x47, 0x9a, 0xc3, 0x06, 0xb5, 0xcc, 0xc8, 0xc5, 0xa3, 0xea, 0x18, 0xc2, 0x05, 0xc7, 0x47, 0xc8, 0x71, 0x13, 0x47, 0xc2, 0x05, 0xc6, 0x47, 0xc8, 0x47, 0xc2, 0x06, 0x9a, 0x9e, 0x49, 0x93, 0x03, 0xec, 0xe5, 0x93, 0x02, 0xec, 0xcf, 0x93, 0x01, 0xed, 0x61, 0xff, 0xc2, 0x04, 0xc3, 0x07, 0xb5, 0xca, 0xc6, 0xc5, 0xa3, 0xea, 0x10, 0xc2, 0x07, 0xc2, 0x05, 0xc6, 0x47, 0xc6, 0x47, 0x9a, 0xc3, 0x07, 0x93, 0x01, 0xec, 0xed, 0xc2, 0x07, 0x28, 0xd8, 0x04, 0xd3, 0x0f, 0x1d, 0x05, 0x4e, 0x12, 0x3a, 0x35, 0x26, 0x2b, 0x0d, 0x17, 0x1c, 0x0d, 0x1c, 0x26, 0x2b, 0x44, 0x2b, 0x17, 0x1d, 0x53, 0x30, 0x3a, 0x26, 0x62, 0x17, 0x17, 0x1c, 0x17, 0x26, 0x4e, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x0a, 0x01, 0x05, 0x00, 0x00, 0x9f, 0x02, 0x0b, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x00, 0x00, 0x9c, 0x08, 0x00, 0x01, 0x00, 0x9a, 0x08, 0x00, 0x02, 0x00, 0xaa, 0x06, 0x00, 0x03, 0x00, 0xbe, 0x06, 0x00, 0x04, 0x00, 0xc2, 0x06, 0x00, 0x05, 0x00, 0xe8, 0x07, 0x00, 0x06, 0x00, 0xd2, 0x06, 0x00, 0x07, 0x00, 0xf0, 0x06, 0x00, 0x08, 0x00, 0xee, 0x06, 0x00, 0x09, 0x00, 0x38, 0xea, 0x00, 0x00, 0x00, 0x42, 0x91, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xc9, 0xd1, 0x42, 0x92, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xcb, 0x38, 0xea, 0x00, 0x00, 0x00, 0x42, 0x19, 0x01, 0x00, 0x00, 0xc5, 0x24, 0x01, 0x00, 0xca, 0xb5, 0xcc, 0xc8, 0xc5, 0xa3, 0x69, 0xef, 0x00, 0x00, 0x00, 0xc8, 0xc3, 0x04, 0xc2, 0x04, 0xc5, 0xa3, 0xea, 0x0f, 0xc7, 0xc2, 0x04, 0x47, 0xc8, 0x47, 0xb5, 0xaa, 0xeb, 0x05, 0x93, 0x04, 0xec, 0xed, 0xc2, 0x04, 0xc5, 0xa9, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0x0f, 0x02, 0x00, 0x00, 0xef, 0x2f, 0xc2, 0x04, 0xc8, 0xaa, 0xea, 0x27, 0xc7, 0xc2, 0x04, 0x47, 0xc3, 0x09, 0xc7, 0xc2, 0x04, 0x71, 0xc7, 0xc8, 0x47, 0x49, 0xc7, 0xc8, 0xc2, 0x09, 0x49, 0xc6, 0xc2, 0x04, 0x47, 0xc3, 0x09, 0xc6, 0xc2, 0x04, 0x71, 0xc6, 0xc8, 0x47, 0x49, 0xc6, 0xc8, 0xc2, 0x09, 0x49, 0xc7, 0xc8, 0x47, 0xc8, 0x47, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc3, 0x08, 0xb5, 0xc3, 0x05, 0xc2, 0x05, 0xc5, 0xa3, 0xea, 0x1d, 0xc7, 0xc8, 0x47, 0xc2, 0x05, 0x71, 0x13, 0x47, 0xc2, 0x08, 0x9a, 0x49, 0xc6, 0xc8, 0x47, 0xc2, 0x05, 0x71, 0x13, 0x47, 0xc2, 0x08, 0x9a, 0x49, 0x93, 0x05, 0xec, 0xdf, 0xb5, 0xc3, 0x04, 0xc2, 0x04, 0xc5, 0xa3, 0xea, 0x55, 0xc2, 0x04, 0xc8, 0xaa, 0xea, 0x4b, 0xc7, 0xc2, 0x04, 0x47, 0xc8, 0x47, 0xc3, 0x08, 0xc8, 0xc3, 0x05, 0xc2, 0x05, 0xc5, 0xa3, 0xea, 0x19, 0xc7, 0xc2, 0x04, 0x47, 0xc2, 0x05, 0x71, 0x13, 0x47, 0xc7, 0xc8, 0x47, 0xc2, 0x05, 0x47, 0xc2, 0x08, 0x9a, 0x9e, 0x49, 0x93, 0x05, 0xec, 0xe3, 0xb5, 0xc3, 0x05, 0xc2, 0x05, 0xc5, 0xa3, 0xea, 0x19, 0xc6, 0xc2, 0x04, 0x47, 0xc2, 0x05, 0x71, 0x13, 0x47, 0xc6, 0xc8, 0x47, 0xc2, 0x05, 0x47, 0xc2, 0x08, 0x9a, 0x9e, 0x49, 0x93, 0x05, 0xec, 0xe3, 0x93, 0x04, 0xec, 0xa7, 0x93, 0x03, 0xed, 0x0f, 0xff, 0xc6, 0x28, 0xd8, 0x04, 0xf5, 0x0f, 0x22, 0x04, 0x4e, 0x35, 0x4e, 0x35, 0x30, 0x2b, 0x0d, 0x17, 0x21, 0x3f, 0x22, 0x21, 0x2b, 0x1c, 0x21, 0x2b, 0x1e, 0x4e, 0x30, 0x3f, 0x3f, 0x18, 0x30, 0x21, 0x2b, 0x30, 0x67, 0x17, 0x30, 0x67, 0x18, 0x17, 0x1c, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x08, 0x01, 0x05, 0x00, 0x00, 0x92, 0x02, 0x09, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x9a, 0x08, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xbe, 0x06, 0x00, 0x02, 0x00, 0xc2, 0x06, 0x00, 0x03, 0x00, 0x8e, 0x08, 0x00, 0x04, 0x00, 0x8c, 0x08, 0x00, 0x05, 0x00, 0xa0, 0x08, 0x00, 0x06, 0x00, 0xf0, 0x06, 0x00, 0x07, 0x00, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x96, 0x11, 0xeb, 0x13, 0x0e, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0xb5, 0x47, 0x24, 0x01, 0x00, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x09, 0x02, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0xe9, 0xc3, 0x05, 0xd1, 0xb5, 0x47, 0xe9, 0xc3, 0x04, 0xd1, 0x42, 0x92, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc9, 0xb5, 0xc3, 0x06, 0xb5, 0xca, 0xc6, 0xc2, 0x04, 0xa3, 0x69, 0xbf, 0x00, 0x00, 0x00, 0xc2, 0x06, 0xcb, 0xc7, 0xc2, 0x05, 0xa3, 0xea, 0x0e, 0xc5, 0xc7, 0x47, 0xc6, 0x47, 0xb5, 0xaa, 0xeb, 0x05, 0x93, 0x02, 0xec, 0xee, 0xc7, 0xc2, 0x05, 0xa9, 0x6a, 0x9b, 0x00, 0x00, 0x00, 0xc7, 0xc2, 0x06, 0xaa, 0xea, 0x34, 0xb5, 0xcc, 0xc8, 0xc2, 0x04, 0xa3, 0xea, 0x2c, 0x36, 0xb7, 0x01, 0x00, 0x00, 0xc5, 0xc7, 0x47, 0xc8, 0x47, 0x3b, 0xb7, 0x01, 0x00, 0x00, 0xc5, 0xc7, 0x47, 0xc8, 0x71, 0xc5, 0xc2, 0x06, 0x47, 0xc8, 0x47, 0x49, 0xc5, 0xc2, 0x06, 0x47, 0xc8, 0x71, 0x38, 0xb7, 0x01, 0x00, 0x00, 0x49, 0x93, 0x03, 0xec, 0xd0, 0xc5, 0xc2, 0x06, 0x47, 0xc6, 0x47, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc3, 0x07, 0xb5, 0xcc, 0xc8, 0xc2, 0x04, 0xa3, 0xea, 0x11, 0xc5, 0xc2, 0x06, 0x47, 0xc8, 0x71, 0x13, 0x47, 0xc2, 0x07, 0x9a, 0x49, 0x93, 0x03, 0xec, 0xeb, 0xc2, 0x06, 0xb6, 0x9d, 0xcb, 0xc7, 0xc2, 0x05, 0xa3, 0xea, 0x2a, 0xc5, 0xc7, 0x47, 0xc6, 0x47, 0xc3, 0x07, 0xc6, 0xcc, 0xc8, 0xc2, 0x04, 0xa3, 0xea, 0x17, 0xc5, 0xc7, 0x47, 0xc8, 0x71, 0x13, 0x47, 0xc5, 0xc2, 0x06, 0x47, 0xc8, 0x47, 0xc2, 0x07, 0x9a, 0x9e, 0x49, 0x93, 0x03, 0xec, 0xe5, 0x93, 0x02, 0xec, 0xd2, 0x93, 0x06, 0x93, 0x01, 0xed, 0x3e, 0xff, 0xc2, 0x06, 0x28, 0xd8, 0x04, 0x9f, 0x10, 0x21, 0x05, 0x62, 0x62, 0x3f, 0x17, 0x21, 0x35, 0x12, 0x3a, 0x30, 0x26, 0x0d, 0x17, 0x17, 0x1c, 0x22, 0x2b, 0x4e, 0x3f, 0x3f, 0x19, 0x53, 0x2b, 0x3f, 0x18, 0x3a, 0x26, 0x2b, 0x5d, 0x17, 0x17, 0x0d, 0x1c, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x0c, 0x01, 0x05, 0x00, 0x00, 0x90, 0x03, 0x0d, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x9a, 0x08, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xbe, 0x06, 0x00, 0x02, 0x00, 0xc2, 0x06, 0x00, 0x03, 0x00, 0x8e, 0x08, 0x00, 0x04, 0x00, 0x8c, 0x08, 0x00, 0x05, 0x00, 0xa0, 0x08, 0x00, 0x06, 0x00, 0xf6, 0x06, 0x00, 0x07, 0x00, 0xd2, 0x06, 0x00, 0x08, 0x00, 0xa2, 0x08, 0x00, 0x09, 0x00, 0xa4, 0x08, 0x00, 0x0a, 0x00, 0xf0, 0x06, 0x00, 0x0b, 0x00, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0x96, 0x11, 0xeb, 0x13, 0x0e, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0xb5, 0x47, 0x24, 0x01, 0x00, 0x96, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x09, 0x02, 0x00, 0x00, 0xef, 0x2f, 0xd1, 0xe9, 0xc3, 0x05, 0xd1, 0xb5, 0x47, 0xe9, 0xc3, 0x04, 0xd1, 0x42, 0x92, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc9, 0x26, 0x00, 0x00, 0xc3, 0x09, 0xb5, 0xc3, 0x06, 0xb5, 0xca, 0xc6, 0xc2, 0x04, 0xa3, 0x69, 0xcc, 0x00, 0x00, 0x00, 0xc2, 0x09, 0xc6, 0x09, 0x49, 0xc2, 0x06, 0xcb, 0xc7, 0xc2, 0x05, 0xa3, 0xea, 0x0e, 0xc5, 0xc7, 0x47, 0xc6, 0x47, 0xb5, 0xaa, 0xeb, 0x05, 0x93, 0x02, 0xec, 0xee, 0xc7, 0xc2, 0x05, 0xa9, 0x6a, 0xa3, 0x00, 0x00, 0x00, 0xc2, 0x09, 0xc6, 0x0a, 0x49, 0xc7, 0xc2, 0x06, 0xaa, 0xea, 0x34, 0xb5, 0xcc, 0xc8, 0xc2, 0x04, 0xa3, 0xea, 0x2c, 0x36, 0xb7, 0x01, 0x00, 0x00, 0xc5, 0xc7, 0x47, 0xc8, 0x47, 0x3b, 0xb7, 0x01, 0x00, 0x00, 0xc5, 0xc7, 0x47, 0xc8, 0x71, 0xc5, 0xc2, 0x06, 0x47, 0xc8, 0x47, 0x49, 0xc5, 0xc2, 0x06, 0x47, 0xc8, 0x71, 0x38, 0xb7, 0x01, 0x00, 0x00, 0x49, 0x93, 0x03, 0xec, 0xd0, 0xc5, 0xc2, 0x06, 0x47, 0xc6, 0x47, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc3, 0x0b, 0xb5, 0xcc, 0xc8, 0xc2, 0x04, 0xa3, 0xea, 0x11, 0xc5, 0xc2, 0x06, 0x47, 0xc8, 0x71, 0x13, 0x47, 0xc2, 0x0b, 0x9a, 0x49, 0x93, 0x03, 0xec, 0xeb, 0xb5, 0xcb, 0xc7, 0xc2, 0x05, 0xa3, 0xea, 0x30, 0xc7, 0xc2, 0x06, 0xaa, 0xea, 0x26, 0xc5, 0xc7, 0x47, 0xc6, 0x47, 0xc3, 0x0b, 0xc6, 0xcc, 0xc8, 0xc2, 0x04, 0xa3, 0xea, 0x17, 0xc5, 0xc7, 0x47, 0xc8, 0x71, 0x13, 0x47, 0xc5, 0xc2, 0x06, 0x47, 0xc8, 0x47, 0xc2, 0x0b, 0x9a, 0x9e, 0x49, 0x93, 0x03, 0xec, 0xe5, 0x93, 0x02, 0xec, 0xcc, 0x93, 0x06, 0x93, 0x01, 0xed, 0x31, 0xff, 0xc2, 0x04, 0xc2, 0x06, 0x9e, 0xc3, 0x0a, 0x38, 0xea, 0x00, 0x00, 0x00, 0xc2, 0x04, 0xc2, 0x0a, 0xf0, 0xc3, 0x08, 0xb5, 0xcc, 0xb5, 0xca, 0xc6, 0xc2, 0x04, 0xa3, 0xea, 0x50, 0xc2, 0x09, 0xc6, 0x47, 0x96, 0xea, 0x45, 0xb5, 0xc3, 0x06, 0xb5, 0xc3, 0x07, 0xb5, 0xcb, 0xc7, 0xc2, 0x04, 0xa3, 0xea, 0x35, 0xc2, 0x09, 0xc7, 0x47, 0xea, 0x13, 0xc2, 0x08, 0xc7, 0x47, 0xc8, 0x71, 0xc5, 0xc2, 0x07, 0x47, 0xc6, 0x47, 0x8c, 0x49, 0x93, 0x07, 0xec, 0x19, 0xc2, 0x06, 0xc8, 0xa9, 0xea, 0x0a, 0xc2, 0x08, 0xc7, 0x47, 0xc8, 0xb6, 0x49, 0xec, 0x08, 0xc2, 0x08, 0xc7, 0x47, 0xc8, 0xb5, 0x49, 0x93, 0x06, 0x93, 0x02, 0xec, 0xc7, 0x93, 0x03, 0x93, 0x01, 0xec, 0xac, 0xc2, 0x08, 0x28, 0xd8, 0x04, 0xc8, 0x10, 0x3b, 0x05, 0x62, 0x62, 0x3f, 0x17, 0x21, 0x35, 0x1c, 0x12, 0x3a, 0x1c, 0x30, 0x26, 0x0d, 0x17, 0x17, 0x1c, 0x1c, 0x22, 0x2b, 0x4e, 0x3f, 0x3f, 0x19, 0x53, 0x2b, 0x3f, 0x18, 0x2b, 0x21, 0x26, 0x2b, 0x5d, 0x18, 0x17, 0x0e, 0x00, 0x05, 0x08, 0x26, 0x3f, 0x0d, 0x2b, 0x27, 0x12, 0x12, 0x2b, 0x21, 0x49, 0x0d, 0x0d, 0x21, 0x26, 0x0d, 0x27, 0x0e, 0x17, 0x0e, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x03, 0x02, 0x04, 0x00, 0x00, 0x2d, 0x05, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0xd1, 0xe9, 0xce, 0xd2, 0xe9, 0xaa, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x13, 0x02, 0x00, 0x00, 0xef, 0x2f, 0xb5, 0xcb, 0xb5, 0xc9, 0xc5, 0xc6, 0xa3, 0xea, 0x0f, 0xc7, 0xd1, 0xc5, 0x47, 0xd2, 0xc5, 0x47, 0x9a, 0x9d, 0xcb, 0x93, 0x00, 0xec, 0xee, 0xc7, 0x28, 0xd8, 0x04, 0x92, 0x11, 0x08, 0x04, 0x12, 0x1c, 0x40, 0x0d, 0x26, 0x35, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x01, 0x02, 0x06, 0x00, 0x00, 0x58, 0x03, 0xf4, 0x07, 0x00, 0x01, 0x00, 0xf6, 0x07, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xd1, 0xe9, 0xb8, 0xaa, 0x11, 0xeb, 0x06, 0x0e, 0xd2, 0xe9, 0xb8, 0xaa, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x14, 0x02, 0x00, 0x00, 0xef, 0x2f, 0x26, 0x00, 0x00, 0xcd, 0xb5, 0x71, 0xd1, 0xb6, 0x47, 0xd2, 0xb7, 0x47, 0x9a, 0xd1, 0xb7, 0x47, 0xd2, 0xb6, 0x47, 0x9a, 0x9e, 0x49, 0xc5, 0xb6, 0x71, 0xd1, 0xb7, 0x47, 0xd2, 0xb5, 0x47, 0x9a, 0xd1, 0xb5, 0x47, 0xd2, 0xb7, 0x47, 0x9a, 0x9e, 0x49, 0xc5, 0xb7, 0x71, 0xd1, 0xb5, 0x47, 0xd2, 0xb6, 0x47, 0x9a, 0xd1, 0xb6, 0x47, 0xd2, 0xb5, 0x47, 0x9a, 0x9e, 0x49, 0xc5, 0x28, 0xd8, 0x04, 0x9f, 0x11, 0x07, 0x04, 0x49, 0x3f, 0x17, 0x5d, 0x62, 0x62, 0x0e, 0x43, 0x06, 0x05, 0xd8, 0x05, 0x02, 0x03, 0x02, 0x05, 0x00, 0x00, 0x30, 0x05, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x02, 0x00, 0xd1, 0xe9, 0xcf, 0xd2, 0xe9, 0xaa, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x15, 0x02, 0x00, 0x00, 0xef, 0x2f, 0x26, 0x00, 0x00, 0xc9, 0xb5, 0xca, 0xc6, 0xc7, 0xa3, 0xea, 0x10, 0xc5, 0xc6, 0x71, 0xd1, 0xc6, 0x47, 0xd2, 0xc6, 0x47, 0x9d, 0x49, 0x93, 0x01, 0xec, 0xed, 0xc5, 0x28, 0xd8, 0x04, 0xab, 0x11, 0x07, 0x04, 0x12, 0x1c, 0x3f, 0x17, 0x26, 0x4e, 0x0e, 0x43, 0x06, 0x05, 0xda, 0x05, 0x02, 0x03, 0x02, 0x05, 0x00, 0x00, 0x30, 0x05, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x02, 0x00, 0xd1, 0xe9, 0xcf, 0xd2, 0xe9, 0xaa, 0xea, 0x0d, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x15, 0x02, 0x00, 0x00, 0xef, 0x2f, 0x26, 0x00, 0x00, 0xc9, 0xb5, 0xca, 0xc6, 0xc7, 0xa3, 0xea, 0x10, 0xc5, 0xc6, 0x71, 0xd1, 0xc6, 0x47, 0xd2, 0xc6, 0x47, 0x9e, 0x49, 0x93, 0x01, 0xec, 0xed, 0xc5, 0x28, 0xd8, 0x04, 0xb5, 0x11, 0x07, 0x04, 0x12, 0x1c, 0x3f, 0x17, 0x26, 0x4e, 0x0e, 0x43, 0x06, 0x05, 0xdc, 0x05, 0x02, 0x03, 0x02, 0x04, 0x00, 0x00, 0x1d, 0x05, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x02, 0x00, 0xd1, 0xe9, 0xcb, 0x26, 0x00, 0x00, 0xc9, 0xb5, 0xca, 0xc6, 0xc7, 0xa3, 0xea, 0x0e, 0xc5, 0xc6, 0x71, 0xd1, 0xc6, 0x47, 0xd2, 0x9a, 0x49, 0x93, 0x01, 0xec, 0xef, 0xc5, 0x28, 0xd8, 0x04, 0xbf, 0x11, 0x05, 0x04, 0x12, 0x17, 0x26, 0x44, 0x0e, 0x43, 0x06, 0x05, 0xde, 0x05, 0x02, 0x0b, 0x02, 0x05, 0x00, 0x00, 0xbf, 0x02, 0x0d, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x8c, 0x08, 0x00, 0x00, 0x00, 0x8e, 0x08, 0x00, 0x01, 0x00, 0xa0, 0x08, 0x00, 0x02, 0x00, 0xaa, 0x06, 0x00, 0x03, 0x00, 0xbe, 0x06, 0x00, 0x04, 0x00, 0xc2, 0x06, 0x00, 0x05, 0x00, 0xd2, 0x06, 0x00, 0x06, 0x00, 0x90, 0x08, 0x00, 0x07, 0x00, 0xfe, 0x07, 0x00, 0x08, 0x00, 0xac, 0x08, 0x00, 0x09, 0x00, 0xae, 0x08, 0x00, 0x0a, 0x00, 0xd1, 0xe9, 0xc9, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd1, 0xb5, 0x47, 0x24, 0x01, 0x00, 0xc4, 0x09, 0xea, 0x08, 0xd1, 0xb5, 0x47, 0xe9, 0xcb, 0xec, 0x03, 0xb6, 0xcb, 0xc7, 0xd2, 0xe9, 0xaa, 0xea, 0x0d, 0x38, 0xcc, 0x00, 0x00, 0x00, 0x04, 0x18, 0x02, 0x00, 0x00, 0xef, 0x2f, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xd2, 0xb5, 0x47, 0x24, 0x01, 0x00, 0xc4, 0x0a, 0xea, 0x08, 0xd2, 0xb5, 0x47, 0xe9, 0xca, 0xec, 0x03, 0xb6, 0xca, 0x26, 0x00, 0x00, 0xc3, 0x06, 0xc2, 0x09, 0xea, 0x55, 0xc2, 0x0a, 0xea, 0x51, 0xb5, 0xcc, 0xc8, 0xc5, 0xa3, 0x69, 0xda, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0xc3, 0x07, 0xb5, 0xc3, 0x04, 0xc2, 0x04, 0xc6, 0xa3, 0xea, 0x2f, 0xb5, 0xc3, 0x08, 0xb5, 0xc3, 0x05, 0xc2, 0x05, 0xc7, 0xa3, 0xea, 0x18, 0xc2, 0x08, 0xd1, 0xc8, 0x47, 0xc2, 0x05, 0x47, 0xd2, 0xc2, 0x05, 0x47, 0xc2, 0x04, 0x47, 0x9a, 0x9d, 0xc3, 0x08, 0x93, 0x05, 0xec, 0xe4, 0xc2, 0x07, 0xc2, 0x04, 0xc2, 0x08, 0x49, 0x93, 0x04, 0xec, 0xcd, 0xc2, 0x06, 0xc8, 0xc2, 0x07, 0x49, 0x93, 0x03, 0xec, 0xb3, 0xc2, 0x09, 0xea, 0x3a, 0xc2, 0x0a, 0x96, 0xea, 0x35, 0xb5, 0xcc, 0xc8, 0xc5, 0xa3, 0x69, 0x81, 0x00, 0x00, 0x00, 0xb5, 0xc3, 0x08, 0xb5, 0xc3, 0x05, 0xc2, 0x05, 0xc7, 0xa3, 0xea, 0x15, 0xc2, 0x08, 0xd1, 0xc8, 0x47, 0xc2, 0x05, 0x47, 0xd2, 0xc2, 0x05, 0x47, 0x9a, 0x9d, 0xc3, 0x08, 0x93, 0x05, 0xec, 0xe7, 0xc2, 0x06, 0xc8, 0xc2, 0x08, 0x49, 0x93, 0x03, 0xec, 0xcf, 0xc2, 0x09, 0x96, 0xea, 0x38, 0xc2, 0x0a, 0xea, 0x34, 0xb5, 0xcc, 0xc8, 0xc5, 0xa3, 0xea, 0x44, 0x26, 0x00, 0x00, 0xc3, 0x07, 0xb5, 0xc3, 0x04, 0xc2, 0x04, 0xc6, 0xa3, 0xea, 0x15, 0xc2, 0x07, 0xc2, 0x04, 0x71, 0xd1, 0xc8, 0x47, 0xd2, 0xb5, 0x47, 0xc2, 0x04, 0x47, 0x9a, 0x49, 0x93, 0x04, 0xec, 0xe7, 0xc2, 0x06, 0xc8, 0xc2, 0x07, 0x49, 0x93, 0x03, 0xec, 0xd0, 0xb5, 0xcc, 0xc8, 0xc5, 0xa3, 0xea, 0x11, 0xc2, 0x06, 0xc8, 0x71, 0xd1, 0xc8, 0x47, 0xd2, 0xb5, 0x47, 0x9a, 0x49, 0x93, 0x03, 0xec, 0xec, 0xc2, 0x06, 0x28, 0xd8, 0x04, 0xc7, 0x11, 0x2d, 0x04, 0x12, 0x5d, 0x0d, 0x1c, 0x0d, 0x0e, 0x21, 0x3f, 0x5d, 0x0d, 0x27, 0x0d, 0x1c, 0x2b, 0x35, 0x1c, 0x30, 0x12, 0x30, 0x62, 0x17, 0x26, 0x17, 0x21, 0x17, 0x30, 0x35, 0x12, 0x30, 0x53, 0x17, 0x21, 0x17, 0x30, 0x26, 0x1c, 0x30, 0x53, 0x17, 0x21, 0x18, 0x26, 0x3f, 0x18, 0x0e, 0x43, 0x06, 0x05, 0xe0, 0x05, 0x02, 0x00, 0x02, 0x04, 0x01, 0x00, 0x0e, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xde, 0x05, 0x42, 0x01, 0xdd, 0xd1, 0xd2, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xfb, 0x11, 0x01, 0x03, 0x0e, 0x43, 0x06, 0x05, 0xe2, 0x05, 0x01, 0x03, 0x01, 0x04, 0x00, 0x00, 0x23, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x02, 0x00, 0xd1, 0xe9, 0xcb, 0x26, 0x00, 0x00, 0xc9, 0xb5, 0xca, 0xc6, 0xc7, 0xa3, 0xea, 0x14, 0xc5, 0xc6, 0x71, 0xd1, 0xc6, 0x47, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x49, 0x93, 0x01, 0xec, 0xe9, 0xc5, 0x28, 0xd8, 0x04, 0xfe, 0x11, 0x05, 0x04, 0x12, 0x17, 0x26, 0x62, 0x0e, 0x43, 0x06, 0x05, 0xe4, 0x05, 0x02, 0x02, 0x02, 0x03, 0x00, 0x00, 0x22, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xd1, 0xe9, 0xcd, 0xd2, 0xe9, 0xaa, 0xea, 0x03, 0x09, 0x28, 0xb5, 0xca, 0xc6, 0xc5, 0xa3, 0xea, 0x10, 0xd1, 0xc6, 0x47, 0xd2, 0xc6, 0x47, 0xaa, 0xea, 0x03, 0x09, 0x28, 0x93, 0x01, 0xec, 0xed, 0x0a, 0x28, 0xd8, 0x04, 0x86, 0x12, 0x08, 0x04, 0x12, 0x1c, 0x0d, 0x26, 0x30, 0x0d, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x00, 0x01, 0x01, 0x00, 0x00, 0x02, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x28, 0xd8, 0x04, 0x99, 0x12, 0x01, 0x03, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x01, 0x03, 0x01, 0x04, 0x00, 0x00, 0x1c, 0x04, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0xd1, 0xe9, 0xca, 0x26, 0x00, 0x00, 0xcb, 0xb5, 0xc9, 0xc5, 0xc6, 0xa3, 0xea, 0x0d, 0xc7, 0xc5, 0x71, 0xd1, 0xc5, 0x47, 0x8c, 0x49, 0x93, 0x00, 0xec, 0xf0, 0xc7, 0x28, 0xd8, 0x04, 0x9c, 0x12, 0x05, 0x04, 0x12, 0x17, 0x26, 0x3f, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x0c, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xd1, 0xd2, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x9a, 0x28, 0xd8, 0x04, 0xa9, 0x12, 0x00, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x00, 0x02, 0x03, 0x01, 0x00, 0x06, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xdc, 0x05, 0x41, 0x01, 0xdd, 0xd2, 0xd1, 0x23, 0x02, 0x00, 0xd8, 0x04, 0xaf, 0x12, 0x00, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x02, 0x00, 0x02, 0x03, 0x01, 0x00, 0x06, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xe2, 0x05, 0x44, 0x01, 0xd1, 0xdd, 0xd2, 0xef, 0x9a, 0x28, 0xd8, 0x04, 0xb0, 0x12, 0x00, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x25, 0x04, 0xaa, 0x06, 0x00, 0x00, 0x00, 0xda, 0x06, 0x00, 0x01, 0x00, 0xd2, 0x06, 0x00, 0x02, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xcc, 0xc8, 0xe9, 0xca, 0x26, 0x00, 0x00, 0xcb, 0xb5, 0xc9, 0xc5, 0xc6, 0xa3, 0xea, 0x14, 0xc7, 0xc5, 0x71, 0xc8, 0xc5, 0x47, 0x42, 0xfa, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x49, 0x93, 0x00, 0xec, 0xe9, 0xc7, 0x28, 0xd8, 0x04, 0xb4, 0x12, 0x05, 0x0e, 0x12, 0x17, 0x26, 0x62, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x06, 0x00, 0x03, 0x00, 0x00, 0x3f, 0x06, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xaa, 0x06, 0x00, 0x01, 0x00, 0xda, 0x06, 0x00, 0x02, 0x00, 0xd6, 0x07, 0x00, 0x03, 0x00, 0xbc, 0x06, 0x00, 0x04, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc3, 0x05, 0xc2, 0x05, 0xc3, 0x04, 0x26, 0x00, 0x00, 0xc9, 0xc2, 0x04, 0xe9, 0xcb, 0xb5, 0xca, 0xc6, 0xc7, 0xa3, 0xea, 0x28, 0xc2, 0x04, 0xc6, 0x47, 0xcc, 0x38, 0x96, 0x00, 0x00, 0x00, 0x42, 0xa3, 0x01, 0x00, 0x00, 0xc8, 0x24, 0x01, 0x00, 0xea, 0x0b, 0xc8, 0x42, 0x92, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0xcc, 0xc5, 0xc6, 0xc8, 0x49, 0x93, 0x01, 0xec, 0xd5, 0xc5, 0x28, 0xd8, 0x04, 0xbc, 0x12, 0x0a, 0x12, 0x17, 0x17, 0x17, 0x26, 0x1c, 0x53, 0x35, 0x17, 0x17, 0x0e, 0x42, 0x07, 0x05, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x10, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xea, 0x00, 0x00, 0x00, 0x42, 0xfc, 0x00, 0x00, 0x00, 0xc5, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xc8, 0x12, 0x01, 0x0d, 0x0e, 0x43, 0x06, 0x05, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x28, 0x01, 0x00, 0x00, 0x28, 0xd8, 0x04, 0xd5, 0x12, 0x00, 0x0e, 0x43, 0x06, 0x05, 0xec, 0x03, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x09, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x42, 0xf6, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xe1, 0x12, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0xee, 0x03, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x09, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x42, 0xf7, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xe6, 0x12, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0xf0, 0x03, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x09, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x42, 0xf8, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xeb, 0x12, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0xf2, 0x03, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x09, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x42, 0xf9, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xf0, 0x12, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0xf4, 0x03, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x09, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x42, 0xfa, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xf5, 0x12, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0xf6, 0x03, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x09, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x42, 0xfb, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xfa, 0x12, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0xf8, 0x03, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x09, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x42, 0xfc, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xff, 0x12, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0xfa, 0x03, 0x01, 0x00, 0x01, 0x04, 0x00, 0x00, 0x72, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xea, 0x03, 0xd1, 0x28, 0xd1, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x1a, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0xb2, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x25, 0x02, 0x00, 0xd1, 0x38, 0xe6, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x03, 0xd1, 0x28, 0xd1, 0x38, 0xe8, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x1d, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0x8d, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x24, 0x02, 0x00, 0xb5, 0x47, 0x28, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0xff, 0x00, 0x00, 0x00, 0xd1, 0x25, 0x01, 0x00, 0xd8, 0x04, 0x84, 0x13, 0x0a, 0x04, 0x53, 0x08, 0x35, 0x80, 0x30, 0x08, 0x35, 0x8a, 0x08, 0x0e, 0x43, 0x06, 0x05, 0xfc, 0x03, 0x01, 0x00, 0x01, 0x04, 0x00, 0x00, 0x42, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xea, 0x03, 0xd1, 0x28, 0xd1, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x1a, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x19, 0x02, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x25, 0x02, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0xfe, 0x00, 0x00, 0x00, 0xd1, 0x25, 0x01, 0x00, 0xd8, 0x04, 0x93, 0x13, 0x05, 0x04, 0x53, 0x08, 0x35, 0x81, 0x0e, 0x43, 0x06, 0x05, 0xfe, 0x03, 0x01, 0x00, 0x01, 0x04, 0x00, 0x00, 0x42, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x77, 0x01, 0x00, 0x00, 0xd1, 0x24, 0x01, 0x00, 0xea, 0x03, 0xd1, 0x28, 0xd1, 0x38, 0xe3, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x1a, 0x38, 0xe1, 0x00, 0x00, 0x00, 0x42, 0x1a, 0x02, 0x00, 0x00, 0xd1, 0x41, 0xc1, 0x01, 0x00, 0x00, 0xd1, 0x41, 0xc2, 0x01, 0x00, 0x00, 0x25, 0x02, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0xff, 0x00, 0x00, 0x00, 0xd1, 0x25, 0x01, 0x00, 0xd8, 0x04, 0x9e, 0x13, 0x05, 0x04, 0x53, 0x08, 0x35, 0x81, 0x0e, 0x43, 0x06, 0x05, 0x80, 0x04, 0x01, 0x04, 0x01, 0x05, 0x00, 0x00, 0x8d, 0x01, 0x05, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xdc, 0x06, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x01, 0x00, 0x9e, 0x07, 0x00, 0x02, 0x00, 0xa0, 0x07, 0x00, 0x03, 0x00, 0xd1, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x07, 0xd1, 0xb6, 0xb7, 0x9b, 0x9f, 0x28, 0xd1, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x44, 0x38, 0xf9, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xc9, 0xd1, 0x41, 0xcf, 0x01, 0x00, 0x00, 0xca, 0x38, 0x00, 0x01, 0x00, 0x00, 0xc5, 0xc6, 0x9d, 0xb7, 0x9b, 0xef, 0xcb, 0x38, 0x00, 0x01, 0x00, 0x00, 0xc5, 0xc6, 0x9e, 0xb7, 0x9b, 0xef, 0xcc, 0xd1, 0x41, 0xd0, 0x01, 0x00, 0x00, 0xb5, 0xa3, 0xea, 0x04, 0xc8, 0x8c, 0xcc, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x42, 0x8a, 0x01, 0x00, 0x00, 0xc7, 0xc8, 0x25, 0x02, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd9, 0xb5, 0xa3, 0xea, 0x19, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xb5, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x00, 0x01, 0x00, 0x00, 0xd1, 0x8c, 0x24, 0x01, 0x00, 0x23, 0x02, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x00, 0x01, 0x00, 0x00, 0xd1, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xa9, 0x13, 0x0e, 0x05, 0x30, 0x1c, 0x35, 0x2b, 0x26, 0x3f, 0x3f, 0x35, 0x12, 0x4f, 0x2b, 0x17, 0x7c, 0x0e, 0x43, 0x06, 0x05, 0x82, 0x04, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x09, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x42, 0x01, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xc0, 0x13, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x84, 0x04, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x09, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x42, 0x02, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd8, 0x04, 0xc5, 0x13, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x86, 0x04, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x13, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0x02, 0x01, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x86, 0x01, 0x00, 0x00, 0x9a, 0x28, 0xd8, 0x04, 0xca, 0x13, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x88, 0x04, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x13, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0x02, 0x01, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x87, 0x01, 0x00, 0x00, 0x9a, 0x28, 0xd8, 0x04, 0xcf, 0x13, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x8a, 0x04, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x0b, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0x04, 0x01, 0x00, 0x00, 0xd1, 0xef, 0xbd, 0x0a, 0x9a, 0x28, 0xd8, 0x04, 0xd4, 0x13, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x8c, 0x04, 0x01, 0x00, 0x01, 0x03, 0x00, 0x00, 0x08, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xbd, 0x0a, 0xd1, 0xbd, 0x0a, 0x9b, 0x9f, 0x28, 0xd8, 0x04, 0xd9, 0x13, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x8e, 0x04, 0x01, 0x01, 0x01, 0x04, 0x00, 0x00, 0x43, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xdc, 0x06, 0x00, 0x00, 0x00, 0xd1, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xa7, 0x11, 0xeb, 0x09, 0x0e, 0xd1, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x1c, 0x38, 0x01, 0x01, 0x00, 0x00, 0xd1, 0x38, 0xeb, 0x00, 0x00, 0x00, 0x9a, 0xef, 0xcd, 0xb6, 0xc5, 0x9b, 0x9e, 0xb7, 0x38, 0xeb, 0x00, 0x00, 0x00, 0x9a, 0x9b, 0x28, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x07, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xde, 0x13, 0x05, 0x05, 0x67, 0x49, 0x3f, 0x08, 0x0e, 0x43, 0x06, 0x05, 0x90, 0x04, 0x01, 0x01, 0x01, 0x04, 0x00, 0x00, 0x3d, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xdc, 0x06, 0x00, 0x00, 0x00, 0xd1, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xa7, 0x11, 0xeb, 0x09, 0x0e, 0xd1, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x16, 0x38, 0x01, 0x01, 0x00, 0x00, 0xd1, 0x38, 0xeb, 0x00, 0x00, 0x00, 0x9a, 0xef, 0xcd, 0xb6, 0xc5, 0x9b, 0x9d, 0xb7, 0x9b, 0x28, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x08, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xe9, 0x13, 0x05, 0x05, 0x67, 0x49, 0x21, 0x08, 0x0e, 0x43, 0x06, 0x05, 0x92, 0x04, 0x01, 0x00, 0x01, 0x04, 0x00, 0x00, 0x38, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x38, 0xe4, 0x00, 0x00, 0x00, 0xa7, 0x11, 0xeb, 0x09, 0x0e, 0xd1, 0x38, 0xe9, 0x00, 0x00, 0x00, 0xa7, 0xea, 0x11, 0x38, 0x07, 0x01, 0x00, 0x00, 0xd1, 0xef, 0x38, 0x08, 0x01, 0x00, 0x00, 0xd1, 0xef, 0x9b, 0x28, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x09, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xf4, 0x13, 0x04, 0x04, 0x67, 0x4e, 0x08, 0x0e, 0x43, 0x06, 0x05, 0x94, 0x04, 0x01, 0x00, 0x01, 0x04, 0x00, 0x00, 0x14, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x0a, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x25, 0x01, 0x00, 0xd8, 0x04, 0xfd, 0x13, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x96, 0x04, 0x01, 0x00, 0x01, 0x04, 0x00, 0x00, 0x14, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x0b, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x25, 0x01, 0x00, 0xd8, 0x04, 0x82, 0x14, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x98, 0x04, 0x01, 0x00, 0x01, 0x04, 0x00, 0x00, 0x14, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x0c, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x25, 0x01, 0x00, 0xd8, 0x04, 0x87, 0x14, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x9a, 0x04, 0x02, 0x00, 0x02, 0x05, 0x00, 0x00, 0x1b, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x0d, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd2, 0xef, 0x25, 0x02, 0x00, 0xd8, 0x04, 0x8c, 0x14, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0x9c, 0x04, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x1e, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0xb5, 0xa9, 0xea, 0x03, 0xb6, 0x28, 0xd1, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x28, 0x01, 0x00, 0x00, 0x9a, 0xd5, 0x38, 0x07, 0x01, 0x00, 0x00, 0xd1, 0xef, 0xd1, 0x9b, 0x28, 0xd8, 0x04, 0x91, 0x14, 0x05, 0x04, 0x1c, 0x08, 0x08, 0x44, 0x0e, 0x43, 0x06, 0x05, 0x9e, 0x04, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x11, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0xbe, 0xb4, 0x00, 0x9a, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x28, 0x01, 0x00, 0x00, 0x9b, 0x28, 0xd8, 0x04, 0x9b, 0x14, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0xa0, 0x04, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x11, 0x01, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x28, 0x01, 0x00, 0x00, 0x9a, 0xbe, 0xb4, 0x00, 0x9b, 0x28, 0xd8, 0x04, 0xa0, 0x14, 0x01, 0x04, 0x0e, 0x43, 0x06, 0x05, 0xa2, 0x04, 0x01, 0x01, 0x01, 0x04, 0x00, 0x01, 0x20, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd4, 0x07, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x01, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x24, 0x01, 0x00, 0xcd, 0xb6, 0xc5, 0x9b, 0x9e, 0xbf, 0x00, 0xbd, 0xed, 0xb1, 0x9a, 0x28, 0xd8, 0x04, 0xa5, 0x14, 0x02, 0x04, 0x67, 0x0b, 0x88, 0x02, 0x06, 0xe8, 0x89, 0x04, 0x23, 0xc7, 0x8a, 0x0e, 0x43, 0x06, 0x05, 0xa4, 0x04, 0x01, 0x01, 0x01, 0x04, 0x00, 0x01, 0x20, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd4, 0x07, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x01, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0x24, 0x01, 0x00, 0xcd, 0xb6, 0xc5, 0x9b, 0x9d, 0xbf, 0x00, 0xbd, 0xed, 0xb1, 0x9a, 0x28, 0xd8, 0x04, 0xab, 0x14, 0x02, 0x04, 0x67, 0x0b, 0x88, 0x02, 0x06, 0xe8, 0x89, 0x04, 0x23, 0xc7, 0x8a, 0x0e, 0x43, 0x06, 0x05, 0xa6, 0x04, 0x01, 0x01, 0x01, 0x04, 0x00, 0x00, 0x1e, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xd4, 0x07, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0x01, 0x01, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xb7, 0x9a, 0x24, 0x01, 0x00, 0xcd, 0xb6, 0x9e, 0xc5, 0xb6, 0x9d, 0x9b, 0x28, 0xd8, 0x04, 0xb1, 0x14, 0x02, 0x04, 0x71, 0x0e, 0x43, 0x06, 0x05, 0xa8, 0x04, 0x01, 0x01, 0x01, 0x04, 0x00, 0x00, 0x1d, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xe6, 0x06, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xc9, 0x38, 0x02, 0x01, 0x00, 0x00, 0x38, 0x00, 0x01, 0x00, 0x00, 0xc5, 0xc5, 0x9a, 0xb6, 0x9d, 0xef, 0xc5, 0x9d, 0x23, 0x01, 0x00, 0xd8, 0x04, 0xb7, 0x14, 0x02, 0x04, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0xaa, 0x04, 0x01, 0x01, 0x01, 0x04, 0x00, 0x00, 0x1d, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xe6, 0x06, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xc9, 0x38, 0x02, 0x01, 0x00, 0x00, 0x38, 0x00, 0x01, 0x00, 0x00, 0xc5, 0xc5, 0x9a, 0xb6, 0x9e, 0xef, 0xc5, 0x9d, 0x23, 0x01, 0x00, 0xd8, 0x04, 0xbd, 0x14, 0x02, 0x04, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0xac, 0x04, 0x01, 0x01, 0x01, 0x05, 0x00, 0x01, 0x1c, 0x02, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xe6, 0x06, 0x00, 0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xc9, 0xbf, 0x00, 0xbd, 0xed, 0xb1, 0x38, 0x02, 0x01, 0x00, 0x00, 0xb6, 0xc5, 0x9d, 0xb6, 0xc5, 0x9e, 0x9b, 0xef, 0x9a, 0x28, 0xd8, 0x04, 0xc3, 0x14, 0x02, 0x04, 0x2b, 0x0b, 0x88, 0x02, 0x06, 0xe8, 0x89, 0x04, 0x23, 0xc7, 0x8a, 0x0e, 0x43, 0x06, 0x05, 0xae, 0x04, 0x01, 0x00, 0x01, 0x04, 0x00, 0x00, 0x15, 0x01, 0xe6, 0x06, 0x00, 0x01, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0xd1, 0xef, 0xd5, 0xb6, 0xb6, 0x38, 0x01, 0x01, 0x00, 0x00, 0xd1, 0x8c, 0xef, 0x9d, 0x9b, 0x28, 0xd8, 0x04, 0xc9, 0x14, 0x02, 0x04, 0x2b, 0x0e, 0x43, 0x06, 0x05, 0xb0, 0x04, 0x03, 0x00, 0x03, 0x03, 0x00, 0x00, 0x08, 0x03, 0xbc, 0x06, 0x00, 0x01, 0x00, 0xc0, 0x06, 0x00, 0x01, 0x00, 0xdc, 0x06, 0x00, 0x01, 0x00, 0xd1, 0xd2, 0xd1, 0x9e, 0xd3, 0x9a, 0x9d, 0x28, 0xd8, 0x04, 0xcf, 0x14, 0x01, 0x04, };
the_stack_data/234517482.c
#ifdef PLATFORM_POSIX #include "platform/posix/simple_queue.h" #include "unity_fixture.h" #include <stdint.h> #include <stdlib.h> #include <stddef.h> #include <stdio.h> #include <time.h> TEST_GROUP(simple_queue); TEST_SETUP(simple_queue) { } TEST_TEAR_DOWN(simple_queue) { } TEST(simple_queue, test_createQueue) { // create a queue Queue_t *q = queueCreate(2, 4); TEST_ASSERT_NOT_NULL(q); TEST_ASSERT_EQUAL_UINT(q->item_length, 2); TEST_ASSERT_EQUAL_UINT(q->item_size, 4); TEST_ASSERT_NOT_NULL(q->abs_start); TEST_ASSERT_NOT_NULL(q->abs_end); TEST_ASSERT_NOT_NULL(q->current_start); TEST_ASSERT_NOT_NULL(q->current_end); TEST_ASSERT_EQUAL_PTR(q->abs_start, q->current_start); TEST_ASSERT_EQUAL_PTR(q->abs_start, q->current_end); TEST_ASSERT_EQUAL_PTR(q->abs_end, q->abs_start+8); } TEST(simple_queue, test_PushPopBasic) { // create a queue Queue_t *q = queueCreate(1, sizeof(int)); const int i = 42; TEST_ASSERT_EQUAL_PTR(q->abs_start, q->current_start); TEST_ASSERT_EQUAL_PTR(q->abs_start, q->current_end); TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, false)); TEST_ASSERT_EQUAL_INT(i, (int)(q->current_start)[0]); int j; TEST_ASSERT_EQUAL_INT(0, queuePop(q, &j, 0)); TEST_ASSERT_EQUAL_INT(i, j); } TEST(simple_queue, test_PushFullPopFull) { // create a queue Queue_t *q = queueCreate(10, sizeof(int)); int i, j; for (i = 0; i <= 9; i++) { // the first ten insertions should be successful TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, false)); } // the eleventh insertion (without force) should fail TEST_ASSERT_EQUAL_INT(1, queuePush(q, &i, 0, false)); for (i = 0; i <= 9; i++) { // the first ten removals should be successful TEST_ASSERT_EQUAL_INT(0, queuePop(q, &j, 0)); // the removed values should have the correct order TEST_ASSERT_EQUAL_INT(i, j); } // the eleventh removal should fail TEST_ASSERT_EQUAL_INT(1, queuePop(q, &j, 0)); } TEST(simple_queue, test_PushEndPopEnd) { // create a queue Queue_t *q = queueCreate(10, sizeof(int)); int i, j; for (i = 0; i <= 9; i++) { // the first ten insertions should be successful TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, false)); } for (i = 0; i <= 9; i++) { // the first ten removals should be successful TEST_ASSERT_EQUAL_INT(0, queuePop(q, &j, 0)); // the removed values should have the correct order TEST_ASSERT_EQUAL_INT(i, j); } // from here on we should start at the abs_start of the queue again! for (i = 20; i <= 29; i++) { // the first ten insertions should be successful TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, false)); } for (i = 20; i <= 29; i++) { // the first ten removals should be successful TEST_ASSERT_EQUAL_INT(0, queuePop(q, &j, 0)); // the removed values should have the correct order TEST_ASSERT_EQUAL_INT(i, j); } } TEST(simple_queue, test_CircularBehaviour) { // create a queue Queue_t *q = queueCreate(10, sizeof(int)); int i, j, k, l, m, n; // test for two circular rounds with two elements for (i = 0; i <= 19; i += 2) { j = i+1; TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, false)); TEST_ASSERT_EQUAL_INT(0, queuePush(q, &j, 0, false)); TEST_ASSERT_EQUAL_INT(0, queuePop(q, &k, 0)); TEST_ASSERT_EQUAL_INT(0, queuePop(q, &l, 0)); // the removed values should have the correct values TEST_ASSERT_EQUAL_INT(i, k); TEST_ASSERT_EQUAL_INT(j, l); } // test for three circular rounds with three elements for (i = 0; i <= 29; i += 3) { j = i + 1; k = j + 1; TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, false)); TEST_ASSERT_EQUAL_INT(0, queuePush(q, &j, 0, false)); TEST_ASSERT_EQUAL_INT(0, queuePush(q, &k, 0, false)); TEST_ASSERT_EQUAL_INT(0, queuePop(q, &l, 0)); TEST_ASSERT_EQUAL_INT(0, queuePop(q, &m, 0)); TEST_ASSERT_EQUAL_INT(0, queuePop(q, &n, 0)); // the removed values should have the correct values TEST_ASSERT_EQUAL_INT(i, l); TEST_ASSERT_EQUAL_INT(j, m); TEST_ASSERT_EQUAL_INT(k, n); } } TEST(simple_queue, test_ResetQueue) { // create a queue Queue_t *q = queueCreate(10, sizeof(int)); int i, j; for (i = 0; i <= 5; i++) TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, false)); for (i = 0; i <= 3; i++) { TEST_ASSERT_EQUAL_INT(0, queuePop(q, &j, 0)); TEST_ASSERT_EQUAL_INT(i, j); } // check that the ptrs are not equal TEST_ASSERT_NOT_EQUAL(q->abs_start, q->current_start); TEST_ASSERT_NOT_EQUAL(q->abs_start, q->current_end); int value_pop, value_push; sem_getvalue(&q->sem_pop, &value_pop); sem_getvalue(&q->sem_push, &value_push); TEST_ASSERT_EQUAL_INT(2, value_pop); TEST_ASSERT_EQUAL_INT(8, value_push); queueReset(q); TEST_ASSERT_EQUAL_PTR(q->abs_start, q->current_start); TEST_ASSERT_EQUAL_PTR(q->abs_start, q->current_end); sem_getvalue(&q->sem_pop, &value_pop); sem_getvalue(&q->sem_push, &value_push); TEST_ASSERT_EQUAL_INT(0, value_pop); TEST_ASSERT_EQUAL_INT(10, value_push); } TEST(simple_queue, test_NrOfWaitingElements) { // create a queue Queue_t *q = queueCreate(10, sizeof(int)); int i, j; for (i = 0; i <= 8; i++) TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, false)); TEST_ASSERT_EQUAL_UINT(9, queueItemsWaiting(q)); for (i = 0; i <= 3; i++) { TEST_ASSERT_EQUAL_INT(0, queuePop(q, &j, 0)); TEST_ASSERT_EQUAL_INT(i, j); } TEST_ASSERT_EQUAL_UINT(5, queueItemsWaiting(q)); for (i = 4; i <= 8; i++) { TEST_ASSERT_EQUAL_INT(0, queuePop(q, &j, 0)); TEST_ASSERT_EQUAL_INT(i, j); } TEST_ASSERT_EQUAL_UINT(0, queueItemsWaiting(q)); } TEST(simple_queue, test_ForcePush) { // create a queue Queue_t *q = queueCreate(10, sizeof(int)); int i, j; for (i = 0; i <= 9; i++) { // the first ten insertions should be successful TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, false)); } // the eleventh insertion (without force) should fail TEST_ASSERT_EQUAL_INT(1, queuePush(q, &i, 0, false)); i = 42; // the eleventh insertion (with force) should succeed TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, true)); for (i = 0; i <= 8; i++) { // the first nine removals should be standard TEST_ASSERT_EQUAL_INT(0, queuePop(q, &j, 0)); // the removed values should have the correct order TEST_ASSERT_EQUAL_INT(i, j); } // the last removal should still be successful TEST_ASSERT_EQUAL_INT(0, queuePop(q, &j, 0)); // the removed value should have the forced value TEST_ASSERT_EQUAL_INT(42, j); } // returns difference in ms int ms_diff(struct timespec *start, struct timespec *stop) { struct timespec result; if ((stop->tv_nsec - start->tv_nsec) < 0) { result.tv_sec = stop->tv_sec - start->tv_sec - 1; result.tv_nsec = stop->tv_nsec - start->tv_nsec + 1000000000; } else { result.tv_sec = stop->tv_sec - start->tv_sec; result.tv_nsec = stop->tv_nsec - start->tv_nsec; } return result.tv_sec * 1000 + (result.tv_nsec / 1000000); } TEST(simple_queue, test_SemaphoreTimingBehaviour) { struct timespec ts1, ts2; // create a queue Queue_t *q = queueCreate(10, sizeof(int)); int i, j; // a removal with timeout 0 should fail immediately clock_gettime(CLOCK_REALTIME, &ts1); TEST_ASSERT_EQUAL_INT(1, queuePop(q, &j, 0)); clock_gettime(CLOCK_REALTIME, &ts2); // allow a little deviation due to the overhead TEST_ASSERT_TRUE(ms_diff(&ts1, &ts2) < 2); // a removal with timeout 100ms should fail eventually clock_gettime(CLOCK_REALTIME, &ts1); TEST_ASSERT_EQUAL_INT(1, queuePop(q, &j, 100)); clock_gettime(CLOCK_REALTIME, &ts2); // allow a little deviation due to the overhead TEST_ASSERT_TRUE(ms_diff(&ts1, &ts2) > 98); TEST_ASSERT_TRUE(ms_diff(&ts1, &ts2) < 102); // a removal with timeout 2000ms should fail eventually clock_gettime(CLOCK_REALTIME, &ts1); TEST_ASSERT_EQUAL_INT(1, queuePop(q, &j, 2000)); clock_gettime(CLOCK_REALTIME, &ts2); // allow a little deviation due to the overhead TEST_ASSERT_TRUE(ms_diff(&ts1, &ts2) > 1998); TEST_ASSERT_TRUE(ms_diff(&ts1, &ts2) < 2002); for (i = 0; i <= 9; i++) { // the first ten insertions should be successful TEST_ASSERT_EQUAL_INT(0, queuePush(q, &i, 0, false)); } // a insertion with timeout 0 should fail immediately clock_gettime(CLOCK_REALTIME, &ts1); TEST_ASSERT_EQUAL_INT(1, queuePush(q, &i, 0, false)); clock_gettime(CLOCK_REALTIME, &ts2); // allow a little deviation due to the overhead TEST_ASSERT_TRUE(ms_diff(&ts1, &ts2) < 2); // a insertion with timeout 100ms should fail eventually clock_gettime(CLOCK_REALTIME, &ts1); TEST_ASSERT_EQUAL_INT(1, queuePush(q, &i, 100, false)); clock_gettime(CLOCK_REALTIME, &ts2); // allow a little deviation due to the overhead TEST_ASSERT_TRUE(ms_diff(&ts1, &ts2) > 98); TEST_ASSERT_TRUE(ms_diff(&ts1, &ts2) < 102); // a insertion with timeout 2000ms should fail eventually clock_gettime(CLOCK_REALTIME, &ts1); TEST_ASSERT_EQUAL_INT(1, queuePush(q, &i, 2000, false)); clock_gettime(CLOCK_REALTIME, &ts2); // allow a little deviation due to the overhead TEST_ASSERT_TRUE(ms_diff(&ts1, &ts2) > 1998); TEST_ASSERT_TRUE(ms_diff(&ts1, &ts2) < 2002); } TEST_GROUP_RUNNER(simple_queue) { RUN_TEST_CASE(simple_queue, test_createQueue); RUN_TEST_CASE(simple_queue, test_PushPopBasic); RUN_TEST_CASE(simple_queue, test_PushFullPopFull); RUN_TEST_CASE(simple_queue, test_PushEndPopEnd); RUN_TEST_CASE(simple_queue, test_CircularBehaviour); RUN_TEST_CASE(simple_queue, test_ResetQueue); RUN_TEST_CASE(simple_queue, test_NrOfWaitingElements); RUN_TEST_CASE(simple_queue, test_ForcePush); RUN_TEST_CASE(simple_queue, test_SemaphoreTimingBehaviour); } #endif // PLATFORM_POSIX
the_stack_data/100013.c
/* * Copyright (C) 2017 XRADIO TECHNOLOGY CO., LTD. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * 3. Neither the name of XRADIO TECHNOLOGY CO., LTD. nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * 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. */ #if PRJCONF_NET_EN /* * net mode <mode> * - net mode sta * - net mode ap * - net mode mon */ /* * net sta config <ssid> [psk] * - net sta config ssid_example * - net sta config ssid_example psk_example * * net sta set <field> <value> * - net sta set ssid ssid_example * - net sta set psk psk_example * - net sta set wep_key0 wep_key_example * - net sta set wep_key1 wep_key_example * - net sta set wep_key2 wep_key_example * - net sta set wep_key3 wep_key_example * - net sta set wep_key_index <0, 1, 2, 3> * - net sta set key_mgmt {WPA-PSK, NONE} * - net sta set pairwise {CCMP, TKIP, WEP40, WEP104, NONE} * - net sta set group {CCMP, TKIP, WEP40, WEP104, NONE} * - net sta set proto {WPA, RSN} * - net sta set auth_alg {OPEN, SHARED} * - net sta set ptk_rekey <seconds> * - net sta set scan_ssid (0, 1) * * net sta get <field> * - net sta get ssid * - net sta get psk * - net sta get wep_key0 * - net sta get wep_key1 * - net sta get wep_key2 * - net sta get wep_key3 * - net sta get wep_key_index * - net sta get key_mgmt * - net sta get pairwise * - net sta get group * - net sta get proto * - net sta get auth_alg * - net sta get ptk_rekey * - net sta get scan_ssid * * net sta enable * net sta disable * * net sta scan once * net sta scan result_num * net sta scan result <num> * net sta scan interval <sec> * net sta bss max count <num> * net sta bss flush <age> * * net sta connect * net sta disconnect * net sta state * net sta ap * * net sta genpsk <ssid> <passphrase> * * net sta wps pbc * net sta wps pin get * net sta wps pin set <pin> */ /* * net ap config <ssid> [psk] * - net ap config ssid_example * - net ap config ssid_example psk_example * * net ap set <field> <value> * - net ap set ssid ssid_example * - net ap set psk psk_example * - net ap set key_mgmt {WPA-PSK, NONE} * - net ap set wpa {CCMP, TKIP, NONE} * - net ap set rsn {CCMP, TKIP, NONE} * - net ap set proto <NONE, {WPA, RSN}> * - net ap set auth_alg {OPEN} * - net ap set group_rekey <seconds> * - net ap set strict_rekey <0, 1> * - net ap set gmk_rekey <seconds> * - net ap set ptk_rekey <seconds> * - net ap set hw_mode <b, g> * - net ap set 80211n <0, 1> * - net ap set channel <1 ~ 13> * - net ap set beacon_int <15 ~ 65535> * - net ap set dtim <1 ~ 255> * - net ap set max_num_sta <num> * * net ap get <field> * - net ap get ssid * - net ap get psk * - net ap get key_mgmt * - net ap get wpa * - net ap get rsn * - net ap get proto * - net ap get auth_alg * - net ap get group_rekey * - net ap get strict_rekey * - net ap get gmk_rekey * - net ap get ptk_rekey * - net ap get hw_mode * - net ap get 80211n * - net ap get channel * - net ap get beacon_int * - net ap get dtim * - net ap get max_num_sta * * net ap enable * net ap reload * net ap disable * * net ap sta num * net ap sta info <num> * * net ap scan once * net ap scan result_num * net ap scan result <num> */ #include "cmd_util.h" #include "net/wlan/wlan.h" #include "net/wlan/wlan_defs.h" #include "common/framework/net_ctrl.h" #include "common/framework/sysinfo.h" #include "net/wlan/wlan.h" #define CMD_WLAN_MAX_BSS_CNT 50 static const char *g_wlan_mode_str[WLAN_MODE_NUM] = { [WLAN_MODE_STA] = "station", [WLAN_MODE_HOSTAP] = "hostap", [WLAN_MODE_MONITOR] = "monitor", }; enum cmd_status cmd_wlan_mode_exec(char *cmd) { enum wlan_mode cur_mode, new_mode; const char *mode_str; if (cmd_strcmp(cmd, "") == 0) { cur_mode = wlan_if_get_mode(g_wlan_netif); if (cur_mode < WLAN_MODE_NUM) { mode_str = g_wlan_mode_str[cur_mode]; } else { mode_str = "invalid"; } cmd_write_respond(CMD_STATUS_OK, "%s", mode_str); return CMD_STATUS_ACKED; } #ifdef __CONFIG_WLAN_STA if (cmd_strcmp(cmd, "sta") == 0) #else if (0) #endif { new_mode = WLAN_MODE_STA; #ifdef __CONFIG_WLAN_AP } else if (cmd_strcmp(cmd, "ap") == 0) { new_mode = WLAN_MODE_HOSTAP; #endif #ifdef __CONFIG_WLAN_MONITOR } else if (cmd_strcmp(cmd, "mon") == 0) { new_mode = WLAN_MODE_MONITOR; #endif } else { return CMD_STATUS_INVALID_ARG; } cmd_write_respond(CMD_STATUS_OK, "OK"); net_switch_mode(new_mode); return CMD_STATUS_ACKED; } /* wpas parse */ static int cmd_wpas_parse_int(const char *value, int min, int max, int *dst) { int val; char *end; val = cmd_strtol(value, &end, 0); if (*end) { CMD_ERR("Invalid number '%s'", value); return -1; } if (val < min || val > max) { CMD_ERR("out of range value %d (%s), range is [%d, %d]\n", val, value, min, max); return -1; } *dst = val; return 0; } static int cmd_wpas_parse_key_mgmt(const char *value) { int val = 0, last, errors = 0; char *start, *end, *buf; buf = cmd_strdup(value); if (buf == NULL) return -1; start = buf; while (*start != '\0') { while (*start == ' ' || *start == '\t') start++; if (*start == '\0') break; end = start; while (*end != ' ' && *end != '\t' && *end != '\0') end++; last = *end == '\0'; *end = '\0'; if (cmd_strcmp(start, "WPA-PSK") == 0) val |= WPA_KEY_MGMT_PSK; else if (cmd_strcmp(start, "WPA-EAP") == 0) val |= WPA_KEY_MGMT_IEEE8021X; else if (cmd_strcmp(start, "IEEE8021X") == 0) val |= WPA_KEY_MGMT_IEEE8021X_NO_WPA; else if (cmd_strcmp(start, "NONE") == 0) val |= WPA_KEY_MGMT_NONE; else if (cmd_strcmp(start, "WPA-NONE") == 0) val |= WPA_KEY_MGMT_WPA_NONE; else { CMD_DBG("Invalid key_mgmt '%s'", start); errors++; } if (last) break; start = end + 1; } cmd_free(buf); if (val == 0) { CMD_DBG("No key_mgmt values configured\n"); errors++; } CMD_DBG("key_mgmt: 0x%x\n", val); return errors ? -1 : val; } static int cmd_wpas_parse_cipher(const char *value) { int val = 0, last; char *start, *end, *buf; buf = cmd_strdup(value); if (buf == NULL) return -1; start = buf; while (*start != '\0') { while (*start == ' ' || *start == '\t') start++; if (*start == '\0') break; end = start; while (*end != ' ' && *end != '\t' && *end != '\0') end++; last = *end == '\0'; *end = '\0'; if (cmd_strcmp(start, "CCMP-256") == 0) val |= WPA_CIPHER_CCMP_256; else if (cmd_strcmp(start, "GCMP-256") == 0) val |= WPA_CIPHER_GCMP_256; else if (cmd_strcmp(start, "CCMP") == 0) val |= WPA_CIPHER_CCMP; else if (cmd_strcmp(start, "GCMP") == 0) val |= WPA_CIPHER_GCMP; else if (cmd_strcmp(start, "TKIP") == 0) val |= WPA_CIPHER_TKIP; else if (cmd_strcmp(start, "WEP104") == 0) val |= WPA_CIPHER_WEP104; else if (cmd_strcmp(start, "WEP40") == 0) val |= WPA_CIPHER_WEP40; else if (cmd_strcmp(start, "NONE") == 0) val |= WPA_CIPHER_NONE; else if (cmd_strcmp(start, "GTK_NOT_USED") == 0) val |= WPA_CIPHER_GTK_NOT_USED; else { cmd_free(buf); return -1; } if (last) break; start = end + 1; } cmd_free(buf); return val; } static int cmd_wpas_parse_proto(const char *value) { int val = 0, last, errors = 0; char *start, *end, *buf; buf = cmd_strdup(value); if (buf == NULL) return -1; start = buf; while (*start != '\0') { while (*start == ' ' || *start == '\t') start++; if (*start == '\0') break; end = start; while (*end != ' ' && *end != '\t' && *end != '\0') end++; last = *end == '\0'; *end = '\0'; /* softAP work on open mode. */ if (cmd_strcmp(start, "NONE") == 0) { val = 0; break; } if (cmd_strcmp(start, "WPA") == 0) val |= WPA_PROTO_WPA; else if (cmd_strcmp(start, "RSN") == 0 || cmd_strcmp(start, "WPA2") == 0) val |= WPA_PROTO_RSN; else if (cmd_strcmp(start, "OSEN") == 0) val |= WPA_PROTO_OSEN; else { CMD_DBG("Invalid proto '%s'\n", start); errors++; } if (last) break; start = end + 1; } cmd_free(buf); /* softAP work on open mode. */ #if 0 if (val == 0) { CMD_DBG("No proto values configured\n"); errors++; } #endif CMD_DBG("proto: 0x%x\n", val); return errors ? -1 : val; } static int cmd_wpas_parse_auth_alg(const char *value) { int val = 0, last, errors = 0; char *start, *end, *buf; buf = cmd_strdup(value); if (buf == NULL) return -1; start = buf; while (*start != '\0') { while (*start == ' ' || *start == '\t') start++; if (*start == '\0') break; end = start; while (*end != ' ' && *end != '\t' && *end != '\0') end++; last = *end == '\0'; *end = '\0'; if (cmd_strcmp(start, "OPEN") == 0) val |= WPA_AUTH_ALG_OPEN; else if (cmd_strcmp(start, "SHARED") == 0) val |= WPA_AUTH_ALG_SHARED; else if (cmd_strcmp(start, "LEAP") == 0) val |= WPA_AUTH_ALG_LEAP; else { CMD_DBG("Invalid auth_alg '%s'\n", start); errors++; } if (last) break; start = end + 1; } cmd_free(buf); if (val == 0) { CMD_DBG("No auth_alg values configured\n"); errors++; } CMD_DBG("auth_alg: 0x%x\n", val); return errors ? -1 : val; } static __inline void cmd_wlan_print_ap(wlan_sta_ap_t *ap) { CMD_LOG(1, "%02x:%02x:%02x:%02x:%02x:%02x ssid=%-32.32s " "beacon_int=%d freq=%d channel=%u rssi=%d level=%d " "flags=%#010x wpa_key_mgmt=%#010x wpa_cipher=%#010x " "wpa2_key_mgmt=%#010x wpa2_cipher=%#010x\n", ap->bssid[0], ap->bssid[1], ap->bssid[2], ap->bssid[3], ap->bssid[4], ap->bssid[5], ap->ssid.ssid, ap->beacon_int, ap->freq, ap->channel, ap->rssi, ap->level, ap->wpa_flags, ap->wpa_key_mgmt, ap->wpa_cipher, ap->wpa2_key_mgmt, ap->wpa2_cipher); } static void cmd_wlan_print_scan_results(wlan_sta_scan_results_t *results) { int i; for (i = 0; i < results->num; ++i) { CMD_LOG(1, "\n%02d: ", i + 1); cmd_wlan_print_ap(&results->ap[i]); } } /* @return * -2: CMD_STATUS_INVALID_ARG * -1: CMD_STATUS_FAIL * 0: CMD_STATUS_OK */ static int cmd_wlan_sta_set(char *cmd) { char *value; wlan_sta_config_t config; if (cmd_strncmp(cmd, "wep_key", 7) == 0) { if (cmd[7] == '0') { config.field = WLAN_STA_FIELD_WEP_KEY0; } else if (cmd[7] == '1') { config.field = WLAN_STA_FIELD_WEP_KEY1; } else if (cmd[7] == '2') { config.field = WLAN_STA_FIELD_WEP_KEY2; } else if (cmd[7] == '3') { config.field = WLAN_STA_FIELD_WEP_KEY3; } else { return -2; } if (cmd[8] == ' ') { cmd_strlcpy((char *)config.u.wep_key, &cmd[9], sizeof(config.u.wep_key)); } else if (cmd[8] == '\0') { config.u.wep_key[0] = '\0'; /* clear wep key */ } else { return -2; } return wlan_sta_set_config(&config); } value = cmd_strchr(cmd, ' '); if (value == NULL) return -2; *value++ = '\0'; config.field = WLAN_STA_FIELD_NUM; if (cmd_strcmp(cmd, "ssid") == 0) { uint8_t ssid_len = cmd_strlen(value); if ((ssid_len >= 0) && (ssid_len <= WLAN_SSID_MAX_LEN)) { config.field = WLAN_STA_FIELD_SSID; cmd_memcpy(config.u.ssid.ssid, value, ssid_len); config.u.ssid.ssid_len = ssid_len; } } else if (cmd_strcmp(cmd, "psk") == 0) { config.field = WLAN_STA_FIELD_PSK; cmd_strlcpy((char *)config.u.psk, value, sizeof(config.u.psk)); } else if (cmd_strcmp(cmd, "wep_key_index") == 0) { int index; if (cmd_wpas_parse_int(value, 0, 3, &index) == 0) { config.field = WLAN_STA_FIELD_WEP_KEY_INDEX; config.u.wep_tx_keyidx = index; } } else if (cmd_strcmp(cmd, "key_mgmt") == 0) { int key_mgmt = cmd_wpas_parse_key_mgmt(value); if (key_mgmt > 0) { config.field = WLAN_STA_FIELD_KEY_MGMT; config.u.key_mgmt = key_mgmt; } } else if (cmd_strcmp(cmd, "pairwise") == 0) { int pairwise_cipher = cmd_wpas_parse_cipher(value); if (pairwise_cipher > 0) { config.field = WLAN_STA_FIELD_PAIRWISE_CIPHER; config.u.pairwise_cipher = pairwise_cipher; } } else if (cmd_strcmp(cmd, "group") == 0) { int group_cipher = cmd_wpas_parse_cipher(value); if (group_cipher > 0) { config.field = WLAN_STA_FIELD_GROUP_CIPHER; config.u.group_cipher = group_cipher; } } else if (cmd_strcmp(cmd, "proto") == 0) { int proto = cmd_wpas_parse_proto(value); if (proto >= 0) { config.field = WLAN_STA_FIELD_PROTO; config.u.proto = proto; } } else if (cmd_strcmp(cmd, "auth_alg") == 0) { int auth_alg = cmd_wpas_parse_auth_alg(value); if (auth_alg > 0) { config.field = WLAN_STA_FIELD_AUTH_ALG; config.u.auth_alg = auth_alg; } } else if (cmd_strcmp(cmd, "ptk_rekey") == 0) { int sec; if (cmd_wpas_parse_int(value, 0, INT32_MAX, &sec) == 0) { config.field = WLAN_STA_FIELD_WPA_PTK_REKEY; config.u.wpa_ptk_rekey = sec; } } else if (cmd_strcmp(cmd, "scan_ssid") == 0) { int enable; if (cmd_wpas_parse_int(value, 0, 1, &enable) == 0) { config.field = WLAN_STA_FIELD_SCAN_SSID; config.u.scan_ssid = enable; } } if (config.field < WLAN_STA_FIELD_NUM) return wlan_sta_set_config(&config); CMD_ERR("invalid arg '%s %s'\n", cmd, value); return -2; } /* @return * -2: CMD_STATUS_INVALID_ARG * -1: CMD_STATUS_FAIL * 0: CMD_STATUS_OK */ static int cmd_wlan_sta_get(char *cmd) { wlan_sta_config_t config; cmd_memset(&config, 0, sizeof(config)); if (cmd_strcmp(cmd, "ssid") == 0) { config.field = WLAN_STA_FIELD_SSID; } else if (cmd_strcmp(cmd, "psk") == 0) { config.field = WLAN_STA_FIELD_PSK; } else if (cmd_strcmp(cmd, "wep_key0") == 0) { config.field = WLAN_STA_FIELD_WEP_KEY0; } else if (cmd_strcmp(cmd, "wep_key1") == 0) { config.field = WLAN_STA_FIELD_WEP_KEY1; } else if (cmd_strcmp(cmd, "wep_key2") == 0) { config.field = WLAN_STA_FIELD_WEP_KEY2; } else if (cmd_strcmp(cmd, "wep_key3") == 0) { config.field = WLAN_STA_FIELD_WEP_KEY3; } else if (cmd_strcmp(cmd, "wep_key_index") == 0) { config.field = WLAN_STA_FIELD_WEP_KEY_INDEX; } else if (cmd_strcmp(cmd, "key_mgmt") == 0) { config.field = WLAN_STA_FIELD_KEY_MGMT; } else if (cmd_strcmp(cmd, "pairwise") == 0) { config.field = WLAN_STA_FIELD_PAIRWISE_CIPHER; } else if (cmd_strcmp(cmd, "group") == 0) { config.field = WLAN_STA_FIELD_GROUP_CIPHER; } else if (cmd_strcmp(cmd, "proto") == 0) { config.field = WLAN_STA_FIELD_PROTO; } else if (cmd_strcmp(cmd, "auth_alg") == 0) { config.field = WLAN_STA_FIELD_AUTH_ALG; } else if (cmd_strcmp(cmd, "ptk_rekey") == 0) { config.field = WLAN_STA_FIELD_WPA_PTK_REKEY; } else if (cmd_strcmp(cmd, "scan_ssid") == 0) { config.field = WLAN_STA_FIELD_SCAN_SSID; } else { CMD_ERR("invalid arg '%s'\n", cmd); return -2; } if (wlan_sta_get_config(&config) != 0) { CMD_ERR("get config failed\n"); return -1; } if (config.field == WLAN_STA_FIELD_SSID) { CMD_LOG(1, "ssid: %.32s\n", config.u.ssid.ssid); } else if (config.field == WLAN_STA_FIELD_PSK) { CMD_LOG(1, "psk: %s\n", config.u.psk); } else if (config.field == WLAN_STA_FIELD_WEP_KEY0) { CMD_LOG(1, "wep_key0: %s\n", config.u.wep_key); } else if (config.field == WLAN_STA_FIELD_WEP_KEY1) { CMD_LOG(1, "wep_key1: %s\n", config.u.wep_key); } else if (config.field == WLAN_STA_FIELD_WEP_KEY2) { CMD_LOG(1, "wep_key2: %s\n", config.u.wep_key); } else if (config.field == WLAN_STA_FIELD_WEP_KEY3) { CMD_LOG(1, "wep_key3: %s\n", config.u.wep_key); } else if (config.field == WLAN_STA_FIELD_WEP_KEY_INDEX) { CMD_LOG(1, "wep_key_index: %d\n", config.u.wep_tx_keyidx); } else if (config.field == WLAN_STA_FIELD_KEY_MGMT) { CMD_LOG(1, "key_mgmt: %#06x\n", config.u.key_mgmt); } else if (config.field == WLAN_STA_FIELD_PAIRWISE_CIPHER) { CMD_LOG(1, "pairwise_cipher: %#06x\n", config.u.pairwise_cipher); } else if (config.field == WLAN_STA_FIELD_GROUP_CIPHER) { CMD_LOG(1, "group_cipher: %#06x\n", config.u.group_cipher); } else if (config.field == WLAN_STA_FIELD_PROTO) { CMD_LOG(1, "proto: %#06x\n", config.u.proto); } else if (config.field == WLAN_STA_FIELD_AUTH_ALG) { CMD_LOG(1, "auth_alg: %#06x\n", config.u.auth_alg); } else if (config.field == WLAN_STA_FIELD_WPA_PTK_REKEY) { CMD_LOG(1, "ptk_rekey: %d\n", config.u.wpa_ptk_rekey); } else if (config.field == WLAN_STA_FIELD_SCAN_SSID) { CMD_LOG(1, "scan_ssid: %d\n", config.u.scan_ssid); } return 0; } enum cmd_status cmd_wlan_sta_exec(char *cmd) { int ret; cmd_write_respond(CMD_STATUS_OK, "OK"); if (cmd_strncmp(cmd, "config ", 7) == 0) { char *argv[2]; if (cmd_parse_argv(cmd + 7, argv, cmd_nitems(argv)) == 0) { ret = -2; goto out; } ret = wlan_sta_set((uint8_t *)argv[0], cmd_strlen(argv[0]), (uint8_t *)argv[1]); } else if (cmd_strncmp(cmd, "set ", 4) == 0) { ret = cmd_wlan_sta_set(cmd + 4); } else if (cmd_strncmp(cmd, "get ", 4) == 0) { ret = cmd_wlan_sta_get(cmd + 4); } else if (cmd_strcmp(cmd, "enable") == 0) { ret = wlan_sta_enable(); } else if (cmd_strcmp(cmd, "disable") == 0) { ret = wlan_sta_disable(); } else if (cmd_strcmp(cmd, "ap_ssid_psk") == 0) { wlan_ssid_psk_t ap_ssid_psk; cmd_memset(&ap_ssid_psk, 0, sizeof(wlan_ssid_psk_t)); ret = wlan_sta_get_ap_ssid_psk(&ap_ssid_psk); if (ret == 0) { CMD_LOG(1, "connected ap ssid %.32s, pwd %s\n", ap_ssid_psk.ssid, ap_ssid_psk.passphrase); if (ap_ssid_psk.psk_valid) { int i; CMD_LOG(1, "psk: "); for (i = 0; i < WLAN_PSK_HEX_LEN; i++) CMD_LOG(1, "%02x", ap_ssid_psk.psk[i]); CMD_LOG(1, "\n"); } } } else if (cmd_strcmp(cmd, "scan once") == 0) { ret = wlan_sta_scan_once(); } else if (cmd_strcmp(cmd, "scan result_num") == 0) { int num; ret = wlan_sta_get_scan_result_num(&num); if (ret == 0) CMD_LOG(1, "scan result num: %d\n", num); } else if (cmd_strncmp(cmd, "scan result ", 12) == 0) { int size; if (cmd_wpas_parse_int(cmd + 12, 1, CMD_WLAN_MAX_BSS_CNT, &size) != 0) { ret = -2; goto out; } wlan_sta_scan_results_t results; results.ap = cmd_malloc(size * sizeof(wlan_sta_ap_t)); if (results.ap == NULL) { CMD_ERR("no mem\n"); ret = -1; goto out; } results.size = size; ret = wlan_sta_scan_result(&results); if (ret == 0) cmd_wlan_print_scan_results(&results); cmd_free(results.ap); } else if (cmd_strncmp(cmd, "scan interval ", 14) == 0) { int sec; if (cmd_wpas_parse_int(cmd + 14, 0, INT32_MAX, &sec) != 0) { ret = -2; goto out; } ret = wlan_sta_scan_interval(sec); } else if (cmd_strncmp(cmd, "bss max count ", 14) == 0) { int count; if (cmd_wpas_parse_int(cmd + 14, 1, CMD_WLAN_MAX_BSS_CNT, &count) != 0) { ret = -2; goto out; } ret = wlan_sta_bss_max_count((uint8_t)count); } else if (cmd_strncmp(cmd, "bss flush ", 10) == 0) { int age; if (cmd_wpas_parse_int(cmd + 10, 0, INT32_MAX, &age) != 0) { ret = -2; goto out; } ret = wlan_sta_bss_flush(age); } else if (cmd_strcmp(cmd, "connect") == 0) { ret = wlan_sta_connect(); } else if (cmd_strcmp(cmd, "disconnect") == 0) { ret = wlan_sta_disconnect(); } else if (cmd_strcmp(cmd, "state") == 0) { wlan_sta_states_t state; ret = wlan_sta_state(&state); if (ret == 0) CMD_LOG(1, "sta state: %d\n", state); } else if (cmd_strcmp(cmd, "ap") == 0) { wlan_sta_ap_t *ap = cmd_malloc(sizeof(wlan_sta_ap_t)); if (ap == NULL) { CMD_ERR("no mem\n"); ret = -1; goto out; } ret = wlan_sta_ap_info(ap); if (ret == 0) cmd_wlan_print_ap(ap); cmd_free(ap); } else if (cmd_strncmp(cmd, "genpsk ", 7) == 0) { uint8_t i; char *argv[2]; wlan_gen_psk_param_t param; if (cmd_parse_argv(cmd + 7, argv, cmd_nitems(argv)) != 2) { ret = -2; goto out; } param.ssid_len = cmd_strlen(argv[0]); cmd_memcpy(param.ssid, argv[0], param.ssid_len); cmd_strlcpy(param.passphrase, argv[1], sizeof(param.passphrase)); ret = wlan_sta_gen_psk(&param); if (ret == 0) { CMD_LOG(1, "psk: "); for (i = 0; i < sizeof(param.psk); ++i) CMD_LOG(1, "%02x", param.psk[i]); CMD_LOG(1, "\n"); } } else if (cmd_strcmp(cmd, "wps pbc") == 0) { ret = wlan_sta_wps_pbc(); } else if ((cmd_strlen(cmd) == 7) || (cmd_strcmp(cmd, "wps pin") == 0)) { wlan_sta_wps_pin_t wps; ret = wlan_sta_wps_pin_get(&wps); if (ret == 0) CMD_LOG(1, "WPS pin: %s\n", wps.pin); } else if (cmd_strncmp(cmd, "wps pin ", 8) == 0) { if (cmd_strlen(cmd + 8) != 8) { ret = -2; goto out; } wlan_sta_wps_pin_t wps; cmd_memcpy(wps.pin, cmd + 8, 8); wps.pin[8] = '\0'; ret = wlan_sta_wps_pin_set(&wps); } else if (cmd_strcmp(cmd, "stop") == 0) { ret = net_sys_stop(); } else if (cmd_strcmp(cmd, "start") == 0) { struct sysinfo *sysinfo = sysinfo_get(); if (sysinfo == NULL) { CMD_ERR("failed to get sysinfo %p\n", sysinfo); return -1; } ret = net_sys_start(sysinfo->wlan_mode); } else if (cmd_strncmp(cmd, "autoconn enable", 15) == 0) { ret = wlan_sta_set_autoconnect(1); } else if (cmd_strncmp(cmd, "autoconn disable", 16) == 0) { ret = wlan_sta_set_autoconnect(0); } else { CMD_ERR("unknown cmd '%s'\n", cmd); return CMD_STATUS_ACKED; } out: if (ret == -2) { CMD_ERR("cmd '%s' invalid arg\n", cmd); return CMD_STATUS_ACKED; } else if (ret == -1) { CMD_ERR("cmd '%s' exec failed\n", cmd); return CMD_STATUS_ACKED; } return CMD_STATUS_ACKED; } static void cmd_wlan_ap_print_sta_info(wlan_ap_stas_t *stas) { int i; CMD_LOG(1, "sta_num: %d\n", stas->num); for (i = 0; i < stas->num; i++) { CMD_LOG(1, "[%02d]Mac addr: %02x:%02x:%02x:%02x:%02x:%02x\n", i + 1, stas->sta[i].addr[0], stas->sta[i].addr[1], stas->sta[i].addr[2], stas->sta[i].addr[3], stas->sta[i].addr[4], stas->sta[i].addr[5]); } } /* @return * -2: CMD_STATUS_INVALID_ARG * -1: CMD_STATUS_FAIL * 0: CMD_STATUS_OK */ static int cmd_wlan_ap_set(char *cmd) { char *value; wlan_ap_config_t config; value = cmd_strchr(cmd, ' '); if (value == NULL) return -2; *value++ = '\0'; config.field = WLAN_AP_FIELD_NUM; if (cmd_strcmp(cmd, "ssid") == 0) { uint8_t ssid_len = cmd_strlen(value); if ((ssid_len >= 1) && (ssid_len <= 32)) { config.field = WLAN_STA_FIELD_SSID; cmd_memcpy(config.u.ssid.ssid, value, ssid_len); config.u.ssid.ssid_len = ssid_len; } } else if (cmd_strcmp(cmd, "psk") == 0) { config.field = WLAN_AP_FIELD_PSK; cmd_strlcpy((char *)config.u.psk, value, sizeof(config.u.psk)); } else if (cmd_strcmp(cmd, "key_mgmt") == 0) { int key_mgmt = cmd_wpas_parse_key_mgmt(value); if (key_mgmt > 0) { config.field = WLAN_AP_FIELD_KEY_MGMT; config.u.key_mgmt = key_mgmt; } } else if (cmd_strcmp(cmd, "wpa") == 0) { int wpa_cipher = cmd_wpas_parse_cipher(value); if (wpa_cipher > 0) { config.field = WLAN_AP_FIELD_WPA_PAIRWISE_CIPHER; config.u.wpa_cipher = wpa_cipher; } } else if (cmd_strcmp(cmd, "rsn") == 0) { int rsn_cipher = cmd_wpas_parse_cipher(value); if (rsn_cipher > 0) { config.field = WLAN_AP_FIELD_RSN_PAIRWISE_CIPHER; config.u.rsn_cipher = rsn_cipher; } } else if (cmd_strcmp(cmd, "proto") == 0) { int proto = cmd_wpas_parse_proto(value); if (proto >= 0) { config.field = WLAN_AP_FIELD_PROTO; config.u.proto = proto; } } else if (cmd_strcmp(cmd, "auth_alg") == 0) { int auth_alg = cmd_wpas_parse_auth_alg(value); if (auth_alg > 0) { config.field = WLAN_AP_FIELD_AUTH_ALG; config.u.auth_alg = auth_alg; } } else if (cmd_strcmp(cmd, "group_rekey") == 0) { int group_rekey; if (cmd_wpas_parse_int(value, 0, INT32_MAX, &group_rekey) == 0) { config.field = WLAN_AP_FIELD_GROUP_REKEY; config.u.group_rekey = group_rekey; } } else if (cmd_strcmp(cmd, "strict_rekey") == 0) { int strict_rekey; if (cmd_wpas_parse_int(value, 0, 1, &strict_rekey) == 0) { config.field = WLAN_AP_FIELD_STRICT_REKEY; config.u.strict_rekey = strict_rekey; } } else if (cmd_strcmp(cmd, "gmk_rekey") == 0) { int gmk_rekey; if (cmd_wpas_parse_int(value, 0, INT32_MAX, &gmk_rekey) == 0) { config.field = WLAN_AP_FIELD_GMK_REKEY; config.u.gmk_rekey = gmk_rekey; } } else if (cmd_strcmp(cmd, "ptk_rekey") == 0) { int ptk_rekey; if (cmd_wpas_parse_int(value, 0, INT32_MAX, &ptk_rekey) == 0) { config.field = WLAN_AP_FIELD_PTK_REKEY; config.u.ptk_rekey = ptk_rekey; } } else if (cmd_strcmp(cmd, "hw_mode") == 0) { if ((value[0] == 'b') && (value[1] == '\0')) { config.field = WLAN_AP_FIELD_HW_MODE; config.u.hw_mode = WLAN_AP_HW_MODE_IEEE80211B; } else if ((value[0] == 'g') && (value[1] == '\0')) { config.field = WLAN_AP_FIELD_HW_MODE; config.u.hw_mode = WLAN_AP_HW_MODE_IEEE80211G; } } else if (cmd_strcmp(cmd, "80211n") == 0) { int ieee80211n; if (cmd_wpas_parse_int(value, 0, 1, &ieee80211n) == 0) { config.field = WLAN_AP_FIELD_IEEE80211N; config.u.ieee80211n = ieee80211n; } } else if (cmd_strcmp(cmd, "channel") == 0) { int channel; if (cmd_wpas_parse_int(value, 1, 14, &channel) == 0) { config.field = WLAN_AP_FIELD_CHANNEL; config.u.channel = channel; } } else if (cmd_strcmp(cmd, "beacon_int") == 0) { int beacon_int; if (cmd_wpas_parse_int(value, 15, 65535, &beacon_int) == 0) { config.field = WLAN_AP_FIELD_BEACON_INT; config.u.beacon_int = beacon_int; } } else if (cmd_strcmp(cmd, "dtim") == 0) { int dtim; if (cmd_wpas_parse_int(value, 1, 255, &dtim) == 0) { config.field = WLAN_AP_FIELD_DTIM; config.u.dtim = dtim; } } else if (cmd_strcmp(cmd, "max_num_sta") == 0) { int max_num_sta; if (cmd_wpas_parse_int(value, 0, INT32_MAX, &max_num_sta) == 0) { config.field = WLAN_AP_FIELD_MAX_NUM_STA; config.u.max_num_sta = max_num_sta; } } if (config.field < WLAN_AP_FIELD_NUM) return wlan_ap_set_config(&config); CMD_ERR("invalid arg '%s %s'\n", cmd, value); return -2; } /* @return * -2: CMD_STATUS_INVALID_ARG * -1: CMD_STATUS_FAIL * 0: CMD_STATUS_OK */ static int cmd_wlan_ap_get(char *cmd) { wlan_ap_config_t config; cmd_memset(&config, 0, sizeof(config)); if (cmd_strcmp(cmd, "ssid") == 0) { config.field = WLAN_AP_FIELD_SSID; } else if (cmd_strcmp(cmd, "psk") == 0) { config.field = WLAN_AP_FIELD_PSK; } else if (cmd_strcmp(cmd, "key_mgmt") == 0) { config.field = WLAN_AP_FIELD_KEY_MGMT; } else if (cmd_strcmp(cmd, "wpa") == 0) { config.field = WLAN_AP_FIELD_WPA_PAIRWISE_CIPHER; } else if (cmd_strcmp(cmd, "rsn") == 0) { config.field = WLAN_AP_FIELD_RSN_PAIRWISE_CIPHER; } else if (cmd_strcmp(cmd, "proto") == 0) { config.field = WLAN_AP_FIELD_PROTO; } else if (cmd_strcmp(cmd, "auth_alg") == 0) { config.field = WLAN_AP_FIELD_AUTH_ALG; } else if (cmd_strcmp(cmd, "group_rekey") == 0) { config.field = WLAN_AP_FIELD_GROUP_REKEY; } else if (cmd_strcmp(cmd, "strict_rekey") == 0) { config.field = WLAN_AP_FIELD_STRICT_REKEY; } else if (cmd_strcmp(cmd, "gmk_rekey") == 0) { config.field = WLAN_AP_FIELD_GMK_REKEY; } else if (cmd_strcmp(cmd, "ptk_rekey") == 0) { config.field = WLAN_AP_FIELD_PTK_REKEY; } else if (cmd_strcmp(cmd, "hw_mode") == 0) { config.field = WLAN_AP_FIELD_HW_MODE; } else if (cmd_strcmp(cmd, "80211n") == 0) { config.field = WLAN_AP_FIELD_IEEE80211N; } else if (cmd_strcmp(cmd, "channel") == 0) { config.field = WLAN_AP_FIELD_CHANNEL; } else if (cmd_strcmp(cmd, "beacon_int") == 0) { config.field = WLAN_AP_FIELD_BEACON_INT; } else if (cmd_strcmp(cmd, "dtim") == 0) { config.field = WLAN_AP_FIELD_DTIM; } else if (cmd_strcmp(cmd, "max_num_sta") == 0) { config.field = WLAN_AP_FIELD_MAX_NUM_STA; } else { CMD_ERR("invalid arg '%s'\n", cmd); return -2; } if (wlan_ap_get_config(&config) != 0) { CMD_ERR("get config failed\n"); return -1; } if (config.field == WLAN_AP_FIELD_SSID) { CMD_LOG(1, "ssid: %.32s\n", config.u.ssid.ssid); } else if (config.field == WLAN_AP_FIELD_PSK) { CMD_LOG(1, "psk: %s\n", config.u.psk); } else if (config.field == WLAN_AP_FIELD_KEY_MGMT) { CMD_LOG(1, "key_mgmt: %#06x\n", config.u.key_mgmt); } else if (config.field == WLAN_AP_FIELD_WPA_PAIRWISE_CIPHER) { CMD_LOG(1, "wpa_cipher: %#06x\n", config.u.wpa_cipher); } else if (config.field == WLAN_AP_FIELD_RSN_PAIRWISE_CIPHER) { CMD_LOG(1, "rsn_cipher: %#06x\n", config.u.rsn_cipher); } else if (config.field == WLAN_AP_FIELD_PROTO) { CMD_LOG(1, "proto: %#06x\n", config.u.proto); } else if (config.field == WLAN_AP_FIELD_AUTH_ALG) { CMD_LOG(1, "auth_alg: %#06x\n", config.u.auth_alg); } else if (config.field == WLAN_AP_FIELD_GROUP_REKEY) { CMD_LOG(1, "group_rekey: %d\n", config.u.group_rekey); } else if (config.field == WLAN_AP_FIELD_STRICT_REKEY) { CMD_LOG(1, "strict_rekey: %d\n", config.u.strict_rekey); } else if (config.field == WLAN_AP_FIELD_GMK_REKEY) { CMD_LOG(1, "gmk_rekey: %d\n", config.u.gmk_rekey); } else if (config.field == WLAN_AP_FIELD_PTK_REKEY) { CMD_LOG(1, "ptk_rekey: %d\n", config.u.ptk_rekey); } else if (config.field == WLAN_AP_FIELD_HW_MODE) { if (config.u.hw_mode == WLAN_AP_HW_MODE_IEEE80211B) { CMD_LOG(1, "hw_mode: b\n"); } else if (config.u.hw_mode == WLAN_AP_HW_MODE_IEEE80211G) { CMD_LOG(1, "hw_mode: g\n"); } else if (config.u.hw_mode == WLAN_AP_HW_MODE_IEEE80211A) { CMD_LOG(1, "hw_mode: a\n"); } else if (config.u.hw_mode == WLAN_AP_HW_MODE_IEEE80211AD) { CMD_LOG(1, "hw_mode: ad\n"); } else { CMD_ERR("invalid hw_mode %d\n", config.u.hw_mode); } } else if (config.field == WLAN_AP_FIELD_IEEE80211N) { CMD_LOG(1, "ieee80211n: %d\n", config.u.ieee80211n); } else if (config.field == WLAN_AP_FIELD_CHANNEL) { CMD_LOG(1, "channel: %d\n", config.u.channel); } else if (config.field == WLAN_AP_FIELD_BEACON_INT) { CMD_LOG(1, "beacon_int: %d\n", config.u.beacon_int); } else if (config.field == WLAN_AP_FIELD_DTIM) { CMD_LOG(1, "dtim: %d\n", config.u.dtim); } else if (config.field == WLAN_AP_FIELD_MAX_NUM_STA) { CMD_LOG(1, "max_num_sta: %d\n", config.u.max_num_sta); } return 0; } enum cmd_status cmd_wlan_ap_exec(char *cmd) { int ret; cmd_write_respond(CMD_STATUS_OK, "OK"); if (cmd_strncmp(cmd, "config ", 7) == 0) { char *argv[2]; if (cmd_parse_argv(cmd + 7, argv, cmd_nitems(argv)) == 0) { ret = -2; goto out; } ret = wlan_ap_set((uint8_t *)argv[0], cmd_strlen(argv[0]), (uint8_t *)argv[1]); } else if (cmd_strncmp(cmd, "set ", 4) == 0) { ret = cmd_wlan_ap_set(cmd + 4); } else if (cmd_strncmp(cmd, "get ", 4) == 0) { ret = cmd_wlan_ap_get(cmd + 4); } else if (cmd_strcmp(cmd, "enable") == 0) { ret = wlan_ap_enable(); } else if (cmd_strcmp(cmd, "reload") == 0) { ret = wlan_ap_reload(); } else if (cmd_strcmp(cmd, "disable") == 0) { ret = wlan_ap_disable(); } else if (cmd_strcmp(cmd, "sta num") == 0) { int num; ret = wlan_ap_sta_num(&num); if (ret == 0) CMD_LOG(1, "sta num: %d\n", num); } else if (cmd_strncmp(cmd, "sta info ", 9) == 0) { int size; if (cmd_wpas_parse_int(cmd + 9, 1, 30, &size) != 0) { ret = -2; goto out; } wlan_ap_stas_t stas; stas.sta = (wlan_ap_sta_t *)cmd_malloc(size * sizeof(wlan_ap_sta_t)); if (stas.sta == NULL) { CMD_ERR("no mem\n"); ret = -1; goto out; } stas.size = size; ret = wlan_ap_sta_info(&stas); if (ret == 0) cmd_wlan_ap_print_sta_info(&stas); cmd_free(stas.sta); } else if (cmd_strcmp(cmd, "scan once") == 0) { ret = wlan_ap_scan_once(); } else if (cmd_strncmp(cmd, "scan result ", 12) == 0) { int size; if (cmd_wpas_parse_int(cmd + 12, 1, CMD_WLAN_MAX_BSS_CNT, &size) != 0) { ret = -2; goto out; } wlan_sta_scan_results_t results; results.ap = cmd_malloc(size * sizeof(wlan_sta_ap_t)); if (results.ap == NULL) { CMD_ERR("no mem\n"); ret = -1; goto out; } results.size = size; ret = wlan_ap_scan_result(&results); if (ret == 0) cmd_wlan_print_scan_results(&results); cmd_free(results.ap); } else if (cmd_strcmp(cmd, "scan result_num") == 0) { int num; ret = wlan_ap_get_scan_result_num(&num); if (ret == 0) CMD_LOG(1, "scan result num: %d\n", num); } else if (cmd_strncmp(cmd, "bss max count ", 14) == 0) { int count; if (cmd_wpas_parse_int(cmd + 14, 1, CMD_WLAN_MAX_BSS_CNT, &count) != 0) { ret = -2; goto out; } ret = wlan_ap_scan_bss_max_count((uint8_t)count); if (ret == 0) CMD_LOG(1, "ap scan bss max count: %d\n", count); } else { CMD_ERR("unknown cmd '%s'\n", cmd); return CMD_STATUS_ACKED; } out: if (ret == -2) { CMD_ERR("cmd '%s' invalid arg\n", cmd); return CMD_STATUS_ACKED; } else if (ret == -1) { CMD_ERR("cmd '%s' exec failed\n", cmd); return CMD_STATUS_ACKED; } return CMD_STATUS_ACKED; } #endif /* PRJCONF_NET_EN */
the_stack_data/148579382.c
/* * A média geométrica, Gn, de um conjunto de valores é dada por: * * Gn = Raiz(n, P[i=0,n-1]: Vi) * * Escreva uma função para calcular e retornar a média geométrica de um conjunto * de valores. Essa função deve obedecer ao protótipo a seguir. Escreva um programa * para testar sua função. * * float geometrica (int n, float *v); */ #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #define N 10 float geometrica(int n, float *v) { float p = 1.0f; for (int i = 0; i < n; i++) { p *= v[i]; } if (p < 0) { printf("Erro: raiz com radicando negativo: %f\n", p); return 0; } return powf(p, 1. / n); } int main(void) { float gn, v[N]; srand(time(NULL)); for (int i = 0; i < N; i++) { v[i] = rand() % 100; printf("%.2f ", v[i]); } puts(""); gn = geometrica(N, v); printf("Gn = %2.f\n", gn); return 0; }
the_stack_data/127755.c
//==-- AArch64InstPrinter.cpp - Convert AArch64 MCInst to assembly syntax --==// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This class prints an AArch64 MCInst to a .s file. // //===----------------------------------------------------------------------===// /* Capstone Disassembly Engine */ /* By Nguyen Anh Quynh <[email protected]>, 2013-2014 */ #ifdef CAPSTONE_HAS_ARM64 #include "../../myinttypes.h" #include <stdio.h> #include <stdlib.h> #include "AArch64InstPrinter.h" #include "AArch64BaseInfo.h" #include "../../utils.h" #include "../../MCInst.h" #include "../../SStream.h" #include "../../MCRegisterInfo.h" #include "../../MathExtras.h" #include "AArch64Mapping.h" #include "AArch64AddressingModes.h" #define GET_REGINFO_ENUM #include "AArch64GenRegisterInfo.inc" #define GET_INSTRINFO_ENUM #include "AArch64GenInstrInfo.inc" static char *getRegisterName(unsigned RegNo, int AltIdx); static void printOperand(MCInst *MI, unsigned OpNo, SStream *O); static bool printSysAlias(MCInst *MI, SStream *O); static char *printAliasInstr(MCInst *MI, SStream *OS, void *info); static void printInstruction(MCInst *MI, SStream *O, MCRegisterInfo *MRI); static void printShifter(MCInst *MI, unsigned OpNum, SStream *O); static void set_mem_access(MCInst *MI, bool status) { if (MI->csh->detail != CS_OPT_ON) return; MI->csh->doing_mem = status; if (status) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_MEM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].mem.base = ARM64_REG_INVALID; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].mem.index = ARM64_REG_INVALID; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].mem.disp = 0; } else { // done, create the next operand slot MI->flat_insn->detail->arm64.op_count++; } } void AArch64_printInst(MCInst *MI, SStream *O, void *Info) { // Check for special encodings and print the canonical alias instead. unsigned Opcode = MCInst_getOpcode(MI); int LSB; int Width; char *mnem; if (Opcode == AArch64_SYSxt && printSysAlias(MI, O)) return; // SBFM/UBFM should print to a nicer aliased form if possible. if (Opcode == AArch64_SBFMXri || Opcode == AArch64_SBFMWri || Opcode == AArch64_UBFMXri || Opcode == AArch64_UBFMWri) { MCOperand *Op0 = MCInst_getOperand(MI, 0); MCOperand *Op1 = MCInst_getOperand(MI, 1); MCOperand *Op2 = MCInst_getOperand(MI, 2); MCOperand *Op3 = MCInst_getOperand(MI, 3); bool IsSigned = (Opcode == AArch64_SBFMXri || Opcode == AArch64_SBFMWri); bool Is64Bit = (Opcode == AArch64_SBFMXri || Opcode == AArch64_UBFMXri); if (MCOperand_isImm(Op2) && MCOperand_getImm(Op2) == 0 && MCOperand_isImm(Op3)) { char *AsmMnemonic = NULL; switch (MCOperand_getImm(Op3)) { default: break; case 7: if (IsSigned) AsmMnemonic = "sxtb"; else if (!Is64Bit) AsmMnemonic = "uxtb"; break; case 15: if (IsSigned) AsmMnemonic = "sxth"; else if (!Is64Bit) AsmMnemonic = "uxth"; break; case 31: // *xtw is only valid for signed 64-bit operations. if (Is64Bit && IsSigned) AsmMnemonic = "sxtw"; break; } if (AsmMnemonic) { SStream_concat(O, "%s\t%s, %s", AsmMnemonic, getRegisterName(MCOperand_getReg(Op0), AArch64_NoRegAltName), getRegisterName(getWRegFromXReg(MCOperand_getReg(Op1)), AArch64_NoRegAltName)); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op0); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = getWRegFromXReg(MCOperand_getReg(Op1)); MI->flat_insn->detail->arm64.op_count++; } MCInst_setOpcodePub(MI, AArch64_map_insn(AsmMnemonic)); return; } } // All immediate shifts are aliases, implemented using the Bitfield // instruction. In all cases the immediate shift amount shift must be in // the range 0 to (reg.size -1). if (MCOperand_isImm(Op2) && MCOperand_isImm(Op3)) { char *AsmMnemonic = NULL; int shift = 0; int immr = (int)MCOperand_getImm(Op2); int imms = (int)MCOperand_getImm(Op3); if (Opcode == AArch64_UBFMWri && imms != 0x1F && ((imms + 1) == immr)) { AsmMnemonic = "lsl"; shift = 31 - imms; } else if (Opcode == AArch64_UBFMXri && imms != 0x3f && ((imms + 1 == immr))) { AsmMnemonic = "lsl"; shift = 63 - imms; } else if (Opcode == AArch64_UBFMWri && imms == 0x1f) { AsmMnemonic = "lsr"; shift = immr; } else if (Opcode == AArch64_UBFMXri && imms == 0x3f) { AsmMnemonic = "lsr"; shift = immr; } else if (Opcode == AArch64_SBFMWri && imms == 0x1f) { AsmMnemonic = "asr"; shift = immr; } else if (Opcode == AArch64_SBFMXri && imms == 0x3f) { AsmMnemonic = "asr"; shift = immr; } if (AsmMnemonic) { SStream_concat(O, "%s\t%s, %s, ", AsmMnemonic, getRegisterName(MCOperand_getReg(Op0), AArch64_NoRegAltName), getRegisterName(MCOperand_getReg(Op1), AArch64_NoRegAltName)); printInt32Bang(O, shift); MCInst_setOpcodePub(MI, AArch64_map_insn(AsmMnemonic)); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op0); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op1); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = shift; MI->flat_insn->detail->arm64.op_count++; } return; } } // SBFIZ/UBFIZ aliases if (MCOperand_getImm(Op2) > MCOperand_getImm(Op3)) { SStream_concat(O, "%s\t%s, %s, ", (IsSigned ? "sbfiz" : "ubfiz"), getRegisterName(MCOperand_getReg(Op0), AArch64_NoRegAltName), getRegisterName(MCOperand_getReg(Op1), AArch64_NoRegAltName)); printInt32Bang(O, (int)((Is64Bit ? 64 : 32) - MCOperand_getImm(Op2))); SStream_concat0(O, ", "); printInt32Bang(O, (int)MCOperand_getImm(Op3) + 1); MCInst_setOpcodePub(MI, AArch64_map_insn(IsSigned ? "sbfiz" : "ubfiz")); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op0); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op1); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (Is64Bit ? 64 : 32) - (int)MCOperand_getImm(Op2); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (int)MCOperand_getImm(Op3) + 1; MI->flat_insn->detail->arm64.op_count++; } return; } // Otherwise SBFX/UBFX is the preferred form SStream_concat(O, "%s\t%s, %s, ", (IsSigned ? "sbfx" : "ubfx"), getRegisterName(MCOperand_getReg(Op0), AArch64_NoRegAltName), getRegisterName(MCOperand_getReg(Op1), AArch64_NoRegAltName)); printInt32Bang(O, (int)MCOperand_getImm(Op2)); SStream_concat0(O, ", "); printInt32Bang(O, (int)MCOperand_getImm(Op3) - (int)MCOperand_getImm(Op2) + 1); MCInst_setOpcodePub(MI, AArch64_map_insn(IsSigned ? "sbfx" : "ubfx")); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op0); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op1); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (int)MCOperand_getImm(Op2); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (int)MCOperand_getImm(Op3) - (int)MCOperand_getImm(Op2) + 1; MI->flat_insn->detail->arm64.op_count++; } return; } if (Opcode == AArch64_BFMXri || Opcode == AArch64_BFMWri) { MCOperand *Op0 = MCInst_getOperand(MI, 0); // Op1 == Op0 MCOperand *Op2 = MCInst_getOperand(MI, 2); int ImmR = (int)MCOperand_getImm(MCInst_getOperand(MI, 3)); int ImmS = (int)MCOperand_getImm(MCInst_getOperand(MI, 4)); // BFI alias if (ImmS < ImmR) { int BitWidth = Opcode == AArch64_BFMXri ? 64 : 32; LSB = (BitWidth - ImmR) % BitWidth; Width = ImmS + 1; SStream_concat(O, "bfi\t%s, %s, ", getRegisterName(MCOperand_getReg(Op0), AArch64_NoRegAltName), getRegisterName(MCOperand_getReg(Op2), AArch64_NoRegAltName)); printInt32Bang(O, LSB); SStream_concat0(O, ", "); printInt32Bang(O, Width); MCInst_setOpcodePub(MI, AArch64_map_insn("bfi")); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op0); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op2); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = LSB; MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = Width; MI->flat_insn->detail->arm64.op_count++; } return; } LSB = ImmR; Width = ImmS - ImmR + 1; // Otherwise BFXIL the preferred form SStream_concat(O, "bfxil\t%s, %s, ", getRegisterName(MCOperand_getReg(Op0), AArch64_NoRegAltName), getRegisterName(MCOperand_getReg(Op2), AArch64_NoRegAltName)); printInt32Bang(O, LSB); SStream_concat0(O, ", "); printInt32Bang(O, Width); MCInst_setOpcodePub(MI, AArch64_map_insn("bfxil")); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op0); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(Op2); MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = LSB; MI->flat_insn->detail->arm64.op_count++; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = Width; MI->flat_insn->detail->arm64.op_count++; } return; } mnem = printAliasInstr(MI, O, Info); if (mnem) { MCInst_setOpcodePub(MI, AArch64_map_insn(mnem)); cs_mem_free(mnem); } else { printInstruction(MI, O, Info); } } static bool printSysAlias(MCInst *MI, SStream *O) { // unsigned Opcode = MCInst_getOpcode(MI); //assert(Opcode == AArch64_SYSxt && "Invalid opcode for SYS alias!"); char *Asm = NULL; MCOperand *Op1 = MCInst_getOperand(MI, 0); MCOperand *Cn = MCInst_getOperand(MI, 1); MCOperand *Cm = MCInst_getOperand(MI, 2); MCOperand *Op2 = MCInst_getOperand(MI, 3); unsigned Op1Val = (unsigned)MCOperand_getImm(Op1); unsigned CnVal = (unsigned)MCOperand_getImm(Cn); unsigned CmVal = (unsigned)MCOperand_getImm(Cm); unsigned Op2Val = (unsigned)MCOperand_getImm(Op2); unsigned insn_id = ARM64_INS_INVALID; unsigned op_ic = 0, op_dc = 0, op_at = 0, op_tlbi = 0; if (CnVal == 7) { switch (CmVal) { default: break; // IC aliases case 1: if (Op1Val == 0 && Op2Val == 0) { Asm = "ic\tialluis"; insn_id = ARM64_INS_IC; op_ic = ARM64_IC_IALLUIS; } break; case 5: if (Op1Val == 0 && Op2Val == 0) { Asm = "ic\tiallu"; insn_id = ARM64_INS_IC; op_ic = ARM64_IC_IALLU; } else if (Op1Val == 3 && Op2Val == 1) { Asm = "ic\tivau"; insn_id = ARM64_INS_IC; op_ic = ARM64_IC_IVAU; } break; // DC aliases case 4: if (Op1Val == 3 && Op2Val == 1) { Asm = "dc\tzva"; insn_id = ARM64_INS_DC; op_dc = ARM64_DC_ZVA; } break; case 6: if (Op1Val == 0 && Op2Val == 1) { Asm = "dc\tivac"; insn_id = ARM64_INS_DC; op_dc = ARM64_DC_IVAC; } if (Op1Val == 0 && Op2Val == 2) { Asm = "dc\tisw"; insn_id = ARM64_INS_DC; op_dc = ARM64_DC_ISW; } break; case 10: if (Op1Val == 3 && Op2Val == 1) { Asm = "dc\tcvac"; insn_id = ARM64_INS_DC; op_dc = ARM64_DC_CVAC; } else if (Op1Val == 0 && Op2Val == 2) { Asm = "dc\tcsw"; insn_id = ARM64_INS_DC; op_dc = ARM64_DC_CSW; } break; case 11: if (Op1Val == 3 && Op2Val == 1) { Asm = "dc\tcvau"; insn_id = ARM64_INS_DC; op_dc = ARM64_DC_CVAU; } break; case 14: if (Op1Val == 3 && Op2Val == 1) { Asm = "dc\tcivac"; insn_id = ARM64_INS_DC; op_dc = ARM64_DC_CIVAC; } else if (Op1Val == 0 && Op2Val == 2) { Asm = "dc\tcisw"; insn_id = ARM64_INS_DC; op_dc = ARM64_DC_CISW; } break; // AT aliases case 8: switch (Op1Val) { default: break; case 0: switch (Op2Val) { default: break; case 0: Asm = "at\ts1e1r"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E1R; break; case 1: Asm = "at\ts1e1w"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E1W; break; case 2: Asm = "at\ts1e0r"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E0R; break; case 3: Asm = "at\ts1e0w"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E0W; break; } break; case 4: switch (Op2Val) { default: break; case 0: Asm = "at\ts1e2r"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E2R; break; case 1: Asm = "at\ts1e2w"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E2W; break; case 4: Asm = "at\ts12e1r"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E1R; break; case 5: Asm = "at\ts12e1w"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E1W; break; case 6: Asm = "at\ts12e0r"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E0R; break; case 7: Asm = "at\ts12e0w"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E0W; break; } break; case 6: switch (Op2Val) { default: break; case 0: Asm = "at\ts1e3r"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E3R; break; case 1: Asm = "at\ts1e3w"; insn_id = ARM64_INS_AT; op_at = ARM64_AT_S1E3W; break; } break; } break; } } else if (CnVal == 8) { // TLBI aliases switch (CmVal) { default: break; case 3: switch (Op1Val) { default: break; case 0: switch (Op2Val) { default: break; case 0: Asm = "tlbi\tvmalle1is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VMALLE1IS; break; case 1: Asm = "tlbi\tvae1is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VAE1IS; break; case 2: Asm = "tlbi\taside1is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_ASIDE1IS; break; case 3: Asm = "tlbi\tvaae1is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VAAE1IS; break; case 5: Asm = "tlbi\tvale1is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VALE1IS; break; case 7: Asm = "tlbi\tvaale1is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VAALE1IS; break; } break; case 4: switch (Op2Val) { default: break; case 0: Asm = "tlbi\talle2is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_ALLE2IS; break; case 1: Asm = "tlbi\tvae2is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VAE2IS; break; case 4: Asm = "tlbi\talle1is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_ALLE1IS; break; case 5: Asm = "tlbi\tvale2is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VALE2IS; break; case 6: Asm = "tlbi\tvmalls12e1is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VMALLS12E1IS; break; } break; case 6: switch (Op2Val) { default: break; case 0: Asm = "tlbi\talle3is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_ALLE3IS; break; case 1: Asm = "tlbi\tvae3is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VAE3IS; break; case 5: Asm = "tlbi\tvale3is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VALE3IS; break; } break; } break; case 0: switch (Op1Val) { default: break; case 4: switch (Op2Val) { default: break; case 1: Asm = "tlbi\tipas2e1is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_IPAS2E1IS; break; case 5: Asm = "tlbi\tipas2le1is"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_IPAS2LE1IS; break; } break; } break; case 4: switch (Op1Val) { default: break; case 4: switch (Op2Val) { default: break; case 1: Asm = "tlbi\tipas2e1"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_IPAS2E1; break; case 5: Asm = "tlbi\tipas2le1"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_IPAS2LE1; break; } break; } break; case 7: switch (Op1Val) { default: break; case 0: switch (Op2Val) { default: break; case 0: Asm = "tlbi\tvmalle1"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VMALLE1; break; case 1: Asm = "tlbi\tvae1"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VAE1; break; case 2: Asm = "tlbi\taside1"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_ASIDE1; break; case 3: Asm = "tlbi\tvaae1"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VAAE1; break; case 5: Asm = "tlbi\tvale1"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VALE1; break; case 7: Asm = "tlbi\tvaale1"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VAALE1; break; } break; case 4: switch (Op2Val) { default: break; case 0: Asm = "tlbi\talle2"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_ALLE2; break; case 1: Asm = "tlbi\tvae2"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VAE2; break; case 4: Asm = "tlbi\talle1"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_ALLE1; break; case 5: Asm = "tlbi\tvale2"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VALE2; break; case 6: Asm = "tlbi\tvmalls12e1"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VMALLS12E1; break; } break; case 6: switch (Op2Val) { default: break; case 0: Asm = "tlbi\talle3"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_ALLE3; break; case 1: Asm = "tlbi\tvae3"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VAE3; break; case 5: Asm = "tlbi\tvale3"; insn_id = ARM64_INS_TLBI; op_tlbi = ARM64_TLBI_VALE3; break; } break; } break; } } if (Asm) { MCInst_setOpcodePub(MI, insn_id); SStream_concat0(O, Asm); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_SYS; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].sys = op_ic + op_dc + op_at + op_tlbi; MI->flat_insn->detail->arm64.op_count++; } if (!strstr(Asm, "all")) { unsigned Reg = MCOperand_getReg(MCInst_getOperand(MI, 4)); SStream_concat(O, ", %s", getRegisterName(Reg, AArch64_NoRegAltName)); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = Reg; MI->flat_insn->detail->arm64.op_count++; } } } return Asm != NULL; } static void printOperand(MCInst *MI, unsigned OpNo, SStream *O) { MCOperand *Op = MCInst_getOperand(MI, OpNo); if (MCOperand_isReg(Op)) { unsigned Reg = MCOperand_getReg(Op); SStream_concat0(O, getRegisterName(Reg, AArch64_NoRegAltName)); if (MI->csh->detail) { if (MI->csh->doing_mem) { if (MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].mem.base == ARM64_REG_INVALID) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].mem.base = Reg; } else if (MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].mem.index == ARM64_REG_INVALID) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].mem.index = Reg; } } else { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = Reg; MI->flat_insn->detail->arm64.op_count++; } } } else if (MCOperand_isImm(Op)) { int64_t imm = MCOperand_getImm(Op); if (MI->Opcode == AArch64_ADR) { imm += MI->address; printUInt64Bang(O, imm); } else printUInt64Bang(O, imm); if (MI->csh->detail) { if (MI->csh->doing_mem) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].mem.disp = (int32_t)imm; } else { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = imm; MI->flat_insn->detail->arm64.op_count++; } } } } static void printHexImm(MCInst *MI, unsigned OpNo, SStream *O) { MCOperand *Op = MCInst_getOperand(MI, OpNo); SStream_concat(O, "#%#llx", MCOperand_getImm(Op)); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (int)MCOperand_getImm(Op); MI->flat_insn->detail->arm64.op_count++; } } static void printPostIncOperand(MCInst *MI, unsigned OpNo, unsigned Imm, SStream *O) { MCOperand *Op = MCInst_getOperand(MI, OpNo); if (MCOperand_isReg(Op)) { unsigned Reg = MCOperand_getReg(Op); if (Reg == AArch64_XZR) { printInt32Bang(O, Imm); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = Imm; MI->flat_insn->detail->arm64.op_count++; } } else { SStream_concat0(O, getRegisterName(Reg, AArch64_NoRegAltName)); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = Reg; MI->flat_insn->detail->arm64.op_count++; } } } //llvm_unreachable("unknown operand kind in printPostIncOperand64"); } static void printPostIncOperand2(MCInst *MI, unsigned OpNo, SStream *O, int Amount) { printPostIncOperand(MI, OpNo, Amount, O); } static void printVRegOperand(MCInst *MI, unsigned OpNo, SStream *O) { MCOperand *Op = MCInst_getOperand(MI, OpNo); //assert(Op.isReg() && "Non-register vreg operand!"); unsigned Reg = MCOperand_getReg(Op); SStream_concat0(O, getRegisterName(Reg, AArch64_vreg)); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = AArch64_map_vregister(Reg); MI->flat_insn->detail->arm64.op_count++; } } static void printSysCROperand(MCInst *MI, unsigned OpNo, SStream *O) { MCOperand *Op = MCInst_getOperand(MI, OpNo); //assert(Op.isImm() && "System instruction C[nm] operands must be immediates!"); SStream_concat(O, "c%u", MCOperand_getImm(Op)); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_CIMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (int)MCOperand_getImm(Op); MI->flat_insn->detail->arm64.op_count++; } } static void printAddSubImm(MCInst *MI, unsigned OpNum, SStream *O) { MCOperand *MO = MCInst_getOperand(MI, OpNum); if (MCOperand_isImm(MO)) { unsigned Val = (MCOperand_getImm(MO) & 0xfff); //assert(Val == MO.getImm() && "Add/sub immediate out of range!"); unsigned Shift = AArch64_AM_getShiftValue((int)MCOperand_getImm(MCInst_getOperand(MI, OpNum + 1))); printInt32Bang(O, Val); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = Val; MI->flat_insn->detail->arm64.op_count++; } if (Shift != 0) printShifter(MI, OpNum + 1, O); } } static void printLogicalImm32(MCInst *MI, unsigned OpNum, SStream *O) { int64_t Val = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); Val = AArch64_AM_decodeLogicalImmediate(Val, 32); printUInt32Bang(O, (int)Val); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (int)Val; MI->flat_insn->detail->arm64.op_count++; } } static void printLogicalImm64(MCInst *MI, unsigned OpNum, SStream *O) { int64_t Val = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); Val = AArch64_AM_decodeLogicalImmediate(Val, 64); switch(MI->flat_insn->id) { default: printInt64Bang(O, Val); break; case ARM64_INS_ORR: case ARM64_INS_AND: case ARM64_INS_EOR: case ARM64_INS_TST: // do not print number in negative form if (Val >= 0 && Val <= HEX_THRESHOLD) SStream_concat(O, "#%u", (int)Val); else SStream_concat(O, "#0x%"PRIx64, Val); break; } if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (int)Val; MI->flat_insn->detail->arm64.op_count++; } } static void printShifter(MCInst *MI, unsigned OpNum, SStream *O) { unsigned Val = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); // LSL #0 should not be printed. if (AArch64_AM_getShiftType(Val) == AArch64_AM_LSL && AArch64_AM_getShiftValue(Val) == 0) return; SStream_concat(O, ", %s ", AArch64_AM_getShiftExtendName(AArch64_AM_getShiftType(Val))); printInt32BangDec(O, AArch64_AM_getShiftValue(Val)); if (MI->csh->detail) { arm64_shifter shifter = ARM64_SFT_INVALID; switch(AArch64_AM_getShiftType(Val)) { default: // never reach case AArch64_AM_LSL: shifter = ARM64_SFT_LSL; break; case AArch64_AM_LSR: shifter = ARM64_SFT_LSR; break; case AArch64_AM_ASR: shifter = ARM64_SFT_ASR; break; case AArch64_AM_ROR: shifter = ARM64_SFT_ROR; break; case AArch64_AM_MSL: shifter = ARM64_SFT_MSL; break; } MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count - 1].shift.type = shifter; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count - 1].shift.value = AArch64_AM_getShiftValue(Val); } } static void printShiftedRegister(MCInst *MI, unsigned OpNum, SStream *O) { SStream_concat0(O, getRegisterName(MCOperand_getReg(MCInst_getOperand(MI, OpNum)), AArch64_NoRegAltName)); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)); MI->flat_insn->detail->arm64.op_count++; } printShifter(MI, OpNum + 1, O); } static void printArithExtend(MCInst *MI, unsigned OpNum, SStream *O) { unsigned Val = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); AArch64_AM_ShiftExtendType ExtType = AArch64_AM_getArithExtendType(Val); unsigned ShiftVal = AArch64_AM_getArithShiftValue(Val); // If the destination or first source register operand is [W]SP, print // UXTW/UXTX as LSL, and if the shift amount is also zero, print nothing at // all. if (ExtType == AArch64_AM_UXTW || ExtType == AArch64_AM_UXTX) { unsigned Dest = MCOperand_getReg(MCInst_getOperand(MI, 0)); unsigned Src1 = MCOperand_getReg(MCInst_getOperand(MI, 1)); if ( ((Dest == AArch64_SP || Src1 == AArch64_SP) && ExtType == AArch64_AM_UXTX) || ((Dest == AArch64_WSP || Src1 == AArch64_WSP) && ExtType == AArch64_AM_UXTW) ) { if (ShiftVal != 0) { SStream_concat0(O, ", lsl "); printInt32Bang(O, ShiftVal); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count - 1].shift.type = ARM64_SFT_LSL; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count - 1].shift.value = ShiftVal; } } return; } } SStream_concat(O, ", %s", AArch64_AM_getShiftExtendName(ExtType)); if (MI->csh->detail) { arm64_extender ext = ARM64_EXT_INVALID; switch(ExtType) { default: // never reach case AArch64_AM_UXTB: ext = ARM64_EXT_UXTW; break; case AArch64_AM_UXTH: ext = ARM64_EXT_UXTW; break; case AArch64_AM_UXTW: ext = ARM64_EXT_UXTW; break; case AArch64_AM_UXTX: ext = ARM64_EXT_UXTW; break; case AArch64_AM_SXTB: ext = ARM64_EXT_UXTW; break; case AArch64_AM_SXTH: ext = ARM64_EXT_UXTW; break; case AArch64_AM_SXTW: ext = ARM64_EXT_UXTW; break; case AArch64_AM_SXTX: ext = ARM64_EXT_UXTW; break; } MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count - 1].ext = ext; } if (ShiftVal != 0) { SStream_concat0(O, " "); printInt32Bang(O, ShiftVal); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count - 1].shift.type = ARM64_SFT_LSL; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count - 1].shift.value = ShiftVal; } } } static void printExtendedRegister(MCInst *MI, unsigned OpNum, SStream *O) { unsigned Reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)); SStream_concat0(O, getRegisterName(Reg, AArch64_NoRegAltName)); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = Reg; MI->flat_insn->detail->arm64.op_count++; } printArithExtend(MI, OpNum + 1, O); } static void printMemExtend(MCInst *MI, unsigned OpNum, SStream *O, char SrcRegKind, unsigned Width) { unsigned SignExtend = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); unsigned DoShift = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNum + 1)); // sxtw, sxtx, uxtw or lsl (== uxtx) bool IsLSL = !SignExtend && SrcRegKind == 'x'; if (IsLSL) { SStream_concat0(O, "lsl"); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].shift.type = ARM64_SFT_LSL; } } else { SStream_concat(O, "%cxt%c", (SignExtend ? 's' : 'u'), SrcRegKind); if (MI->csh->detail) { if (!SignExtend) { switch(SrcRegKind) { default: break; case 'b': MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].ext = ARM64_EXT_UXTB; break; case 'h': MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].ext = ARM64_EXT_UXTH; break; case 'w': MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].ext = ARM64_EXT_UXTW; break; } } else { switch(SrcRegKind) { default: break; case 'b': MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].ext = ARM64_EXT_SXTB; break; case 'h': MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].ext = ARM64_EXT_SXTH; break; case 'w': MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].ext = ARM64_EXT_SXTW; break; case 'x': MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].ext = ARM64_EXT_SXTX; break; } } } } if (DoShift || IsLSL) { SStream_concat(O, " #%u", Log2_32(Width / 8)); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].shift.type = ARM64_SFT_LSL; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].shift.value = Log2_32(Width / 8); } } } static void printCondCode(MCInst *MI, unsigned OpNum, SStream *O) { A64CC_CondCode CC = (A64CC_CondCode)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); SStream_concat0(O, getCondCodeName(CC)); if (MI->csh->detail) MI->flat_insn->detail->arm64.cc = (arm64_cc)(CC + 1); } static void printInverseCondCode(MCInst *MI, unsigned OpNum, SStream *O) { A64CC_CondCode CC = (A64CC_CondCode)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); SStream_concat0(O, getCondCodeName(getInvertedCondCode(CC))); if (MI->csh->detail) { MI->flat_insn->detail->arm64.cc = (arm64_cc)(getInvertedCondCode(CC) + 1); } } static void printImmScale(MCInst *MI, unsigned OpNum, SStream *O, int Scale) { int64_t val = Scale * MCOperand_getImm(MCInst_getOperand(MI, OpNum)); printInt64Bang(O, val); if (MI->csh->detail) { if (MI->csh->doing_mem) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].mem.disp = (int)val; } else { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (int)val; MI->flat_insn->detail->arm64.op_count++; } } } static void printUImm12Offset(MCInst *MI, unsigned OpNum, unsigned Scale, SStream *O) { MCOperand *MO = MCInst_getOperand(MI, OpNum); if (MCOperand_isImm(MO)) { int64_t val = Scale * MCOperand_getImm(MO); printInt64Bang(O, val); if (MI->csh->detail) { if (MI->csh->doing_mem) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].mem.disp = (int)val; } else { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (int)val; MI->flat_insn->detail->arm64.op_count++; } } } } static void printUImm12Offset2(MCInst *MI, unsigned OpNum, SStream *O, int Scale) { printUImm12Offset(MI, OpNum, Scale, O); } static void printPrefetchOp(MCInst *MI, unsigned OpNum, SStream *O) { unsigned prfop = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); bool Valid; char *Name = A64NamedImmMapper_toString(&A64PRFM_PRFMMapper, prfop, &Valid); if (Valid) { SStream_concat0(O, Name); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_PREFETCH; // we have to plus 1 to prfop because 0 is a valid value of prfop MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].prefetch = prfop + 1; MI->flat_insn->detail->arm64.op_count++; } } else { printInt32Bang(O, prfop); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = prfop; MI->flat_insn->detail->arm64.op_count++; } } } static void printFPImmOperand(MCInst *MI, unsigned OpNum, SStream *O) { MCOperand *MO = MCInst_getOperand(MI, OpNum); double FPImm = MCOperand_isFPImm(MO) ? MCOperand_getFPImm(MO) : AArch64_AM_getFPImmFloat((int)MCOperand_getImm(MO)); // 8 decimal places are enough to perfectly represent permitted floats. SStream_concat(O, "#%.8f", FPImm); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_FP; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].fp = FPImm; MI->flat_insn->detail->arm64.op_count++; } } //static unsigned getNextVectorRegister(unsigned Reg, unsigned Stride = 1) static unsigned getNextVectorRegister(unsigned Reg, unsigned Stride) { while (Stride--) { switch (Reg) { default: // llvm_unreachable("Vector register expected!"); case AArch64_Q0: Reg = AArch64_Q1; break; case AArch64_Q1: Reg = AArch64_Q2; break; case AArch64_Q2: Reg = AArch64_Q3; break; case AArch64_Q3: Reg = AArch64_Q4; break; case AArch64_Q4: Reg = AArch64_Q5; break; case AArch64_Q5: Reg = AArch64_Q6; break; case AArch64_Q6: Reg = AArch64_Q7; break; case AArch64_Q7: Reg = AArch64_Q8; break; case AArch64_Q8: Reg = AArch64_Q9; break; case AArch64_Q9: Reg = AArch64_Q10; break; case AArch64_Q10: Reg = AArch64_Q11; break; case AArch64_Q11: Reg = AArch64_Q12; break; case AArch64_Q12: Reg = AArch64_Q13; break; case AArch64_Q13: Reg = AArch64_Q14; break; case AArch64_Q14: Reg = AArch64_Q15; break; case AArch64_Q15: Reg = AArch64_Q16; break; case AArch64_Q16: Reg = AArch64_Q17; break; case AArch64_Q17: Reg = AArch64_Q18; break; case AArch64_Q18: Reg = AArch64_Q19; break; case AArch64_Q19: Reg = AArch64_Q20; break; case AArch64_Q20: Reg = AArch64_Q21; break; case AArch64_Q21: Reg = AArch64_Q22; break; case AArch64_Q22: Reg = AArch64_Q23; break; case AArch64_Q23: Reg = AArch64_Q24; break; case AArch64_Q24: Reg = AArch64_Q25; break; case AArch64_Q25: Reg = AArch64_Q26; break; case AArch64_Q26: Reg = AArch64_Q27; break; case AArch64_Q27: Reg = AArch64_Q28; break; case AArch64_Q28: Reg = AArch64_Q29; break; case AArch64_Q29: Reg = AArch64_Q30; break; case AArch64_Q30: Reg = AArch64_Q31; break; // Vector lists can wrap around. case AArch64_Q31: Reg = AArch64_Q0; break; } } return Reg; } static void printVectorList(MCInst *MI, unsigned OpNum, SStream *O, char *LayoutSuffix, MCRegisterInfo *MRI, arm64_vas vas, arm64_vess vess) { #define GETREGCLASS_CONTAIN0(_class, _reg) MCRegisterClass_contains(MCRegisterInfo_getRegClass(MRI, _class), _reg) unsigned Reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)); unsigned NumRegs = 1, FirstReg, i; SStream_concat0(O, "{"); // Work out how many registers there are in the list (if there is an actual // list). if (GETREGCLASS_CONTAIN0(AArch64_DDRegClassID , Reg) || GETREGCLASS_CONTAIN0(AArch64_QQRegClassID, Reg)) NumRegs = 2; else if (GETREGCLASS_CONTAIN0(AArch64_DDDRegClassID, Reg) || GETREGCLASS_CONTAIN0(AArch64_QQQRegClassID, Reg)) NumRegs = 3; else if (GETREGCLASS_CONTAIN0(AArch64_DDDDRegClassID, Reg) || GETREGCLASS_CONTAIN0(AArch64_QQQQRegClassID, Reg)) NumRegs = 4; // Now forget about the list and find out what the first register is. if ((FirstReg = MCRegisterInfo_getSubReg(MRI, Reg, AArch64_dsub0))) Reg = FirstReg; else if ((FirstReg = MCRegisterInfo_getSubReg(MRI, Reg, AArch64_qsub0))) Reg = FirstReg; // If it's a D-reg, we need to promote it to the equivalent Q-reg before // printing (otherwise getRegisterName fails). if (GETREGCLASS_CONTAIN0(AArch64_FPR64RegClassID, Reg)) { MCRegisterClass *FPR128RC = MCRegisterInfo_getRegClass(MRI, AArch64_FPR128RegClassID); Reg = MCRegisterInfo_getMatchingSuperReg(MRI, Reg, AArch64_dsub, FPR128RC); } for (i = 0; i < NumRegs; ++i, Reg = getNextVectorRegister(Reg, 1)) { SStream_concat(O, "%s%s", getRegisterName(Reg, AArch64_vreg), LayoutSuffix); if (i + 1 != NumRegs) SStream_concat0(O, ", "); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = AArch64_map_vregister(Reg); MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].vas = vas; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].vess = vess; MI->flat_insn->detail->arm64.op_count++; } } SStream_concat0(O, "}"); } static void printTypedVectorList(MCInst *MI, unsigned OpNum, SStream *O, unsigned NumLanes, char LaneKind, MCRegisterInfo *MRI) { char Suffix[32]; arm64_vas vas = 0; arm64_vess vess = 0; if (NumLanes) { cs_snprintf(Suffix, sizeof(Suffix), ".%u%c", NumLanes, LaneKind); switch(LaneKind) { default: break; case 'b': switch(NumLanes) { default: break; case 8: vas = ARM64_VAS_8B; break; case 16: vas = ARM64_VAS_16B; break; } break; case 'h': switch(NumLanes) { default: break; case 4: vas = ARM64_VAS_4H; break; case 8: vas = ARM64_VAS_8H; break; } break; case 's': switch(NumLanes) { default: break; case 2: vas = ARM64_VAS_2S; break; case 4: vas = ARM64_VAS_4S; break; } break; case 'd': switch(NumLanes) { default: break; case 1: vas = ARM64_VAS_1D; break; case 2: vas = ARM64_VAS_2D; break; } break; case 'q': switch(NumLanes) { default: break; case 1: vas = ARM64_VAS_1Q; break; } break; } } else { cs_snprintf(Suffix, sizeof(Suffix), ".%c", LaneKind); switch(LaneKind) { default: break; case 'b': vess = ARM64_VESS_B; break; case 'h': vess = ARM64_VESS_H; break; case 's': vess = ARM64_VESS_S; break; case 'd': vess = ARM64_VESS_D; break; } } printVectorList(MI, OpNum, O, Suffix, MRI, vas, vess); } static void printVectorIndex(MCInst *MI, unsigned OpNum, SStream *O) { SStream_concat0(O, "["); printInt32(O, (int)MCOperand_getImm(MCInst_getOperand(MI, OpNum))); SStream_concat0(O, "]"); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count - 1].vector_index = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); } } static void printAlignedLabel(MCInst *MI, unsigned OpNum, SStream *O) { MCOperand *Op = MCInst_getOperand(MI, OpNum); // If the label has already been resolved to an immediate offset (say, when // we're running the disassembler), just print the immediate. if (MCOperand_isImm(Op)) { uint64_t imm = (MCOperand_getImm(Op) << 2) + MI->address; printUInt64Bang(O, imm); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = imm; MI->flat_insn->detail->arm64.op_count++; } return; } } static void printAdrpLabel(MCInst *MI, unsigned OpNum, SStream *O) { MCOperand *Op = MCInst_getOperand(MI, OpNum); if (MCOperand_isImm(Op)) { // ADRP sign extends a 21-bit offset, shifts it left by 12 // and adds it to the value of the PC with its bottom 12 bits cleared uint64_t imm = (MCOperand_getImm(Op) << 12) + (MI->address & ~0xfff); if (imm > HEX_THRESHOLD) SStream_concat(O, "#0x%"PRIx64, imm); else SStream_concat(O, "#%"PRIu64, imm); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = imm; MI->flat_insn->detail->arm64.op_count++; } return; } } static void printBarrierOption(MCInst *MI, unsigned OpNo, SStream *O) { unsigned Val = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNo)); unsigned Opcode = MCInst_getOpcode(MI); bool Valid; char *Name; if (Opcode == AArch64_ISB) Name = A64NamedImmMapper_toString(&A64ISB_ISBMapper, Val, &Valid); else Name = A64NamedImmMapper_toString(&A64DB_DBarrierMapper, Val, &Valid); if (Valid) { SStream_concat0(O, Name); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_BARRIER; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].barrier = Val; MI->flat_insn->detail->arm64.op_count++; } } else { printUInt32Bang(O, Val); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = Val; MI->flat_insn->detail->arm64.op_count++; } } } static void printMRSSystemRegister(MCInst *MI, unsigned OpNo, SStream *O) { unsigned Val = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNo)); bool Valid; char Name[128]; A64SysRegMapper_toString(&AArch64_MRSMapper, Val, &Valid, Name); if (Valid) { SStream_concat0(O, Name); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG_MRS; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = Val; MI->flat_insn->detail->arm64.op_count++; } } } static void printMSRSystemRegister(MCInst *MI, unsigned OpNo, SStream *O) { unsigned Val = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNo)); bool Valid; char Name[128]; A64SysRegMapper_toString(&AArch64_MSRMapper, Val, &Valid, Name); if (Valid) { SStream_concat0(O, Name); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_REG_MSR; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].reg = Val; MI->flat_insn->detail->arm64.op_count++; } } } static void printSystemPStateField(MCInst *MI, unsigned OpNo, SStream *O) { unsigned Val = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNo)); bool Valid; char *Name; Name = A64NamedImmMapper_toString(&A64PState_PStateMapper, Val, &Valid); if (Valid) { SStream_concat0(O, Name); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_PSTATE; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].pstate = Val; MI->flat_insn->detail->arm64.op_count++; } } else { printInt32Bang(O, Val); MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = Val; MI->flat_insn->detail->arm64.op_count++; } } static void printSIMDType10Operand(MCInst *MI, unsigned OpNo, SStream *O) { unsigned RawVal = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNo)); uint64_t Val = AArch64_AM_decodeAdvSIMDModImmType10(RawVal); SStream_concat(O, "#%#016llx", Val); if (MI->csh->detail) { MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].type = ARM64_OP_IMM; MI->flat_insn->detail->arm64.operands[MI->flat_insn->detail->arm64.op_count].imm = (int)Val; MI->flat_insn->detail->arm64.op_count++; } } #define PRINT_ALIAS_INSTR #include "AArch64GenAsmWriter.inc" void AArch64_post_printer(csh handle, cs_insn *flat_insn, char *insn_asm, MCInst *mci) { if (((cs_struct *)handle)->detail != CS_OPT_ON) return; // check if this insn requests write-back if (strrchr(insn_asm, '!') != NULL) flat_insn->detail->arm64.writeback = true; } #endif
the_stack_data/190769081.c
//Develop a C program to find factorial of a number N using for loop. #include<stdio.h> int main() { int i, num, fact=1; printf("\nEnter the Number:"); scanf("%d", &num); for(i=1; i<=num; i++) fact = fact*i; printf("\nThe Factorial of %d is = %d", num, fact); printf("\n\n"); return 0; }
the_stack_data/1089435.c
#include <stdio.h> #include <string.h> #include <ctype.h> #ifdef __STDC__ #include <stdlib.h> #endif #define DATE "20 Feb 1996" #define VERSION "2.2" /* chkfont By Glenn Chappell <[email protected]> This program checks figlet 2.0/2.1 font files for format errors. It also looks for signs of common problems and gives warnings. chkfont does not modify font files. Usage: chkfont fontfile ... Note: This is very much a spare-time project. It's probably full o' bugs .... */ /* #define CHECKBLANKS */ #define FONTFILESUFFIX ".flf" #define FONTFILEMAGICNUMBER "flf2" char posshardblanks[9] = { '!', '@', '#', '$', '%', '&', '*', 0x7f, 0 }; char *myname,*fontfilename; FILE *fontfile; char hardblank; int charheight,upheight,maxlen=0,old_layout; int spectagcnt; char *fileline; int maxlinelength=0,currline; int ec,wc; int incon_endmarkwarn,endmark_countwarn,nonincrwarn; int bigcodetagwarn,deutschcodetagwarn,asciicodetagwarn; int codetagcnt; int gone; void weregone(really) int really; { if (!really && 2*ec+wc<=40) { return; } if (ec+wc>0) printf("*******************************************************************************\n"); if (!really) { printf("%s: Too many errors/warnings.\n",fontfilename); } printf("%s: Errors: %d, Warnings: %d\n",fontfilename,ec,wc); if (currline>1 && maxlen!=maxlinelength) { printf("%s: maxlen: %d, actual max line length: %d\n", fontfilename,maxlen,maxlinelength); if (codetagcnt>0 && spectagcnt==-1) { printf("%s: Code-tagged characters: %d\n",fontfilename,codetagcnt); } } printf("-------------------------------------------------------------------------------\n"); gone=1; } char *my_alloc(size) int size; { char *ptr; ptr=(char *)malloc(size); if (ptr==NULL) { fprintf(stderr,"%s: Out of memory\n",myname); exit(1); } return(ptr); } int badsuffix(path,suffix) char *path; char *suffix; { char ucsuffix[10]; char *s; if (strlen(suffix) > 9) return 1; strcpy(ucsuffix,suffix); for (s = ucsuffix; *s; s++) { *s = toupper(*s); } if (strlen(path)<strlen(suffix)) return 1; s = path + strlen(path) - strlen(suffix); if (strcmp(s,suffix) == 0) return 0; if (strcmp(s,ucsuffix) == 0) return 0; return 1; } void usageerr() { fprintf(stderr,"chkfont by Glenn Chappell <[email protected]>\n"); fprintf(stderr,"Version: %s, date: %s\n",VERSION,DATE); fprintf(stderr,"Checks figlet 2.0/2.1 font files for format errors.\n"); fprintf(stderr,"(Does not modify font files.)\n"); fprintf(stderr,"Usage: %s fontfile ...\n",myname); exit(1); } void readchar() { int i,expected_width,k,len,newlen,diff,l; char endmark,expected_endmark; int leadblanks,minleadblanks,trailblanks,mintrailblanks; char *ret; expected_width = expected_endmark = 0; /* prevent compiler warning */ for (i=0;i<charheight;i++) { ret = fgets(fileline,maxlen+1000,fontfile); if (ret == NULL) { printf("%s: ERROR (fatal)- Unexpected read error after line %d.\n", fontfilename,currline); ec++; weregone(1); if (gone) return; } if (feof(fontfile)) { printf("%s: ERROR (fatal)- Unexpected end of file after line %d.\n", fontfilename,currline); ec++; weregone(1); if (gone) return; } currline++; len=strlen(fileline)-1; if (len>maxlinelength) { maxlinelength=len; } if (len>maxlen) { printf("%s: ERROR- Line length > maxlen in line %d.\n", fontfilename,currline); ec++; weregone(0); if (gone) return; } k=len; endmark=k<0?'\0':(k==0||fileline[k]!='\n')?fileline[k]:fileline[k-1]; for(;k>=0?(fileline[k]=='\n' || fileline[k]==endmark):0;k--) { fileline[k]='\0'; } newlen=strlen(fileline); for (l=0;l<newlen ? fileline[l]==' ' : 0;l++) ; leadblanks = l; for (l=newlen-1;l>=0 ? fileline[l]==' ' : 0;l--) ; trailblanks = newlen-1-l; if (i==0) { expected_endmark = endmark; expected_width = newlen; minleadblanks = leadblanks; mintrailblanks = trailblanks; if (endmark==' ') { printf("%s: Warning- Blank endmark in line %d.\n", fontfilename,currline); wc++; weregone(0); if (gone) return; } } else { if (leadblanks<minleadblanks) minleadblanks = leadblanks; if (trailblanks<mintrailblanks) mintrailblanks = trailblanks; if (endmark!=expected_endmark && !incon_endmarkwarn) { printf("%s: Warning- Inconsistent endmark in line %d.\n", fontfilename,currline); printf("%s: (Above warning will only be printed once.)\n", fontfilename); incon_endmarkwarn = 1; wc++; weregone(0); if (gone) return; } if (newlen!=expected_width) { printf("%s: ERROR- Inconsistent character width in line %d.\n", fontfilename,currline); ec++; weregone(0); if (gone) return; } } diff=len-newlen; if (diff>2) { printf("%s: ERROR- Too many endmarks in line %d.\n", fontfilename,currline); ec++; weregone(0); if (gone) return; } else if (charheight>1 && (diff!=(i==charheight-1)+1)) { if (!endmark_countwarn) { printf("%s: Warning- Endchar count convention violated in line %d.\n", fontfilename,currline); printf("%s: (Above warning will only be printed once.)\n", fontfilename); endmark_countwarn = 1; wc++; weregone(0); if (gone) return; } } } #ifdef CHECKBLANKS if (minleadblanks+mintrailblanks>0 && old_layout>=0) { printf("%s: Warning- Leading/trailing blanks in char. ending at line %d.\n", fontfilename,currline); printf("%s: (Above warning only given when old_layout > -1.)\n", fontfilename); wc++; weregone(0); if (gone) return; } #endif /* #ifdef CHECKBLANKS */ } void checkit() { int i,k,cmtcount,numsread,ffrighttoleft,have_layout,layout; char magicnum[5]; long oldord,theord; int tmpcnt,len,cha; ec=0;wc=0; incon_endmarkwarn=0; endmark_countwarn=0; nonincrwarn=0; bigcodetagwarn=0; deutschcodetagwarn=0; asciicodetagwarn=0; codetagcnt=0; gone=0; if (!strcmp(fontfilename,"-")) { fontfilename="(stdin)"; fontfile=stdin; } else { fontfile=fopen(fontfilename,"r"); if (fontfile == NULL) { fprintf(stderr,"%s: Could not open file '%s'\n",myname,fontfilename); exit(1); } } if (fontfile!=stdin) { if (badsuffix(fontfilename,FONTFILESUFFIX)) { printf("%s: ERROR- Filename does not end with '%s'.\n", fontfilename,FONTFILESUFFIX); ec++; weregone(0); if (gone) return; } } numsread=fscanf(fontfile,"%4s",magicnum); if (numsread == EOF) { printf("%s: ERROR- can't read magic number.\n",fontfilename); ec++; weregone(0); if (gone) return; } if (strcmp(magicnum,FONTFILEMAGICNUMBER)) { printf("%s: ERROR- Incorrect magic number.\n",fontfilename); ec++; weregone(0); if (gone) return; } cha=getc(fontfile); if (cha!='a') { printf("%s: Warning- Sub-version character is not 'a'.\n",fontfilename); wc++; weregone(0); if (gone) return; } fileline=(char*)my_alloc(sizeof(char)*(1001)); if (fgets(fileline,1001,fontfile)==NULL) { fileline[0] = '\0'; } if (strlen(fileline)>0 ? fileline[strlen(fileline)-1]!='\n' : 0) { while(k=getc(fontfile),k!='\n'&&k!=EOF) ; /* Advance to end of line */ } numsread=sscanf(fileline,"%c %d %d %d %d %d %d %d %d", &hardblank,&charheight,&upheight,&maxlen,&old_layout,&cmtcount, &ffrighttoleft,&layout,&spectagcnt); free(fileline); fileline = NULL; if (numsread<7) { ffrighttoleft=0; } if (numsread<9) { spectagcnt=-1; } have_layout = (numsread>=8); if (6>numsread) { printf("%s: ERROR (fatal)- First line improperly formatted.\n",fontfilename); ec++; weregone(1); if (gone) return; } if (!strchr(posshardblanks,hardblank)) { printf("%s: Warning- Unusual hardblank.\n",fontfilename); wc++; weregone(0); if (gone) return; } if (charheight<1) { printf("%s: ERROR (fatal)- charheight not positive.\n",fontfilename); ec++; weregone(1); if (gone) return; } if (upheight>charheight || upheight<1) { printf("%s: ERROR- up_height out of bounds.\n",fontfilename); ec++; weregone(0); if (gone) return; } if (maxlen<1) { printf("%s: ERROR (fatal)- maxlen not positive.\n",fontfilename); ec++; weregone(1); if (gone) return; } if (maxlen>255) { printf("%s: ERROR (fatal)- character too wide.\n",fontfilename); ec++; weregone(1); if (gone) return; } if (old_layout<-1) { printf("%s: ERROR- old_layout < -1.\n",fontfilename); ec++; weregone(0); if (gone) return; } if (old_layout>63) { printf("%s: ERROR- old_layout > 63.\n",fontfilename); ec++; weregone(0); if (gone) return; } if (have_layout && layout<0) { printf("%s: ERROR- layout < 0.\n", fontfilename); ec++; weregone(0); if (gone) return; } if (have_layout &&layout>32767) { printf("%s: ERROR- layout > 32767.\n", fontfilename); ec++; weregone(0); if (gone) return; } if (have_layout && old_layout == -1 && (layout & 192)) { printf("%s: ERROR- layout %d is inconsistent with old_layout -1.\n", fontfilename,layout); ec++; weregone(0); if (gone) return; } if (have_layout && old_layout == 0 && (layout & 192) != 64 && (layout & 255) != 128) { printf("%s: ERROR- layout %d is inconsistent with old_layout 0.\n", fontfilename,layout); ec++; weregone(0); if (gone) return; } if (have_layout && old_layout > 0 && (!(layout & 128) || old_layout != (layout & 63))) { printf("%s: ERROR- layout %d is inconsistent with old_layout %d.\n", fontfilename,layout,old_layout); ec++; weregone(0); if (gone) return; } if (cmtcount<0) { printf("%s: ERROR- cmt_count is negative.\n",fontfilename); ec++; weregone(0); if (gone) return; } if (ffrighttoleft<0 || ffrighttoleft>1) { printf("%s: ERROR- rtol out of bounds.\n",fontfilename); ec++; weregone(0); if (gone) return; } for (i=1;i<=cmtcount;i++) { while(k=getc(fontfile),k!='\n'&&k!=EOF) ; /* Advance to end of line */ } maxlinelength = 0; currline=cmtcount+1; fileline=(char*)my_alloc(sizeof(char)*(maxlen+1001)); for (i=0;i<102;i++) { readchar(); if (gone) return; } oldord=0; while(fgets(fileline,maxlen+1000,fontfile)!=NULL) { currline++; len=strlen(fileline)-1; if (len-100>maxlinelength) { maxlinelength=len-100; } if (len>maxlen+100) { printf("%s: ERROR- Code tag line way too long in line %d.\n", fontfilename,currline); ec++; weregone(0); if (gone) return; } tmpcnt=sscanf(fileline,"%li",&theord); if (tmpcnt<1) { printf("%s: Warning- Extra chars after font in line %d.\n", fontfilename,currline); wc++; weregone(0); if (gone) return; break; } codetagcnt++; if (theord>65535 && !bigcodetagwarn) { printf("%s: Warning- Code tag > 65535 in line %d.\n", fontfilename,currline); printf("%s: (Above warning will only be printed once.)\n", fontfilename); bigcodetagwarn = 1; wc++; weregone(0); if (gone) return; } if (theord==-1) { printf("%s: ERROR- Code tag -1 (unusable) in line %d.\n", fontfilename,currline); ec++; weregone(0); if (gone) return; break; } if (theord>=-255 && theord<=-249 &&!deutschcodetagwarn) { printf("%s: Warning- Code tag in old Deutsch area in line %d.\n", fontfilename,currline); printf("%s: (Above warning will only be printed once.)\n", fontfilename); deutschcodetagwarn = 1; wc++; weregone(0); if (gone) return; } if (theord<127 && theord>31 && !asciicodetagwarn) { printf("%s: Warning- Code tag in ASCII range in line %d.\n", fontfilename,currline); printf("%s: (Above warning will only be printed once.)\n", fontfilename); asciicodetagwarn = 1; wc++; weregone(0); if (gone) return; } else if (theord<=oldord && theord>=0 && oldord>=0 && !nonincrwarn) { printf("%s: Warning- Non-increasing code tag in line %d.\n", fontfilename,currline); printf("%s: (Above warning will only be printed once.)\n", fontfilename); nonincrwarn = 1; wc++; weregone(0); if (gone) return; } oldord=theord; readchar(); if (gone) return; } if (spectagcnt!=-1 && spectagcnt!=codetagcnt) { printf("%s: ERROR- Inconsistent Codetag_Cnt value %d\n", fontfilename, spectagcnt); ec++; weregone(0); if (gone) return; } if (fontfile!=stdin) fclose(fontfile); weregone(1); if (gone) return; } int main(argc,argv) int argc; char *argv[]; { int arg; if ((myname=strrchr(argv[0],'/'))!=NULL) { myname++; } else { myname = argv[0]; } if (argc<2) { usageerr(); } for (arg=1;arg<argc;arg++) { fontfilename=argv[arg]; fileline=NULL; checkit(); if (fileline!=NULL) free(fileline); } return 0; }
the_stack_data/32950062.c
//////////////////////////////////////////////////////////////////////////// // // Function Name : Pattern() // Input : Integer // Output : Integer // Author : Prasad Dangare // Date : 16 Mar 2021 // //////////////////////////////////////////////////////////////////////////// #include<stdio.h> void Pattern(int iRow, int iCol) { int i = 0, j = 0; printf("\n"); for(i = 1; i <= iRow; i++) { for(j = 1; j <= iCol; j++) { if(i == j) { printf("$\t"); } else if (i <= j) { printf("*\t"); } else { printf("#\t"); } } printf("\n"); } } int main() { int iValue1 = 0, iValue2 = 0; printf("Enter number of rows and columns : "); scanf("%d %d", &iValue1, &iValue2); Pattern(iValue1, iValue2); return 0; }
the_stack_data/247018117.c
// -------------------------------------------------- // Check extends before // -------------------------------------------------- // RUN: %libomptarget-compile-aarch64-unknown-linux-gnu \ // RUN: -fopenmp-version=51 -DEXTENDS=BEFORE // RUN: %libomptarget-run-fail-aarch64-unknown-linux-gnu 2>&1 \ // RUN: | %fcheck-aarch64-unknown-linux-gnu // RUN: %libomptarget-compile-powerpc64-ibm-linux-gnu \ // RUN: -fopenmp-version=51 -DEXTENDS=BEFORE // RUN: %libomptarget-run-fail-powerpc64-ibm-linux-gnu 2>&1 \ // RUN: | %fcheck-powerpc64-ibm-linux-gnu // RUN: %libomptarget-compile-powerpc64le-ibm-linux-gnu \ // RUN: -fopenmp-version=51 -DEXTENDS=BEFORE // RUN: %libomptarget-run-fail-powerpc64le-ibm-linux-gnu 2>&1 \ // RUN: | %fcheck-powerpc64le-ibm-linux-gnu // RUN: %libomptarget-compile-x86_64-pc-linux-gnu \ // RUN: -fopenmp-version=51 -DEXTENDS=BEFORE // RUN: %libomptarget-run-fail-x86_64-pc-linux-gnu 2>&1 \ // RUN: | %fcheck-x86_64-pc-linux-gnu // -------------------------------------------------- // Check extends after // -------------------------------------------------- // RUN: %libomptarget-compile-aarch64-unknown-linux-gnu \ // RUN: -fopenmp-version=51 -DEXTENDS=AFTER // RUN: %libomptarget-run-fail-aarch64-unknown-linux-gnu 2>&1 \ // RUN: | %fcheck-aarch64-unknown-linux-gnu // RUN: %libomptarget-compile-powerpc64-ibm-linux-gnu \ // RUN: -fopenmp-version=51 -DEXTENDS=AFTER // RUN: %libomptarget-run-fail-powerpc64-ibm-linux-gnu 2>&1 \ // RUN: | %fcheck-powerpc64-ibm-linux-gnu // RUN: %libomptarget-compile-powerpc64le-ibm-linux-gnu \ // RUN: -fopenmp-version=51 -DEXTENDS=AFTER // RUN: %libomptarget-run-fail-powerpc64le-ibm-linux-gnu 2>&1 \ // RUN: | %fcheck-powerpc64le-ibm-linux-gnu // RUN: %libomptarget-compile-x86_64-pc-linux-gnu \ // RUN: -fopenmp-version=51 -DEXTENDS=AFTER // RUN: %libomptarget-run-fail-x86_64-pc-linux-gnu 2>&1 \ // RUN: | %fcheck-x86_64-pc-linux-gnu // END. #include <stdio.h> #define BEFORE 0 #define AFTER 1 #define SIZE 100 #if EXTENDS == BEFORE # define SMALL_BEG (SIZE-2) # define SMALL_END SIZE # define LARGE_BEG 0 # define LARGE_END SIZE #elif EXTENDS == AFTER # define SMALL_BEG 0 # define SMALL_END 2 # define LARGE_BEG 0 # define LARGE_END SIZE #else # error EXTENDS undefined #endif #define SMALL_SIZE (SMALL_END-SMALL_BEG) #define LARGE_SIZE (LARGE_END-LARGE_BEG) #define SMALL SMALL_BEG:SMALL_SIZE #define LARGE LARGE_BEG:LARGE_SIZE int main() { int arr[SIZE]; // CHECK: addr=0x[[#%x,SMALL_ADDR:]], size=[[#%u,SMALL_BYTES:]] fprintf(stderr, "addr=%p, size=%ld\n", &arr[SMALL_BEG], SMALL_SIZE * sizeof arr[0]); // CHECK: addr=0x[[#%x,LARGE_ADDR:]], size=[[#%u,LARGE_BYTES:]] fprintf(stderr, "addr=%p, size=%ld\n", &arr[LARGE_BEG], LARGE_SIZE * sizeof arr[0]); // CHECK-NOT: Libomptarget #pragma omp target data map(alloc: arr[LARGE]) { #pragma omp target map(present, tofrom: arr[SMALL]) ; } // CHECK: arr is present fprintf(stderr, "arr is present\n"); // CHECK: Libomptarget message: explicit extension not allowed: host address specified is 0x{{0*}}[[#LARGE_ADDR]] ([[#LARGE_BYTES]] bytes), but device allocation maps to host at 0x{{0*}}[[#SMALL_ADDR]] ([[#SMALL_BYTES]] bytes) // CHECK: Libomptarget message: device mapping required by 'present' map type modifier does not exist for host address 0x{{0*}}[[#LARGE_ADDR]] ([[#LARGE_BYTES]] bytes) // CHECK: Libomptarget error: Call to getOrAllocTgtPtr returned null pointer ('present' map type modifier). // CHECK: Libomptarget error: Call to targetDataBegin failed, abort target. // CHECK: Libomptarget error: Failed to process data before launching the kernel. // CHECK: Libomptarget fatal error 1: failure of target construct while offloading is mandatory #pragma omp target data map(alloc: arr[SMALL]) { #pragma omp target map(present, tofrom: arr[LARGE]) ; } // CHECK-NOT: arr is present fprintf(stderr, "arr is present\n"); return 0; }
the_stack_data/139591.c
const char dpaa2_qdma_pmd_info[] __attribute__((used)) = "PMD_INFO_STRING= {\"name\" : \"dpaa2_qdma\", \"params\" : \"no_prefetch=<int> \", \"pci_ids\" : []}";
the_stack_data/1180440.c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ /* Type definitions */ typedef int u8 ; typedef size_t u32 ; struct mipi_dsi_msg {int* tx_buf; size_t tx_len; size_t rx_len; size_t type; int* rx_buf; int /*<<< orphan*/ channel; } ; struct mipi_dsi_host {int dummy; } ; struct mcde_dsi {scalar_t__ regs; int /*<<< orphan*/ dev; } ; typedef int ssize_t ; /* Variables and functions */ scalar_t__ DSI_CMD_MODE_STS_CLR ; scalar_t__ DSI_DIRECT_CMD_MAIN_SETTINGS ; size_t DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_HEAD_SHIFT ; size_t DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_ID_SHIFT ; size_t DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_LONGNOTSHORT ; size_t DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_LP_EN ; size_t DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_NAT_READ ; size_t DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_NAT_WRITE ; size_t DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_SIZE_SHIFT ; scalar_t__ DSI_DIRECT_CMD_RDDAT ; scalar_t__ DSI_DIRECT_CMD_RD_INIT ; scalar_t__ DSI_DIRECT_CMD_RD_PROPERTY ; size_t DSI_DIRECT_CMD_RD_PROPERTY_RD_SIZE_MASK ; scalar_t__ DSI_DIRECT_CMD_SEND ; scalar_t__ DSI_DIRECT_CMD_STS ; size_t DSI_DIRECT_CMD_STS_ACKNOWLEDGE_WITH_ERR_RECEIVED ; size_t DSI_DIRECT_CMD_STS_ACK_VAL_SHIFT ; scalar_t__ DSI_DIRECT_CMD_STS_CLR ; size_t DSI_DIRECT_CMD_STS_READ_COMPLETED ; size_t DSI_DIRECT_CMD_STS_READ_COMPLETED_WITH_ERR ; size_t DSI_DIRECT_CMD_STS_WRITE_COMPLETED ; scalar_t__ DSI_DIRECT_CMD_WRDAT0 ; scalar_t__ DSI_DIRECT_CMD_WRDAT1 ; scalar_t__ DSI_DIRECT_CMD_WRDAT2 ; scalar_t__ DSI_DIRECT_CMD_WRDAT3 ; int EIO ; int ETIME ; scalar_t__ MCDE_DSI_HOST_IS_READ (size_t) ; int /*<<< orphan*/ dev_dbg (int /*<<< orphan*/ ,char*,int /*<<< orphan*/ ,size_t,size_t) ; int /*<<< orphan*/ dev_err (int /*<<< orphan*/ ,char*,...) ; struct mcde_dsi* host_to_mcde_dsi (struct mipi_dsi_host*) ; scalar_t__ mipi_dsi_packet_format_is_long (size_t) ; size_t readl (scalar_t__) ; int /*<<< orphan*/ usleep_range (size_t const,size_t const) ; int /*<<< orphan*/ writel (int,scalar_t__) ; __attribute__((used)) static ssize_t mcde_dsi_host_transfer(struct mipi_dsi_host *host, const struct mipi_dsi_msg *msg) { struct mcde_dsi *d = host_to_mcde_dsi(host); const u32 loop_delay_us = 10; /* us */ const u8 *tx = msg->tx_buf; u32 loop_counter; size_t txlen = msg->tx_len; size_t rxlen = msg->rx_len; u32 val; int ret; int i; if (txlen > 16) { dev_err(d->dev, "dunno how to write more than 16 bytes yet\n"); return -EIO; } if (rxlen > 4) { dev_err(d->dev, "dunno how to read more than 4 bytes yet\n"); return -EIO; } dev_dbg(d->dev, "message to channel %d, write %zd bytes read %zd bytes\n", msg->channel, txlen, rxlen); /* Command "nature" */ if (MCDE_DSI_HOST_IS_READ(msg->type)) /* MCTL_MAIN_DATA_CTL already set up */ val = DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_NAT_READ; else val = DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_NAT_WRITE; /* * More than 2 bytes will not fit in a single packet, so it's * time to set the "long not short" bit. One byte is used by * the MIPI DCS command leaving just one byte for the payload * in a short package. */ if (mipi_dsi_packet_format_is_long(msg->type)) val |= DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_LONGNOTSHORT; val |= 0 << DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_ID_SHIFT; val |= txlen << DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_SIZE_SHIFT; val |= DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_LP_EN; val |= msg->type << DSI_DIRECT_CMD_MAIN_SETTINGS_CMD_HEAD_SHIFT; writel(val, d->regs + DSI_DIRECT_CMD_MAIN_SETTINGS); /* MIPI DCS command is part of the data */ if (txlen > 0) { val = 0; for (i = 0; i < 4 && i < txlen; i++) val |= tx[i] << (i & 3) * 8; } writel(val, d->regs + DSI_DIRECT_CMD_WRDAT0); if (txlen > 4) { val = 0; for (i = 0; i < 4 && (i + 4) < txlen; i++) val |= tx[i + 4] << (i & 3) * 8; writel(val, d->regs + DSI_DIRECT_CMD_WRDAT1); } if (txlen > 8) { val = 0; for (i = 0; i < 4 && (i + 8) < txlen; i++) val |= tx[i + 8] << (i & 3) * 8; writel(val, d->regs + DSI_DIRECT_CMD_WRDAT2); } if (txlen > 12) { val = 0; for (i = 0; i < 4 && (i + 12) < txlen; i++) val |= tx[i + 12] << (i & 3) * 8; writel(val, d->regs + DSI_DIRECT_CMD_WRDAT3); } writel(~0, d->regs + DSI_DIRECT_CMD_STS_CLR); writel(~0, d->regs + DSI_CMD_MODE_STS_CLR); /* Send command */ writel(1, d->regs + DSI_DIRECT_CMD_SEND); loop_counter = 1000 * 1000 / loop_delay_us; if (MCDE_DSI_HOST_IS_READ(msg->type)) { /* Read command */ while (!(readl(d->regs + DSI_DIRECT_CMD_STS) & (DSI_DIRECT_CMD_STS_READ_COMPLETED | DSI_DIRECT_CMD_STS_READ_COMPLETED_WITH_ERR)) && --loop_counter) usleep_range(loop_delay_us, (loop_delay_us * 3) / 2); if (!loop_counter) { dev_err(d->dev, "DSI read timeout!\n"); return -ETIME; } } else { /* Writing only */ while (!(readl(d->regs + DSI_DIRECT_CMD_STS) & DSI_DIRECT_CMD_STS_WRITE_COMPLETED) && --loop_counter) usleep_range(loop_delay_us, (loop_delay_us * 3) / 2); if (!loop_counter) { dev_err(d->dev, "DSI write timeout!\n"); return -ETIME; } } val = readl(d->regs + DSI_DIRECT_CMD_STS); if (val & DSI_DIRECT_CMD_STS_READ_COMPLETED_WITH_ERR) { dev_err(d->dev, "read completed with error\n"); writel(1, d->regs + DSI_DIRECT_CMD_RD_INIT); return -EIO; } if (val & DSI_DIRECT_CMD_STS_ACKNOWLEDGE_WITH_ERR_RECEIVED) { val >>= DSI_DIRECT_CMD_STS_ACK_VAL_SHIFT; dev_err(d->dev, "error during transmission: %04x\n", val); return -EIO; } if (!MCDE_DSI_HOST_IS_READ(msg->type)) { /* Return number of bytes written */ ret = txlen; } else { /* OK this is a read command, get the response */ u32 rdsz; u32 rddat; u8 *rx = msg->rx_buf; rdsz = readl(d->regs + DSI_DIRECT_CMD_RD_PROPERTY); rdsz &= DSI_DIRECT_CMD_RD_PROPERTY_RD_SIZE_MASK; rddat = readl(d->regs + DSI_DIRECT_CMD_RDDAT); if (rdsz < rxlen) { dev_err(d->dev, "read error, requested %zd got %d\n", rxlen, rdsz); return -EIO; } /* FIXME: read more than 4 bytes */ for (i = 0; i < 4 && i < rxlen; i++) rx[i] = (rddat >> (i * 8)) & 0xff; ret = rdsz; } writel(~0, d->regs + DSI_DIRECT_CMD_STS_CLR); writel(~0, d->regs + DSI_CMD_MODE_STS_CLR); return ret; }
the_stack_data/16766.c
/* FIBONACCI SERIES * * 0 1 1 2 3 5 8 13 ..... * */ #include <stdio.h> void fibonacci(int M) { unsigned long long a=0,b=1,i,c; if(M==1) { printf("Fibonacci series is:\n%lld",a); } else { printf("Fibonacci series is:\n%llu %llu ",a,b); //for loop to find all fibonnaci number for (i=0;i<M-2;i++) { c=a+b;//fibonacci series is addition of previous two numbers a=b; b=c; printf("%llu ",c); } } printf("\n"); } int main() { int N; printf("Enter the no of terms: "); scanf("%d",&N); fibonacci(N); //function call return 0; }
the_stack_data/31020.c
#include <stdio.h> #include <stdlib.h> int main(int argc, char **argv) { printf("Hello from %s\n", argv[0]); return 0; }
the_stack_data/95450599.c
typedef int __attribute__((vector_size (8))) vec; vec a[] = {(vec) {1, 2}, {3, 4}};
the_stack_data/95451611.c
#include <stdio.h> #include <string.h> #include <stdlib.h> #define BOOL char #define TRUE 0 #define FALSE 1 // 练习一维数组的定义和操作 int singleArrays() { int i; int numbers[10]; for (i = 0; i < 10; i ++) { numbers[i] = i; } for (i = 0; i < 10; i ++) { printf("%d\n", numbers[i]); } return 0; } // 练习二维数组的定义和操作 int multiArrays() { int a[3][4] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}; int i = 0; int j = 0; for (i = 0; i < 3; i ++) { for (j = 0; j < 4; j ++) { printf("a[%d][%d] is %d\n", i, j, a[i][j]); } } return 0; } // 练习字符串数组的定义和访问 int stringExercise() { char * address = "Henan Jiaozuo"; char * name = "qianshuangyang"; char * email = "[email protected]"; printf("address is %s, and address's length is %lu\n", address, strlen(address)); printf("name is %s, and name's length is %lu\n", name, strlen(name)); printf("email is %s, and email's length is %lu\n", email, strlen(email)); return 0; } // 练习static关键字用法 int runner() { static int count = 0; count ++; return count; } // 练习指针用法 int pointer() { int a = 25; int * pointer_to_a = &a; printf("a is %d\n", a); printf("a is %d\n", *pointer_to_a); printf("a+1 is %d\n", a + 1); printf("a+1 is %d\n", *pointer_to_a + 1); printf("a's pointer is %p\n", &a); printf("a's pointer is %p\n", pointer_to_a); printf("a's pointer next address is %d\n", *(pointer_to_a + 1)); return 0; } typedef struct { char * name; int age; } person; // 练习函数参数--传值 void birthday(person p) { p.age ++; } // 练习函数参数--传指针 void birthdayP(person * p) { p->age++; } // 练习函数参数为结构体 void struct_exercise() { person p; p.name = "John"; p.age = 18; birthday(p); printf("age is %d\n", p.age); birthdayP(&p); printf("age is %d\n", p.age); } // 练习内存分配 void mem_allocate() { person * p = (person *) malloc(sizeof(person)); p -> name = "Jhon"; p -> age = 18; printf("name is %s, age is %d.\n", p->name, p->age); free(p); } // 练习数组指针 void array_pointer() { int yuanyin[] = {1, 2, 3, 4, 5}; int * pointer_to_yuanyin = &yuanyin; int i; // 打印地址 for (i = 0; i < 5; i ++) { printf("&yuanyin[%d]: %p, pointer_to_yuanyin + %d: %p, yuanyin + %d: %p\n", i, &yuanyin[i], i, pointer_to_yuanyin + i, i, yuanyin + i); } for (i = 0; i < 5; i ++) { printf("yuanyin[%d]: %d, *(pointer_to_yuanyin + %d): %d, *(yuanyin + %d): %d\n", i, yuanyin[i], i, *(pointer_to_yuanyin + i), i, *(yuanyin + i)); } } // 练习到 // https://www.learn-c.org/en/Arrays_and_Pointers int main(int argc, char const *argv[]) { array_pointer(); return 0; }
the_stack_data/698950.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: pbondoer <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/24 20:26:04 by pbondoer #+# #+# */ /* Updated: 2015/11/24 20:27:28 by pbondoer ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isprint(int c) { return (c >= 32 && c <= 126); }
the_stack_data/138619.c
/* Reverse last 5 nodes of linked list. E.g. Input: 1,2,3,4,5,6,7 Output: 1,2,7,6,5,4,3 */ #include <stdio.h> #include <malloc.h> struct node { int data; struct node *ptr; } *start = NULL; int main(){ int numberOfNodes; struct node *t, *t1, *last; scanf("%d", &numberOfNodes); for (int i = 0; i < numberOfNodes; i++){ t = (struct node *)malloc(sizeof(struct node)); scanf("%d", &(t -> data)); t -> ptr = NULL; if (start == NULL) start = t; else last -> ptr = t; last = t; } printf("\n"); t = start; int i; for (i = 0; i < numberOfNodes -5 ; i++){ t = t->ptr; } for (; i< numberOfNodes; i++) { } t = start; for (int i = 0; i < numberOfNodes; i++ , t = t->ptr) printf("%d ", t->data); }
the_stack_data/125140832.c
/* Disciplina: Computacao Concorrente */ /* Prof.: Silvana Rossetto */ /* Laboratório: 1 */ /* Codigo: "Hello World" usando threads em C e a funcao join*/ #include <stdio.h> #include <stdlib.h> #include <pthread.h> #define NTHREADS 10 //cria a estrutura de dados para armazenar os argumentos da thread typedef struct { int idThread, nThreads; } t_Args; //funcao executada pelas threads void *PrintHello (void *arg) { t_Args *args = (t_Args *) arg; printf("Sou a thread %d de %d threads\n", args->idThread, args->nThreads); free(arg); pthread_exit(NULL); } //funcao principal do programa int main() { pthread_t tid_sistema[NTHREADS]; int t; t_Args *arg; //receberá os argumentos para a thread for(t=0; t<NTHREADS; t++) { printf("--Aloca e preenche argumentos para thread %d\n", t); arg = malloc(sizeof(t_Args)); if (arg == NULL) { printf("--ERRO: malloc()\n"); exit(-1); } arg->idThread = t; arg->nThreads = NTHREADS; printf("--Cria a thread %d\n", t+1); if (pthread_create(&tid_sistema[t], NULL, PrintHello, (void*) arg)) { printf("--ERRO: pthread_create()\n"); exit(-1); } } //--espera todas as threads terminarem for (t=0; t<NTHREADS; t++) { if (pthread_join(tid_sistema[t], NULL)) { printf("--ERRO: pthread_join() \n"); exit(-1); } } printf("--Thread principal terminou\n"); pthread_exit(NULL); }
the_stack_data/34512908.c
#include <stdio.h> typedef long long int64; double const pi = 3.141592; // круг struct circle { int64 r; // радиус }; double circle_perimeter(struct circle *c) { return 2.0 * pi * (*c).r; } // прямоугольник struct rectangle { int64 x, y; // ширина, высота }; double rect_perimeter(struct rectangle *r) { return (2.0 * ((*r).x + (*r).y)); } // треугольник struct triangle { int64 a, b, c; // ширина, высота }; double trian_perimeter(struct triangle *t) { return (*t).a + (*t).b + (*t).c; } struct figure { int64 key; union { struct circle c; struct rectangle r; struct triangle t; }; }; double figure_perimeter(struct figure *f) { double p; if((*f).key == 1) { p = circle_perimeter(&(*f).c); } else if((*f).key == 2) { p = rect_perimeter(&(*f).r); } else if((*f).key == 3) { p = trian_perimeter(&(*f).t); } else { p = 0.0; } return p; } struct figure f; int main() { f.c.r = 6; f.r.y = 8; f.t.c = 10; double p; p = circle_perimeter(&f.c); printf("%f\n", p); p = rect_perimeter(&f.r); printf("%f\n", p); p = trian_perimeter(&f.t); printf("%f\n", p); f.key = 0; p = figure_perimeter(&f); printf("%f\n", p); f.key = 1; p = figure_perimeter(&f); printf("%f\n", p); f.key = 2; p = figure_perimeter(&f); printf("%f\n", p); f.key = 3; p = figure_perimeter(&f); printf("%f\n", p); f.key = 10; p = figure_perimeter(&f); printf("%f\n", p); return 0; }