eightban's memo

残しておきたい記事をまとめてみました。このブログに書いてあるドキュメントやブログで配布しているファイルの使用によって発生するいかなる損害に対してもこのブログの管理者は責任を負いません。使用する場合は自己責任のもとに使用してください。

G'MIC windows オープンソース 画像

G'MICのフィルター画像の一覧を作成するためにパラメーターを取得する

更新日:

フィルターがたくさんあり確認するのは大変なのでパラメーターを取得します

perl の準備

テキストを加工するのに便利なインタープリターです

https://strawberryperl.com/

jperl Win32用の詳細情報 : Vector ソフトを探す!

ソースコード

正規表現を使っています。

my $current_function = "";
my @params;

while(<>) {
    chop if( /\n$/ );
    my $line = $_;

    # Detect function definitions
    if ($line =~ /^\#\@gui (\w.*):(\w+),(\w+)(\(\d+\))?.*$/) {
        if ($current_function) {
            print "$current_function " . join(",", @params) . "\n";
        }
        $current_function = $2;
        @params = ();
    }
    elsif ($line =~ /^\#\@gui (\w.*):(\w+)$/) {
        if ($current_function) {
            print "$current_function " . join(",", @params) . "\n";
        }
        $current_function = $2;
        @params = ();
    }
    elsif ($line =~ /^\#\@gui (\w.*):(\w+) :.*$/) {
        if ($current_function) {
            print "$current_function " . join(",", @params) . "\n";
        }
        $current_function = $2;
        @params = ();
    }
    # Detect float or int parameters
    elsif ($line =~ /^\#\@gui :[^=]+=(float|int)\(([\d.]+),[\d.]+,[\d.]+\).*$/) {
        push @params, $2;
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(float|int|_float|_int)\(([\d.-]+),.*\).*$/) {
        push @params, $2;
    }
    # Detect color parameters
    elsif ($line =~ /^\#\@gui :[^=]+=(_color|color)\(\#([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})\).*$/) {
        push @params, hex($2), hex($3), hex($4), hex($5);
    }
  
    elsif ($line =~ /^\#\@gui :[^=]+=(_color|color)\(\#([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})\).*$/) {
        push @params, hex($2), hex($3), hex($4);
    }
    # Detect bool parameters
    elsif ($line =~ /^\#\@gui :[^=]+=bool\((\d+)\).*$/) {
        push @params, $1;
    }
    # Detect _bool parameters and convert to 0 or 1
    elsif ($line =~ /^\#\@gui :[^=]+=(_bool|bool)\((true|false)\).*$/) {
        push @params, $2 eq 'true' ? 1 : 0;
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_bool|bool)\((\d)\).*$/) {
        push @params, $2;
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_bool|bool)\((.*)\).*$/) {
        push @params, 0;
    }
    # Detect choice parameters and extract the number after the comma
    elsif ($line =~ /^\#\@gui :[^=]+=(_choice|choice)\((\d+),.*\).*$/) {
        push @params, $2;
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_choice|choice)\(\"(.*)\",.*\).*$/) {
        push @params, 0;
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_choice|choice)\{(\d+),.*\}.*$/) {
        push @params, $2;
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_choice|choice)\{\"(.*)\",.*\}.*$/) {
        push @params, 0;
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_choice|choice)\((.*),.*\).*$/) {
        push @params, 0;
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(file|filein|_filein)\((.*)\).*$/) {
        push @params, qq("y:\\a.png");
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(fileout|_fileout)\((.*)\).*$/) {
        push @params, qq("y:\\b.png");
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_folder|folder)\((.*)\).*$/) {
        push @params, qq("y:\\temp");
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_text|text)\(\"(.*)\"\).*$/) {
        push @params, qq("$2");
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_text|text)\{\"(.*)\"\}.*$/) {
        push @params, qq("$2");
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_text|text)\((.*)\).*$/) {
        push @params, qq("$2");
    }
    elsif ($line =~ /^\#\@gui :[^=]+=(_text|text)\{(.*)\}.*$/) {
        push @params, qq("$2");
    }
    # Detect point parameters
    elsif ($line =~ /^\#\@gui :[^=]+=point\(([\d.\-,%]+)\).*$/) {
     #   push @params, split(/,/, $1);
        @array= split(/,/, $1);
        push @params, $array[0];
        push @params, $array[1];
    }
    elsif ($line =~ /^\#\@gui :_=value\(\-1\)$/) {
      if ($params[-1] =~ /^\".*\"$/) {
        push @params, $params[-1];
      }
      else {
        push @params, qq("$params[-1]");
      }
    }
    elsif ($line =~ /^\#\@gui :_=value\(([\d.\-,]+)\).*$/) {
        push @params, qq("$1");
    }
    elsif ($line =~ /^\#\@gui :_=value\(([\d.-]+)\).*$/ ) {
        push @params, $1;
    }
    elsif ($line =~ /^\#\@gui :_=value\{\"(.*)\"\}.*$/) {
        push @params, qq("$1");
    }
    elsif ($line =~ /^\#\@gui :_=value\(\"(.*)\"\).*$/) {
        push @params, qq("$1");
    }
    elsif ($line =~ /^\#\@gui :_=value\((.*)\).*$/) {
        push @params, qq("$1");
    }
    elsif ($line =~ /^\#\@gui :[^=]+=button\((\d+)\).*$/) {
        push @params, $1;
    }
    elsif ($line =~ /^\#\@gui :[^=]+=button\((.*)\).*$/) {
        push @params, 0;
    }

      # Ignore separator and note lines
    elsif ($line =~ /^\#\@gui :_=separator\(\)$/ || $line =~ /^\#\@gui :_=note\("<small>Author:.*$/) {
        # Do nothing
    }
    else {
print STDERR "$line" . "\n";

    
     
    }
}

# Print the last function and parameters if any
if ($current_function) {
    print "$current_function " . join(",", @params) . "\n";
}

パラメーター抽出用バッチファイル

findstr /C:"#@gui " "C:\Users\a\AppData\Roaming\gmic\update335.gmic" > Y:\temp\map.txt
findstr /V /C:"data:image" "Y:\temp\map.txt" > Y:\temp\ma.txt

findstr /V /C:"#@gui :_=note" "Y:\temp\ma.txt" > Y:\temp\ma2.txt
findstr /V /C:"#@gui :_=separator" "Y:\temp\ma2.txt" > Y:\temp\ma3.txt
findstr /V /C:"#@gui :_=link" "Y:\temp\ma3.txt" > Y:\temp\ma4.txt
findstr /V /C:"#@gui _<" "Y:\temp\ma4.txt" > Y:\temp\ma5.txt
findstr /V /C:"#@gui __<" "Y:\temp\ma5.txt" > Y:\temp\ma6.txt
findstr /V /C:"#@gui ___<" "Y:\temp\ma6.txt" > Y:\temp\ma7.txt
findstr /V /C:"#@gui <" "Y:\temp\ma7.txt" > Y:\temp\ma9.txt
C:\app\Perl\JPerl.exe C:\app\Perl\Heart.pl Y:\temp\ma9.txt > Y:\temp\m.txt 2> Y:\temp\stderr.txt
findstr /V /C:"_none_" "Y:\temp\m.txt" > Y:\temp\gmicpara.txt
START Notepad.exe Y:\temp\stderr.txt

timeout /t 55

フィルターのパラメーター

gui_download_all_data 0
fx_gmicky 0
fx_array_fade 2,2,0,0,80,90,0,0
fx_array_mirror 1,0,0,2,0,0,0
fx_array_color 5,5,0.5
array_random 5,5,7,7
fx_array 2,2,0,0,0,0
fx_asciiart 5," .oO0",16,15,16,2,0,0.2,0,0,"y:\temp","gmic_asciiart.txt"
fx_chessboard 64,64,0,0,0,0.25,0,0,0,255,255,255,255,255,0,50,50
fx_dices 2,24,1
fx_drawn_montage 0,0,0,0,-10,50,50,0,"0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0","0:0:0:0:50:50:0"
fx_extract_objects 0,0,20,50,0.3,0,0,1
fx_imagegrid 10,10
fx_imagegrid_hexagonal 32,0.1,1
fx_imagegrid_triangular 10,18,0,0,0,0,128
fx_loose_photos 60,40,50,100,50,360,0,2,255,255,255,50,25,0,0,0,0,0,0,50,1,1,1
fx_make_seamless 0,0,3,0,50,50
fx_frame_seamless 32,9,0,1,100,0,3,0,50,50
fx_ministeck 8,64,8,2,100,0.3,0
fx_montage 0,"V(H(0,1),H(2,V(3,4)))",1,0.5,0,0,0,0,0,255,0,0,0,0,0
fx_puzzle 5,5,0.5,0,0,0.3,100,0.2,255,100,0,0,0,0,0,0
fx_shuffle_patches 0,0,64,0,20,0
fx_taquin 7,7,0,50,5,0,0,0,0,255,0
fx_rotate_tileable 45,8,0
fx_isolate_tiles 10,10,5,5,1,1
fx_normalize_tiles 25,25,0,255,11
fx_parameterize_tiles 10,10,0
fx_shift_tiles 10,10,10,1
fx_rotate_tiles 5,5,15,3,3,1.8
gcd_aurora 6,1,0
fx_crayongraffiti2 300,50,1,0.4,12,1,2,2,0
fx_bokeh 3,8,0,30,8,4,0.3,0.2,210,210,80,160,0.7,30,20,20,1,2,170,130,20,110,0.15,0,50,50
fx_brushify 7,0.25,4,64,25,12,0,2,4,0.2,0.5,30,1,1,1,5,0,0.2,1
cartoon 3,200,20,0.25,1.5,8,0,50,50
fx_circle_abstraction 8,5,0.8,0,1,1,1,0,50,50
fx_ColorAbstractionPaint 5,10,1,0,1,0,1,0,0,0,0,0,0,0
fx_cpencil 1.3,50,20,2,2,1,0
cl_comic 0,2,0,1,1,15,15,1,10,20,6,2,0,0,0,0,0,0,50,50
fx_cubism 2,50,10,90,0.7,0,0,50,50
fx_cutout 4,0.5,4,1,0,50,50
fx_diffusiontensors 10,5,3,1,0.15,1,0,3,0,50,50
fx_doodle 30,2,2,1.5,2,70,1
fx_dreamsmooth 3,1,1,0.8,0,0.8,1,24,0
fx_ellipsionism 20,10,0.5,0.7,3,0.5,0,50,50
fx_feltpen 300,50,1,0.1,20,5,0,50,50
gtutor_fpaint 0.5,0.5,0.0,0,45.0,0.5,0.5,0.5,0
fractalize 0.8
fx_ghost 200,2,2,1,3,16,0,0,50,50
fx_graphic_boost4 1.25,2,0,0.15,14,0,1,0.5,0.45,2,0,0,0,1,1,1,0.5,0.45,1
fx_graphic_novelfxl 0,2,6,5,20,0,0.62,14,0,1,0.5,0.78,1.92,0,0,0,1,1,1,0.5,0.8,1.28
fx_hardsketchbw 300,50,1,0.1,20,0,4,0,50,50
fx_highlight_bloom 90,60,60,30,20,0,50,50
fx_poster_hope 0,3,0,50,50
fx_houghsketchbw 1.25,10,5,80,0.1,4,0,50,50
fx_illustration_look 100,100,0,0,0,0
fx_kuwahara 2,5,0,0,0,50,50
cl_lineart 0,0,2,1,15,15,1,0,6,2,2,0,0,0,50,50
fx_linify 40,2,40,10,24,0,1,0,50,50
fx_lylejk_painting 10,2,4,10,0,50,50
fx_Squiggly 2,12,0.8,0,0.5,1,0,0,3,0.2,0.4,0,1,1,0
fx_MorphoPaint 1,18,2,25,100,230,8,3,4,0.5,2,0.5,200,1,1,1,1,1,1,1,1,0
fx_paint_with_brush 0,"0",1,16,30,100,100,10,80,0.5,3,45,0,6,2,10,0,0,0,60,20,1,0,0,0,30,15,15,15,15,15,15,1,45,0,0,50,50
fx_painting 5,2.5,1.5,50,1,0,50,50
fx_pastell 0.6,1,0,20,30,300,1,30,1,1,0.5,0,0,10,3,0,9,3,0,12,0
fx_pen_drawing 10,0,50,50
fx_tk_photoillustration 0,0.25,0,0.30,0.50,0.50,1.00,0,5.00,0,1,0,0,1,0,0,1.2,98.5,5,0.5,0,0,0,0,0,1,0
fx_polygonize_delaunay 40,5,75,0.5,3,50,0,0,0,255,1,0,50,50
fx_polygonize 300,10,10,10,10,0,0,0,255,0,50,50
fx_poster_edges 20,60,5,0,10,0,0,0,50,50
fx_posterize 150,30,1,12,0,0,0,0,50,50
fx_pdithered 1,1,0,0,20,1,0,1,0
fx_quadtree 0,1024,0.5,0,3,1.5,1,1,0,50,50
fx_rodilius 10,10,300,5,30,0,1,0,0,0,50,50
fx_shapeism 2,7,0.38,0,1,5,32,8,3,1,5,0.5,1,0,0,0,255
fx_sharp_abstract 4,10,0.5,0,0,50,50
fx_SimpleNoiseCanvas 0,3,2,5,5,0,255,0,2,0,0,0,1,0,255,255,255,255,0
fx_sketchbw 3,45,180,30,1.75,0.02,0.5,0.75,0.1,0.7,3,6,0,1,4,0,0,50,50
fx_smooth_abstract 75,0,20,1,30,0,50,50
fx_stringify 2,32,20,1,100,32,20,25,0,0,0,0,0,50,50
fx_stylize 0,5,0,1,0.5,2,3,0.5,0.1,3,3,0,0.7,1,0,1,0,5,5,7,1,30,2,2,1.85,0
fx_vector_painting 9,0,50,50
warhol 3,3,2,40
fx_draw_whirl 20,0,50,50
fx_stencilbw 10,10,0,0,0,50,50
fx_blackandwhite 0.299,0,0.587,0,0.114,0,0,0,0,0,0,0,0,0,2,0,0,0,16,4,0,0,0,50,50
fx_charcoal 65,70,170,0,1,0,50,70,255,255,255,0,0,0,0,0,50,50
fx_colorize_interactive 0,0,1,"y:\a.png","y:\a.png","y:\a.png",0,"0,0","0,0"
fx_recolorize 2,0.2,0
fx_bwrecolorize 0,0,0,0,0,1,0,5,0,0,0,255,43,25,55,255,158,137,189,255,224,191,228,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,50,50
fx_autofill_lineart 90,1,8,0,0
fx_colorize_lineart 0,1,0,0.05
fx_colorize_lineart_smart 0,95,0,0,1,24,200,0,75,2,60,20,90,1,10,1,0
fx_gcd_norm_eq 0.5,0.5,2,0
fx_ditheredbw 0,0,0,0,0,0,0,50,50
fx_engrave 0.5,50,0,8,40,0,0,0,10,1,0,0,0,1,0,50,50
fx_filaments 50,50,75,30,10,0,1,1,1,1,1,50,0
fx_freaky_bw 90,20,0,0,0,0,50,50
fx_ink_wash 0.14,23,0,0.5,0.54,2.25,0,2,6,5,20
fx_gcd_layeretch 11,4,12,0.12,100,8.5,5,0,0,3,1,1,0
fx_pencilbw 0.3,60,0,0,0,50,50
fx_pencil_portraitbw 30,120,1,0.5,144,79,21,0,50,50
fx_stamp 1,50,0,0,0,0,1,0,50,50
fx_gcd_etch 125,153,171,185,0.1,50,80,50,10,15,12,20,0,1,0.3,1,0,0
fx_color_abstraction 1,10,0.2,0,50,50
fx_apply_haldclut 2,"y:\a.png",100,0,0,0,0,0,0,0,50,50
apply_from_clut_set "y:\a.png",1,100,0,0,0,0,0,0,0,50,50
fx_adjust_colors 0,0,0,0,0,0,50,50
fx_boost_chroma 50,0,0,50,50
fx_boost_fade 5,0,0,50,50
afre_brightness 50,0
fx_channel_processing 0,0,0,0,0,0,100,256,0,0,0,2,0,0,50,50
fx_channels2layers 0
fx_clut_from_ab 0,4,0,"y:\temp","output.cube",50
iain_cmyk_tone_p 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,0,0
fx_balance_gamma 128,128,128,1,0,50,50
colorblind 0,0,50,50
jl_colorgrading 0.,0,1,1,0,0,0,0,0,0,1,0,0,0,70,0,0,0,0,0,70,180,0,1,0,0,0
fx_mask_color 13,10,5,0
fx_color_presets 21,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,512,100,0,0,0,0,0,0,0,50,50,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"
fx_tk_colortemp 0,0,0
fx_colorful_blobs 1,200,200,200,0,1,25,25,50,50,255,0,0,"-1,-1,-1,-1",75,25,50,50,0,255,0,"-1,-1,-1,-1",50,75,50,50,0,0,255,"-1,-1,-1,-1",5,90,50,50,255,255,0,"-1,-1,-1,-1",5,90,50,50,255,0,255,"-1,-1,-1,-1",5,90,50,50,0,255,255,"-1,-1,-1,-1",5,90,50,50,255,255,255,"-1,-1,-1,-1",5,90,50,50,0,0,0,"-1,-1,-1,-1",5,90,50,50,255,128,64,"-1,-1,-1,-1",5,90,50,50,255,64,128,"-1,-1,-1,-1",5,90,50,50,128,64,255,"-1,-1,-1,-1",5,90,50,50,64,128,255,"-1,-1,-1,-1"
fx_colormap 2,1,32,8,0,0,0,255,255,255,255,0,0,0,255,0,0,0,255,255,255,0,255,0,255,0,255,255,0,50,50
afre_contrast 50
fx_curves_interactive 0,0,0,"0","0,0,100,100,-1,0,0,100,100,-1,0,0,100,100,-1,0,0,100,100,-1,0,0,100,100"
fx_customize_clut 100,0,10,0,0,0,0,0,0,0,8,0.5,1,0,0,0,0,0,0,1,255,255,255,255,196,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
afre_darksky 0,0,1,0
fx_decompose_channels 7,0,0,1
fx_detect_skin 1,0.5,0.5,1,1,50,50,5,1,0,50,50
fx_equalize_hsv 1,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50
fx_hsv_equalizer 0,180,40,0,0,0,180,40,0,0,0,180,40,0,0,0
gcd_hsl 1,0,0,180,0.2,0,1,1,0
gcd_hsv_select 0,0.5,1,180,0.5,0.5,2,2,18,0,0,0
iain_hue_light_dark_p 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,100,255,0,0,0
afre_localcontrast 1,50
fx_tk_metallic 1,0,0,0
fx_mix_cmyk 1,0,0,1,0,0,1,0,0,1,0,0,0,2,0,50,50
fx_mixer_generic 7,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,50,50
fx_mix_hsv 1,0,0,1,0,0,1,0,0,0,2,0,50,50
fx_mix_lab 1,0,0,1,0,0,1,0,0,0,2,0,50,50
fx_mix_pca 0,0,0,0,0,0,0,0,0,0,0,0,1,"-1,-1,-1,-1","0,0,0,0,0,0,0,0,0,0,0,0",0,50,50
fx_mix_rgb 1,0,0,1,0,0,1,0,0,0,2,0,50,50
fx_mix_ycbcr 1,0,0,1,0,0,1,0,0,0,2,0,50,50
fx_random_color_transformation 0,0,"1",100,0,0,0,0,0,0,50,50
fx_retinex 75,16,1,1,1,5,15,80,250,0,50,50
fx_retrofade 20,6,40,0,50,50
iain_rgb_tone 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,0
Saturation_EQ_p 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
fx_select_color 0,20,0,0,255,255,255,255,0,255,0,0,255,0,50,50
fx_selective_desaturation 255,255,255,0,3,0,0,0,50,50
fx_sepia 0,0,0,0,50,50
fx_simulate_film 0,1,1,1,1,1,1,1,1,1,512,100,0,0,0,0,0,0,0,50,50
afre_softlight 50,0
gcd_hio_levels 1,1,39,0,1,1,0,0,0,"0"
iain_tone_presets_p 0,100,0,0
fx_transfer_histogram 0,0,1,1,0,50,50
fx_gcd_transfer_colors_patch 6,3,5,5,0,0
fx_transfer_pca 0,0,1,1,0,50,50
fx_transfer_rgb 8,0.2,1,0,0,1,1,0,50,50
fx_tune_hsv 2,0,0,0,100,100,100,2,255,255,255,100,100,100,1,128,128,128,0,50,100,0,255,0,0,100,12.5,0,0,255,255,0,100,12.5,0,0,0,255,0,100,12.5,0,0,0,255,255,100,12.5,0,0,0,0,255,100,12.5,0,0,255,0,255,100,12.5,0,2,0,50,50
fx_custom_transform "i","i + 90*(x/w)*cos(i/10)","i","i","i","i",0
fx_vibrance 0.5,0,50,50
fx_tk_vintage 2,0.85,0.7,80,200,5,147,26,161,0.3,235,220,176,0.4,190,181,108,0.2,0,0,100,0,0.3,25,0,0
fx_zonesystem 1,10,1,1,0,255,0
fx_convolve 0,1,"0,1,0;1,-4,1;0,1,0",1,1,0,0,50,50
fx_curvature 2,0,100,0,0,0,50,50
fx_dog 1.4,1.5,0,0,1,0,50,50
fx_distance 128,2,2,32,0,50,50
afre_edge 0,1,1,1,1
fx_edges 0,15,0,0,50,50
fx_canny 5,0.05,0.15,1,0,50,50
fx_edge_offsets 0,15,4,1,0,0,50,50
fx_extract_foreground 0,0,3,1,"0,0","0,0"
fx_gradient_norm 0,0.5,0,100,0,0,50,50
fx_gradient2rgb 0,0,100,0,0,0,50,50
fx_isophotes 8,0,1,0,50,50
fx_laplacian 0,0,100,0,0,0,50,50
fx_local_orientation 0,0,100,0,0,0,50,50
fx_morphological 0,0,5,"1,0,1; 0,1,0; 1,0,1",0,0,0,0,0,50,50
fx_segment_watershed 2,1,0,0,0,50,50
fx_skeleton 0,0,0,50,50
fx_superpixels 16,10,5,1,1,1,0,0,0,255,0,50,50
fx_thin_edges 0,15,0,0,50,50
fx_breaks 0,30,30,0.5,3
fx_custom_deformation "(w*a%)*cos(b*y/h)","(h*c%)*cos(d*x/w)",1,1,3,10,10,10,10
fx_circle_transform 50,50,75,50,-2,-2,0,1,3,1
fx_conformal_maps 8,1,0,"1,"((1.1 + i*z/6)/(1.04 - i*z/6))^6.2"",0,0,0,0,0,3,0,0,"1024","1024"
souphead_droste10 40,100,1,1,1,0,0,0,0,0,1,10,1,0,90,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0
fx_crease 30,10,3
fx_distort_rbf 10,10,90,10,10,90,90,90,3,"r",0
fx_distort_lens 0.1,0,0,50,50,0
fx_drop_water 0,20,2,80,0,3,35,10,1,0.5,0.25,0.5,0.75,0.05,0.15,1
fx_equirectangular2nadirzenith 0
fx_euclidean2polar 50,50,1,1,0
fisheye 50,50,70,1
fx_flower 50,50,75,50,6,0,3
fx_rotoidoscope 50,50,10,0.5,3
fx_kaleidoscope 50,50,0,0,100,10,3
fx_symmetrizoscope 4,0,3,0
fx_morph_interactive 16,2,"2"
fx_warp_perspective 1.73,0,1,50,50,0,0,2
fx_poincare_disk 5,6,100,20,0,1,1,1,50,50,0,0,2,0,0,0,0,0,0,255,255,255
fx_transform_polar 0,50,50,"r + R/10*cos(a*5)","a",3
fx_quadrangle 5,5,95,25,60,95,40,95,1,3,1
raindrops 80,0.1,1,0
deform 10
fx_reflect 50,1,110,160,190,64,0,1.5,0,-3.30,7,1.5
ripple 10,20,2,0,0
fx_seamcarve 85,100,15,0,1
fx_map_sphere 512,512,90,0.5,0,0,20,0,0,0,0.5
fx_spherize 50,1,0,50,50,0,0,2,0
fx_square_circle 0,1,0,0,0,0,0
fx_square_circle_alt 0,50,50,100,0,0,1,0,1,0,50,50
fx_project_stereographic 0,50,50,50,75,0,0,0,0,0,"50,50"
fx_symmetrize 50,50,50,75,0,0,0,0
fx_textured_glass 40,40,1,1,0,2,0,0,50,50
fx_twirl 1,50,50,3
fx_warp_interactive 1,2,0,"0"
water 30,1.5,45
wave 10,0.4,50,50
fx_wind 20,0,0.7,20,1,0,0,0,50,50
fx_zoom_v2 "50","50",50,50,75,50,1,0
fx_simulate_grain 0,1,0.2,100,0,0,0,0,0,0,0,0,0
fx_blur_angular 2,50,50,0,1,7,0
fx_blur_bloom 1,2,5,0,1,0,0,0,7,0,50,50
fx_blur_dof 3,16,0,0,50,50,30,30,0,1,1,0
fx_gaussian_blur 3,0,0,1,0,0,0,50,50
fx_glow 6,7,0,0,50,50
fx_blur_linear 10,0.5,0,0,1,7,0,0,50,50
fx_blur_motion 0,1,0,"0",50,50,50,50,50,50,50,50,50,50,1,75,0,3
fx_blur_multidirectional 5,0,360,150,0,1,0,2,2,7,0,50,50
fx_blur_radial 3,50,50,0,1,7,0
fx_chromatic_aberrations 255,0,0,0,2,2,0,50,1,0,255,0,0,0,0,0,0,1,0,50,50
fx_crt_phosphors 0,3,0,0,4,50,1,0,0,0,1,0,50,50,0
fx_crt_scanlines 4,16,1,0,1,1,0,0,50,50,0
fx_gcd_crt 1.8,1.8,0,0
fx_dirty 30,1,0,0,0,50,50
fx_flip_blocks 4,4,3,1,0,0,50,50
fx_huffman_glitches 30,0,25,0,0,0,0,0,50,50
fx_jpeg_artefacts 50,0,50,50
fx_lomo 20,0,50,50
fx_mess_with_bits 1,15,1,1,0,15,100,0,0,50,50
fx_noise 10,0,0,1,0,50,50
fx_noise_gradient 100,0,0,2,0,50,50
fx_noise_perlin 0,100,8,0,0,4,0,0,2,0,0,1,0,2,0,50,50
fx_spread 4,4,0,0,0,50,50
fx_stripes_y 10,0,0,0,50,50
fx_8bits 25,800,16,0,50,50
fx_pixelsort 1,0,0,1,0,100,0,0,0
fx_rain 65,10,50,0.1,1,1,0,50,50
fx_shade_stripes 30,1,0.8,1.3,0,0,0,50,50
fx_rebuild_from_similar_blocks 5,10,0.75,1
fx_scanlines 60,2,0,0,0,0,0,0,50,50
fx_self_glitching 0,0,0,0,50,50,3,0,0,50,50
pr_sloppymess 0,1,0,0,-1,0,35,-35,2,0,0,3,1,3,100
fx_streak 255,0,0,255,0,0,3
fx_watermark_visible "\\251 G'MIC",0.4,27,50,0,25,1,0.5
fx_warp_by_intensity 0.04,0.04,128,128,0,1,3,0,0,50,50
iain_constrained_sharpen .75,2,1,5,0,11,1
jeje_dehaze 5,1,.2,1,0,0,0,0,0
fx_equalize_details 5,0.5,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,11,0,0,32,0,50,50
fx_tk_dri 0,0,0,1,0.5,1,1,0
fx_equalize_local_histograms 75,2,4,100,8,1,16,0,50,50
fx_freaky_details 2,10,1,11,0,50,50
fx_highpass 5,2,0,0,0
fx_LCE 80,0.5,1,1,0,0
fx_normalize_local 2,6,5,20,1,11,0,50,50
fx_local_processing 0,75,10,50,20,0,7,0,50,50
jeje_normalize_local_variance 50,5,5,1,0,0
fx_magic_details 6,3,15,-0.5,2,27,0,50,50
make_up 15,4,0,0,0
fx_tk_mask 0,0,0,255,0,1,0,0,1,0
fx_mighty_details 25,1,25,1,11,0,50,50
fx_tk_portrait 0,100,1,5,20,3,20,10,0,0,1,2,25,2,250,180,150,255,0,0,1,1.5,10,1,0,0,1,1,0,0
iain_pyramid_processing 4,50,.5,0,0
fx_sharpen_alpha 100,5,50,100,0,0,50,50
fx_deblur 2,10,20,0.1,1,11,0,24,0,50,50
fx_unsharp_goldmeinel 1,5,1,1,1,11,0,24,0,50,50
jeje_hessian_sharpen 3,1,1,0,0
fx_sharpen_inversediff 50,2,11,0,50,50
fx_sharpen_multiscale 15,20,11,0,50,50
fx_unsharp_octave 4,5,3,0,0,1,24,0,50,50
fx_unsharp_richardsonlucy 1,10,1,1,0,50,50
fx_sharpen_shock 150,0.1,0.8,1.1,1,0,0,50,50
fx_sharpen_texture 1,4,16,0,50,50
fx_unsharp 1,1.25,10,2,0,1,1,1,0,0,0,50,50
jeje_whiten_frequency 50,0,0
fx_split_details_alpha 0,0,10,1,0
fx_split_details_gaussian 6,10,1,0
fx_split_details_wavelets 6,0,0
jeje_spotify 1,1,1,1,11,0
afre_texture 0,0,0
iain_texture_enhance_p 2,2,30,0,11,0,0
gcd_tone_enhance 0,1,0,1,128,0,1,0.5,0,0,4,0,0
fx_map_tones 0.5,0.7,0.1,30,0,0,50,50
fx_map_tones_fast 3,0.5,11,0,50,50
fx_yag_soften 0,0,0
fx_droste 20,20,80,20,80,80,20,80,1,0,0,0,1,0,1,0,0
fx_frame_blur 30,30,0,5,0,0,128,128,128,0,5,255,255,255,2,2,1,0,0.5,0.5,0
fx_frame_cube 3,50,50,0,0,0,0
fx_frame_fuzzy 5,5,10,1,255,255,255,255
fx_frame_mirror 10,10,50,50,0,0,0,0,0.75
fx_frame_painting 10,0.4,6,225,200,120,2,400,50,10,1,0.5,123456,0
fx_frame_pattern 10,1,1,1
fx_frame 0,100,0,100,10,10,0,0,0,255,1,255,255,255,255
cl_reliefFrame 2,10,1.5,75,1,60,0,0,0,0,192,192,192,0,0,0
fx_frame_round 10,10,20,0.1,0,0,0,255
fx_frame_smooth 10,10,0.25
fx_old_photo 200,50,85
fx_polaroid 10,20,0,0,3,0,0,20,50,70,95
fx_tunnel 4,80,50,50,0.2,0
fx_vignette 70,70,95,0,0,0,255
fx_bandpass 0,100,0,2,0,50,50
fx_display_fft 
fx_fourier_transform 1
fx_fourier_old 0,1
fx_watermark_fourier "(c) G'MIC",53
fx_align_layers 0,0.7,0,0
fx_blend_average_all 0
fx_blend_edges 1,0.8,0
fx_blend_fade 1,0,0,5,0,0,0,0,0,0,"cos(4*pi*x/w) * sin(4*pi*y/h)"
fx_blend_median 0
fx_blend_seamless 0,0,25,0,0
fx_blend 6,0,100,1,"1/2 - 1/4*cos(pi*a) - 1/4*cos(pi*b)"
fx_split_colors 50,16,1,0
fx_fade_layers 10
append_tiles 0,0
fx_morph_layers 10,0.2,0.1,0
fx_apply_multiscale 4,25,100,0,3,0.5,0.5,0,0,0.5,0.5,0,"",0,0
fx_pack 2,1,1,0,16,1,0,"y:\temp"
fx_smbl 0,50,25,50,50,50,75,50,100,50,"0,50","100,50",5,0
fx_stroke 3,50,0,2,1,100,0,0,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,1,0
fx_tiles2layers 3,3,0
fx_tones2layers 3,85,170,0.5,0
fx_burn 0.5,30,1,0,0,0,50,50
fx_dodgeburn 15,1.5,25,10,40,1.5,25,10,0,0,10,0
fx_drop_shadow 3,3,1.8,0,0,0,0,0,1,1
fx_drop_shadow3d 0,0,0,0,1,1,2,0.5,0,0,0,200,0
fx_equalize_light 75,0,11,0,50,50
fx_equalize_shadow 1,0,50,50
fx_guided_lightrays 10,2,0,80,0.1,50,50,50,255,255,255,7,100,1
fx_illuminate_shape2d 0,0,255,0,0,255,1,1,4,0,0,3,1,0.5,4,10,75,30,40,40,80,0.2,1,0,0,2,-2,2,0,0,0
fx_lightglow 30,0.5,8,0.8,0,0,50,50
fx_light_leaks 0,0,1,1,0,85,2,1,0,50,50
fx_light_patch 5,0.7,2.5,0
fx_lightrays 30,50,50,1,0.5,0,255,255,255
fx_pop_shadows 0.75,5,1,0,50,50
fx_light_relief 0.3,0.2,0.2,0,1,50,50,5,0.5,0,0
fx_shadow_patch 0.7,0
fx_slice_luminosity 1,1,2,1,0,64,0,0,1,64,128,0,0,0,128,192,0,0,0,192,255,0,0
albers_projection 0,0,0,0,0,20,60,180,360
azimuthal_equidistant_projection 0,0,0,0,0,180
conic_equidistant_projection 0,0,0,0,0,20,60
cylindrical_equal_area 0,0,0,45,0,"acos(sqrt(1/pi))"
eckert_iv_projection 0,0,0,0
eckert_vi_projection 0,0,0,0
lambert_azimuthal_projection 0,0,0,0,0,180
lambert_conformal_conic_projection 0,0,0,0,0,20,60,180,360
mercator 0,0,0,0,85
mollweide_projection 0,0,0,0,0
orthographic_projection 0,0,0,0,0
rotate_equirectangular_map 0,0,0,0
sinusoidal_map 0,0,0,128,128,128,100,1
triangular_projection 0,0,0,128,128,128,100,1,50
rgb2bayer 0,1
fx_boxfitting 3,0,0.25,2,0
fx_camouflage 9,12,100,30,46,33,75,90,65,179,189,117,255,246,158
fx_canvas 70,45,400,1,70,135,400,0,50,50
texturize_canvas 20,3,0.6
jeje_clouds 50,.5
fx_cracks 30,1,255,255,255,128,0,0,50,50
fx_crystal 50,0.2,20,1,0,50,50
fx_crystal_background 10,25,0,100,1
jeje_fibers 10,50,10,0
jeje_freqy_pattern 50,33,50,0
fx_halftone 0,0,0,0,5,8,8,5,0.1,0,50,50
fx_generic_halftone 0,1,100,10,1,0,4,0,75,1,0,"-1"
fx_hearts 2,0,0,50,50
hedcut 0.5,0.5,0.5,0.0,0.5,0,1,0
fx_lava 8,5,3,0,0,50,50
fx_marble .5,1,0,0,.4,.6,.6,1.1,0,100
fx_maze 24,1,0,1,0
fx_mineral_mosaic 1,2,1,100,0
fx_mosaic 50,0,0,50,50
fx_shapes 1,16,10,2,5,90,0,0,1,1,0
fx_pack_ellipses 3,20,0,30,100,6,1,3,0,0,0,255,0,0
fx_pack_sprites 5,25,3,1,7,0,512,512
fx_paper 0,0,50,50
jeje_periodic_dots 6,4,0,1,0
fx_pills 0,4,0,4,0,4,0,4,0
fx_plaid_texture 50,2,0,90,1,300
fx_polka_dots 80,20,50,50,0,0.5,0.1,1,255,0,0,255
fx_color_ellipses 400,8,0.1
fx_random_pattern 1024,2,4038,0,0,0,0,0,0
fx_random_rectangles 10,100,0,0,0,0
jeje_rays 50,50,10,0,0.5,255,0,0,255,255,0,0
fx_reaction_diffusion 5,5,0
syntexturize 1024,1024,0,0,50,50
syntexturize_matchpatch 512,512,0,7,5,1,0,0,50,50
fx_rorschach 3,1,2
fx_satin 20,1,0,0,0,0,255,255,255,255,255,0,0,0,-50,0,0
fx_mad_rorscharchp 3,0,50,1,300,0,0,0,0
fx_seamless_turbulence 15,20,0,1,3,0
fx_shockwaves 10,10,20,0,0,50,50
fx_sponge 13,0,0,50,50
fx_stained_glass 40,0.1,0,1,1,0,0,0,0,50,50
fx_stars 10,0,32,5,0.38,0,255,255,100,200
fx_stencil 3,0,8,0,2,0,0,50,50
jeje_strip 45,50,0,1,0
fx_tetris 10
fx_triangular_pattern 43,7,4,4,4,0,0,0,100,0,0,0,160,1
fx_truchet 32,5,1,1,0
jeje_turing_pattern 1,2000,.1,.899,-.91,2,.1,.25
fx_voronoi 160,1,0.5,50,3,1,0,0,0,100,2,255,255,255,40,1
weave 6,65,0,0.5,0,0,0,0,0
fx_whirls 7,2,0.2,1.8,11,0,50,50
fx_blocks3d 32,0,4,1.5,30,60,45,50,50,0,-50,-100,0.5,0.7,1,1,0,0,0,128
fx_coloredobject3d 1,128,128,128,255,0.5,0.5,0.5,57,41,21,45,0,0,-100,0.5,0.7,4,1
fx_elevation3d 100,1,1024,1024,0.8,25,0,21,45,0,0,-100,0.5,0.7,2,1,0
fx_extrude3d 10,512,0.6,1024,1024,0.5,57,41,21,45,0,0,-100,0.5,0.7,4,1,0
fx_imageobject3d 1,1024,1024,0.5,57,41,21,45,0,0,-100,0.5,0.7,4,1
fx_lathing3d 76,2,361,1024,1024,0.5,0,0,0,45,0,0,-100,0.5,0.7,4,1,0
fx_mesh3d "y:\a.png","0",80,50,50,70,60,60,50,50,"50","50",0,0,0,5,0,2,200,200,200,100,1,50,50,0
fx_random3d 0,50,3,100,45,0,0,-100,0.5,0.7,3,1
gtutor_abn 60,40,1,50,50,1,50,50,1,50,50,1,5,255,255,255,255,100,100,0
fx_memoakten_algorithm_a 0,20,30,30,2,50,10,50,40,3,60,1,0,0,0,255,255,255,255,0,0,255,128,0,255,255,0,0,0,0
fx_ball 128,0.8,1,1.5,255,0,255
fx_circle_art 1,15,0.5,8,1,1,15,0,0,0.5,1,1,1,1
cl_colorWheel 200,80,0,0,0,0
fx_equation_parametric "sin(t)*(exp(cos(t))-2*cos(4*t)-sin(t/12)^5)","cos(t)*(exp(cos(t))-2*cos(4*t)-sin(t/12)^5)",0,100,4096,1,0,64,0,0,128,0,0,1,1,1
fx_equation_plot "X*c+10*cos(X+c+u)",-10,10,100,3,2,0
fx_generate_random_portrait 800,0
fx_corner_gradient 255,255,255,128,255,0,0,255,0,255,0,255,0,0,255,255,1
fx_custom_gradient 0,0,0,1,4,1,0,128,100,100,2,0,1,0,"",1,0,0,0,0,255,255,0,0,255,255,255,0,255,255,255,255,255,0,255,255,255,0,255,0,255,0,0,255,255,128,128,128,255,255,0,255,255,0,0,0,0
fx_line_gradient 0,0,100,100,100,0,0,0,1,"y:\b.png"
fx_linear_gradient 0,0,0,255,255,255,255,255,0,45,0,100,0
fx_radial_gradient 0,0,0,255,255,255,255,255,0,0,100,50,50,0
fx_random_gradient 32,0,0,128,128,128,1
gtutor_hairlock 0.5,0.5,0.5,255,255,0,255,0.5,45,0.5,0.5,0
fx_hypotrochoid 37,100,74,80,0.5,255,255,255,255,1
fx_lightning 20,90,256,3,1.5,0.75,255,255,255,255,0,50,5,0,6,0.2,25,60,95,100,30,40,-0.25,-0.1,-0.20
fx_lissajous 4096,0.9,0.9,3,8,7,0,0,0,0,0,0,0,4,255,255,255,255
fx_mandelbrot "-2","-2","2","2",0,1024,0.317,0.03,16,8,255,50,50,0.75,0,0,0,0
fx_neon_lightning 50,50,0,50,50,100,50,0.7,3,130,80,50,0.25,0
fx_newton_fractal "-2","-2","2","2",2,"rot(35°)*z^^3 - z^^2 + 1","3*z^^2 - 2*z","6*z - 2",1,200,2,1,16,8,255,2,100,150,20,400,3,2,"carg(-z)","(i0 + i1)/2","10*(i2^0.4)",0,0,0,0,0,0,0,2,"0",50,50,0.5,0,0,0,0,0,1,2
fx_plasma 0.5,0,8,0,0,128,128,128
fx_quick_copyright "\\251 John Doe",24,10,0,255,255,255,90,3,0,0,0,4,1,1,-180
fx_rainbow 80,80,175,175,3,80
fx_random_signature 16,16,10,10,90,90,1.5,0,75,0,0,0,255,1,0
fx_rec_tileit 1.0,5.0,1.5,1,4,0,45.0,0.5
fx_shadebobs 50,5,200,1,-1,2,1,0.8,0,8
fx_sine_curve 1,"1",75,1,1,0.5,0.5,0.5,1,1,0,800,800,1,90,0,0,90,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,8,50,50,"50","50",68,68,75,50,"75","50",3,2,40,255,255,255,2,1
fx_spline_spirograph 0,0,50,100,20,3,50,0,3,0,0,50,50,1
fx_superformula 4096,0.9,0.9,8,1,5,8,0,0,0,3,128,255,128,255
fx_symmetric_shape2d 5,50,50,"50,50",50,30,"50,30",50,25,56,42,52,52,52,52,52,52,52,52,1,255,0,255,100
cl_tangentialCircle 1,100,0,1,5,1,255,255,255,0,0,0,0
gui_rep_tfrac 0,0,10000,255,3,0,0,1,1,1,1,0,0,0,"a/sin(b)","b/cos(a)","sin(a)/cos(b)","b/cos(a)","a/sin(b)","b/cos(a+b)","a","b","a","b",0,1,"a/(cfb*cos(b))","b/(cfa*sin(a))","cos(vx)/tan(vx)","sin(vy)/tan(vy)",1,0,0,3,0
fx_tree 11,10000,0,0,15,150,0,2.15,0.8,-40,40,10,75,0,70,20,40,25,0,255,100,70,140,60,255,100,0.4,0.4
fx_turbulence 128,6,4,0,0
fx_twisted_rays 50,50,9,50,50,25,255,255,255,255,1
pr_underwoods 2,30,50,5,10,10,0.7,208,208,156,34,500,1,255,255,255,0.4,0,0,10,4,2,0.4,0,20,15,10,0,1,15,10,0,0.8,100,0,0,40,30,0,40,20,0,20,10,0,0,0,0,0.2,34,0
banding_denoise_v2 5,5,5,10,0,0,0,50,50
bayer2rgb 6,6,4
afre_cleantext 8,1,80,95
deinterlace 0,0,50,50
gcd_deinterlace2x 40,0,0,2,0,1
fx_denoise 0,1,0,0,50,50
afre_denoisesmooth 3,10
afre_denoisesmooth_alt 3,10
fx_pahlsson_descreen 0
gcd_despeckle 20,10
iain_nr_2019 1,0,0,0,0.5,1,0,5,3,0,3,0,.5,4,0
iain_fast_denoise_p 0,0,1,0,0,0,1
fx_inpaint_holes 4,20,1
fx_inpaint_morpho 255,0,0,255,0
fx_inpaint_matchpatch 0,9,10,5,1,255,0,0,255,0,0
fx_inpaint_patch 7,16,0.1,1.2,0,0.05,10,1,255,0,0,255,0,0
fx_inpaint_pde 75,1,20,255,0,0,255,0
local_similarity_mask 50,50,50,128,4,10
iain_pixel_denoise_p 2,1,11,0,1
iain_recursive_median_p 3,1,0,0,1
red_eye 75,3.5,0.1
fx_remove_hotpixels 3,10,0,50,50
jeje_scandoc 3,1,90,5,0
fx_smooth_anisotropic 60,0.7,0.3,0.6,1.1,0.8,30,2,0,1,1,0,0,50,50
fx_smooth_antialias 5,10,0.8,0,50,50
fx_smooth_bilateral 10,7,2,0,0,50,50
jeje_denoise_patch_dict 1,8,1.1,1.1,0,0
fx_smooth_diffusion 0.7,0.3,0.6,1.1,15,8,0,0,24,0,50,50
fx_smooth_guided 0,5,30,1,0,0,50,50
jeje_denoise_iuwt 3,4,2,0
fx_smooth_meancurvature 30,4,0,0,0,24,0,50,50
fx_smooth_median 3,255,0,0,50,50
fx_smooth_nlmeans 4,4,10,3,0,0,24,0,50,50
fx_smooth_patch 10,10,3,5,0,1,1,0,0,24,0,50,50
fx_smooth_patchpca 4,7,11,7,0,0,50,50
fx_smooth_peronamalik 20,5,5,0,0,0,24,0,50,50
fx_smooth_selective 5,0.5,5,1,0,0,24,0,50,50
fx_smooth_skin 2,0.5,1,1,1,50,50,5,2,0.2,3,1,0.05,5,0,50,50
fx_smooth_anisotropic 60,0.9,0.64,3.1,1.10,0.8,30,2,0,1,1,0,0,24
fx_smooth_tv 30,10,0,0,0,24,0,50,50
fx_smooth_haar 1,10,10,0,0,24,0,50,50
jeje_local_wiener 2,11,0,0
fx_solidify_td 75,1,20,0,1,0,50,50
unpurple 1,0,0,0.33,5,0,"0",0,50,50
jeje_unstrip 1,20,4,1,0,0
fx_scale_dcci2x 1.15,5,0
fx_upscale_smart "200%","200%",2,0.4,50
fx_scalenx 0,0
fx_animate_elevation3d 10,1,0,"y:\temp",100,1,1024,1024,2,0.8,35,0,0,45,0,0,-100,0.5,0.7,0.8,35,0,360,45,0,0,-100,0.5,0.7
fx_animate_extrude3d 10,1,0,"y:\temp",10,512,0.6,1024,1024,4,0.8,35,0,0,45,0,0,-100,0.5,0.7,0.8,35,360,0,45,0,0,-100,0.5,0.7
fx_animate_imageobject3d 10,1,0,"y:\temp",1,1024,1024,4,0.5,57,41,21,45,0,0,-100,0.5,0.7,0.5,57,401,21,45,0,0,-100,0.5,0.7
fx_text_pointcloud3d 64,"G'MIC","Rocks!",1,200,220,255,255,255,255,255,2,2,1,19
fx_transition3d 10,8,8,"1","1","0",800,1
fx_animate_pencilbw 10,1,0,"y:\temp",2.3,100,0.3,60
fx_animate_stencilbw 10,1,0,"y:\temp",10,10,10,20
fx_animate_cartoon 10,1,0,"y:\temp",4,0.5,200,10,0.1,1.5,3,200,10,0.1,1.5
fx_animate_edges 10,1,0,"y:\temp",0,0,10,0,30
fx_fire_edges 0.7,0.25,0.5,25,20,20,0,0,50,50
fx_lavalampbw 3,30,1,20,2,0.01,0
fx_animate_lissajous 10,1,0,"y:\temp",4096,0.9,0.9,3,8,7,0,0,0,0,0,0,0,0,255,255,255,255,4096,0.9,0.9,3,8,7,0,0,0,0,0,0,0,0,255,255,255,255
fx_moire 1,0,2,1,1,2,1,5
fx_tk_animateobject 0,0,0,0.5,0.5,400,2,0,0,0,0,0,1,0,0,1
fx_animate_rodilius 10,1,0,"y:\temp",1,10,10,300,5,0,10,10,300,5,180
fx_animate_glow 10,1,0,"y:\temp",0,3
fx_spatial_transition 10,0,7,"cos(x*y/(16+32*A))",0,1,0.5,"0"
mc_dragonfly 50,0,255,255,255,255,1
mc_kookaburra 50,0,255,255,255,255,1
mc_paw 50,0,255,255,255,255,1
mc_rooster 50,0,255,255,255,255,1
mc_flip 50,0,255,255,255,255,1
mc_information 50,0,255,255,255,255,1
mc_mail 50,0,255,255,255,255,1
mc_phone 50,0,255,255,255,255,1
mc_shopping_cart 50,0,255,255,255,255,1
mc_barbed_wire 50,0,255,255,255,255,1
mc_crosshair 50,0,255,255,255,255,1
fx_cupid 75,0,255,255,255,255,1
fx_gear 75,12,15,0,40,0,255,255,255,255,1
fx_heart 75,0,255,255,255,255,1
mc_paint_splat 50,0,255,255,255,255,1
fx_sierpinski 6,50,0,0,100,100,100,255,255,255,1
mc_australia 50,0,255,255,255,255,1
fx_barnsley_fern 0,100,30,40,10,178,0,255,1
mc_gum_leaf 50,0,255,255,255,255,1
mc_maple_leaf 50,0,255,255,255,255,1
fx_snowflake 5,1,255,255,255
fx_dragoncurve 20,0,1,255,255,255
fx_tk_make3D 0,20,0,20,0,0,0,0,0,0,0,0,0,1.2,25,1,0,1,0,0,0,2,200
fx_tk_video3D 0,10,-10,20,0,0,0,0,0,0,0,0,0,0,"y:\temp",1.2,25,1,0,1,1,1280,1,0,0,0,"y:\temp","frame_",0,1,0,0,"1,"#old movie\n#luminance fx_stripes_y 10,3,0 sepia \n\n#simple vintage\n#+fc 0,15,125 rv fx_compose_exclusion 0.3 \n\n#HDR popout\n#fx_map_tones_fast 2,0.3,3,2 fx_unsharp_octave 4,5,3,0,0,0"",0,0,1,5,0,0,0,1,0,0
fx_tk_autodepth 
fx_tk_deana 20,2
fx_tk_depthmap 0,20,0,0,0,0,0,0,0,0
fx_tk_depth_obtain 0,0.1,100,0
fx_tk_lenticular 30,0,5,0,1,0
fx_tk_stereogram 50,0.5,10,0,40,255,255,0,255,0,0,0,255,0,0,0,255,0.5,0
gcd_stereo_img 0,0.5,1.2,1,0.25,2,4,1,0
fx_tk_stereoimage 0,0,1,0,1,0
gcd_unstereo 5,0.1,1,1,1,1,0
afre_contrastfft 75,50,1
afre_denoise 1
afre_details 2
fx_gamify 50,2,1,1,0
afre_gleam 3,50
afre_halfhalf 0
fx_hnorm 1,50,0
afre_montagex 5,1,230,255,230
afre_portraitmontage 1,1,0,230,255,230
afre_queryprimary 1,1
afre_sharpenfft 15,1
afre_vigcirc 90,75,50,50
afre_vigrect 50,75,10,50,50
fx_remove_scratches 72,2,4,3,0
fx_corvo_painting_5 35,10,10,0.5,50,0.3,50,2,5,1
fx_morpho 0,5,0,0,0,0,0
gcd_anti_alias 60,0.3,50,0
gcd_auto_balance 30,0,0,1,0
gcd_blend_feather 100,0.5,2,0,0
fx_gcd_blend_multiscale 5
fx_gcd_canny 1,0.05,0.15
fx_gcd_signum_color 0.1,5,2,0
gcd_comp_blur 2,3,1,100,1,0,0
fx_gcd_crmt_tile "t_w=[w] t_h=[round(1/2*sqrt(3)*$t_w)]","[3*$t_w,2*$t_h]","1,"C0 T0 C0 Fo R-60 T[-1/2*$t_w,0]"",0
fx_gcd_cumul_math 0,1,1,0,0
fx_gcd_blur_deblur_texture 4,1,0.5,0,2,0,0,50,50
gcd_depth_blur 0,15,0.25,2,4,0,1
fx_gcd_dither_srgb 2,1
gcd_emboss 128,0
gcd_geometric_balance 0
fx_gcd_gradient_exponent 0.5,0
gcd_infomap 0
fx_gcd_clone_inpaint 0,1,10,1
gcd_ebwarp 0.5,1
gcd_jpeg_smooth 1,1,0,0
gcd_layers 100,0,1,0,0,0,0,0,1,0,0,1
gcd_balance_lms 1,1,1,0,0,0
gcd_fx_local_fmean 15,0,0,5,0
tran_multi_threshold 50,100,150,200,9,0,1,175,42,27,101,101,101,174,165,131,247,228,160
gcd_normalize_brightness 0,10,0,3,0,0
gcd_pqct 
fx_gcd_quicktone 1,4,20,0,3,1
gcd_recol -14,14
gcd_sharpen_gradient 0.5,2,0,0
gcd_sharpen_tones 1,128,0,0
gcd_simple_dehaze 0.75,1,0.75
gcd_simple_tonecurve 0.5,0.5,1,0.18,0.75,1
gcd_srotate 0,50,50,1,1,6,0.6,0
fx_gcd_geometric_median 3,12,0,0,50,50
gcd_splitobj 50,3,3,0,0,0,40,0,"0"
gcd_stereo_vid "y:\a.png","y:\a.png","y:\temp",0,0.5,1.2,0.25,2,4,1,5,1
fx_gcd_color_target 50,50,175,175,175,0
gcd_temp_balance 0,0,1,0
fx_gcd_color_spot_matching 75,75,25,25,1,0,0
fx_gcd_undo_unsharp 3,0.5,1,0,50,50
gcd_unquantize 6,1,1,5,15
fx_gcd_upscale_edge 1,1,1,1
gcd_upscale_noise 16,2
fx_gcd_upscale_recursive2x 4,0.05,0.01
fx_gcd_upscale_solver2x 4,0,1,1
gcd_warpmap 5,0,0,0,0
fx_gcd_weighted_boxfilter 1,0,0
gcd_wiremap 100,100,0.5,0.5,0
gcd_xbr2x 
fx_gb_cfx 10,0,0,0,0,0
fx_gb_lb 10,7,0
fx_gb_pp 
gtutor_blur_img 3,0.5
iain_2d_scopes 1,2,2,6,512,2048,1,0,0,0,0
iain_smooth_tutorial 1000,0.5,1,0.6,1.1,0,0
iain_auto_wb 5,5,95,95,1,0
automixer 0,0
iain_brown_spot_clean 1,2
iain_CA_correction 0,0,2,0,3
iain_detect_moire 50,5,9,30
iain_easy_skin_retouch 7,2,.7,1,1,.7,.6,.5,.5,.5,0
exfuse 1,0.6,0,0.5,1,5
exfusion 20
exfusion3 0.3,0.3,0.2,0.3,-1,0
exfusion5 0,.2,0.2,1,0,0
iain_fast_formula "apply_gamma 2.2"
iain_fast_median_stack 
fft_tile 500,128,0
fill_holes 11,21,5,0,0,1
iain_descreen2 3,-10000,10
iain_halftone_shapes 100,0,0,0,0,0,0
iain_hearttone 100,0
iain_2x 
iain_demosiac 0
iain_denoise_2019_beta3 1,0,0,0,0.5,1,0,5,3,0,3,0,.5,4,0
iain_remove_pattern 3,3,3,0,4,128,1,0
iain_star_burst 254,50,5,45,2,0,0
iain_unindex 30,20,1,50,50
iain_weightmap 1,40
iain_iains_nr 3,3,1,0,0,0,1,0,0,0,1.35,0,0
iain_highlight_synthesis 1,0.6,1,0
iain_iid_demosaic 1,1,1,0,0
luminance_nr_two 10,1,1,.8,.7,.6,.5,.4,.3,1200,64,0,0,0,0,0,0,0,0,0,0,0
iain_minimum_chroma_demosaic 0,2,0
iain_moire_removal 5,5,0
iain_moire_removal_NP 5,5,0
ms_nlmeans_c_noise2_p 3,1,0,0,0,0,0,10,2,4,2,7,0,0,0,0
ms_patch_c 5,1,1,5,4,3,2,1,1,1.3,0.375,.5,0.125,0
MS_Patch_NR 1.3,0,0,0,3,5
MS_Patch_NR3 1.3,0,0,0,3,5,1,0,0,0,0,0
ms_patch_smooth 10,5,3,5,0,1,1,7,5,4,3,2,1,1,1.3,0
ms_smooth 0,0,0,0,0,0,2,0,2,0
nr5 1.6,5,1,1,.75,3,0,.75,.5,0,1,1,100,0,-100,0,1.3,0
iain_png_processing 4,0,0,0,3,3,0,.75,2,1,5,0,0,1,1
iain_savenoiseprint 0,1,1.4
simplelocalcontrast_p 16,2,0,1,1,1,1,1,1,1,1,0
iain_fx_skin_mask 55,200,0,0,0,1
iain_smartdemos 0,1.5,2
iain_split_orientation 75,50,45,10,5,5,0,0,1
star_tone 100
iain_sub_cast 5,20,250
iain_turbulent_halftone 15,20,0,1,512,0.75,0,0,0
jeje_render3d "y:\a.png",8,6,0.1,240,0,30,1,32,32,64,255,64,128,96,255,0
jeje_deconvolve 20,0,0
jeje_zernike_preview 50,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
jpr_colourillusion 2,25
jpr_coltexindex 5,55,55,45,45,1,1,0,0.05,0.5,0.95,0.5,1,2,0.7
jpr_decimate 0.375,2
jpr_gradient_smooth 0,1.5
jpr_line_edges 2,2,4,1
jpr_orientedthinning 5,15,1,0,0
jpr_phasecongruence 45,1,50,1
jpr_remove_blocks1 4,3,70
jpr_shapes_gradient 2,0.25,0.001,100
jpr_specularbumps 270,1,13,0,80,0.1,0.1,0
jpr_warpfromthreshold 170,2,10,2
fx_charred_plastic 1,10,40,1,10,0,0,2,6,5,20,0,11
fx_dreamy_abstraction 2,1,1,0.5,10,0,0,7,1,3,1,1,1,1,1,11,1,25,5,1,0,1.5,0,50,50
fx_dreamy_watercolour 0,0.3,40,60,0,1,50,0,10,2,1,1,0.5,10,0,0,7,1,3,1,1,1,1,1,11,1,25,5,1,10,1,0,0,1,0.5,0,8,1,0,128,128,128,0.5,1,8,0.2,1,1,0,27,0.75,0,1,20,40,40,1,2,1.25,0,2,1,27,1
fx_hard_painting 1,2.5,4,50,1,1,0,2,6,5,20,0,0.62,14,0,1,0.5,0.78,1.92,0,0,0,1,1,1,0.5,0.8,1.28,0,50,50
fx_neon 0,1,1,1,1,0,0.45,40,60,0,1,1.15,2,3,0,3,20,0.4,0.1,1.5,5,0.2,0.1,1,2,1,0,0,1,1,0,50,50
fx_neon_alpha 0,0.45,40,60,0,2,1.15,20,0.4,0.1,2.25,5,0.2,0.1,2.25,2,1
fx_otsu_hessian_blend 4,0,1,27,1,0
fx_whirling_lines 30,6,0,0,0.45,40,60,0,0,30,0,3,3
csswap 0,0,0,50,50
fx_cubehelix 1,0,100,0,0,0,0,255,255,255,1,-1.5,0,0,1,1,0,0,1,1,1,0,1,0,1,0,0,0,50,50
fx_frequency_representation 3,256,0,40,0
jr_desaturate 0,1,1,1,1,0,50,50
fx_satellite 0,0,0,100,1,0,255,0,0,0,50,50
fx_jr_gradient_norm 0,0.45,40,60,0,0,1,1,2,0,0,50,50
fx_auto_gnarl 3,0.45,40,60,0,1,1,2,4,6,5,20,1,2.5,0.5,2,2,3
fx_buffer_destroyer 0,1,75,40,0,100,0,1,1,0,50,100,0.5,1,0,3,0,50,100,0,0,0,0,2.5,20,2.5,20,1,5,5,1,120,80,0,100,0,1,0,50,50
fx_buffer_error 50,50,0,100,0,1,0,50,50
fx_jr_klc 6,0,0,0,0,50,50,50,50,0,30,0,0,100,1,2,3
fx_layer_cake 4,360,0,75,50,50,3,1,0,30,0,3,0,0,50,50
fx_layer_cake_2 4,360,0,50,50,2,3,50,0,0
fx_powertwirl 1,0,50,50,1,2,3,0
fx_jr_deform 0,5,1,10,1,0,0,1,0,50,50
fx_rays_from_image 5,50,50,0,0
fx_shifter 0,0,1,1,20,1,20,1,5,5,0,50,50
fx_jr_spiral_transform 0,0,0,0,0
fx_ultrawarptwo 0,3,1,0,3,0,3,0,3,0,3,2,2,5,3,0,1,1,1,0,1,0.5,2.5,5,1,0,1,0,0,255,0,255,0,0,0,0
fx_ultrawarp4plus 0,0,3.3,0,0,5,0,0,0,4,256,4.8,5,2,0,0,2,3,3,20,1,1,0,5,2,1,2,0.25,1,1,0,5,0,3,0.5,2,-180,0,0,1,11,0,0
fx_blur_bloom_glare 1,2,5,0,0,0,0,0,3,0.5,7,0
fx_blend_bomb 0,1,16,16,2,0,50,0,0,0,0,0
fx_texture_afre_broken 1,10,0
fx_butterworth_bp 3,2,0,4,2,0,0,0,1,1,0
fx_self_glitching_cascade 0,0,0,50,50,3,3,1,55,55,0,45,45,0.75,3,0,0,0,0,1,0,0,256,1,0,0
fx_dct_fsu 0,50,50,0,0,100,100,0,1,0,0,0,50,50
fx_jfif_fake 50,0,0,1.25,5,0.25,0,50,50
fx_qam_glitch 2,20,0,0,1,127.5,0,1,1,1,0,0,20,5,0,0,0,2,0.6,0.05,0,50,50
fx_jfif_bomb 0,50,16,16,0.5,1,75,1,1,0,0,0,1,75,1,20,0,1
fx_jfif 50,3,0,1,5,5,3,0.25,0.5,0.25,0,0,0,16,16,0.5,1,75,1,1,0,0,0,0,50,50
fx_jfif_xt 50,8,8
fx_jpeg_preview 80,21,8,8,16,16,16,16,0,0,0,0,0,0,0
fx_jr_multi_mosaic_preview 0,3,15,45,50,0,128,128,128,0,0,0,1,0,0.5,0,100,1,0,0,0,0,0,0,1,15,16,0.5,1,3,5,15,2,6,5,20,1,2
pseudo_ecb 0,0,1,20,1,1,5,0,0,5,90,0,41,1,15,256,75,16,100,1,41,1,41,1,1,0,1,41,1,0,0,0,50,50
fx_row_shift 0,0,0.5,0,0.5,3,0
sawtoother_cmy_k 1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,0,1,0,0,1,1,0,0,2,0
sawtoother_hsx 1,0,0,1,1,0,1,0,0,1,1,0,0,1,0,0,1,1,0,0,2,0
sawtoother_lab8 1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,0,2,0
sawtoother_lch8 1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,0,2,0
sawtoother_rgb 1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,0,2,0
sawtoother_srgb 1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,0,2,0
sawtoother_xyz8 1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,0,2,0
sawtoother_ycbcr 0,1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,0,2,0
sawtoother_yiq8 1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,0,2,0
sawtoother_yuv8 1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,0,2,0
fx_shredder 0,1,0,1,0,100,0.5,0,100,0.5,0,0
fx_jr_smooth_eq 8,2,0,3,2,1.5,0,4,2,2,0,5,2,2,0,6,2,2,0,7,2,2,0,3,2,0,0,0,1,1,0
fx_superstreak 10,10,3,0.50,0.50,10,30
fx_ultrawarp3_preview 0,-1,1,1,1,0,360,1,1,0,360,0,1,3,0,0,0,15,50,0,25,0,25,0,0,0,360,0,0,0,0,1,0,16,0,1,1,5,15
fx_bitplane8 0,1,0,0
fx_jr_bilinear 1,3,10,10,1,0,0,50,50
fx_mesh_blend 0,3,0,0,0,0
fx_crazy_texture 0,75,30,0,15,6,3,0,15,0,1,1,0,1.5,0,1,1,0,1,1
fx_rectexture 0,10,3,1,5,2,0
fx_karo_cimg_nlmeans 0.0,0.0,0.0,1,-1,-1,3,2,0,50,50
fx_karo_cimg_skel 1,50,0,0,-0.3,0,0,1,0,50,50
fx_karo_mm_diff 5,7,2,1,0,1,0,50,50
fx_karo_oc_diff 5,1,0,1,0,50,50
fx_karo_pink 0,0,0,5,0,0,50,50
fx_karo_pink_bin 1,50,3,0,5,4,0,0,50,50
fx_karo_pink_bianca 5,60,5,1,0,0,0,50,50
fx_blend_shapeaverage 1,0,0
Lylejk_Luma_Invert 1,0
Lylejk_Quantize_Wicker 16,50,50,0,16,10,5,1,1,0,0,0,255,1,10,10,153,0,2,10,20,0.1,1,0
Lylejk_Ribbon 150,0.42,0.85,0.6,7.83,0.68,19,2.64,0,1,2,16,3.44,0,3,0.79,0.72,4.97,1.70,150,0.42,0.85,0.6,7.83,0.68,19,2.64,0,1,2,0,0.32,43.1,100,0,2,1.15,5,1,0
ripple 10,20,2,0,0
lylejk_test_TRW 50,50,1,16,10,5,1,1,0,0,0,255,50,50,1,1,1.8,10,153,150,0.42,0.85,0.6,7.83,0.68,19,2.64,0,1,1,0,0.5,10.5,100,0,0,0.5,10.5,100,0,1.15,5,1,0.68,0.5,10.5,100,0,0,1,10,1,0,0
Lylejk_Wicker 10,10,153,150,0.42,0.85,0.6,7.83,0.68,19,2.64,0,1,1,0,0.5,10.5,100,0,0,0.5,10.5,100,0,1.15,5,1,0.68,0.5,10.5,100,0,0,1,10,1,0,0
Lylejk_Woven 19.6,32.4,1,0,0,19.6,32.4,1,0,0,12,10,5,1,1,0,0,0,255,19.6,32.4,1,0,0,19.6,32.4,1,0,0,150,0.61,0.85,0.6,7.83,0.68,19,2.64,0,1,1,0,0.29,37.2,100,0,0,2,0,16,0
fx_lylejk_stencil 5,10,3,0
Lylejk_Wicker_2 50,50,1,50,50,1,1,12,10,5,1,1,0,0,0,255,150,0.54,0.85,0.6,7.83,0.68,19,2.64,0,1,3,0,0.29,28.7,100,0,0,1,10,20,0.1,1,10,12,2,40,0.7,0.3,0.6,1.1,0.8,30,2,0,1,3,1,0,16,1,0
garagecoder_lylejk_samj_points_outlines 0,0.05,10,0.12,0,0,2,0
mc_film_grain "y:\a.png",0,1,20,0,100,0,0,0,0,1,0,255,0,0,0,2
fx_hue_overlay_masks 0,5
fx_AbstractFlood 1,10,7,2,0,10,5,3,255,255,255,255,0,300,10,90,0.7,0,0,0
fx_bwfilmsimulate 0,0.299,0,0.587,0,0.114,0,1,1,0,0,0,0,0,0,2,0,0,0,16,4,0
fx_blockism 3,1.6,0.5,50,0.5,64,0,0,0
fx_CompositionAnalysis 0
fx_dodgesketch 3,10,7,2,0,0
fx_ExposureWeightMap 0.3,0.3,0.2,0.3,1,0
fx_StructureTensors 0.1,0
fx_import_image_16 "y:\a.png",1,2.2,0,1,0,0,0,0,100,0
fx_split_luminance 1,1,1,0,"0,keep."
fx_OldSquiggly 2,12,0.8,0,0.5,3,0.2,0.4,50,245,45,0.5
fx_MappedSmooth 0,0,0,300,1,0
fx_fix_HDR_black 20,25,50,200,0,0
fx_noisepainting 0,0,0,5,2.5,1.5,50,1,0
fx_SmoothSketch 1,6,0.8,0.3,0.3,0,1000,0,50,10,2,0.6,0.55,1,0
fx_DemoVecRot 0
fx_WarpTest 0,0,0,1,0
fx_jobs_colors 0,0,0
fx_steampen 0.95,14,2,2,0.9,0,1,0,0.5,0.75,0.48,0
fx_compose_boostscreen 0.7,0,0.7
fx_compose_colordoping 1,0
fx_colorsketchbw 300,50,1,0.1,20,1,0,20,2,0,1,0
fx_colorstamp 1,50,1,20,2,0
fx_compose_comix_color 1,0,1
fx_contrast_swm 2,0,1
fx_compose_darkedges 1,0.5,0,0.7
fx_compose_darkscreen 0.7,0,0.7
fx_graphic_boost 1.25,2,0,0.15,14,0,1,0.5,0.45,2,0,0,0,1,1,0.5,0.45,1,0
fx_compose_graphicolor 0.6,0,0.8
fx_novelfx 0,2,6,5,20,0,0.62,14,0,1,0.5,0.78,1.92,0,0,0,1,1,0.5,0.8,1.28,0
fx_compose_graphixcolor 1,0
fx_compose_heavyscreen 0.6,0,0.7
fx_metalgrain 0.5,0,0
fx_metallicstencils 0,0
fx_phoenix 0.95,14,2,2,0.9,0,0,0,1,1,0
fx_smooth_anisotropic 60,0.16,0.63,0.6,2.35,0.8,30,2,0,1,1,0,1
fx_psyglass 0,20,0.1,1,1,0,1,1,0,1,1,0,0,2,0,0,0
fx_scaledown3 0,1,1,1,1600,1600,0,2.3,1,3,0
fx_viral 8,0,0,0,0,0
fx_compose_vivid_color 1,0,1
fx_compose_vividedges 1,0.5,0,0.7
fx_compose_vividscreen 0.6,0,0.7
fx_m_l_unsharp2 12,2.18,0.3,1.5,1,0.5,0,0.5,0.8,1.28,0
pr_chanshuff 0,0,0,1,0
pr_laymod 0,30,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
pr_iris 800,0,10,0.4,0.4,20,20,0,100,0,100,100,0,30,150,150,255,100,0,50
pr_linespam 30,3,1.02,0.8,-1,10,101,100,0,0,255,85,0,255,0,0,0,5,10,0.8,1,0
pr_lilboxy 20,40,60,2,2,0,0,0,0,255
pr_papercuts 3,0,8,1,80,127,255,0,14,1,4,0.6,4,0,0,0,0,0,0,0.6,100
pr_canvas 0.3,0,0,255,255,255,255
pr_scpat 0,0,0,0,1,1,1,5,2,0,4,10,0,"0,0xFFFFFFFF",0,0,40,60,255,0,0,255,113,57,255,255,0,85,0,255,0,0,255,0,113,165,85,170,0,255,255,255
pr_sickpaint 30,0,0,100,100,100,0.7,0.4,1000,255,0,0,32,153,162,12
pr_streeze 10,101,20,80,80,20,80,120,0,2,0,25
pr_smoothelate 0,0,0,5,4,500,3,0
uglify 0,0,1000,0,0,0,0,0,0,0,3,3,13,0.5,0,12,1,5,20,0.5,-1,-100,0,7,0.6,0,150,1,0.05,0.02,0.02,0,25,0,0,2,1,0.8,0.6,1.6,22,3,0.3,0,255,255,255,255,0,1.5,0.5,0,0,0,0,0,0
fx_rep_array_random_jumble_by_px 128,128,128,128,0,0,0,"List of Factors","List of Factors","List of Factors","List of Factors","List of Factors","List of Factors",1,1,1
fx_rep_trsa 0,7,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0
gui_rep_acb 180,0,1,0,250000,0,50,50
gui_axis_streak 0,0,0,0,0,50,50
rep_binary_quaddro_basic_gui 0,0,8,8,128,2,0,0,0,256,255,1,361,361
rep_binary_quaddro_mc_gui 0,0,0,0,1,2,0,1,2,3,0,1,2,3,4,0,8,8,128,2,0,0,0,1,0,8,8,128,2,0,0,0,1,0,8,8,128,2,0,0,0,1,0,8,8,128,2,0,0,0,1,0,8,8,128,2,0,0,0,1
fx_rep_bitplane_shuffle 0,0,0,"Here is where you copy command to command line interface.","This is just a reference text",0,0,"0",0,1,2,3,4,5,6,7,8,1,2,3,4,5,6,7,8,8,10,9,4,7,13,1,3,11,14,6,2,12,5,15,16,8,10,9,4,7,13,1,3,11,14,6,2,12,5,15,16,0,0,0,0,0,50,50
fx_rep_blur_splinter 20,3,0,0,0,0,3,0,0,50,50
gui_rep_shape_brick 150,150,5,5,0,0,0,0,0,0,170,0,0,255,85,0,0,255,121,77,2,255,0,41,100,0
fx_rep_cbsoo 0,1,0,0,0,"temp_text",-1,-1,-1,-1,-1,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,3,100,1,21,100,3,100,1,21,100,1,3,100,1,21,100,1,1,3,100,1,21,100,1,1,3,100,1,21,100,1,1,3,100,1,21,100,1,3,100,1,21,100,1,0,0,0,0,2,0,1,0,2,50,50,1,1,0,"-1",0
fx_rep_cstdmap 500,5000,1,0,0,0,1,1,0,0,0,2,0,20,0
rep_color_existence_distribution_rgb8 1
gui_rep_colmt 0,0,0,0,1,0,3,0,255,0,0,1,0,1,0,0,3,0,255,0,0,1,0,1,3,0,255,0,0,1,0,1,3,0,255,0,0,1,0,1,3,0,255,0,0,1,0,1,1,5
fx_rep_color_region 5,5,6,-1,-1,-1,0,50,50
fx_rep_compb 50,1,.05,3,3,3,2,0,50,50,0,0,1,0,1,2,0,1,2,0,1,2,.5,.5,1,1,0
_cons_turb 88,8,2.5,2,128,128,128,20,3,0,1,0,1,1,1,1,100,20,100,15,100,2,0,188,0,0,0.19,0.52,128,128,0,1,2,0,0,0,0,3,2,0,4,2,2,0,1,1,1,5,0,.5,2,1,0,100,0,50,50
fx_rep_dla 100,0,0,0,0,0,1,0,0,100,0,0,0,0,0,1,0,0,50,50
fx_rep_dungeon_floor 0,0,2
rep_dynamic_contrast 0,128,255,0,50,50
fx_rep_edgefade 10,10,0,2,0,4,2,0,50,50
fx_rep_ekb 10,10,1,1,50,0,110,105,130,0,255,255,255,0,25,0,12,0,10,0,0
fx_emboss_relief 5,0,.5,2,0,1,1,0,50,50
fx_rep_fibonacci 1,10,0,0,0,50,50,0,0,1,0,0,2500,100,500,0
gui_rep_frblur 0,10,5,0,0,1,0,0,50,50
fx_rep_blur_cs 3,0,0,1,0,0,50,50
gui_rep_gv 100,0,100,0,50,50,0,0,100,100,100,0,50,50,0,3,5,1,0,50,50
fx_rep_graduated_filter 50,100,50,0,0,0,0,0,50,50
fx_rep_x_graphical_tiling 0,0,0,0,0,0,1,0,50,50,5,1
fx_rep_sptbwgp 0,0,0,0,0,50,50
fx_rep_sptbwgp_full 0,100,0,0,0,100,0,0,100,0,0,0,0,0,0,50,50
fx_rep_henon_phase_diagram 2.569,500,1000,-.5,.5,8,1,0,50,50,0,0,0,0,1,2,0,20,0,0
fx_rep_hitomezashi 0,5,0,0,0,0,255,255,255,"","","",0,0,0,0,3,0,255,128,128,128,241,255,85,159,26,157,0,0,0,44,10,8,5,4,0,0,0,0,0,0,0,0,0,0,0,0,10,8,0,0,0,0,10,128,0,0,0,50,50,0,1
fx_rep_p_i 10,10,10,50,0,2,0,50,50
gui_rep_polkal 2,1,0,50,50,0,0,1,2,0,1,.5,2
fx_rep_lavander_binary_map 0,8,5,"01","10","01",0,"xor(min(xor(x(),y()),xor(ix(),iy())),ix()|iy())",0,0,0,0,2,2,2,0,1,2,0,1,2,5,1,1,2,5,1,0,0,0,0,1,5,0,0,0,144,111,122,255,255,255,0,0,0,46,125,89,157,156,189,255,255,255,0,0,0,5,122,73,144,111,122,164,184,218,255,255,255,0,0,0,0,50,0,12000,0,0,2,2,"Input Text","Restore Text","Stored Text 2","Color Information","Mapping Information",0,"1,"def m_show(m,size = 4,cmap = 'afmhot'):\n    import matplotlib.pyplot as plt\n    from numpy import array\n    cmaps =  ['binary','gist_yarg','gist_gray','gray','bone',\n                'pink','spring','summer','autumn','winter','cool',\n                'Wistia','hot','afmhot','gist_heat','copper']\n    plt.figure(num = None,figsize=(size,size),dpi=300)\n    plt.axis('off')\n    plot = plt.imshow(array(m),cmap = cmap) #,interpolation='bicubic' )\n    plt.show()\n    plt.close()\n\nfrom tqdm import tqdm\n\ndef get_matrix_bin(s):\n    n = len(s)\n    mat =  [[0]*n for i in range(n)]\n    for x in tqdm(range(0,n)):\n        for y in range(0,n):\n            f = format((s[x] ^ s[y]),'b').count('10')\n            mat[x][y] = f\n            #mat[y][x] = f\n    return mat\n\nbig_n = 11\n\npows = [i for i in range(0,2**big_n)]\npows = sorted(pows,key = lambda k: format(k,'b').count('01'))\nadj_m = get_matrix_bin(pows)\n\nm_show(adj_m)"","1,"def m_show(m,size = 4,cmap = 'afmhot'):\n    import matplotlib.pyplot as plt\n    from numpy import array\n    cmaps =  ['binary','gist_yarg','gist_gray','gray','bone',\n                'pink','spring','summer','autumn','winter','cool',\n                'Wistia','hot','afmhot','gist_heat','copper']\n    plt.figure(num = None,figsize=(size,size),dpi=300)\n    plt.axis('off')\n    plot = plt.imshow(array(m),cmap = cmap) #,interpolation='bicubic' )\n    plt.show()\n    plt.close()\n\nfrom tqdm import tqdm\n\ndef get_matrix_bin(s):\n    n = len(s)\n    mat =  [[0]*n for i in range(n)]\n    for x in tqdm(range(0,n)):\n        for y in range(0,n):\n            f = format((s[x] ^ s[y]),'b').count('10')\n            mat[x][y] = f\n            #mat[y][x] = f\n    return mat\n\nbig_n = 11\n\npows = [i for i in range(0,2**big_n)]\npows = sorted(pows,key = lambda k: format(k,'b').count('01'))\nadj_m = get_matrix_bin(pows)\n\nm_show(adj_m)"",0,0,2,"01","10","01",0,1,2,0,1,2,5,1,1,2,5,1,0,"xor(min(xor(x(),y()),xor(ix(),iy())),ix()|iy())",0,0,0,8,8,0,0,1,5,0,0,0,144,111,122,255,255,255,0,0,0,46,125,89,157,156,189,255,255,255,0,0,0,5,122,73,144,111,122,164,184,218,255,255,255,0,0,0,50,0,12000,0
rep_logpindis_gui 1,50,50,50,50,1,1,1,1,0,0,0,0,0,0,0,2,1024,0,50,50
gui_rep_majority 11,0,5,0,0,0,50,50
gui_rep_majority_threshold 11,0,5,50,1,0,0,0,50,50
fx_rep_mlfrac "ab",50,1,100,50,50,50,0,0,0,0,255,255,255,255,0,255,0,0,8,8,8,0,12,0,16,0,50,0,8,0,8,0,8,0,0,0,0,"y:\a.png","y:\a.png","y:\a.png",8,0,8,0,8,0,0,0
fx_rep_mitchell_concatenation 0,0,0,1,1,1,0,10,10,10,0,0,0,1,0,1,0,255,255,255,243,235,227,200,200,136,124,143,91,53,74,67,34,23,36,0,0,0,206,206,206,198,186,182,166,135,182,120,105,70,55,69,48,37,33,47,24,24,24,255,255,255,243,236,227,186,200,136,102,143,91,55,53,74,36,23,25,0,0,0,0,1,2,0,100,0,0,0,1,10,0,0,100,8,25,0,50,5,5,3,38,0,0,0,0,0,0,0,1,1,10,10,0,0,255,255,255,243,235,227,200,200,136,124,143,91,53,74,67,34,23,36,0,0,0,206,206,206,198,186,182,166,135,182,120,105,70,55,69,48,37,33,47,24,24,24,255,255,255,243,236,227,186,200,136,102,143,91,55,53,74,36,23,25,0,0,0
fx_rep_nebulous 0,4,10,10,0,0,0,1,0,0,1,0,0,0,0,2,0,1,3
rep_mj_newf 16,0,0,128,9,0,75,5,10,50,50,45,0,0,0
fx_ncee 0,0,1,100,2,0,0,1,100,0,50,50
fx_rep_rpgtiler_noniso 0,0,"y:\a.png",32,2,16,16,0,0,0,0,0,0,0,45,0,0,1,0,0,"y:\temp","placed_tile.png"
gui_rep_objvf 0,10,1,99,0,0,0,0,0,0,0,1,127,127,127,0,0
fx_rep_loupasc_ordered_dither 4,3,0,0,50,50
rep_fx_shift 50,50,2,2,0,50,50
gui_rep_perspective_streak 50,50,0,100,0,0,0,1,0,50,50
fx_rep_photomosaic 0,"y:\temp",0,15,0,50,0,0,0,0,1,"y:\temp","mosaic.png"
fx_rep_pxpush 50,50,0,50,50
gui_rep_pw 100,100,0,50,50,0,3,0,50,50
fx_rep_pfrac 50,1,.05,3,1,0,50,50,0,1,0,1,2,0,1,2,0,1,2,0,1,0,0
fx_rep_pfrac_t_rs 50,1,.05,3,.5,45,50,50,0,0,1,0,0,1,0,0,4,1,0,4,1,0,0,4,1,0,0,1,0,0,4,1,0,4,1,0,0,4,1,0,2,1,0,0,4,1,0,0,0,1,0,0,4,1,0,4,1,0,0,4,1,0,0,1,0,0,4,1,0,4,1,0,0,4,1,0,2,1,0,0,4,1,0,0,1,0,0,4,1,0,4,1,0,0,4,1,0,0,1,0,0,4,1,0,4,1,0,0,4,1,0,2,1,0,0,4,1,100,0,0,0,.5,0,0
fx_rep_premade_palette 10,1,1,16,12,0,2,0,0,1,"y:\temp","color_harmonies",0,"Available for Export!",0,0
gui_rep_prime_surface 0,0
fx_rep_mj_prn 8,2,0,1,0,1,50,50,1,0,0,0
fx_rep_rainbowify 0,0,100,0,50,50
fx_rep_randgradbar 0,2,0,0,0,50,50,1,0,1,100,0,0,0,0,0,0,255,0,127,249,215,45,0,1,100
fx_rep_rrd 10,5,5,95,50000,0,35,0,1,12,0,0,0,0,0,0
fx_rep_rand_sqrrecfill 0,0,15,2,1,1,0,1,1,1,0,0,0
fx_rep_red_acrylic_filter 0,"y:\a.png",0,0,0,0,100,0,"y:\a.png",0,0,0,0,100
fx_rep_rd 0,0,10,0,0,0,50,50
gui_rep_recc 10,1,"y:\temp","gradient.png",0,1
gui_rep_regm 10,1,0,"y:\temp","gradient.png",0,1
fx_rep_lerp_rgb_gray 0,0,100,100,100,100,100,100,1,1,1,0,50,50
fx_rep_rbtt 100,50,-180,3,3,7,50,1,50,50,1,0,0,1,2,0,50,50
fx_rep_serendipitous_circle 1000,500,2,2,0,0,0,0,0,0,1,1,0,1,1,0,0,0,1,.25,0,0,2,2
rep_sinowaterdist_gui 0,0,.5,2,0,0,50,50
rep_skew 0,0,0,3,2,0,0,50,50
gui_rep_sd 1,1,0,0,0,0,50,50,0,50,50,1,50,50,100,100,3,4,0,50,50
rep_sqrlogpindis_gui 1,50,50,50,50,1,1,1,1,0,0,0,0,0,0,0,2,1024,0,50,50
fx_rep_bchstatfunc_average 0,0,0,50,50
fx_rep_mode_type_int 0,0,0,255,0,255,"-1,-1","-1,-1"
fx_rep_stitch 5,1,0,0,3,0,0,128,128,1,4,1,0,2,2,45,-45,90,0,60,-60,15,-15,30,-30,5,-5,0,50,50
rep_strbul 0,0,2,0,0,50,50
rep_strbulkal_gui 0,0,1,50,50,50,50,0,0,0,2,1024,0,50,50
fx_rep_tco 50,50,-50,1,0,50,50,1,0,12,6,0,0,1,0,0,1
gui_rep_form_pixel 0,3,0,30,30,100,0,0,.5,50,0,5,0,2,1,0,10,0,0,100,8,25,0,50,5,5,3,38,0,50,50
fx_rep_tz 10,10,2,0,0,50,50
gui_rep_trif 45,100,0,0,0,50,50
gui_rep_trps 0,0,0,0,0,11,0,50,50
fx_rep_transfer_color_reduced 0,50,0,50,0,0,0,4,4,4,4,0,2,2,2,2,0,18,0,"y:\a.png",8,8,0,0,1,0,0,247,244,191,0,255,240,43,0,255,207,5,0,255,177,8,0,233,134,39,0,191,90,62,0,156,51,39,0,114,28,3,0,255,226,207,0,212,174,170,0,181,139,148,0,173,121,132,0,145,96,106,0,119,83,91,0,94,65,74,0,73,33,41,0,131,147,195,0,108,130,196,0,82,116,197,0,81,101,174,0,61,80,131,0,45,61,114,0,40,51,93,0,38,36,80,0,209,189,254,0,186,171,247,0,169,150,236,0,149,133,241,0,121,100,186,0,88,74,127,0,60,49,81,0,29,29,33,0,253,247,134,0,255,213,155,0,235,189,157,0,213,163,154,0,185,140,147,0,151,116,136,0,118,93,115,0,85,71,105,0,109,204,255,0,85,177,241,0,64,151,234,0,20,118,192,0,16,93,162,0,7,72,124,0,3,49,95,0,0,27,64,0,224,250,235,0,169,209,193,0,138,193,150,0,135,174,142,0,113,149,125,0,91,123,105,0,71,101,90,0,45,75,71,0,244,163,128,0,215,147,116,0,191,126,99,0,169,109,88,0,148,93,79,0,120,76,73,0,83,57,58,0,55,36,35,0,127,189,57,0,120,158,36,0,107,132,45,0,88,113,44,0,76,95,51,0,57,77,60,0,46,61,71,0,29,44,67,0,254,223,177,0,207,175,142,0,179,151,131,0,145,122,123,0,117,104,110,0,86,80,111,0,59,56,85,0,38,35,61,0,255,246,79,0,232,210,75,0,209,170,57,0,186,136,46,0,158,101,32,0,133,79,18,0,117,59,9,0,98,42,0,0,208,204,50,0,180,170,51,0,150,154,38,0,124,131,30,0,97,115,8,0,73,93,0,0,47,79,8,0,32,41,0,0,229,154,124,0,210,141,122,0,193,126,122,0,172,111,110,0,152,89,90,0,124,75,71,0,99,52,50,0,73,37,28,0,255,205,255,0,255,166,197,0,255,125,175,0,248,93,128,0,217,74,105,0,159,59,82,0,113,43,59,0,67,23,41,0,220,212,255,0,184,174,255,0,156,155,239,0,142,140,226,0,120,119,193,0,100,101,157,0,74,82,128,0,50,53,88,0,237,212,147,0,237,182,124,0,206,151,112,0,189,125,100,0,167,96,87,0,144,70,71,0,110,36,52,0,95,9,38,0,251,234,163,0,232,203,130,0,204,169,110,0,178,144,98,0,153,121,81,0,126,97,68,0,97,74,60,0,69,49,37,0,0,222,218,0,0,191,163,0,0,160,135,0,0,130,121,0,0,107,109,0,0,81,98,0,0,64,81,0,0,46,73,0,248,198,218,0,219,153,191,0,193,120,170,0,185,109,145,0,151,84,117,0,102,54,89,0,73,40,61,0,46,16,38,0,221,191,154,0,192,165,136,0,158,138,110,0,126,108,84,0,114,90,81,0,94,70,70,0,74,53,60,0,49,34,42,0,255,250,171,0,236,197,129,0,216,159,117,0,199,130,108,0,174,107,96,0,138,82,88,0,90,60,69,0,59,48,60,0,235,240,246,0,186,199,219,0,171,174,190,0,132,135,149,0,115,115,127,0,91,92,105,0,72,71,77,0,45,49,54,0,255,219,255,0,255,187,199,0,255,155,168,0,255,118,118,0,228,92,95,0,182,60,53,0,130,33,29,0,94,7,17,0,145,218,161,0,85,182,125,0,73,137,96,0,65,116,85,0,50,92,64,0,56,81,64,0,47,63,56,0,26,51,44,0,116,245,253,0,82,210,255,0,65,178,227,0,49,142,184,0,54,107,138,0,37,70,107,0,35,50,77,0,24,31,47,0,166,204,52,0,125,164,45,0,81,136,34,0,47,105,12,0,34,89,24,0,23,74,27,0,0,50,33,0,0,34,25,0,198,236,255,0,199,214,255,0,150,178,217,0,134,144,178,0,122,119,153,0,97,95,132,0,58,69,104,0,40,43,74,0,255,233,73,0,255,188,78,0,249,155,78,0,227,120,64,0,205,94,70,0,182,77,70,0,148,54,58,0,102,43,41,0,136,214,255,0,36,174,214,0,50,140,167,0,0,111,137,0,11,102,127,0,0,77,94,0,0,56,80,0,0,39,53,0,255,206,127,0,251,170,132,0,213,141,107,0,173,110,81,0,154,98,76,0,136,80,65,0,115,61,59,0,88,49,38,0,255,243,214,0,234,219,201,0,204,195,177,0,187,175,164,0,174,161,137,0,158,140,121,0,133,117,101,0,98,93,84,0,245,247,250,0,205,210,218,0,166,174,186,0,130,139,152,0,98,104,113,0,67,69,73,0,34,35,35,0,0,0,0,0,0,1,1,1,0,1,0,3,0,2,50,0,0,0,3,"Here is where you copy command to command line interface.","y:\a.png",0,1,"Initialized GUI Filter!",0,255,255,255,0,50,50
fx_rep_tg3 0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,1,0,1,1,1,1,0,1,0,1,1,1,1,0,50,50
fx_rep_self_referential_formula 1,1,0,0,"1,"0"","0","1,"0"","0",0,1,1,"1,"1"","1,"1"",1,1,1,1,0
fx_rep_vibrance_ych 30,0,50,50
fx_vibrato 0,1,1,1,1,1,1,1,1,.85,.85,1,1,1,0,0,.7,0,0,100,1,1,1,1,1,.85,.85,1,1,1,0,0,.7,0,0,100,1,1,1,1,1,.85,.85,1,1,1,0,0,.7,0,0,100,1,1,1,1,1,.85,.85,1,1,1,0,0,.7,0,0,100,1,1,0,1,1,.85,.85,1,1,1,0,0,.7,1,0,100,1,1,0
fx_rep_w_rgb82gray 33.33,33.33,33.33,1,0,0,0,0,0,0,50,50
rep_z_render 0,255,0,0
plasma_transition 0.5,5,1,42
randomwaves 84,80.,1.2,42
fx_adjust_orientation 5
fx_blur_quad 0,5,0,0,0,1,100,40,25,60,25,95,90,5,90
fx_apply_curve 0,-1,128,-1,128,-1,128,-1,128,-1,128,255,1,0,0,0,0
fx_apply_Labcurve 0,-1,128,-1,128,-1,128,-1,128,-1,128,255,1,0,0
fx_apply_Labcurve 0,-1,128,-1,128,-1,128,-1,128,-1,128,255,1,0,0
fx_apply_Labcurve 0,-1,128,-1,128,-1,128,-1,128,-1,128,255,1,0,0
fx_apply_RGBcurve 0,-1,128,-1,128,-1,128,-1,128,-1,128,255,1,0,0
fx_apply_RGBcurve 0,-1,128,-1,128,-1,128,-1,128,-1,128,255,1,0,0
fx_apply_RGBcurve 0,-1,128,-1,128,-1,128,-1,128,-1,128,255,1,0,0
fx_apply_YCbCrcurve 0,-1,128,-1,128,-1,128,-1,128,-1,128,255,1,0,0
fx_apply_YCbCrcurve 0,-1,128,-1,128,-1,128,-1,128,-1,128,255,1,0,0
fx_apply_YCbCrcurve 0,-1,128,-1,128,-1,128,-1,128,-1,128,255,1,0,0
fx_faded_mirror 0,10,10
fx_frame_round_old 6,20,0.1,0,255,255,255,255,0,0.1,3
gaap_test 0,0,0,0
fx_gca 255,255,255,1,0,0,0
fx_grain 40,5,0,2,0.8,0.5,0.5,1,0,0.5,0.6,0.2,0.5,0
fx_krita 
gui_layer_info 1
fx_perspective_scale 2,75,0,0,0
dt_segment_shaded 1,0.7,1
fx_zoom 2,50,50,0
Annular_Steiner_Chain_Round_Tile 800,1,0,0,100,0,100,12,0,1,0,0,0,255,0,255,255,0,127,0,0,255,127,0
samj_Bulles_Colorees 64,64,64,255,8,0,0,3,0,0,0,0,0,0,0,0,255
samj_Carres_Noirs 128,40,7,0,0,0,0,255,2,96,96,96,255,2,255,255,255,255,0,2,0
Cercles_Concentriques_A 800,1,6,0,0,90,1,1,50,1,1,0,0,0,255,0,0,0,0,5,0,0,0,255,255,255,255,0,255,255,0,0,255,0,255,255,255,255,0,255,255,0,1,0,5,0,0
samj_Coeurs_Hearts_002 16,100,0,0,1,0,255,255,255,255,0,0,0,1,1
samj_Tiles_Deconstruction 63,0,0,0,0,64
samj_Ellipses_Colorees 64,64,64,255,8,8,0,0,0,0,0,255
samj_Filtres_Sur_Tuiles 20,0,"shift 2,2,0,0,0 mirror y","dilate 20"
samj_Filtres_Sur_Tuiles_V2 40,1,"dilate 3 shift 1,1,0,0,0",0,0,3,"pow 1.5 n 0,255"
samj_Flouter 0,0,0,10,0,0,1
samj_Losanges_Colores 64,64,64,255,8,0,0,0,1.5,0,1,0,0,0,0,0,255,0
samj_Moirage_Spline 0,0,0,255,8,0,-50,50,-50,50,0,0,0,0,0,255,8,0,-50,50,-50,50,0,0
samj_Moirage_Spline_XY 0,0,0,255,8,0,-50,50,-50,50,0,0,0,0,255,8,0,-50,50,-50,50,0,0
samj_dt_montage_sur_une_page 1200,1200,2,5,0
samj_Montage_Annular_Steiner_Chain 2400,12,1,0,0,0,0,0,0,1,0,0,90,1,100,0,1,0,0
samj_Montage_Cercle_Spirale 2400,8,0,1,0,0,0,0,0
samj_Montage_Figures_Geometriques 4800,0,0,1,0,0,0,0,1,0,0,0,1,10,255,255,255,6,30,1,-3,300,270
samj_montage_multi_rows_GUI 4,2,0,1,2400,2,2,0,0
samj_Montage_Pappus_Chain 1200,0,1,0,35,100,0,0,255,255,255,255,0,0,0,0
samj_montage_row_GUI 8,0,1,2400,2,2,0,0,0,1,0
samj_Montage_Zigzag 4800,8,1,256,0,0,0,0,0,0
samj_Pixelisation_Contours 0.5,0,20,8,0,0,1,0,10,0.8
samj_Pointes_De_Diamants_Colorees 64,64,64,255,8,0,0,1.5,0,0,0,0,0,0,0,255,0
samj_reptile 0,64,25,2,0,40,1
samj_Scintillements_Colores 64,64,64,255,8,8,1,768,12,0,0,0,0,0,0,0,255,0
samj_Angoisse 1,5,0,5,100,2,4,1,250
samj_Barbouillage_Paint_Daub 2,2,100,0.2,1,4,1,0,8
samj_chalkitup 5,2.5,1.5,50,1,5,5,0,0,7,0.8,1.9,7,0
samj_Color_EdgesO_Engrave 0,50,9,1,2,50,0,8,40,0,0,1,0,0,0
samj_Contour_Drawings_en 5,0,2,0,0,5,10,0.8,0,1.1,10,0,1
samj_Contour_Epais 1,0,5,1,5,5,10,0.8,2,1
samj_Couleurs_Rayees 0,30,0,100,4,4,0,2,0.7,0
samj_Couleurs_Rayees_2 0,30,0,100,4,4,255,1
samj_Test_Cubisme_A 1,120,70,1,30,30,2,0,6,0,1,300,8,10,10,20,1,1,5,1,1,64,25,8,1,0
samj_Test_Cubisme_B 11,6,0,30,40,17,6,0,0,0,0,3,1,1,64,25,8,1,0
samj_Diff_Tensors_Blend 10,5,1,0.15,1,0,3,1,0,3,1
samj_Edges_And_LIC 0,200,0,0,0,15,8,127,255,0,0,1,20,0.2,0,14,1
samj_Flamboyance_Test 65,28,9.25,0.3,0,1,1.1,10,12,2,0,0,1,0,150,0.42,0.85,0.6,7.83,0.68,19,2.65,0,1,1,3,200,20,0.1,1.5,8,1,3,1,0,20,0,0,0,0
samj_fond_broderie 8,2,0,1,1
samj_Fond_Brosse 3,1
samj_fx_sketchbw_modifie 3,45,180,30,1.75,0.02,0.5,0.75,0.1,0.7,3,6,0,1,4,0,1234,0,2,100,0.2,1,4,1,0
samj_Texture_Granuleuse 0,20,80.0,0,0
samj_Gris_Raye 0,30,0,100,4,4,255,1
samj_Hallucinogen 80,2,80,1.5,2,0,0,0,1,80,8
samj_Hallucinogen_b 1,300,10,10,10,10,80,2,80,1.5,2,0,0,1,1,80,8,1,0,14,1
samj_Impressions 10,5,5,1,1,0,2,0,1,5,0,5,100,2,4,1,250,1.2
samj_Isophotes_Vers_Aquarelle 16,0.5,4,0,1,10,1,0,0,0,0,1,10,10,4,3,251,237,206,1
samj_Plasmic 0,1.1,2,40,0,0,0,0
samj_Plasmic_V2 2,4,10,2,0.02,8,0,0,0,0,0,0,255
samj_Pointillisme 10,2,5,1,1,1,0,0,0,255
samj_Pointillisme_B 1,0,90,3,1,1,0,0,0,255
samj_Posterize_B 1,12,1,0,40,30,1,0,0,0,0,1,0,0,0,0,0,0
samj_ripple_houghsketchbw 2,100,50,1,45,0,10,5,80,0.1,100,1,17,1,0,0
samj_Test_Skeletik 10,1,0,0,0,3,1,0,0,0,255
samj_TensorTest 0.3,0.9,0.6,1.1,0,0,20,32,20,2,1,0,2
samj_texture_coloree 0,0.7,200,125,50,5,5,45,200,4,0.2
samj_texture_coloree_en 0,0.7,200,125,50,5,5,45,200,4,0.2,1,10,1,1
Engrave_colore 0,0.5,4,0,8,40,0,25,1,2,0,0,0,255,255,255
engrave_modifie 0,0.5,4,0,8,40,0,25,1
samj_Grid_BW_Color 3,0,1,4,4,32,1,2,0,32
XY_hardsketchbw_samj 0.2,300,50,1,0.1,20,0,0,0,0,180,40,160,255,0
samj_Masques_Noir_Et_Blanc 3,50
samj_NB_EdgesO_Engrave 0,50,9,1,2,50,0,8,40,0,0,1
samj_scintillements 0,5,0,1,20,2,6,20,5,45,2,6,5,20,1,7,0,0
samj_64_Couleurs_Max 9,4,2,50,1,0,240,240,40,120,40,240
samj_test_9_colors 70,17,10,134,35,20,154,27,58,186,61,89,220,103,129,239,151,169,246,194,205,253,201,212,255,255,255,0,0
samj_At06A_2017_VarCouleurs 1,0,100,0,0
samj_Color_Palettes 50,50,0,6,24,0,0,180,90,45,1,3,2,1
Couleurs_Metalliques 0,0,22,0,0,0,0,6,5,20,1,0,0,0,0.3,60,1,1,0
samj_Dorure 0.4,0.2,0.2,0,1,20,20,0,0.5,0,60,0,0,100,45,18,32,1
samj_Remplir_Fill_Flood 50,50,255,0,0,255,20
samj_test_shapeprevalent 2,32,50
samj_Topographie_Eliminate_Contour_Lines 10,152,197,242,10,114,182,239,90,92,95,98,30,133,164,196,10,120,143,166,10,22,0,245,60,1,0
samj_Valeur_Moyenne_LCH 400,14,4,"y:\temp","samj_Valeur_Moyenne_LCH.txt"
samj_Variations_RVB 50,50,0,6,0,0,180,90,45,0,1,0
samj_Carte_De_Repoussage 30,1,0,0
samj_Colored_Outlines 0,2,8,0,0,0,0,0,255
samj_Coloriage 612,255,2,6,2,0,0,0,255,0
samj_Contours_Arrondis 1,3,5,10,0,0
samj_Contours_Blancs 1,16,2,0,0.5,0,100,0,3,2,1,0,0,0,15,4,1,0
samj_Contours_Coins_Vifs 20,20,2,0,0.05,0,0,0,0,0,0
samj_Contours_Colores 1.1,2,40,0,0
samj_Edges_Offsets_Dots 1.3,40,18,2,4,0,0,0,0,0
samj_Quelques_Isophotes 10,10,1,0.02,8
samj_Quelques_Isophotes_B 16,100,0,0,4
samj_Quelques_Isophotes_C 0,0,160,0,80,6,4,1,1,0,20,45,0.7,20
samj_shapeprevalent_contours 4,0,200,32,8,4,50,1,1,2,1,0,0
samj_Scintillements_Colores_Contours 0,8,0,8,8,1,768,12,0,0,0,0,0,0,0,255
samj_Skeletation 2,100,100,0,0,1
samj_Test_Mauvais_Contours 0,0,0,2,1,0,255,0,255,0,0,3,1
samj_Beigne 100,0,0,0,0,0,0,0,20,20,255,255,255,255,0
samj_Cercle_Polaire 1,0,0,1,0,0,2,0,0,0,50,50
samj_Ecraser_Etirer 12,0,0,0,100,0
samj_Ecraser_Etirer_V2 12,0,0,100,50,0
samj_Random_Small_Deformations 10,5,3
samj_Random_Small_Deformations_B 10,5,3,0
samj_deformation_20230712 6,6,0.25,1,1
samj_Zones_Grises 3,0,3,4,1
samj_Ellipses_Inpaint 0,0,0,8,8,2,0,10
samj_Image_Segments_Degrades 2000,5,1,0,0,0,0,255,1234,0,0
samj_Image_Vers_Segments 1500,5,1,0,0,0,0,255,1234,0
samj_Degradations_Path_Solidify 0,0,0,0,0,2,10,1,0,0,1,75,0,20
samj_Random_Plasma 0,80
samj_rotate_flip_image 1,-45,2,0,1,0,0,0,255,255,255,255
samj_Selection_Ellipse 50,50,30,20,0,0,0,0,0,2,255
samj_Selection_Hermite_Spline 0
samj_Selection_Polygone 8,3,3,50,20,97,3,80,50,97,97,50,80,3,97,20,50,0,0,0,2,255
samj_Selection_Rectangle 50,50,50,40,0,0,0,0,0,2,255
samj_Selection_Spline_Rounded 20,1,80,20,95,50,97,97,50,95,20,80,25,40,3,3,40,25,0,0,0,0,2,255
samj_shapeprevalent_degradations 2,200,20,64,8,4,50,1,0
samj_Antialias_Wavelet 40,0,127,255,1,60,1,1,1
samj_Wavelet_Sharpen_Test_en 0,0
samj_Wavelet_Sharpen_Test 1
samj_At06A_2017_frame_painting 10,0.4,6,127,127,127,2,400,50,10,1,0.5,123456,35,1,1,1,0,100
samj_Ombre_Portee 0,0,0,128,0,0,0,0,255,127,127,127,255,2,2,255,255,255,255,0.1
samj_Ombre_Portee_B 16,128,0,1,16,1,0,0,127,127,127,255,2,2,2,2,255,255,255,255
samj_Ombre_Portee_C 32,8,16,192,0,1,16,1,0,0,96,96,96,255,2,2,2,2,255,255,255,255
samj_Ombre_Portee_D 16,64,64,2,1,16,5,1,-32,4,1,2,2,2,255,255,255,255
samj_Posterize_Relief 1,12,20,0,40,30,1,0,0.4,0,1,15,60
samj_Contours_Gros_Pixels 1,8,0,20,20,16,1.1,0,0,15,0,0,0,1
samj_Degrades_HSL_TSL 4,800,240,240,40,255,120,40,240,255,0,0,0,360,100,100,0,0,0,718,75,100,0,100,0,0,0,0
Denim_samj 5,2,0,40,40,25,50,0,43,108,126,255
samj_EPPE_Transform 50,50,0,10,10,32,0.1,10,18,0,255,255,255,255,3,0,0.1
samj_Formes_Couleurs_Variees_Dans_Image 0,0,0,0,0,192,128,64,255,1,1,1,0,0,127,255,0,0,0,0,1
samj_Lignes_H_ou_V_Colorees 159,190,195,55,67,140,54,40,39,140,81,88,207,175,190,220,202,196,170,186,192,130,149,139,112,96,96,237,168,138,220,199,205,234,217,219,255,256,256,1,0,0
samj_Marbre 1,1,8,5,0.2,0,0,0,140,120,220,0,3,1
samj_Mosaic_A 20,3,1,0,0,0
samj_Mosaic_B 30,400,1,100,1,1,0,0,0
samj_Motif_Plasma 2,20,20,30,1,75,0
samj_Motifs_7200 2,0,20,20,30,1,75,0,0,255,0,221,255,0,0,0
samj_Motifs_7200_VarianteA 2,0,20,20,30,1,75,0,0,255,0,221,255,0,0,0
samj_Motifs_7200_VarianteB 4,0,0,3,45,180,30,0.75,0.02,0.5,1.5,0.1,1,10,10,1,1,4,48,4,1,1
samj_Motifs_7200_VarianteC 4,32,64,32,1,5,255,0,221,0,0,0,0,0,240,40,160,255,240,240,40,255,0
samj_Motifs_Aleatoires_Symetriques_Degrades 0,400,4,1,1,1
samj_Degrades_XYZ_CIE 6,800,240,240,40,255,120,40,240,255,0,0,0,100,64,64,0,0,1,0,100,-128,128,-128,128,0,11,0,0
samj_Lignes_Perpendiculaires 255,255,255,255,10,1,2,1234,5678,0,0,1
samj_Points_Aleatoires_001 10,255,255,0,255,3,0,1
samj_pouring 0,1,0,0
samj_Pseudo_Vitrail 0,40,0,0,2,0,0,0,255,0,0
samj_Motifs_Rapides 2345,19,1234,30,0,10,1234,0,0,1,0,255,170,0,128,0,0
samj_Motifs_Rapides_B 1,1234,16,0,8
samj_Courtepointe 20,0,1,0,1,0
samj_Rays_Of_Colors 300,12,40,16,38,1,0,0,0
samj_Soft_Random_Shades 140,120,220,255,0,20,0
samj_Steps_V2 10,10,4,1,10,2,60,0,1.1,10
samj_Tissu_Fond_Flou 0,0,100,100,0,1,0,1,0,0,0,0,0
samj_Variation_Stained_Glass 0,2,8,0,3,40,100,0,1.1,20
samj_Adjacent_Annular_Steiner_Chains 50,50,0,0,6,56,20,50,0,255,0,221,127,72,0,255,127,0,145,255,127,0,255,144,127,72,255,0,127,255,217,0,127,255,0,0,127,5,0,0,2,0,0,0,255,0,0,0
samj_Rectangles_Adjacents 10,10,80,80,0,50,6,0,0,0,0,0,255,1,255,255,0,127,0,0,255,127,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Annular_Steiner_Chains 50,50,50,6,0,0,0,0,255,1,255,255,0,127,64,192,128,127,0,255,0,127,0,0,255,127,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Chains_Solidify 50,50,0,6,56,20,50,0,255,0,221,255,72,0,255,255,0,145,255,255,0,255,144,255,72,255,0,255,255,217,0,255,255,0,0,255,5,255,127,0,255,0,0,0,255,100
samj_Noel_2016 50,50,100,150,7,0,240,45,15,255,-15,2.5,2,0.8,1,1.5,0,0,0,0.25,10,0.8
samj_Chryzodes 100,0,0,0,255,0,50,50,45,79,3,1,240,128,64,255,0,0,0,0,0,0,0,0,0,0,0
samj_Contour_Line_Laser_LED 0,1,0
samj_dessiner_un_polygone 5,50,50,0,40,50,1,255,255,0,0,0,0,0,1,0,0,255,0,0,255,0,0,0,127,127,127,0,0,0,0,0,255,255,255,0,0,0,0,1,255,0,0,0,1
samj_Egg_Oeuf_Granville 50,50,0,20,30,10,0,0,0,0,255,1,255,255,0,127,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Egg_Oeuf_Hugelschaffer 50,50,50,6,48,0,0,0,0,0,255,1,255,255,0,127,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Egg_Oeuf_Rosillo 50,50,40,200,300,0,0,0,0,255,1,255,255,0,127,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Engrenages_Laser_LED 80,20,12,14,17,1,1,2,19,250,0,0,0,0
samj_etoile_de_pompei_153 50,50,30,90,255,255,255,255,170,255,255,255,0,98,147,255,0,59,89,255,1,0
samj_Etoile_De_Pompei_Triangles_Sierpinski 50,50,30,100,0,0,0,255,0,5,255,0,0,127,255,0,255,127,0,0,255,127,0,255,255,127,255,255,0,127,0,63,255,64,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Etoiles_Remplies_Triangles_Sierpinski 6,50,50,50,40,30,0,0,0,0,0,255,1,4,255,0,0,127,255,192,64,127,0,0,255,127,0,255,255,127,255,255,0,127,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Etoiles_Laser_LED 1400,5,2,0,0,0,0
samj_Flocon_Laser_LED 1400,6,5,0
samj_Fractal_Tree 50,100,-90,8,10,20,255,0,0,255,20,0,4,1,0,0.25,10,0.8
samj_Linear_Gradient_CIE_Lab 0,0,240,40,160,255,240,240,40,255
samj_Shape_Linear_Gradient_CIE_Lab 10,10,90,90,2,0,240,40,160,255,240,240,40,255,0,0,0,0,255,0
Harmonograph_samj 50,50,192,128,64,255,0,0,1000,0,400,150,200,200,100,4,6,2,2,15,270,75,60,0.04,0.04,0.05,0.06,0,0,0,1,1
samj_Hawaiian_Earring 50,50,40,6,0,0,0,0,0,255,1,255,255,0,127,0,0,255,127,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Lignes_Epaisseur_Variable 0,32,3,0,0,0,255,255,255,255,255,0,0,1,0,0,0,0,0,0,0.5,0.5,1.8,0,0
samj_Orbites 100,0,0,0,255,50,50,20,79,45,2,240,128,64,255,0,0,0,0,0,0,0,0
samj_Palette_De_Degrades 159,190,195,55,67,140,54,40,39,140,81,88,207,175,190,220,202,196,170,186,192,130,149,139,112,96,96,237,168,138,220,199,205,234,217,219,0,0,256,2
samj_Cercles_Tangents_Dans_Cercle 50,50,50,40,0,0,0,0,255,1,127,127,127,127,255,0,0,127,0,255,0,127,0,0,255,127,255,0,255,127,255,255,0,127,0,255,255,127,192,128,64,127,64,192,128,127,128,64,192,127,192,64,128,127,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
Pintograph_samj 50,50,192,128,64,255,0,0,1000,0,400,150,200,200,100,4.00,4.05,4.16,4.32,75,150,75,60,0,0,0,1,1
samj_Poisson_D_Avril 50,50,40,2,0,0,0,0,255,1,250,60,10,255,255,255,255,255,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Arbre_Pythagore 50,95,8,12,255,0,0,255,20,0,1,0,0,0.25,10,0.8
samj_Rosace_Triangles_Sierpinski 6,6,50,50,50,-15,25,5,30,0,0,0,255,0,0,0,0,3,0,0,255,127,255,255,0,127,128,64,192,127,64,128,192,127,0,255,255,127,0,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Cercles_Qui_Tournent 800,255,255,255,255,0,1,0.5,0.33,7,17,1,0.5,0.33,7,17,1,10,0,0,0,255,0,0,0,0,0,0,0,0.5,0.5,1.8,0
samj_Lignes_Colonnes 16,16,0,0,0,0,64
samj_Formes_Geometriques_Simples 50,50,127,127,127,127,255,255,0,255,0,0,255,255,5,40,40,4,0,0,1
samj_Flocon_De_Neige 50,50,6,50,40,0,3,192,192,192,1,0,3,255,255,255,0.7,0,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
Spirographe_samj 50,50,200,50,150,192,128,64,255,0,0,3,0,1,0,0,0,255,0,0,255,0,255,255,0,255,0,0,0,1,1
samj_Splines_Test 50,50,30,30,90,30,1,10,2,2,2,2,2,2,2,2,255,255,0,255,0,255,255,255,1,0,0
samj_Des_Lignes_002 100,0,0,192,128,64,255,0,0,1,50,50,0,0,0,0,1
samj_Superposition_Triangles_Sierpinski 6,6,50,50,50,1,20,30,0,0,0,255,1,4,0,0,255,127,255,255,0,127,128,64,192,127,64,128,192,127,0,255,255,127,0,0,0,0,0,0,0,0,0.5,0.5,1.8,0,0,0,0
samj_Test_Visu_3D 1,"C:\\\\GimpEval-2.9.5-Win\\\\images_test\\\\GMIC\\\\cube.off",0.5,1,1,0,0,0,1,0,0,0,1024,1024,0.5,0,0,0,45,0,0,-100,0.5,0.7,2,1,400,1,225,255,255,255
Traits_Strokes_samj 50,50,35,0,100,0,30,0,360,240,60,120,255,0,0,0,20,0,0,0,1,1
Triangles_Shades_Adjacents 0,50,50,60,-1,0,255,255,255,255,0,221,72,0,255,0,145,255,0,255,144,72,255,0,255,217,0,255,0,0,5,0,0,128,128,128,1,0,3,1,0
Twisted_Rays 800,1,0.2,2,5,21,0,0,0,0,255,255,0,255,255,255,0,255,0,255,255,255,0,255,255,0,0,255,255,0,255,255,255,255,255,255,0,0,0,0,255,0,2,2,0,0,5,0,0
samj_CorLine 0,10,0.5,0,0,50,1,0
samj_CorLine_B 0,1,10,0,0,0,0.5,0,0,50,1,0
samj_fx_spatial_transition_to_PNG 10,0,5,"cos(x*y/(16+32*A))",0,4,0,"0",0
samj_transition_H_V_to_PNG 10,1,0,0
samj_BoxFiter_Map 2,3,3,0,0,0,2,127,16,0,0,0.2
samj_BoxFiter_Test 2,3,3,1,2
samj_Carres_Lignes 2000,3,1234,0,1,1.5,0,0,1,0,0,0,255
samj_CeKoaSa_001 0,15,3,1,3
samj_CeKoaSa_002 0,15,3,1,3,1
samj_CeKoaSa_003 0,5,1,1,3
samj_CeKoaSa_004 30,0,0,0.8,0
samj_CeKoaSa_005 16,16,0,0,0.2,1,1,0,1
samj_CeKoaSa_007 8,8,10,8,8
samj_CeKoaSa_008 64,64,4,1,2,16,1,20,0.1,0,1,64,1,2,10,0.8,255,255,255,255,0
samj_CeKoaSa_009 1,5,0.5,0.63,0.6,2.35,0.8,30,2,0,1,25,1,50,1,1.0,1.2,1,1,1,1,1,1,0,0,0,0,0,7,"0",0,"0","0,0,100,100,-1,0,0,100,100,-1,0,0,100,100,-1,0,0,100,100,-1,0,0,100,100"
samj_CeKoaSa_010 30,10,0.1,2,10
samj_CeKoaSa_011 0.2,0,0,5,0,0,0,0,240,40,160,255,240,240,40,255,0,50,205
samj_diaporama 1,0
Je_passe_l_hiver_en_Floride 
samj_Layers_To_PNG 
polygonize_GUI 300,10,10,10,10,0
gimp_recolorize_20130115_modifie 30,0,0,255,0,0,1
samj_Relief_A 3,1,0,1,16,1,50,1,1.0,1.2,1,1,1,1,1,1,0,0,0,0,0,0,100
samj_TSP_Segments_GUI 3,50,2,0.5,12345,0,0,0,0,255,0,1,1
samj_SVG_Symetries_A 8,0,0,0.33,1,0.66,-1,1,0.5,0,2,0,-5,5,0
samj_GUI_Test_Liste_Points_TSP 0,50,3,48,1,0,2,1,1,-5,5,0,1
samj_test_A 64,192,500
samj_test_B 100
samj_test_C 100
samj_test_x_color_curves 1,0
samj_test_D 40,255,10,30,5,0,8,0,4,0,25
samj_test_Dither_Color 2,0,230,230,150,0,0
samj_test_E 0,0.7,0.3,0.6,1.1,0,200,125,50,0,1
samj_test_F 40,50,1
samj_test_G 0,0,0,30
samj_Test_Solidify 10,10,1,0.02,8,1,75,0,20
samj_Tests_Fill 0,30,2,-0.8,0.4,1,1,0,0,0,120,40,240,0,50
samj_gimp_texture_zero_zero_deux 0,10,4,10,0.5,1,1,1,0.3
samj_Texture_Aquarelle_1 10,10,4,3,251,237,206,1
samj_Toile_D_Araignee 0,10,4
samj_test_tout_interactif 
samj_Triangles_Lignes 2000,3,1234,0,1,1.5,0,0.5,0.5,1,0,0,0,255
disco 10,15,20,250
KittyRings 30,8,0,1,113,0,113,0,255,0
moon2panorama 0,0,0,360,0,0,1,0,0
spiral_RGB 1,3,5,0
mc_flou 30,6,1,1,1,0,255,1,1,1,0
mc_pendraw 8,0.8,450,21,0.5,1,0,0,255,0,0
fx_tk_retouch 30,3,1,20,1.5,1,2.5,0,0,0
fx_tk_dof 50,50,30,60,5,15,2,0,0,200,40,2,0,0,0,0,0.01,0,1,0,0
fx_tk_infrared 0.75,0.5,-100,0.75,0,1,0,0,1,1,0,50,0
demo_ra 1,1
demo_xy 1,1
fx_fourier_picture_watermark 0.2
mathmap_flag 0.05,5,1,5
mathmap_rel2ellv3 
mathmap_spiral 5,0
fx_custom_code "1,"foreach {\n\n  to_rgb\n  +deform 20\n  blend_edges 3\n\n}\n\n\n"",0,0,0,2,0,50,50
fx_custom_code "1,"foreach {\n\n  to_rgb\n  +deform 20\n  blend_edges 3\n\n}\n\n\n"",0,0,0,2,0,50,50
fx_custom_code "1,"foreach {\n\n  to_rgb\n  +deform 20\n  blend_edges 3\n\n}\n\n\n"",0,0,0,2,0,50,50
fx_output_565 "y:\b.png",0
fx_gmic_demos 0
fx_import_image "y:\a.png",1
fx_input_565 "y:\a.png","800","600",0
fx_intarsia "y:\temp","intarsia.html",512,12,1,0,1,100
fx_image_sample 0,0,0
fx_solve_maze 5,5,95,95,0.1,3,255,0,0,0

画像作成バッチファイル

一部うまく動かないパラメータもありますが多くのパラメータが動いているのでとりあえずこれで諦めました

setlocal enabledelayedexpansion
md Y:\temp\tmp2\
md Y:\temp\tmp3\
del Y:\temp\e.txt
findstr /V /C:"gui_download_all_data" Y:\temp\gmicpara.txt > Y:\temp\gmicpara2.txt
copy "C:\Users\temp\AppData\Roaming\gmic\sample_teddy.png"  Y:\a.png

for /f "tokens=1-2*" %%a in (Y:\temp\gmicpara2.txt) do (
set para=%%b %%c
set para=!para:"=\""!

set para2=%%a  "!para!"
set para2=!para2: "="!
  set moji=%%a
if not exist Y:\temp\tmp2\!moji!.png (
if not exist Y:\temp\tmp2\!moji!_*.png (

D:\app2\gmic\gmic.exe  -input  "C:\Users\temp\AppData\Roaming\gmic\sample_teddy.png" -!para2! ^
 -output  Y:\temp\tmp2\!moji!.png
timeout 1
)
)
if not exist Y:\temp\tmp2\!moji!.png (
if not exist Y:\temp\tmp2\!moji!_*.png (

D:\app2\gmic\gmic.exe  -input  "C:\Users\temp\AppData\Roaming\gmic\sample_teddy.png" ^
 -input  "C:\Users\temp\AppData\Roaming\gmic\sample_gmicky.png" ^
 -!para2! ^
 -output  Y:\temp\tmp2\!moji!.png
timeout 1
)
)
if not exist Y:\temp\tmp2\!moji!.png (
if not exist Y:\temp\tmp2\!moji!_*.png (

D:\app2\gmic\gmic.exe  -input  "C:\Users\temp\AppData\Roaming\gmic\sample_teddy.png" ^
 -input  "C:\Users\temp\AppData\Roaming\gmic\sample_gmicky.png" ^
 -input "C:\Users\temp\AppData\Roaming\gmic\sample_flower.png"  ^
 -!para2! ^
 -output  Y:\temp\tmp2\!moji!.png
timeout 1
)
)


if not exist Y:\temp\tmp2\!moji!.png (
if not exist Y:\temp\tmp2\!moji!_*.png (

D:\app2\gmic\gmic.exe  -input  "C:\Users\temp\AppData\Roaming\gmic\sample_teddy.png" ^
 -input  "C:\Users\temp\AppData\Roaming\gmic\grain_kodak_tmax400.cimgz" ^
 -!para2! ^
 -output  Y:\temp\tmp2\!moji!.png
timeout 1
)
)
if not exist Y:\temp\tmp2\!moji!.png (
if not exist Y:\temp\tmp2\!moji!_*.png (
echo !para2!>>Y:\temp\e.txt
timeout 20
)
)
)
move /y Y:\temp\tmp2\*_00????.png  Y:\temp\tmp3
timeout 202

 

-G'MIC, windows, オープンソース, 画像

Copyright© eightban's memo , 2024 All Rights Reserved Powered by STINGER.