Merge branch 'master' into root6

This commit is contained in:
suter_a 2016-02-16 17:46:32 +01:00
commit 4ab8e6ebf2
60 changed files with 2126 additions and 1372 deletions

View File

@ -5,6 +5,14 @@
changes since 0.16.0
===================================
NEW 2016-01-22 update of the docu which now describes the RRF option.
CHANGED 2016-02-16 if the LEM file is created 2012 or later and the
data-file-format tag is still ROOT-NPP or ROOT-PPC, it
will automatically switched to MUSR-ROOT. This way red/green
issues should be prevented. (see MUSR-314).
CHANGED 2016-02-16 start migrating the icons of musredit_qt5 to the breeze
icons (https://github.com/NitruxSA/breeze-icon-theme).
At the same time I start to redesign the musrfit specific
icons accordingly (not yet happy with it, but ...).
changes since 0.15.0
===================================

View File

@ -365,6 +365,10 @@ Bool_t PRunDataHandler::ReadFilesMsr()
return false;
}
char str[1024], *p_str=0;
UInt_t year=0;
TString musrRoot("musr-root");
for (UInt_t i=0; i<runList->size(); i++) {
for (UInt_t j=0; j<runList->at(i).GetRunNameSize(); j++) {
fRunName = *(runList->at(i).GetRunName(j));
@ -372,8 +376,17 @@ Bool_t PRunDataHandler::ReadFilesMsr()
if (!FileExistsCheck(runList->at(i), j))
return false;
// get year from string if LEM data file
strcpy(str, fRunName.Data());
p_str = strstr(str, "lem");
if (p_str != 0)
sscanf(p_str, "lem%d_his", &year);
// check special case for ROOT-NPP/ROOT-PPC (LEM)
if (!runList->at(i).GetFileFormat(j)->CompareTo("root-npp")) { // not post pile up corrected histos
// if LEM file header is already TMusrRoot, change the data-file-format
if (year >= 12)
runList->at(i).SetFileFormat(musrRoot, j);
// check if forward/backward histoNo are within proper bounds, i.e. < PRH_PPC_OFFSET
for (UInt_t k=0; k<runList->at(i).GetForwardHistoNoSize(); k++) {
if (runList->at(i).GetForwardHistoNo(k) > PRH_PPC_OFFSET)
@ -384,6 +397,9 @@ Bool_t PRunDataHandler::ReadFilesMsr()
runList->at(i).SetBackwardHistoNo(runList->at(i).GetBackwardHistoNo(k)-PRH_PPC_OFFSET, k);
}
} else if (!runList->at(i).GetFileFormat(j)->CompareTo("root-ppc")) { // post pile up corrected histos
// if LEM file header is already TMusrRoot, change the data-file-format
if (year >= 12)
runList->at(i).SetFileFormat(musrRoot, j);
// check if forward/backward histoNo are within proper bounds, i.e. > PRH_PPC_OFFSET
for (UInt_t k=0; k<runList->at(i).GetForwardHistoNoSize(); k++) {
if (runList->at(i).GetForwardHistoNo(k) < PRH_PPC_OFFSET)

View File

@ -11,13 +11,14 @@ my %DATADIRS = (
"GPS", "/afs/psi.ch/project/bulkmusr/data/gps",
"LTF", "/afs/psi.ch/project/bulkmusr/data/ltf",
"Dolly", "/afs/psi.ch/project/bulkmusr/data/dolly",
"GPD", "/afs/psi.ch/project/bulkmusr/data/gpd"
"GPD", "/afs/psi.ch/project/bulkmusr/data/gpd",
"HAL", "/afs/psi.ch/project/bulkmusr/data/hifi"
);
my %BeamLines = ( "LEM", "MUE4", "LEM (PPC)", "MUE4", "GPS", "PIM3", "LTF", "PIM3", "Dolly", "PIE1", "GPD", "PIE1" );
my %BeamLines = ( "LEM", "MUE4", "LEM (PPC)", "MUE4", "GPS", "PIM3", "LTF", "PIM3", "Dolly", "PIE1", "GPD", "PIE1" , "HAL", "PIE3");
my %Def_Format =
( "LEM", "ROOT-NPP", "LEM (PPC)", "ROOT-PPC", "GPS", "PSI-BIN", "LTF", "PSI-BIN", "Dolly", "PSI-BIN" , "GPD", "PSI-BIN");
( "LEM", "MUSR-ROOT", "LEM (PPC)", "ROOT-PPC", "GPS", "PSI-BIN", "LTF", "PSI-BIN", "Dolly", "PSI-BIN" , "GPD", "PSI-BIN", "HAL", "PSI-MDU");
# Additional information to extract run properties from database
# For LEM use summary files
@ -28,6 +29,7 @@ $SUMM_DIR="/afs/psi.ch/project/nemu/data/summ/";
"Dolly","/afs/psi.ch/project/bulkmusr/olddata/list/",
"GPD","/afs/psi.ch/project/bulkmusr/olddata/list/",
"ALC","/afs/psi.ch/project/bulkmusr/olddata/list/",
"HAL","/afs/psi.ch/project/bulkmusr/olddata/list/",
"LTF","/afs/psi.ch/project/bulkmusr/olddata/list/");
# Information available since
@ -36,6 +38,7 @@ $SUMM_DIR="/afs/psi.ch/project/nemu/data/summ/";
"Dolly","1998",
"GPD","1993",
"ALC","1993",
"HAL","2012",
"LTF","1995");
# And to deal with old names of bulk muons
@ -160,6 +163,9 @@ FUNCTIONS
my $RUNSType = 0;
my @RUNS=();
if ($All{"RunNumbers"} ne $EMPTY) {
# Remove spaces and other illegal characters
$All{"RunNumbers"} =~ s/ //g;
$All{"RunNumbers"} =~ s/[a-zA-Z]//g;
@RUNS=split( /,/, $All{"RunNumbers"});
$RUNSType = 0;
}
@ -415,13 +421,11 @@ SAVE
# Check if a plot range is defined (i.e. different from fit)
$PRANGE_Line = "use_fit_ranges";
if ( $All{"Xi"} != $All{"Xf"} ) {
# if ($Yi != $Yf) {
if ($All{"Yi"} != $All{"Yf"}) {
$PRANGE_Line = "range ".$All{"Xi"}." ".$All{"Xf"}." ".$All{"Yi"}." ".$All{"Yf"};
# } else {
# $PRANGE_Line = "range $Xi $Xf";
# }
} else {
$PRANGE_Line = "range ".$All{"Xi"}." ".$All{"Xf"};
}
}
$VIEWBIN_Line ="";
@ -441,7 +445,10 @@ $logxy";
if ($All{"FAPODIZATION"} eq $EMPTY) {$All{"FAPODIZATION"}="STRONG";}
if ($All{"FPLOT"} eq $EMPTY) {$All{"FPLOT"}="POWER";}
if ($All{"FPHASE"} eq $EMPTY) {$All{"FPHASE"}="8.5";}
my $FrqRange = "#range ".$All{"FRQMIN"}." ".$All{"FRQMAX"};
if ($All{"FRQMAX"} ne $EMPTY && $All{"FRQMIN"} ne $EMPTY) {
$FrqRange = "range ".$All{"FRQMIN"}." ".$All{"FRQMAX"};
}
$FOURIER_Block=
"###############################################################
@ -451,12 +458,13 @@ fourier_power 12
apodization FAPODIZATION # NONE, WEAK, MEDIUM, STRONG
plot FPLOT # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
phase FPHASE
#range FRQMIN FRQMAX";
FRQRANGE";
$FOURIER_Block=~ s/FUNITS/$All{"FUNITS"}/g;
$FOURIER_Block=~ s/FAPODIZATION/$All{"FAPODIZATION"}/g;
$FOURIER_Block=~ s/FPLOT/$All{"FPLOT"}/g;
$FOURIER_Block=~ s/FPHASE/$All{"FPHASE"}/g;
$FOURIER_Block=~ s/FRQRANGE/$FrqRange/g;
# Don't know why but it is needed initially
$STAT_Block =
@ -519,8 +527,6 @@ sub CreateMSRSingleHist {
my ($Full_T_Block,$Paramcomp_ref)=MSR::CreateTheory(@FitTypes);
my @Paramcomp = @$Paramcomp_ref;
print "Paramcomp= $Paramcomp[0]";
# If we have a FUNCTIONS Block the Full_T_Block should be
# replaced by Func_T_Block
$FUNCTIONS_Block = $EMPTY;
@ -664,6 +670,7 @@ FUNCTIONS
$NoBg_Line = $NoBg_Line . "backgr.fit $PCount\n";
}
}
# End of No and NBg Lines
# Now deal with physical parameters and phases
elsif ( $Param_ORG ne "Phi" && $Param_ORG ne "No" && $Param_ORG ne "NBg") {
@ -817,13 +824,11 @@ SAVE
# Check if a plot range is defined (i.e. different from fit)
$PRANGE_Line = "use_fit_ranges";
if ( $All{"Xi"} != $All{"Xf"} ) {
# if ($Yi != $Yf) {
if ($All{"Yi"} != $All{"Yf"}) {
$PRANGE_Line = "range ".$All{"Xi"}." ".$All{"Xf"}." ".$All{"Yi"}." ".$All{"Yf"};
# } else {
# $PRANGE_Line = "range $Xi $Xf";
# }
} else {
$PRANGE_Line = "range ".$All{"Xi"}." ".$All{"Xf"};
}
}
my $RRFBlock=MSR::CreateRRFBlock(\%All);
@ -1057,11 +1062,18 @@ sub CreateTheory {
$Parameters = join( $SPACE, $Parameters, $THEORY{'dynGssKTLF'} );
}
# Static Lorentzian or Gaussian KF ZF
elsif ( $FitType eq "LGKT" ) {
$T_Block = $T_Block . "\n" . "combiLGKT " . $THEORY{'combiLGKT'};
$Parameters = join( $SPACE, $Parameters, $THEORY{'combiLGKT'} );
}
# Static Stretched KF ZF
elsif ( $FitType eq "STRKT" ) {
$T_Block = $T_Block . "\n" . "strKT " . $THEORY{'strKT'};
$Parameters = join( $SPACE, $Parameters, $THEORY{'strKT'} );
}
# Now some more combined functions (multiplication).
# Lorentzian KT LF multiplied by exponential
@ -1109,6 +1121,15 @@ sub CreateTheory {
$Parameters = join( $SPACE, $Parameters, $THEORY{'combiLGKT'} );
}
# Stretched KT ZF multiplied by exponential
elsif ( $FitType eq "STRKTExp" ) {
$T_Block = $T_Block . "\n" . "simplExpo " . $THEORY{'simplExpo'};
$Parameters = join( $SPACE, $Parameters, $THEORY{'simplExpo'} );
$T_Block =
$T_Block . "\n" . "strKT " . $THEORY{'strKT'};
$Parameters = join( $SPACE, $Parameters, $THEORY{'strKT'} );
}
# Lorentzian or Gaussian KT ZF multiplied by stretched exponential
elsif ( $FitType eq "LGKTSExp" ) {
$T_Block = $T_Block . "\n" . "generExpo " . $THEORY{'generExpo'};
@ -1118,6 +1139,15 @@ sub CreateTheory {
$Parameters = join( $SPACE, $Parameters, $THEORY{'combiLGKT'} );
}
# Stretched KT ZF multiplied by stretched exponential
elsif ( $FitType eq "STRKTSExp" ) {
$T_Block = $T_Block . "\n" . "generExpo " . $THEORY{'generExpo'};
$Parameters = join( $SPACE, $Parameters, $THEORY{'generExpo'} );
$T_Block =
$T_Block . "\n" . "strKT " . $THEORY{'strKT'};
$Parameters = join( $SPACE, $Parameters, $THEORY{'strKT'} );
}
# Lorentzian or Gaussian KT LF multiplied by stretched exponential
elsif ( $FitType eq "MolMag" ) {
$T_Block = $T_Block . "\n" . "generExpo " . $THEORY{'generExpo'};
@ -1717,7 +1747,7 @@ sub RUNFileNameAuto {
my $RUN_Line=$EMPTY;
# if BeamLine is empty assume manual name
if ($BeamLine eq $EMPTY) {
my %EXTs = ("root","ROOT-NPP",
my %EXTs = ("root","MUSR-ROOT",
"bin","PSI-BIN",
"msr","MUD");
@ -1764,6 +1794,11 @@ sub RUNFileNameAuto {
elsif ( $BeamLine eq "GPD" ) {
$RUN_File_Name = "deltat_tdc_gpd_" . $RUNtmp;
$RUNFILE = "$DATADIR/d$YEAR/tdc/$RUN_File_Name";
}
elsif ( $BeamLine eq "HAL" ) {
$RUNtmp=sprintf("%05d",$RUNtmp);
$RUN_File_Name = "tdc_hifi_" . $YEAR . "_" . $RUNtmp;
$RUNFILE = "$DATADIR/d$YEAR/tdc/$RUN_File_Name";
}
$RUN_Line = join( $SPACE,
"RUN", $RUNFILE, $BeamLines{$BeamLine}, "PSI",
@ -1792,6 +1827,52 @@ sub CreateRRFBlock {
}
########################
# ExtractInfo
########################
# Used to extract information from data file header. The header (using
# "dump_header" is sent to this function from musrfit.cgi or MuSRFit
sub ExtractInfo {
my ($header,$Arg) = @_;
my @lines = split(/\n/,$header);
if ( $Arg eq "TITLE" ) {
$RTRN_Val = $lines[3];
$RTRN_Val =~ s/\n//g;
}
elsif ( $Arg eq "Temp" ) {
foreach my $line (@lines) {
if ( $line =~ /Mean Sample_CF1/ ) {
( my $tmp, my $T ) = split( /=/, $line );
( $T, $tmp ) = split( /\(/, $T );
$RTRN_Val = $T;
}
}
}
elsif ( $Arg eq "Field" ) {
foreach my $line (@lines) {
if ( $line =~ /Mean B field/ ) {
( $tmp, my $B ) = split( /=/, $line );
( $B, $tmp ) = split( /\(/, $B );
$RTRN_Val = $B;
}
}
}
elsif ( $Arg eq "Energy" ) {
foreach my $line (@lines) {
if ( $line =~ /implantation energy/ ) {
( my $tmp1, my $tmp2, my $E ) = split( /=/, $line );
( $E, $tmp ) = split( /keV/, $E );
$RTRN_Val = $E;
}
}
}
# $RTRN_Val =~ s/[\.\~\/\&\*\[\;\>\<\^\$\(\)\`\|\]\'\@]//g;
return $RTRN_Val;
}
########################
@ -2224,7 +2305,7 @@ FUNCTIONS
FITPARAMETER
###############################################################
# No Name Value Err Min Max ";
my %PTable=MSR::PrepParamTableSh(\%All);
my %PTable=MSR::PrepParamTable(\%All);
my $NParam=scalar keys( %PTable );
# Fill the table with labels and values of parametr
for (my $iP=0;$iP<$NParam;$iP++) {
@ -2266,13 +2347,11 @@ SAVE
# Check if a plot range is defined (i.e. different from fit)
$PRANGE_Line = "use_fit_ranges";
if ( $All{"Xi"} != $All{"Xf"} ) {
# if ($Yi != $Yf) {
if ($All{"Yi"} != $All{"Yf"}) {
$PRANGE_Line = "range ".$All{"Xi"}." ".$All{"Xf"}." ".$All{"Yi"}." ".$All{"Yf"};
# } else {
# $PRANGE_Line = "range $Xi $Xf";
# }
} else {
$PRANGE_Line = "range ".$All{"Xi"}." ".$All{"Xf"};
}
}
$VIEWBIN_Line ="";

View File

@ -4,23 +4,23 @@
FITPARAMETER
###############################################################
# No Name Value Err Min Max
1 Alphap 1.11662 0.00020 none
2 Asyp 0 0.00038 none
3 T 1e6 0 none
4 Rlx 0.969e6 0.020 none
5 Pos 1 0 none
6 Neg -1 0 none
1 Alpha 1.11587 0.00038 none
2 Asy 0.0570 0.0011 none
3 T 1 0 none
4 Rlx 1.015 0.023 none
5 One 1 0 none
6 Bet -1.052 0.027 none
###############################################################
THEORY
###############################################################
asymmetry fun1
userFcn libBNMR.so ExpRlx 3 4
userFcn .libs/libBNMR.so ExpRlx 3 4
###############################################################
FUNCTIONS
###############################################################
fun1 = map1 * map2
fun1 = 0.5 * map1 * map2
###############################################################
RUN 045674 BNMR TRIUMF MUD (name beamline institute data-file-format)
@ -28,11 +28,12 @@ fittype 2 (asymmetry fit)
alpha 1
forward 3
backward 4
data 11 799 11 799
background 800 900 800 900 # estimated bkg: 416.9700 / 465.7600
t0 0.0 0.0
data 11 800 11 800
#backgr.fix 0
background 1 9 1 9 # estimated bkg: 8.0000 / 9.6250
t0 10.0 10.0
map 2 5 0 0 0 0 0 0 0 0
fit 5e5 8e6
fit 0.5 8
packing 5
RUN 045674 BNMR TRIUMF MUD (name beamline institute data-file-format)
@ -40,11 +41,12 @@ fittype 2 (asymmetry fit)
alpha 1
forward 5
backward 6
data 11 799 11 799
background 800 900 800 900 # estimated bkg: 430.9200 / 479.4500
t0 0.0 0.0
data 11 800 11 800
#backgr.fix 0
background 1 9 1 9 # estimated bkg: 11.6250 / 15.6250
t0 10.0 10.0
map 2 6 0 0 0 0 0 0 0 0
fit 5e5 8e6
fit 0.5 8
packing 5
@ -58,16 +60,17 @@ SAVE
PLOT 2 (asymmetry plot)
runs 1 2
use_fit_ranges
view_packing 10
###############################################################
FOURIER
units MHz # units either 'Gauss', 'MHz', or 'Mc/s'
units MHz # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 12
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
phase 8
#range FRQMIN FRQMAX
###############################################################
STATISTIC --- 2014-11-14 16:37:41
chisq = 372.2, NDF = 295, chisq/NDF = 1.261744
STATISTIC --- 2015-04-14 11:00:19
chisq = 399.5, NDF = 290, chisq/NDF = 1.377736

View File

@ -9,7 +9,7 @@ FITPARAMETER
###############################################################
THEORY
asymmetry 1
userFcn /home/l_salman/LEM/musrfit/src/external/libBNMR/libBNMR.so ExpRlx 2 3
userFcn /usr/local/lib/libBNMR.so ExpRlx 2 3
###############################################################
RUN 45377 MUE4 PSI ASCII (name beamline institute data-file-format)

View File

@ -10,7 +10,7 @@ FITPARAMETER
###############################################################
THEORY
asymmetry 1
userFcn /home/l_salman/LEM/musrfit/src/external/libBNMR/libBNMR.so SExpRlx 2 3 4
userFcn /usr/local/lib/libBNMR.so SExpRlx 2 3 4
###############################################################
RUN 45377 MUE4 PSI ASCII (name beamline institute data-file-format)

View File

@ -117,8 +117,7 @@ PTextEdit::PTextEdit( QWidget *parent, Qt::WindowFlags f )
textSize(QString("%1").arg(fAdmin->getFontSize()));
fFontChanging = false;
QPixmap image0(":/images/musrfit.xpm");
setWindowIcon( image0 );
setWindowIcon( QIcon( QPixmap( ":/icons/musrfit-plain.svg" ) ) );
// if arguments are give, try to load those files, otherwise create an empty new file
if ( qApp->arguments().size() != 1 ) {
@ -173,14 +172,14 @@ void PTextEdit::setupFileActions()
QAction *a;
a = new QAction( QIcon( QPixmap(":/images/filenew.xpm") ), tr( "&New..." ), this );
a = new QAction( QIcon( QPixmap(":/icons/document-new-plain.svg") ), tr( "&New..." ), this );
a->setShortcut( tr("Ctrl+N") );
a->setStatusTip( tr("Create a new msr-file") );
connect( a, SIGNAL( triggered() ), this, SLOT( fileNew() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap(":/images/fileopen.xpm" ) ), tr( "&Open..." ), this );
a = new QAction( QIcon( QPixmap(":/icons/document-open-plain.svg" ) ), tr( "&Open..." ), this );
a->setShortcut( tr("Ctrl+O") );
a->setStatusTip( tr("Opens a msr-file") );
connect( a, SIGNAL( triggered() ), this, SLOT( fileOpen() ) );
@ -196,7 +195,7 @@ void PTextEdit::setupFileActions()
}
fillRecentFiles();
a = new QAction( QIcon( QPixmap(":/images/filereload.xpm") ), tr( "Reload..." ), this );
a = new QAction( QIcon( QPixmap(":/icons/view-refresh-plain.svg") ), tr( "Reload..." ), this );
a->setShortcut( tr("F5") );
a->setStatusTip( tr("Reload msr-file") );
connect( a, SIGNAL( triggered() ), this, SLOT( fileReload() ) );
@ -209,7 +208,7 @@ void PTextEdit::setupFileActions()
menu->addSeparator();
a = new QAction( QIcon( QPixmap(":/images/filesave.xpm") ), tr( "&Save..." ), this );
a = new QAction( QIcon( QPixmap(":/icons/document-save-plain.svg") ), tr( "&Save..." ), this );
a->setShortcut( tr("Ctrl+S") );
a->setStatusTip( tr("Save msr-file") );
connect( a, SIGNAL( triggered() ), this, SLOT( fileSave() ) );
@ -227,7 +226,7 @@ void PTextEdit::setupFileActions()
menu->addSeparator();
a = new QAction( QIcon( QPixmap(":/images/fileprint.xpm") ), tr( "&Print..." ), this );
a = new QAction( QIcon( QPixmap(":/icons/document-print-plain.svg") ), tr( "&Print..." ), this );
a->setShortcut( tr("Ctrl+P") );
a->setStatusTip( tr("Print msr-file") );
connect( a, SIGNAL( triggered() ), this, SLOT( filePrint() ) );
@ -276,14 +275,14 @@ void PTextEdit::setupEditActions()
QAction *a;
a = new QAction( QIcon( QPixmap( ":/images/editundo.xpm" ) ), tr( "&Undo" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/edit-undo-plain.svg" ) ), tr( "&Undo" ), this );
a->setShortcut( tr("Ctrl+Z") );
a->setStatusTip( tr("Edit Undo") );
connect( a, SIGNAL( triggered() ), this, SLOT( editUndo() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap( ":/images/editredo.xpm" ) ), tr( "&Redo" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/edit-redo-plain.svg" ) ), tr( "&Redo" ), this );
a->setShortcut( tr("Ctrl+Y") );
a->setStatusTip( tr("Edit Redo") );
connect( a, SIGNAL( triggered() ), this, SLOT( editRedo() ) );
@ -300,21 +299,21 @@ void PTextEdit::setupEditActions()
menu->addSeparator();
tb->addSeparator();
a = new QAction( QIcon( QPixmap( ":/images/editcopy.xpm" ) ), tr( "&Copy" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/edit-copy-plain.svg" ) ), tr( "&Copy" ), this );
a->setShortcut( tr("Ctrl+C") );
a->setStatusTip( tr("Edit Copy") );
connect( a, SIGNAL( triggered() ), this, SLOT( editCopy() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap( ":/images/editcut.xpm" ) ), tr( "Cu&t" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/edit-cut-plain.svg" ) ), tr( "Cu&t" ), this );
a->setShortcut( tr("Ctrl+X") );
a->setStatusTip( tr("Edit Cut") );
connect( a, SIGNAL( triggered() ), this, SLOT( editCut() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap( ":/images/editpaste.xpm" ) ), tr( "&Paste" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/edit-paste-plain.svg" ) ), tr( "&Paste" ), this );
a->setShortcut( tr("Ctrl+V") );
a->setStatusTip( tr("Edit Paste") );
connect( a, SIGNAL( triggered() ), this, SLOT( editPaste() ) );
@ -324,21 +323,21 @@ void PTextEdit::setupEditActions()
menu->addSeparator();
tb->addSeparator();
a = new QAction( QIcon( QPixmap( ":/images/editfind.xpm" ) ), tr( "&Find" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/edit-find-plain.svg" ) ), tr( "&Find" ), this );
a->setShortcut( tr("Ctrl+F") );
a->setStatusTip( tr("Edit Find") );
connect( a, SIGNAL( triggered() ), this, SLOT( editFind() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap( ":/images/editnext.xpm" ) ), tr( "Find &Next" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/go-next-use-plain.svg" ) ), tr( "Find &Next" ), this );
a->setShortcut( tr("F3") );
a->setStatusTip( tr("Edit Find Next") );
connect( a, SIGNAL( triggered() ), this, SLOT( editFindNext() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap( ":/images/editprevious.xpm" ) ) , tr( "Find Pre&vious" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/go-previous-use-plain.svg" ) ) , tr( "Find Pre&vious" ), this );
a->setShortcut( tr("Shift+F4") );
a->setStatusTip( tr("Edit Find Previous") );
connect( a, SIGNAL( triggered() ), this, SLOT( editFindPrevious() ) );
@ -490,14 +489,14 @@ void PTextEdit::setupMusrActions()
menuBar()->addMenu( menu );
QAction *a;
a = new QAction( QIcon( QPixmap( ":/images/musrasym.xpm" ) ), tr( "&Asymmetry Default" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/musrasym.xpm" ) ), tr( "&Asymmetry Default" ), this );
a->setShortcut( tr("Alt+A") );
a->setStatusTip( tr("Get Default Asymmetry msr-file") );
connect( a, SIGNAL( triggered() ), this, SLOT( musrGetAsymmetryDefault() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap( ":/images/musrsinglehisto.xpm" ) ), tr( "Single &Histogram Default" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/musrsinglehisto.xpm" ) ), tr( "Single &Histogram Default" ), this );
a->setShortcut( tr("Alt+H") );
a->setStatusTip( tr("Get Default Single Histogram msr-file") );
connect( a, SIGNAL( triggered() ), this, SLOT( musrGetSingleHistoDefault() ) );
@ -507,28 +506,28 @@ void PTextEdit::setupMusrActions()
menu->addSeparator();
tb->addSeparator();
a = new QAction( QIcon( QPixmap( ":/images/musrcalcchisq.xpm" ) ), tr( "Calculate Chisq" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/musrchisq-plain.svg" ) ), tr( "Calculate Chisq" ), this );
a->setShortcut( tr("Alt+C") );
a->setStatusTip( tr("Calculate Chi Square (Log Max Likelihood)") );
connect( a, SIGNAL( triggered() ), this, SLOT( musrCalcChisq() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap( ":/images/musrfit.xpm" ) ), tr( "&Fit" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/musrfit-plain.svg" ) ), tr( "&Fit" ), this );
a->setShortcut( tr("Alt+F") );
a->setStatusTip( tr("Fit") );
connect( a, SIGNAL( triggered() ), this, SLOT( musrFit() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap( ":/images/musrswap.xpm" ) ), tr( "&Swap Msr <-> Mlog" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/musrswap-plain.svg" ) ), tr( "&Swap Msr <-> Mlog" ), this );
a->setShortcut( tr("Alt+S") );
a->setStatusTip( tr("Swap msr-file <-> mlog-file") );
connect( a, SIGNAL( triggered() ), this, SLOT( musrSwapMsrMlog() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap( ":/images/musrmsr2data.xpm" ) ), tr( "&Msr2Data" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/msr2data-plain.svg" ) ), tr( "&Msr2Data" ), this );
a->setShortcut( tr("Alt+M") );
a->setStatusTip( tr("Start msr2data interface") );
connect( a, SIGNAL( triggered() ), this, SLOT( musrMsr2Data() ) );
@ -538,27 +537,27 @@ void PTextEdit::setupMusrActions()
menu->addSeparator();
tb->addSeparator();
a = new QAction( QIcon( QPixmap( ":/images/musrview.xpm" ) ), tr( "&View" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/musrview-plain.svg" ) ), tr( "&View" ), this );
a->setShortcut( tr("Alt+V") );
a->setStatusTip( tr("Start musrview") );
connect( a, SIGNAL( triggered() ), this, SLOT( musrView() ) );
tb->addAction(a);
menu->addAction(a);
fMusrT0Action = new QAction( QIcon( QPixmap( ":/images/musrt0.xpm" ) ), tr( "&T0" ), this );
fMusrT0Action = new QAction( QIcon( QPixmap( ":/icons/musrt0.xpm" ) ), tr( "&T0" ), this );
fMusrT0Action->setStatusTip( tr("Start musrt0") );
connect( fMusrT0Action, SIGNAL( triggered() ), this, SLOT( musrT0() ) );
tb->addAction(fMusrT0Action);
menu->addAction(fMusrT0Action);
fMusrT0Action->setEnabled(fAdmin->getEnableMusrT0Flag());
a = new QAction( QIcon( QPixmap (":/images/musrFT.xpm") ), tr( "Raw Fourier" ), this );
a = new QAction( QIcon( QPixmap (":/icons/musrFT.xpm") ), tr( "Raw Fourier" ), this );
a->setStatusTip( tr("Start musrFT") );
connect( a, SIGNAL( triggered() ), this, SLOT( musrFT() ) );
tb->addAction(a);
menu->addAction(a);
a = new QAction( QIcon( QPixmap( ":/images/musrprefs.xpm" ) ), tr( "&Preferences" ), this );
a = new QAction( QIcon( QPixmap( ":/icons/musrprefs.xpm" ) ), tr( "&Preferences" ), this );
a->setStatusTip( tr("Show Preferences") );
connect( a, SIGNAL( triggered() ), this, SLOT( musrPrefs() ) );
tb->addAction(a);
@ -567,7 +566,7 @@ void PTextEdit::setupMusrActions()
menu->addSeparator();
tb->addSeparator();
a = new QAction( QIcon( QPixmap(":/images/musrdump.xpm")), tr( "&Dump Header"), this);
a = new QAction( QIcon( QPixmap(":/icons/musrdump.xpm")), tr( "&Dump Header"), this);
a->setStatusTip( tr("Dumps muSR File Header Information") );
connect( a, SIGNAL(triggered()), this, SLOT(musrDump()));
tb->addAction(a);

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,72 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg2" version="1.1" inkscape:version="0.49 r12742" viewBox="0 0 22 22" sodipodi:docname="document-new.svg">
<defs id="defs4">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="126.71353" inkscape:cx="17.608772" inkscape:cy="7.3058222" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" inkscape:showpageshadow="false" borderlayer="true" inkscape:window-width="1366" inkscape:window-height="718" inkscape:window-x="-2" inkscape:window-y="23" inkscape:window-maximized="1" units="px">
<sodipodi:guide position="2,20.000017" orientation="18,0" id="guide4085"/>
<sodipodi:guide position="2,2.0000174" orientation="0,18" id="guide4087"/>
<sodipodi:guide position="20,2.0000174" orientation="-18,0" id="guide4089"/>
<sodipodi:guide position="20,20.000017" orientation="0,-18" id="guide4091"/>
<sodipodi:guide position="3,19.000017" orientation="16,0" id="guide4093"/>
<sodipodi:guide position="3,3.0000174" orientation="0,16" id="guide4095"/>
<sodipodi:guide position="19,3.0000174" orientation="-16,0" id="guide4097"/>
<sodipodi:guide position="19,19.000017" orientation="0,-16" id="guide4099"/>
<inkscape:grid type="xygrid" id="grid4101"/>
<sodipodi:guide position="3,19.000017" orientation="16,0" id="guide4123"/>
<sodipodi:guide position="3,3.0000174" orientation="0,2.000001" id="guide4125"/>
<sodipodi:guide position="4,19.000017" orientation="-16,0" id="guide4127"/>
<sodipodi:guide position="5.000001,19.000017" orientation="0,-2.000001" id="guide4129"/>
<sodipodi:guide position="18,19.000017" orientation="16,0" id="guide4131"/>
<sodipodi:guide position="17,3.0000174" orientation="0,2" id="guide4133"/>
<sodipodi:guide position="19,3.0000174" orientation="-16,0" id="guide4135"/>
<sodipodi:guide position="19,19.000017" orientation="0,-2" id="guide4137"/>
</sodipodi:namedview>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-1030.3622)">
<path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 4 3 L 4 19 L 5 19 L 13 19 L 14 19 L 14 18.990234 L 14.007812 19 L 18 15.007812 L 18 15 L 18 13.59375 L 18 3 L 17 3 L 5 3 L 4 3 z M 5 4 L 17 4 L 17 14 L 13 14 L 13 15 L 13 18 L 5 18 L 5 4 z " transform="translate(0,1030.3622)" id="rect4139" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg2" version="1.1" inkscape:version="0.49 r12742" viewBox="0 0 22 22" sodipodi:docname="document-open.svg">
<defs id="defs4">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="22.4" inkscape:cx="7.995674" inkscape:cy="10.780389" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" inkscape:showpageshadow="false" borderlayer="true" inkscape:window-width="1366" inkscape:window-height="718" inkscape:window-x="-2" inkscape:window-y="23" inkscape:window-maximized="1" units="px">
<sodipodi:guide position="2,20.000017" orientation="18,0" id="guide4085"/>
<sodipodi:guide position="2,2.0000174" orientation="0,18" id="guide4087"/>
<sodipodi:guide position="20,2.0000174" orientation="-18,0" id="guide4089"/>
<sodipodi:guide position="20,20.000017" orientation="0,-18" id="guide4091"/>
<sodipodi:guide position="3,19.000017" orientation="16,0" id="guide4093"/>
<sodipodi:guide position="3,3.0000174" orientation="0,16" id="guide4095"/>
<sodipodi:guide position="19,3.0000174" orientation="-16,0" id="guide4097"/>
<sodipodi:guide position="19,19.000017" orientation="0,-16" id="guide4099"/>
<inkscape:grid type="xygrid" id="grid4101"/>
</sodipodi:namedview>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-1030.3622)">
<path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 3 3 L 3 4 L 3 19 L 4 19 L 19 19 L 19 18 L 19 5 L 12.007812 5 L 10.007812 3 L 10 3.0078125 L 10 3 L 4 3 L 3 3 z M 9.0078125 8 L 18 8 L 18 18 L 4 18 L 4 10 L 7 10 L 7 9.9921875 L 7.0078125 10 L 9.0078125 8 z " transform="translate(0,1030.3622)" id="rect4069" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg3404" version="1.1" inkscape:version="0.48+devel r" sodipodi:docname="document-print.svg">
<defs id="defs3406">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="22.724638" inkscape:cx="11.423423" inkscape:cy="11.621687" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1366" inkscape:window-height="718" inkscape:window-x="-2" inkscape:window-y="23" inkscape:window-maximized="1" inkscape:showpageshadow="false">
<inkscape:grid type="xygrid" id="grid4117"/>
<sodipodi:guide position="2.0000117,19.999986" orientation="18,0" id="guide4123"/>
<sodipodi:guide position="2.0000117,1.9999857" orientation="0,18" id="guide4125"/>
<sodipodi:guide position="20.000012,1.9999857" orientation="-18,0" id="guide4127"/>
<sodipodi:guide position="20.000012,19.999986" orientation="0,-18" id="guide4129"/>
<sodipodi:guide position="3.0000117,18.999986" orientation="16,0" id="guide4131"/>
<sodipodi:guide position="3.0000117,2.9999857" orientation="0,16" id="guide4133"/>
<sodipodi:guide position="19.000012,2.9999857" orientation="-16,0" id="guide4135"/>
<sodipodi:guide position="19.000012,18.999986" orientation="0,-16" id="guide4137"/>
</sodipodi:namedview>
<metadata id="metadata3409">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(-384.57143,-482.93361)">
<path style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" d="M 5 3 L 5 4 L 5 8 L 3 8 L 3 9 L 3 16 L 4 16 L 7 16 L 7 18 L 7 19 L 15 19 L 15 18 L 15 16 L 19 16 L 19 15 L 19 9 L 19 8 L 17 8 L 17 4 L 17 3 L 5 3 z M 6 4 L 16 4 L 16 8 L 15 8 L 15 7 L 7 7 L 7 8 L 6 8 L 6 4 z M 7 5 L 7 6 L 15 6 L 15 5 L 7 5 z M 4 9 L 18 9 L 18 15 L 16 15 L 16 13 L 6 13 L 6 15 L 4 15 L 4 9 z M 14 10 L 14 11 L 17 11 L 17 10 L 14 10 z M 8 16 L 14 16 L 14 18 L 8 18 L 8 16 z " transform="translate(384.57143,482.93361)" id="rect4145" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,83 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg2" version="1.1" inkscape:version="0.91+devel r" viewBox="0 0 22 22" sodipodi:docname="document-save.svg">
<title id="title4152">I REALLY hate this icon</title>
<defs id="defs4">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="16" inkscape:cx="-32.057533" inkscape:cy="11.442155" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" inkscape:showpageshadow="false" borderlayer="true" inkscape:window-width="2560" inkscape:window-height="957" inkscape:window-x="-4" inkscape:window-y="29" inkscape:window-maximized="1" units="px">
<sodipodi:guide position="2,20.000017" orientation="18,0" id="guide4085"/>
<sodipodi:guide position="2,2.0000174" orientation="0,18" id="guide4087"/>
<sodipodi:guide position="20,2.0000174" orientation="-18,0" id="guide4089"/>
<sodipodi:guide position="20,20.000017" orientation="0,-18" id="guide4091"/>
<sodipodi:guide position="3,19.000017" orientation="16,0" id="guide4093"/>
<sodipodi:guide position="3,3.0000174" orientation="0,16" id="guide4095"/>
<sodipodi:guide position="19,3.0000174" orientation="-16,0" id="guide4097"/>
<sodipodi:guide position="19,19.000017" orientation="0,-16" id="guide4099"/>
<inkscape:grid type="xygrid" id="grid4101"/>
</sodipodi:namedview>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>I REALLY hate this icon</dc:title>
<dc:description>Migh as well use Tango... for crying out loud. This damn icon has to die, but no because obviously we're still using floppies therefore it is still relevant in 2014.</dc:description>
<dc:language>English</dc:language>
<dc:rights>
<cc:Agent>
<dc:title/>
</cc:Agent>
</dc:rights>
<dc:creator>
<cc:Agent>
<dc:title>Uri Herrera</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>November 20th 2014</dc:date>
<cc:license rdf:resource=""/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-1030.3622)">
<g id="layer1-7" inkscape:label="Capa 1">
<path id="rect4126" transform="translate(0,1030.3622)" d="m 3,3 0,1 0,15 1,0 15,0 0,-1 0,-11 0,-0.6992188 -0.0078,0 L 19,6.2929688 15.707031,3 15.699231,3.00781 15.699231,3 15,3 3,3 Z M 4,4 7,4 7,8 7,9 15,9 15,8 15,4 15.292969,4 18,6.7070312 18,7 l 0,11 -2,0 0,-7 -1,0 -8,0 -1,0 0,7 -2,0 0,-14 z m 4,0 3.900391,0 0,4 L 8,8 8,4 Z m -1,8 8,0 0,6 -8,0 0,-6 z" style="fill:currentColor;fill-opacity:1;stroke:none" inkscape:connector-curvature="0" class="ColorScheme-Text"/>
</g>
<rect ry="0" y="1032.3622" x="-23.999996" height="19.000021" width="18" id="BG_MESSAGE" style="color:#000000;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
<path inkscape:connector-curvature="0" id="MESSAGE" d="m -17.800781,1035.5594 0,2.8536 0.138672,0 0,-2.8536 -0.138672,0 z m 3.173828,3.0235 0,0.125 0.5,0 0,3.375 0.06445,0 0,0.6426 c 0.005,0.31 0.289219,0.4962 0.574219,0.6562 0.285,0.16 0.566406,0.2706 0.566406,0.5606 l 0,0.2441 c 0,0.32 -0.166094,0.5645 -0.496094,0.5645 -0.0332,0 -0.06385,0 -0.09375,-0.01 l -0.03906,-0.1133 -0.138672,0 0,0.047 c -0.16373,-0.1012 -0.245161,-0.2934 -0.238281,-0.5 l 0,-0.3007 -0.134766,0 0,0.3007 c -0.004,0.3138 0.143357,0.5471 0.373047,0.6485 l 0,3.3047 0.138672,0 0,-3.0743 1.05664,3.0743 0.134766,0 0,-3.5 -0.134766,0 0,3.1113 -0.970703,-2.8613 c 0.0159,10e-4 0.03057,0 0.04687,0 0.43,0 0.63086,-0.3203 0.63086,-0.6953 l 0,-0.2657 c 0,-0.33 -0.34625,-0.489 -0.65625,-0.664 -0.245,-0.14 -0.463516,-0.261 -0.478516,-0.541 l 0,-0.7149 c 0,-0.37 0.188984,-0.5488 0.458984,-0.5488 0.15442,0 0.262525,0.058 0.333985,0.1504 l 0,0.4804 0.111328,0 0,0.3223 0.134766,0 0,-0.3223 0.878906,0 0,-0.1308 -0.88086,0 c -0.005,-0.1434 -0.0408,-0.2715 -0.103515,-0.375 l 0,-0.459 0.779297,0 0,-0.125 -0.779297,0 0,-2.2852 0.984375,0 0,-0.125 -1.125,0 0,2.836 c -0.0893,-0.066 -0.201175,-0.1035 -0.333985,-0.1035 -0.26702,0 -0.440546,0.1328 -0.529297,0.332 l 0,-2.9395 0.5,0 0,-0.125 -1.134765,0 z m -3.173828,0.029 0,0.4472 0,2.2813 -0.195313,0 0,0.125 0.195313,0 0,0.6172 0.138672,0 0,-0.6172 0.166015,0 0,3.375 0.134766,0 0,-3.375 0.5,0 0,-0.125 -0.800781,0 0,-0.1836 0.996093,0 0,0.9258 0.134766,0 0,-3.4707 -0.134766,0 0,2.416 -0.996093,0 0,-1.9688 0,-0.4472 -0.138672,0 z m 2.207031,0 -0.537109,3.4707 0.140625,0 0.144531,-0.9649 0.714844,0 0.15039,0.9649 0.140625,0 -0.550781,-3.4707 -0.203125,0 z m 0.103516,0.1758 0.339843,2.1953 -0.673828,0 0.333985,-2.1953 z m -1.001954,2.5527 0,3.2715 c -0.0117,-5e-4 -0.02326,0 -0.03516,0 -0.39,0 -0.640625,0.319 -0.640625,0.709 l 0,2.1406 c 0,0.39 0.240391,0.7051 0.650391,0.7051 0.43,0 0.625,-0.3543 0.625,-0.6993 l 0,-0.2558 -0.134766,0 0,0.2558 c 0,0.3 -0.155234,0.5645 -0.490234,0.5645 -0.34,0 -0.509766,-0.2853 -0.509766,-0.5703 l 0,-2.1406 c 0,-0.36 0.209766,-0.5743 0.509766,-0.5743 0.009,0 0.01709,0 0.02539,0 l 0,0.094 0.138672,0 0,-0.068 c 0.21578,0.075 0.326172,0.2987 0.326172,0.5469 l 0.0039,0.2754 0.13086,0 0,-0.2793 c 0,-0.3271 -0.177118,-0.6016 -0.460938,-0.6816 l 0,-0.7188 0.996094,0 0,0.9258 0.03711,0 c -0.0921,0.1238 -0.138672,0.2832 -0.138672,0.4492 l 0,2.1856 c 0,0.38 0.239531,0.6894 0.644531,0.6894 0.42,0 0.625,-0.3403 0.625,-0.6953 l 0,-2.1738 c 0,-0.2799 -0.128282,-0.5302 -0.357422,-0.6387 l 0,-3.3164 -0.138672,0 0,3.2715 c -0.0405,-0.01 -0.08417,-0.012 -0.128906,-0.012 -0.16949,0 -0.304873,0.053 -0.408203,0.1386 l 0,-3.3984 -0.134766,0 0,2.4453 -0.996094,0 0,-2.4453 -0.138672,0 z m -1.308593,3.2891 0,3.5 0.138672,0 0,-3.5 -0.138672,0 z m 2.986328,0.1 c 0.0461,0 0.08977,0.01 0.128906,0.016 l 0,0.096 0.138672,0 0,-0.029 c 0.1511,0.1039 0.222656,0.2941 0.222656,0.4844 l 0,2.1738 c 0,0.305 -0.160234,0.5605 -0.490234,0.5605 -0.345,0 -0.503906,-0.2597 -0.503906,-0.5547 l 0,-2.1855 c 0,-0.31 0.158906,-0.5605 0.503906,-0.5605 z" style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:medium;line-height:125%;font-family:Canter;-inkscape-font-specification:'Canter Light';letter-spacing:0px;word-spacing:0px;fill:#52d563;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg3979" version="1.1" inkscape:version="0.48+devel r" sodipodi:docname="edit-copy.svg">
<defs id="defs3981">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="23.967943" inkscape:cx="4.1761278" inkscape:cy="11.472414" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1366" inkscape:window-height="669" inkscape:window-x="-4" inkscape:window-y="25" inkscape:window-maximized="1" inkscape:showpageshadow="false" showguides="true">
<inkscape:grid type="xygrid" id="grid4125"/>
<sodipodi:guide position="2.0000144,19.99997" orientation="18,0" id="guide4131"/>
<sodipodi:guide position="2.0000144,1.9999696" orientation="0,18" id="guide4133"/>
<sodipodi:guide position="20.000014,1.9999696" orientation="-18,0" id="guide4135"/>
<sodipodi:guide position="20.000014,19.99997" orientation="0,-18" id="guide4137"/>
<sodipodi:guide position="3.0000144,18.99997" orientation="16,0" id="guide4139"/>
<sodipodi:guide position="3.0000144,2.9999696" orientation="0,16" id="guide4141"/>
<sodipodi:guide position="19.000014,2.9999696" orientation="-16,0" id="guide4143"/>
<sodipodi:guide position="19.000014,18.99997" orientation="0,-16" id="guide4145"/>
</sodipodi:namedview>
<metadata id="metadata3984">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(-601.71428,-517.21933)">
<path style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" d="M 4 3 L 4 4 L 4 17 L 5 17 L 7 17 L 8 17 L 8 18 L 8 19 L 14 19 L 18 15 L 18 14 L 18 7 L 18 6 L 16 6 L 16 3 L 15 3 L 5 3 L 4 3 z M 5 4 L 15 4 L 15 6 L 8 6 L 8 7 L 8 16 L 7 16 L 5 16 L 5 4 z M 9 7 L 17 7 L 17 14 L 14 14 L 13 14 L 13 15 L 13 18 L 9 18 L 9 7 z " transform="translate(601.71428,517.21933)" id="rect4147" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,84 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg3815" version="1.1" inkscape:version="0.91+devel r" sodipodi:docname="edit-cut.svg" viewBox="0 0 22 22">
<title id="title4252">I hate this icon</title>
<defs id="defs3817">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="22.627417" inkscape:cx="16.664648" inkscape:cy="13.913756" inkscape:document-units="px" inkscape:current-layer="svg3815" showgrid="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="2560" inkscape:window-height="957" inkscape:window-x="-4" inkscape:window-y="29" inkscape:window-maximized="1" showguides="true" inkscape:showpageshadow="false">
<inkscape:grid type="xygrid" id="grid4174"/>
<sodipodi:guide position="2.0000044,19.999979" orientation="18,0" id="guide4262"/>
<sodipodi:guide position="2.0000044,1.9999785" orientation="0,18" id="guide4264"/>
<sodipodi:guide position="20.000004,1.9999785" orientation="-18,0" id="guide4266"/>
<sodipodi:guide position="20.000004,19.999979" orientation="0,-18" id="guide4268"/>
<sodipodi:guide position="3.0000044,18.999979" orientation="16,0" id="guide4270"/>
<sodipodi:guide position="3.0000044,2.9999785" orientation="0,16" id="guide4272"/>
<sodipodi:guide position="19.000004,2.9999785" orientation="-16,0" id="guide4274"/>
<sodipodi:guide position="19.000004,18.999979" orientation="0,-16" id="guide4276"/>
</sodipodi:namedview>
<metadata id="metadata3820">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>I hate this icon</dc:title>
<dc:date>October 19th 2014</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Uri Herrera</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title/>
</cc:Agent>
</dc:rights>
<dc:language>English</dc:language>
<dc:description>An icon I absolutely don't like, and that represents exactly the kind of things why I choose CC licenses.</dc:description>
<dc:contributor>
<cc:Agent>
<dc:title>Everyone</dc:title>
</cc:Agent>
</dc:contributor>
<cc:license rdf:resource=""/>
</cc:Work>
</rdf:RDF>
</metadata>
<path inkscape:connector-curvature="0" id="HATE_THIS" d="M 7.0117188,3 C 6.4343687,4 6.1335875,4 6.7109375,5 l 3.5410155,6.140625 -2.0585936,3.527344 C 7.7481026,14.256516 7.1568615,14 6.5,14 5.115,14 4,15.115 4,16.5 4,17.885 5.115,19 6.5,19 7.885,19 9,17.885 9,16.5 9,16.332897 8.9821496,16.169477 8.9511719,16.011719 l 1.1621091,-2.013672 c 0.780419,-0.01 0.878798,-0.774603 1.333985,-0.785156 l 1.603515,2.78125 C 13.017588,16.157178 13,16.326875 13,16.5 13,17.885 14.115,19 15.5,19 16.885,19 18,17.885 18,16.5 18,15.115 16.885,14 15.5,14 c -0.653333,0 -1.241072,0.254586 -1.685547,0.662109 L 11.759766,11.140625 15.300781,5 C 15.878131,4 15.57735,4 15,3 L 11.005859,9.8476562 7.0117188,3 Z M 11,11 c 0.277,0 0.5,0.223 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 -0.277,0 -0.5,-0.223 -0.5,-0.5 0,-0.277 0.223,-0.5 0.5,-0.5 z M 6.5,15 C 7.331,15 8,15.669 8,16.5 8,17.331 7.331,18 6.5,18 5.669,18 5,17.331 5,16.5 5,15.669 5.669,15 6.5,15 Z m 9,0 C 16.331,15 17,15.669 17,16.5 17,17.331 16.331,18 15.5,18 14.669,18 14,17.331 14,16.5 14,15.669 14.669,15 15.5,15 Z" style="text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" class="ColorScheme-Text"/>
<rect ry="0" y="2.1484375e-05" x="23.000004" height="19.000021" width="18" id="BG_MESSAGE" style="color:#000000;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"/>
<path inkscape:connector-curvature="0" id="MESSAGE" d="m 29.199219,3.1972656 0,2.8535156 0.138672,0 0,-2.8535156 -0.138672,0 z m 3.173828,3.0234375 0,0.125 0.5,0 0,3.375 0.06445,0 0,0.6425779 c 0.005,0.31 0.289219,0.49625 0.574219,0.65625 0.285,0.16 0.566406,0.270547 0.566406,0.560547 l 0,0.244141 c 0,0.32 -0.166094,0.564453 -0.496094,0.564453 -0.0332,0 -0.06385,-0.0028 -0.09375,-0.0078 l -0.03906,-0.113281 -0.138672,0 0,0.04687 c -0.16373,-0.10126 -0.245161,-0.29347 -0.238281,-0.5 l 0,-0.300781 -0.134766,0 0,0.300781 c -0.004,0.31376 0.143357,0.547058 0.373047,0.648438 l 0,3.304687 0.138672,0 0,-3.074219 1.05664,3.074219 0.134766,0 0,-3.5 -0.134766,0 0,3.111328 -0.970703,-2.861328 c 0.0159,0.001 0.03057,0.002 0.04687,0.002 0.43,0 0.63086,-0.320312 0.63086,-0.695312 l 0,-0.265625 c 0,-0.33 -0.34625,-0.489063 -0.65625,-0.664063 -0.245,-0.14 -0.463516,-0.261015 -0.478516,-0.541015 l 0,-0.7148441 c 0,-0.37 0.188984,-0.5488281 0.458984,-0.5488281 0.15442,0 0.262525,0.057661 0.333985,0.1503906 l 0,0.4804687 0.111328,0 0,0.3222659 0.134766,0 0,-0.3222659 0.878906,0 0,-0.1308593 -0.88086,0 c -0.005,-0.1434101 -0.0408,-0.27148 -0.103515,-0.375 l 0,-0.4589844 0.779297,0 0,-0.125 -0.779297,0 0,-2.2851563 0.984375,0 0,-0.125 -1.125,0 0,2.8359375 c -0.0893,-0.0657 -0.201175,-0.1035156 -0.333985,-0.1035156 -0.26702,0 -0.440546,0.1328312 -0.529297,0.3320312 l 0,-2.9394531 0.5,0 0,-0.125 -1.134765,0 z M 29.199219,6.25 l 0,0.4472656 0,2.28125 -0.195313,0 0,0.125 0.195313,0 0,0.6171875 0.138672,0 0,-0.6171875 0.166015,0 0,3.3750004 0.134766,0 0,-3.3750004 0.5,0 0,-0.125 -0.800781,0 0,-0.1835937 0.996093,0 0,0.9257812 0.134766,0 0,-3.4707031 -0.134766,0 0,2.4160156 -0.996093,0 0,-1.96875 0,-0.4472656 -0.138672,0 z m 2.207031,0 -0.537109,3.4707031 0.140625,0 0.144531,-0.9648437 0.714844,0 0.15039,0.9648437 0.140625,0 L 31.609375,6.25 l -0.203125,0 z m 0.103516,0.1757812 0.339843,2.1953126 -0.673828,0 0.333985,-2.1953126 z m -1.001954,2.5527344 0,3.2714844 c -0.0117,-5e-4 -0.02326,-0.002 -0.03516,-0.002 -0.39,0 -0.640625,0.318984 -0.640625,0.708984 l 0,2.140625 c 0,0.39 0.240391,0.705078 0.650391,0.705078 0.43,0 0.625,-0.354218 0.625,-0.699218 l 0,-0.25586 -0.134766,0 0,0.25586 c 0,0.3 -0.155234,0.564453 -0.490234,0.564453 -0.34,0 -0.509766,-0.285313 -0.509766,-0.570313 l 0,-2.140625 c 0,-0.36 0.209766,-0.574219 0.509766,-0.574219 0.009,0 0.01709,0.0015 0.02539,0.002 l 0,0.09375 0.138672,0 0,-0.06836 c 0.21578,0.0752 0.326172,0.298705 0.326172,0.546875 l 0.0039,0.275391 0.13086,0 0,-0.279297 c 0,-0.32706 -0.177118,-0.601621 -0.460938,-0.681641 l 0,-0.71875 0.996094,0 0,0.925782 0.03711,0 c -0.0921,0.12383 -0.138672,0.283218 -0.138672,0.449218 l 0,2.185547 c 0,0.38 0.239531,0.689453 0.644531,0.689453 0.42,0 0.625,-0.340312 0.625,-0.695312 l 0,-2.173828 c 0,-0.27983 -0.128282,-0.530212 -0.357422,-0.638672 l 0,-3.3164064 -0.138672,0 0,3.2714844 c -0.0405,-0.008 -0.08417,-0.01172 -0.128906,-0.01172 -0.16949,0 -0.304873,0.05275 -0.408203,0.138672 l 0,-3.3984374 -0.134766,0 0,2.4453124 -0.996094,0 0,-2.4453124 -0.138672,0 z m -1.308593,3.2890624 0,3.5 0.138672,0 0,-3.5 -0.138672,0 z m 2.986328,0.09961 c 0.0461,0 0.08977,0.006 0.128906,0.01562 l 0,0.0957 0.138672,0 0,-0.0293 c 0.1511,0.10389 0.222656,0.294095 0.222656,0.484375 l 0,2.173828 c 0,0.305 -0.160234,0.560547 -0.490234,0.560547 -0.345,0 -0.503906,-0.259688 -0.503906,-0.554688 l 0,-2.185547 c 0,-0.31 0.158906,-0.560546 0.503906,-0.560546 z" style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:medium;line-height:125%;font-family:Canter;-inkscape-font-specification:'Canter Light';letter-spacing:0px;word-spacing:0px;fill:#52d563;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"/>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@ -0,0 +1,77 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg952" version="1.1" inkscape:version="0.49 r12742" sodipodi:docname="edit-find.svg">
<defs id="defs954">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="16" inkscape:cx="7.1604848" inkscape:cy="2.4777511" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1366" inkscape:window-height="718" inkscape:window-x="-2" inkscape:window-y="23" inkscape:window-maximized="1" showguides="true" inkscape:guide-bbox="true" inkscape:showpageshadow="false" borderlayer="true">
<inkscape:grid type="xygrid" id="grid4063"/>
<sodipodi:guide position="2,20.000017" orientation="18,0" id="guide4077"/>
<sodipodi:guide position="2,2.0000174" orientation="0,18" id="guide4079"/>
<sodipodi:guide position="20,2.0000174" orientation="-18,0" id="guide4081"/>
<sodipodi:guide position="20,20.000017" orientation="0,-18" id="guide4083"/>
<sodipodi:guide position="3,19.000017" orientation="16,0" id="guide4085"/>
<sodipodi:guide position="3,3.0000174" orientation="0,16" id="guide4087"/>
<sodipodi:guide position="19,3.0000174" orientation="-16,0" id="guide4089"/>
<sodipodi:guide position="19,19.000017" orientation="0,-16" id="guide4091"/>
<sodipodi:guide position="3,19.000017" orientation="12,0" id="guide4099"/>
<sodipodi:guide position="3,7.0000174" orientation="0,12.000017" id="guide4101"/>
<sodipodi:guide position="15.000017,7.0000174" orientation="-12,0" id="guide4103"/>
<sodipodi:guide position="15.000017,19.000017" orientation="0,-12.000017" id="guide4105"/>
<sodipodi:guide position="14,9.0000174" orientation="6,0" id="guide4114"/>
<sodipodi:guide position="14,3.0000174" orientation="0,6" id="guide4116"/>
<sodipodi:guide position="20,3.0000174" orientation="-6,0" id="guide4118"/>
<sodipodi:guide position="20,9.0000174" orientation="0,-6" id="guide4120"/>
<sodipodi:guide position="13.707315,8.9997763" orientation="0.70710678,-0.70710678" id="guide4138"/>
<sodipodi:guide position="13.000208,8.2926696" orientation="5.2926839,5.2926839" id="guide4140"/>
<sodipodi:guide position="18.292892,2.9999857" orientation="-0.70710678,0.70710678" id="guide4142"/>
<sodipodi:guide position="18.999999,3.7070925" orientation="-5.2926839,-5.2926839" id="guide4144"/>
</sodipodi:namedview>
<metadata id="metadata957">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-1030.3622)">
<path style="fill:currentColor;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" d="m 12.29286,1043.3622 0.707107,-0.7071 6.000032,6 -0.707075,0.7071 z" id="path4146" inkscape:connector-curvature="0" class="ColorScheme-Text"/>
<path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 9 3 C 5.6759952 3 3 5.6759952 3 9 C 3 12.324005 5.6759952 15 9 15 C 12.324005 15 15 12.324005 15 9 C 15 5.6759952 12.324005 3 9 3 z M 9 4 C 11.770005 4 14 6.2299952 14 9 C 14 11.770005 11.770005 14 9 14 C 6.2299952 14 4 11.770005 4 9 C 4 6.2299952 6.2299952 4 9 4 z " transform="translate(0,1030.3622)" id="rect4095" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg3815" version="1.1" inkscape:version="0.48+devel r" sodipodi:docname="edit-paste.svg">
<defs id="defs3817">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="51.860373" inkscape:cx="13.029532" inkscape:cy="12.606268" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1366" inkscape:window-height="718" inkscape:window-x="-2" inkscape:window-y="23" inkscape:window-maximized="1" inkscape:showpageshadow="false" borderlayer="false">
<sodipodi:guide position="2.0000044,19.999979" orientation="18,0" id="guide3338"/>
<sodipodi:guide position="2.0000044,1.9999785" orientation="0,18" id="guide3340"/>
<sodipodi:guide position="20.000004,1.9999785" orientation="-18,0" id="guide3342"/>
<sodipodi:guide position="20.000004,19.999979" orientation="0,-18" id="guide3344"/>
<sodipodi:guide position="3.0000044,18.999979" orientation="16,0" id="guide3346"/>
<sodipodi:guide position="3.0000044,2.9999785" orientation="0,16" id="guide3348"/>
<sodipodi:guide position="19.000004,2.9999785" orientation="-16,0" id="guide3350"/>
<sodipodi:guide position="17,19" orientation="0,-16" id="guide3352"/>
<inkscape:grid type="xygrid" id="grid3354"/>
</sodipodi:namedview>
<metadata id="metadata3820">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(-461.71429,-525.79075)">
<path style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" d="M 7 3 L 7 5 L 5 5 L 4 5 L 4 19 L 5 19 L 18 19 L 18 18 L 18 5 L 17 5 L 15 5 L 15 3 L 7 3 z M 5 6 L 6 6 L 6 8 L 16 8 L 16 6 L 17 6 L 17 18 L 5 18 L 5 6 z M 7 9 L 7 10 L 15 10 L 15 9 L 7 9 z M 7 12 L 7 13 L 13 13 L 13 12 L 7 12 z M 7 15 L 7 16 L 10 16 L 10 15 L 7 15 z " transform="translate(461.71429,525.79075)" id="rect3381" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,66 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg2" version="1.1" inkscape:version="0.91pre2 r" viewBox="0 0 22 22" sodipodi:docname="edit-redo.svg">
<defs id="defs4">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="23.069359" inkscape:cx="16.943" inkscape:cy="11.215976" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" units="px" borderlayer="true" inkscape:showpageshadow="false" inkscape:window-width="1366" inkscape:window-height="673" inkscape:window-x="-4" inkscape:window-y="24" inkscape:window-maximized="1">
<sodipodi:guide position="2,20.000017" orientation="18,0" id="guide4066"/>
<sodipodi:guide position="2,2.0000174" orientation="0,18" id="guide4068"/>
<sodipodi:guide position="20,2.0000174" orientation="-18,0" id="guide4070"/>
<sodipodi:guide position="20,20.000017" orientation="0,-18" id="guide4072"/>
<sodipodi:guide position="3,19.000017" orientation="16,0" id="guide4074"/>
<sodipodi:guide position="3,3.0000174" orientation="0,16" id="guide4076"/>
<sodipodi:guide position="19,3.0000174" orientation="-16,0" id="guide4078"/>
<sodipodi:guide position="19,19.000017" orientation="0,-16" id="guide4080"/>
<inkscape:grid type="xygrid" id="grid4101"/>
<sodipodi:guide position="8,19.000017" orientation="0,-5" id="guide4124"/>
<sodipodi:guide position="11,3.0000174" orientation="0,4" id="guide4241"/>
</sodipodi:namedview>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-1030.3622)">
<path style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" d="M 13.699219 3 L 12.992188 3.7070312 L 15.285156 6 L 13 6 L 11.992188 6 L 11.5 6 C 7.899 6 5 8.899 5 12.5 C 5 16.101 7.899 19 11.5 19 L 13 19 L 13 18 L 11.5 18 C 8.453 18 6 15.547 6 12.5 C 6 9.453 8.453 7 11.5 7 L 11.992188 7 L 13 7 L 15.285156 7 L 12.992188 9.2929688 L 13.699219 10 L 16.992188 6.7070312 L 17.199219 6.5 L 16.992188 6.2929688 L 13.699219 3 z " transform="translate(0,1030.3622)" id="rect4216" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,66 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg2" version="1.1" inkscape:version="0.91pre2 r" viewBox="0 0 22 22" sodipodi:docname="edit-undo.svg">
<defs id="defs4">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="23.069359" inkscape:cx="9.9371528" inkscape:cy="10.70435" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" units="px" borderlayer="true" inkscape:showpageshadow="false" inkscape:window-width="1366" inkscape:window-height="673" inkscape:window-x="-4" inkscape:window-y="24" inkscape:window-maximized="1">
<sodipodi:guide position="2,20.000017" orientation="18,0" id="guide4066"/>
<sodipodi:guide position="2,2.0000174" orientation="0,18" id="guide4068"/>
<sodipodi:guide position="20,2.0000174" orientation="-18,0" id="guide4070"/>
<sodipodi:guide position="20,20.000017" orientation="0,-18" id="guide4072"/>
<sodipodi:guide position="3,19.000017" orientation="16,0" id="guide4074"/>
<sodipodi:guide position="3,3.0000174" orientation="0,16" id="guide4076"/>
<sodipodi:guide position="19,3.0000174" orientation="-16,0" id="guide4078"/>
<sodipodi:guide position="19,19.000017" orientation="0,-16" id="guide4080"/>
<inkscape:grid type="xygrid" id="grid4101"/>
<sodipodi:guide position="8,19.000017" orientation="0,-5" id="guide4124"/>
<sodipodi:guide position="11,3.0000174" orientation="0,4" id="guide4241"/>
</sodipodi:namedview>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-1030.3622)">
<path style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" d="M 8.3007812 3 L 5.0078125 6.2929688 L 4.8007812 6.5 L 5.0078125 6.7070312 L 8.3007812 10 L 9.0078125 9.2929688 L 6.7148438 7 L 9 7 L 10.007812 7 L 10.5 7 C 13.547 7 16 9.453 16 12.5 C 16 15.547 13.547 18 10.5 18 L 9 18 L 9 19 L 10.5 19 C 14.101 19 17 16.101 17 12.5 C 17 8.899 14.101 6 10.5 6 L 10.007812 6 L 9 6 L 6.7148438 6 L 9.0078125 3.7070312 L 8.3007812 3 z " transform="translate(0,1030.3622)" id="rect4216" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg3813" version="1.1" inkscape:version="0.48+devel r" sodipodi:docname="go-next-use.svg">
<defs id="defs3815">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="25.908292" inkscape:cx="10.048398" inkscape:cy="11.153438" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1366" inkscape:window-height="668" inkscape:window-x="-2" inkscape:window-y="23" inkscape:window-maximized="1" inkscape:showpageshadow="false" showguides="true">
<inkscape:grid type="xygrid" id="grid4109"/>
<sodipodi:guide position="2.0000072,19.999993" orientation="18,0" id="guide4115"/>
<sodipodi:guide position="2.0000072,1.9999929" orientation="0,18" id="guide4117"/>
<sodipodi:guide position="20.000007,1.9999929" orientation="-18,0" id="guide4119"/>
<sodipodi:guide position="20.000007,19.999993" orientation="0,-18" id="guide4121"/>
<sodipodi:guide position="3.0000072,18.999993" orientation="16,0" id="guide4123"/>
<sodipodi:guide position="3.0000072,2.9999929" orientation="0,16" id="guide4125"/>
<sodipodi:guide position="19.000007,2.9999929" orientation="-16,0" id="guide4127"/>
<sodipodi:guide position="19.000007,18.999993" orientation="0,-16" id="guide4129"/>
</sodipodi:namedview>
<metadata id="metadata3818">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(-378.85714,-540.07647)">
<path style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" d="M 3 3 L 3 4 L 3 10 L 4 10 L 19 10 L 19 9 L 19 3 L 18 3 L 4 3 L 3 3 z M 4 4 L 18 4 L 18 9 L 4 9 L 4 4 z M 3 11 L 3 19 L 8 15 L 3 11 z M 11 12 L 11 15 L 13 15 L 13 12 L 11 12 z M 15 12 L 15 15 L 19 15 L 19 12 L 15 12 z " transform="translate(378.85714,540.07647)" id="rect4108" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,64 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg3813" version="1.1" inkscape:version="0.48+devel r" sodipodi:docname="go-pevious-use.svg">
<defs id="defs3815">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="25.908292" inkscape:cx="10.048398" inkscape:cy="11.153438" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1366" inkscape:window-height="668" inkscape:window-x="-2" inkscape:window-y="23" inkscape:window-maximized="1" inkscape:showpageshadow="false" showguides="true">
<inkscape:grid type="xygrid" id="grid4109"/>
<sodipodi:guide position="2.0000072,19.999993" orientation="18,0" id="guide4115"/>
<sodipodi:guide position="2.0000072,1.9999929" orientation="0,18" id="guide4117"/>
<sodipodi:guide position="20.000007,1.9999929" orientation="-18,0" id="guide4119"/>
<sodipodi:guide position="20.000007,19.999993" orientation="0,-18" id="guide4121"/>
<sodipodi:guide position="3.0000072,18.999993" orientation="16,0" id="guide4123"/>
<sodipodi:guide position="3.0000072,2.9999929" orientation="0,16" id="guide4125"/>
<sodipodi:guide position="19.000007,2.9999929" orientation="-16,0" id="guide4127"/>
<sodipodi:guide position="19.000007,18.999993" orientation="0,-16" id="guide4129"/>
</sodipodi:namedview>
<metadata id="metadata3818">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(-378.85714,-540.07647)">
<path style="opacity:1;fill:currentColor;fill-opacity:1;stroke:none" d="m 397.85714,543.07647 0,1 0,6 -1,0 -15,0 0,-1 0,-6 1,0 14,0 1,0 z m -1,1 -14,0 0,5 14,0 0,-5 z m 1,7 0,8 -5,-4 5,-4 z m -8,1 0,3 -2,0 0,-3 2,0 z m -4,0 0,3 -4,0 0,-3 4,0 z" id="rect4108" inkscape:connector-curvature="0" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,256 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
viewBox="0 0 22.000001 22"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="msr2data.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Sstart"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Sstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8245"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#da4453;stroke-width:1pt;stroke-opacity:1;fill:#da4453;fill-opacity:1"
transform="scale(0.2) translate(6,0)" />
</marker>
<marker
inkscape:stockid="Arrow2Mstart"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow2Mstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8257"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#da4453;stroke-opacity:1;fill:#da4453;fill-opacity:1"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(0.6) translate(0,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Lend"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path8236"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#da4453;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="38.863636"
inkscape:cx="11"
inkscape:cy="11"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="pt"
inkscape:window-width="1920"
inkscape:window-height="1021"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-grids="true"
showguides="true"
borderlayer="true"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid5486" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1030.3622)">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.4714051,1031.3622 0,8"
id="path8035"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.9714055,1031.8622 3.9999995,0"
id="path8037"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.9714055,1034.8622 2.9999995,0"
id="path8037-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 14.471405,1031.3622 0,8"
id="path8054"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 18.471406,1031.3622 0,8"
id="path8054-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 15.971405,1031.8622 5,0"
id="path8071"
inkscape:connector-curvature="0" />
<g
id="g16411"
transform="translate(-1.9999996,0)">
<path
inkscape:connector-curvature="0"
id="path8035-5"
d="m 8.5000005,1043.3622 0,8"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:open="true"
d="m 10.000001,1043.8622 a 2.594672,3.5000203 0 0 1 2.594672,3.5 2.594672,3.5000203 0 0 1 -2.594672,3.5"
sodipodi:end="1.5707963"
sodipodi:start="4.712389"
sodipodi:ry="3.5000203"
sodipodi:rx="2.594672"
sodipodi:cy="1047.3622"
sodipodi:cx="10.000001"
sodipodi:type="arc"
id="path16389"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99996012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path16394"
d="m 8,1043.8622 2,0"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:transform-center-y="-3.7031618"
inkscape:transform-center-x="-1.5617682"
inkscape:connector-curvature="0"
id="path16394-8"
d="m 8.0000005,1050.8622 1.9999995,0"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 18.500001,1043.3622 0,8"
id="path8054-0-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.000001,1043.8622 5,0"
id="path8071-1"
inkscape:connector-curvature="0" />
<g
id="g16558"
transform="matrix(0.8331761,0,0,1,2.2916816,0)">
<path
inkscape:connector-curvature="0"
id="path16442"
d="m 11.002838,1050.8557 2.99716,-6.9869"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.09554851px;stroke-linecap:round;stroke-linejoin:bevel;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path16444"
d="m 13.999998,1043.8688 2.997161,6.9869"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.09554851px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 12,1049.3622 4,0"
id="path16450"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1,1031.8622 3,0"
id="path16452"
inkscape:connector-curvature="0" />
<path
style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1049.8622 3.0000002,0"
id="path16452-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1.0000001,1033.8622 5.0000003,0"
id="path16452-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1035.8622 3.0000002,0"
id="path16452-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1037.8622 3.0000004,0"
id="path16452-4-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1039.8622 3.0000004,0"
id="path16452-4-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1041.8622 5.0000001,0"
id="path16452-4-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1043.8622 3.0000004,0"
id="path16452-4-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1045.8622 2.0000001,0"
id="path16452-4-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1047.8622 3.0000004,0"
id="path16452-4-89"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 12.353554,1040.1551 2,2 2.000001,-2"
id="path16535"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,170 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
viewBox="0 0 22.000001 22"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="musrcalcchisq.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.054545"
inkscape:cx="7.4763262"
inkscape:cy="11.952183"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="pt"
inkscape:window-width="1920"
inkscape:window-height="1021"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-grids="true"
showguides="true"
borderlayer="true"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid5486" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1030.3622)">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:12.50000095px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="0.71191412"
y="1049.2772"
id="text4212"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4214"
x="0.71191412"
y="1049.2772"
style="font-size:10.00000095px;fill:#000000;fill-opacity:1;">χ<tspan
style="font-size:5.25000126px;baseline-shift:super;fill:#000000;fill-opacity:1;"
id="tspan7522">2</tspan></tspan></text>
<g
id="g7616"
transform="translate(-0.50000006,-1.0000005)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1"
transform="translate(3.5000002,-3.0000006)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8"
transform="translate(6.5000004,0.99999964)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-3"
transform="translate(9.5000005,9.0000001)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-5"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-8"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-5"
transform="translate(13.500001,3.9999995)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-6"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-7"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-2"
transform="translate(16.500001,11)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-60"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-0"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,186 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
viewBox="0 0 22.000001 22"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="musrfit.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.054545"
inkscape:cx="7.4763262"
inkscape:cy="11.952183"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="pt"
inkscape:window-width="1920"
inkscape:window-height="1021"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-grids="true"
showguides="true"
borderlayer="true"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid5486" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1030.3622)">
<g
id="g7616"
transform="translate(-0.50000006,-1.0000005)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1"
transform="translate(3.5000002,-3.0000006)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8"
transform="translate(6.5000004,0.99999964)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-3"
transform="translate(10.500001,4.9999999)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-5"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-8"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-5"
transform="translate(14.500001,4.9999999)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-6"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-7"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-2"
transform="translate(16.500001,12)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-60"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-0"
d="m 3.0000002,1033.3622 0,6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.94280916;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1.5000001,1043.3622 0,8"
id="path8035"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 2,1043.8622 4.0000002,0"
id="path8037"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 2.0000001,1046.8622 3.0000002,0"
id="path8037-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.94280905px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7.5000004,1043.3622 0,8"
id="path8054"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.94280905px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 11.500001,1043.3622 0,8"
id="path8054-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 9,1043.8622 5,0"
id="path8071"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@ -0,0 +1,201 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
viewBox="0 0 22.000001 22"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="musrswap.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Sstart"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Sstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8245"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#da4453;stroke-width:1pt;stroke-opacity:1;fill:#da4453;fill-opacity:1"
transform="scale(0.2) translate(6,0)" />
</marker>
<marker
inkscape:stockid="Arrow2Mstart"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow2Mstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8257"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#da4453;stroke-opacity:1;fill:#da4453;fill-opacity:1"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(0.6) translate(0,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Lend"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path8236"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#da4453;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.054545"
inkscape:cx="17.786368"
inkscape:cy="11.952183"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="pt"
inkscape:window-width="1920"
inkscape:window-height="1021"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-grids="true"
showguides="true"
borderlayer="true"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid5486" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1030.3622)">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1.3865968"
y="1050.2737"
id="text8186"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8188"
x="1.3865968"
y="1050.2737"
style="font-size:6.25000048px">MLOG</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="3.8865969"
y="1036.2737"
id="text8186-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8188-9"
x="3.8865969"
y="1036.2737"
style="font-size:6.25000048px">MSR</tspan></text>
<g
id="g8578"
transform="translate(0.49906379,-0.25645757)">
<path
d="m 6.4549937,1044.7019 a 6.6798406,3.8715224 0 0 1 -3.0058855,-3.3309 6.6798406,3.8715224 0 0 1 3.2894853,-3.2397"
sodipodi:open="true"
sodipodi:end="4.1804126"
sodipodi:start="2.1527938"
sodipodi:ry="3.8715224"
sodipodi:rx="6.6798406"
sodipodi:cy="1041.4678"
sodipodi:cx="10.12686"
sodipodi:type="arc"
id="path8574"
style="fill:none;fill-opacity:1;stroke:#da4453;stroke-width:0.89203578;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:transform-center-y="1.4688745"
transform="matrix(0.93705251,-0.50474709,0.40961222,0.76043659,-433.10197,254.24636)"
inkscape:transform-center-x="-6.6338476"
d="m 15,1040.3622 -0.75,0.433 -0.75,0.433 0,-0.866 0,-0.866 0.75,0.433 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="1.0471976"
sodipodi:arg1="0"
sodipodi:r2="0.5"
sodipodi:r1="1"
sodipodi:cy="1040.3622"
sodipodi:cx="14"
sodipodi:sides="3"
id="path8576"
style="fill:none;fill-opacity:1;stroke:#da4453;stroke-width:1.0429579;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:type="star" />
</g>
<g
transform="matrix(-1,0,0,-1,20.576188,2082.1404)"
id="g8578-5">
<path
d="m 6.4549937,1044.7019 a 6.6798406,3.8715224 0 0 1 -3.0058855,-3.3309 6.6798406,3.8715224 0 0 1 3.2894853,-3.2397"
sodipodi:open="true"
sodipodi:end="4.1804126"
sodipodi:start="2.1527938"
sodipodi:ry="3.8715224"
sodipodi:rx="6.6798406"
sodipodi:cy="1041.4678"
sodipodi:cx="10.12686"
sodipodi:type="arc"
id="path8574-9"
style="fill:none;fill-opacity:1;stroke:#da4453;stroke-width:0.89203578;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:transform-center-y="1.4688745"
transform="matrix(0.93705251,-0.50474709,0.40961222,0.76043659,-433.10197,254.24636)"
inkscape:transform-center-x="-6.6338476"
d="m 15,1040.3622 -0.75,0.433 -0.75,0.433 0,-0.866 0,-0.866 0.75,0.433 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="1.0471976"
sodipodi:arg1="0"
sodipodi:r2="0.5"
sodipodi:r1="1"
sodipodi:cy="1040.3622"
sodipodi:cx="14"
sodipodi:sides="3"
id="path8576-4"
style="fill:none;fill-opacity:1;stroke:#da4453;stroke-width:1.0429579;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:type="star" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -0,0 +1,196 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
viewBox="0 0 22.000001 22"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="musrview.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Sstart"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Sstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8245"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#da4453;stroke-width:1pt;stroke-opacity:1;fill:#da4453;fill-opacity:1"
transform="scale(0.2) translate(6,0)" />
</marker>
<marker
inkscape:stockid="Arrow2Mstart"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow2Mstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path8257"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#da4453;stroke-opacity:1;fill:#da4453;fill-opacity:1"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(0.6) translate(0,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Lend"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path8236"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#da4453;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="38.863636"
inkscape:cx="11"
inkscape:cy="11.49492"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="pt"
inkscape:window-width="1920"
inkscape:window-height="1021"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-grids="false"
showguides="true"
borderlayer="true"
inkscape:showpageshadow="false">
<inkscape:grid
type="xygrid"
id="grid5486" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1030.3622)">
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1033.8623 20.0000009,0"
id="path16452"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.000002,1035.8622 5,0"
id="path16452-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.000002,1037.8622 3,0"
id="path16452-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.000002,1039.8622 3,0"
id="path16452-4-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.000002,1041.8622 3,0"
id="path16452-4-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.000002,1043.8622 5,0"
id="path16452-4-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1,1031.8622 2,0"
id="path16642"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4,1031.8622 3,0"
id="path16644"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 8,1031.8622 1,0"
id="path16646"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 10,1031.8622 3,0"
id="path16648"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1048.8622 20.0000019,0"
id="path16452-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0000001,1050.8622 2.0000005,0"
id="path16642-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.0000002,1050.8622 1,0"
id="path16646-2"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 5.9999996,1050.8622 3,0"
id="path16648-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 14.500001,1034.3622 0,14"
id="path16689"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.4409357,1041.1878 c 0,0 0.5988101,-1.8552 1.0292397,-2.672 0.3261256,-0.6188 0.7087104,-1.1999 1.157895,-1.6524 0.4939434,-0.4977 0.9350065,-1.0195 1.4923977,-0.9845 0.5223194,0.033 0.9924965,0.6942 1.3380118,1.2657 0.4598496,0.7604 0.6787675,1.7577 0.8748539,2.7071 0.4263632,1.3658 0.612455,2.779 1.1064328,3.9026 0.5694016,1.0532 1.1708036,2.2489 2.0584794,2.7423 0.349568,0.1942 0.783505,0.1972 1.132164,0 0.448266,-0.2537 1.02924,-1.4064 1.02924,-1.4064"
id="path16691"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssssccssc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.1982913,1043.0775 c 0,0 1.6992982,-0.573 2.8046787,-2.0802 0.5658332,-0.7715 1.2490612,-2.5379 1.9040939,-3.6337 0.359783,-0.6019 0.9043006,-1.4477 1.4409357,-1.4477 0.5366351,0 1.3020813,0.676 1.8526316,1.4716 0.5505503,0.7956 0.9984958,1.9005 1.6210528,3.6592 0.622557,1.7587 0.940914,5.7592 1.904094,6.6963"
id="path16691-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csszzzc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@ -0,0 +1,79 @@
<?xml version="1.0"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="22" height="22" id="svg4183" version="1.1" inkscape:version="0.91pre2 r" sodipodi:docname="view-refresh.svg">
<defs id="defs4185">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="32" inkscape:cx="12.411922" inkscape:cy="11.712125" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" inkscape:window-width="1366" inkscape:window-height="672" inkscape:window-x="-4" inkscape:window-y="25" inkscape:window-maximized="1" showguides="true" inkscape:guide-bbox="true" inkscape:showpageshadow="false" borderlayer="true">
<inkscape:grid type="xygrid" id="grid4103"/>
<sodipodi:guide position="2,20.000017" orientation="18,0" id="guide4095"/>
<sodipodi:guide position="2,2.0000174" orientation="0,18" id="guide4097"/>
<sodipodi:guide position="20,2.0000174" orientation="-18,0" id="guide4099"/>
<sodipodi:guide position="20,20.000017" orientation="0,-18" id="guide4101"/>
<sodipodi:guide position="3,19.000017" orientation="16,0" id="guide4103"/>
<sodipodi:guide position="3,3.0000174" orientation="0,16" id="guide4105"/>
<sodipodi:guide position="19,3.0000174" orientation="-1,6.123234e-17" id="guide4107"/>
<sodipodi:guide position="19,19.000017" orientation="0,-16" id="guide4109"/>
<sodipodi:guide position="10.292994,3.0001395" orientation="0,1.414012" id="guide4266"/>
<sodipodi:guide position="6,3.0001" orientation="-3,-3" id="guide4124"/>
<sodipodi:guide position="3,6.0001" orientation="-5,5" id="guide4126"/>
<sodipodi:guide position="8,11.0001" orientation="3,3" id="guide4128"/>
<sodipodi:guide position="14,11.0001" orientation="-3,-3" id="guide4132"/>
<sodipodi:guide position="11,14.0001" orientation="-5,5" id="guide4134"/>
<sodipodi:guide position="16,19.0001" orientation="3,3" id="guide4136"/>
<sodipodi:guide position="19,16.0001" orientation="5,-5" id="guide4138"/>
<sodipodi:guide position="10,5.4139578" orientation="1.4139404,0" id="guide4167"/>
<sodipodi:guide position="12,4.0000174" orientation="-1.4139404,0" id="guide4171"/>
<sodipodi:guide position="10,4.4139578" orientation="1.4139404,0" id="guide4135"/>
<sodipodi:guide position="10,3.0000174" orientation="0,2" id="guide4137"/>
<sodipodi:guide position="12,3.0000174" orientation="-1.4139404,0" id="guide4139"/>
</sodipodi:namedview>
<metadata id="metadata4188">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-1030.3622)">
<path style="fill:currentColor;fill-opacity:1;stroke:none" d="m 11,1049.3622 c -4.431966,0 -8,-3.568 -8,-8 0,-1.4417 0.382871,-2.7893 1.044922,-3.9551 l 0.738281,0.7383 C 4.285829,1039.1083 4,1040.1997 4,1041.3622 c 0,3.878 3.12203,7 7,7 1.162509,0 2.25389,-0.2858 3.216797,-0.7832 l 0.738281,0.7383 c -1.165789,0.662 -2.513364,1.0449 -3.955078,1.0449 z m 6.955078,-4.0449 -0.738281,-0.7383 C 17.714172,1043.6161 18,1042.5247 18,1041.3622 c 0,-3.878 -3.12203,-7 -7,-7 -1.16251,0 -2.25389,0.2858 -3.216797,0.7832 l -0.738281,-0.7383 c 1.165789,-0.662 2.513364,-1.0449 3.955078,-1.0449 4.431966,0 8,3.568 8,8 0,1.4417 -0.382871,2.7893 -1.044922,3.9551 z" id="rect4085" inkscape:connector-curvature="0" class="ColorScheme-Text"/>
<rect style="text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect4336" width="1" height="4" x="-726.45117" y="737.3905" transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" class="ColorScheme-Text"/>
<rect style="text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:currentColor;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect4336-5" width="1" height="4" x="-731.69507" y="746.88037" transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" class="ColorScheme-Text"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

Before

Width:  |  Height:  |  Size: 478 B

After

Width:  |  Height:  |  Size: 478 B

View File

Before

Width:  |  Height:  |  Size: 99 B

After

Width:  |  Height:  |  Size: 99 B

View File

Before

Width:  |  Height:  |  Size: 318 B

After

Width:  |  Height:  |  Size: 318 B

View File

Before

Width:  |  Height:  |  Size: 231 B

After

Width:  |  Height:  |  Size: 231 B

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -1,36 +0,0 @@
/* XPM */
static char *magick[] = {
/* columns rows colors chars-per-pixel */
"22 22 8 1",
" c Gray100",
". c #8b8bfd",
"X c #3c3cfd",
"o c #000082",
"O c Gray0",
"+ c None",
"@ c Gray0",
"# c Gray0",
/* pixels */
"++++++++++++++++++++++",
"++++++++++++++++++++++",
"OOOOOOOO++++++++++++++",
"O OO+++++++++++++",
"O OOOO O O++++++++++++",
"O O O+++++++++++",
"O OOOO Ooooooooo++++++",
"O Oo oo+++++",
"O OOOOO o OOOO oXo++++",
"O o o.Xo+++",
"O OOOOO o OOOO o .Xo++",
"O o oooooo+",
"O OOOOO o OOOO o+",
"O o o+",
"O OOOOO o OOOOOOOOO o+",
"O o o+",
"OOOOOOOOo OOOOOOOOO o+",
"++++++++o o+",
"++++++++o OOOOOOOOO o+",
"++++++++o o+",
"++++++++ooooooooooooo+",
"++++++++++++++++++++++"
};

View File

@ -1,32 +0,0 @@
/* XPM */
static char *magick[] = {
/* columns rows colors chars-per-pixel */
"22 22 4 1",
" c Gray100",
". c #000082",
"X c Gray0",
"o c None",
/* pixels */
"oooooooooooooooooooooo",
"oooooooXoooooXoooooooo",
"oooooooXoooooXoooooooo",
"oooooooXoooooXoooooooo",
"oooooooXooooXXoooooooo",
"oooooooXXoooXooooooooo",
"ooooooooXoooXooooooooo",
"ooooooooXXoXXooooooooo",
"oooooooooXXXoooooooooo",
"oooooooooXXXoooooooooo",
"ooooooooooXooooooooooo",
"ooooooooo.X.oooooooooo",
"oooooooo..o...oooooooo",
"ooooooo.o.o.oo.ooooooo",
"oooooo.oo.o.ooo.oooooo",
"ooooo.ooo.o.oooo.ooooo",
"oooo.oooo.o.oooo.ooooo",
"oooo.oooo.oo.ooo.ooooo",
"oooo.oooo.oo.oo.oooooo",
"oooo.ooo.oooo..ooooooo",
"ooooo...oooooooooooooo",
"oooooooooooooooooooooo"
};

View File

@ -1,202 +0,0 @@
/* XPM */
static char * editfind_xpm[] = {
"22 22 177 2",
" c None",
". c #59595A",
"+ c #3B3B3C",
"@ c #3E3E3F",
"# c #3C3C3D",
"$ c #404041",
"% c #585859",
"& c #979797",
"* c #5B5B5B",
"= c #FFFFFF",
"- c #5D5D5E",
"; c #49494A",
"> c #868787",
", c #AFB4B4",
"' c #BBC4C6",
") c #BBC5C6",
"! c #B2B7B7",
"~ c #7A7A7B",
"{ c #1D1D1D",
"] c #474747",
"^ c #3D3D3D",
"/ c #444445",
"( c #7B7879",
"_ c #CFDADA",
": c #E5F0F2",
"< c #DCF2F5",
"[ c #DDF4FA",
"} c #D7F3F8",
"| c #CCEFF7",
"1 c #DCE7E9",
"2 c #6F6F70",
"3 c #434343",
"4 c #E4E4E4",
"5 c #4C4C4D",
"6 c #7D7E7D",
"7 c #E9F8FA",
"8 c #C6EDF5",
"9 c #BDE7F0",
"0 c #A5DCEA",
"a c #9BD6E2",
"b c #BBE7EE",
"c c #444444",
"d c #8A8A8A",
"e c #767676",
"f c #C5CFD2",
"g c #B1E2EC",
"h c #9DD9E6",
"i c #8ACDD9",
"j c #81C9D6",
"k c #AFE1EC",
"l c #CED9D9",
"m c #29292A",
"n c #818181",
"o c #6C6C6C",
"p c #4A4A4A",
"q c #5C5C5C",
"r c #A2A7A7",
"s c #E5F4F8",
"t c #C3E9F0",
"u c #ACE0EB",
"v c #99D8E6",
"w c #87CDDC",
"x c #6CBACB",
"y c #7BC4D4",
"z c #9DA2A1",
"A c #626262",
"B c #727272",
"C c #535353",
"D c #494949",
"E c #BAC0C1",
"F c #E7F3F6",
"G c #CBE9F2",
"H c #86D1E1",
"I c #6CC3D9",
"J c #50A6B9",
"K c #6AB5C3",
"L c #B2C7CB",
"M c #454545",
"N c #4F4F4F",
"O c #4B4B4B",
"P c #373737",
"Q c #E3F2F4",
"R c #C5E7EC",
"S c #A8E1EB",
"T c #96D7E7",
"U c #74C8DD",
"V c #5BB1C4",
"W c #4399A8",
"X c #54ACB9",
"Y c #0C0C0C",
"Z c #D3D3D3",
"` c #464646",
" . c #434344",
".. c #A6ABAA",
"+. c #D8EDF1",
"@. c #B1DBE4",
"#. c #96D5E5",
"$. c #4DBACE",
"%. c #449AA9",
"&. c #3D8996",
"*. c #63B5C4",
"=. c #ABDFEA",
"-. c #232323",
";. c #FCFCFC",
">. c #78C3D3",
",. c #68BDCF",
"'. c #4CB7CB",
"). c #4298A7",
"!. c #398491",
"~. c #489EAD",
"{. c #404647",
"]. c #484848",
"^. c #797A79",
"/. c #D7F0F4",
"(. c #A4DBE9",
"_. c #79BFCC",
":. c #60B3C5",
"<. c #52A7B3",
"[. c #4496A5",
"}. c #50A3B5",
"|. c #8ACFE1",
"1. c #000000",
"2. c #8E8E8E",
"3. c #5C5D5C",
"4. c #BAE4EF",
"5. c #99D4E0",
"6. c #87CAD6",
"7. c #BDE6F0",
"8. c #414648",
"9. c #AC993F",
"0. c #6C6D6C",
"a. c #7B7C7B",
"b. c #79989C",
"c. c #A9C7CE",
"d. c #B3CAD0",
"e. c #88A8AD",
"f. c #6B7274",
"g. c #DECE9D",
"h. c #635920",
"i. c #4D4D4E",
"j. c #595959",
"k. c #737374",
"l. c #757576",
"m. c #717172",
"n. c #707071",
"o. c #424849",
"p. c #414748",
"q. c #BDA44C",
"r. c #717171",
"s. c #686868",
"t. c #928237",
"u. c #747475",
"v. c #767677",
"w. c #373738",
"x. c #939393",
"y. c #E3E3E3",
"z. c #363637",
"A. c #777778",
"B. c #E1E1E1",
"C. c #39393A",
"D. c #3B3B3B",
"E. c #DCDCDC",
"F. c #828282",
"G. c #CECECE",
"H. c #3A3F40",
"I. c #727273",
"J. c #313131",
"K. c #575757",
"L. c #393939",
"M. c #EEEEEE",
"N. c #3D3D3E",
"O. c #9D9D9D",
"P. c #FEFEFE",
"Q. c #323233",
"R. c #7F7F80",
"S. c #0B0B0B",
"T. c #4D4D4D",
" . + @ # $ % & * = ",
" - ; > , ' ) ! ~ { ] * ^ = & ",
" / ( _ : < [ } | [ 1 2 3 4 4 * ",
" 5 6 1 7 = 7 8 9 0 a b 1 6 c d e = ",
" ; f 7 = = = 7 g h i j k l m n o * p = ",
"q r 1 < s = 7 t u v w x y k z A B * C D = ",
"; E F G G 7 t k v H I J K g L M N O M P ",
"; ' Q R b g S T H U V W X S L Y Z ` P = ",
" ...+.@.a v #.H U $.%.&.*.=.r -. ;.= ",
"o 6 _ k i j >.,.'.).!.~.#._ {.] ",
" ].^./.(._.:.<.[.&.}.|.+.z 1. ",
" 2.3.6 +.4.5.6.>.w 7.+.6 8.1.9. ",
" * 0.a.b.c.R R d.e.f.8.1.= g.h. ",
" q i.j.k.l.m.n.o.p.1.q.g.= k.$ ",
" r.i.N p D s. h.t.o.u.= v.w. ",
" x.C y. h.z.o.A.B.~ C. ",
" * D.E.F.M G. z.z.H.I.G.2 J. ",
" = = K.L.M. 1.z.o.n.G.n.N.",
"O.d e P.y. Q.z.o.n.R.$ ",
"n o * ].4 & * = 1.z.o.S.$ ",
"e * C D 4 * ^ = 1.1.$ ",
"K.T.M P = = = "};

View File

@ -1,49 +0,0 @@
/* XPM */
static char * editnext_xpm[] = {
"24 24 22 1",
" c None",
". c #000000",
"+ c #FFFFFF",
"@ c #E6E6E6",
"# c #FAFAFA",
"$ c #AEAEAE",
"% c #F6F6F6",
"& c #C9C9C9",
"* c #666666",
"= c #ACACAC",
"- c #F3F3F3",
"; c #FDFDFD",
"> c #676767",
", c #AAAAAA",
"' c #888888",
") c #A5A5A5",
"! c #F0F0F0",
"~ c #525252",
"{ c #5E5E5E",
"] c #696969",
"^ c #FCFCFC",
"/ c #F9F9F9",
" ",
" ",
" ........+ ",
" . ........+ ",
" .@. . #++++++++ ",
" .@$%. .. ..........+ ",
".&$*=%..@. -;+++++++++ ",
" .>$*=&@,. ....+ ",
" .>$*')>. !;+++ ",
" .~${{>. .......+ ",
" .@']]>. !^++++++ ",
" .@,>>>>. ",
" ......... ..........+ ",
" ..........+ ",
" /++++++++++ ",
" ....+ ",
" +++++ ",
" ......+ ",
" +++++++ ",
" ........+ ",
" +++++++++ ",
" ",
" ",
" "};

View File

@ -1,36 +0,0 @@
/* XPM */
static char *magick[] = {
/* columns rows colors chars-per-pixel */
"22 22 8 1",
" c Gray100",
". c Yellow",
"X c #c6c3c6",
"o c #848284",
"O c #848200",
"+ c #000084",
"@ c Gray0",
"# c None",
/* pixels */
"######################",
"#######@@@@@##########",
"##@@@@@@...@@@@@@#####",
"#@@@@@@.....@@@@@@####",
"@@oOo@@.@@@.@@oOo@@###",
"@oOo@XXXXXXXXX@oOo@###",
"@OoO@XXXXXXXXX@OoO@###",
"@oOo@@@@@@@@@@@oOo@###",
"@OoOoOoOoOoOoOoOoO@###",
"@oOoOoOoOoOoOoOoOo@###",
"@OoOoOoO++++++++++@###",
"@oOoOoOo+ + +###",
"@OoOoOoO+ +++++ + +##",
"@oOoOoOo+ + +#",
"@OoOoOoO+ +++++ + +",
"@oOoOoOo+ ++++++",
"@OoOoOoO+ +++++ +",
"@oOoOoOo+ +",
"@OoOoOoO+ ++++++++++ +",
"#@@@@@@@+ +",
"########++++++++++++++",
"######################"
};

View File

@ -1,45 +0,0 @@
/* XPM */
static char * editprevious_xpm[] = {
"24 22 20 1",
" c None",
". c #000000",
"+ c #FFFFFF",
"@ c #D6D6D6",
"# c #F0F0F0",
"$ c #FDFDFD",
"% c #B1B1B1",
"& c #969696",
"* c #696969",
"= c #FEFEFE",
"- c #A8A8A8",
"; c #888888",
"> c #5E5E5E",
", c #F7F7F7",
"' c #666666",
") c #ACACAC",
"! c #A0A0A0",
"~ c #AEAEAE",
"{ c #3B3B3B",
"] c #4C4C4C",
" ",
" ",
"........+ ",
"........+ ......... ",
"+++++++++ .@@###@. ",
"..........$ .%&*&@. ",
"++++++++++= .-;>&,. ",
"....+ .-;;'),. ",
"+++++ .!~{~'),. ",
".......+ .~..{~'),. ",
"++++++++ .. .{~]. ",
" . .{. ",
"..........$ . ",
"..........+ ",
"+++++++++++ ",
"....+ ",
"+++++ ",
"......+ ",
"+++++++ ",
"........+ ",
"+++++++++ ",
" "};

View File

@ -1,36 +0,0 @@
/* XPM */
static char *magick[] = {
/* columns rows colors chars-per-pixel */
"22 22 8 1",
" c Gray100",
". c #848284",
"X c #000084",
"o c Gray0",
"O c None",
"+ c Gray0",
"@ c Gray0",
"# c Gray0",
/* pixels */
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOO.XXXXXXOOOOOOOOOOO",
"OOOXXXXXXXXXXOOOOOOXOO",
"OO.XXOOOOOOXXXXOOOXXOO",
"OOXXOOOOOOOOOXXXOXXXOO",
"OOXXOOOOOOOOOOXXXXXXOO",
"OOXXOOOOOOOOOOOXXXXXOO",
"OOXXOOOOOOOOOOXXXXXXOO",
"OOXXOOOOOOOOOXXXXXXXOO",
"OO.XXOOOOOOOXXXXXXXXOO",
"OOOXXX.OOOOOOOOOOOOOOO",
"OOOOXXXOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO"
};

View File

@ -1,36 +0,0 @@
/* XPM */
static char *magick[] = {
/* columns rows colors chars-per-pixel */
"22 22 8 1",
" c Gray100",
". c #848284",
"X c #000084",
"o c Gray0",
"O c None",
"+ c Gray0",
"@ c Gray0",
"# c Gray0",
/* pixels */
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOXXXXXX.OOOO",
"OOXOOOOOOXXXXXXXXXXOOO",
"OOXXOOOXXXXOOOOOOXX.OO",
"OOXXXOXXXOOOOOOOOOXXOO",
"OOXXXXXXOOOOOOOOOOXXOO",
"OOXXXXXOOOOOOOOOOOXXOO",
"OOXXXXXXOOOOOOOOOOXXOO",
"OOXXXXXXXOOOOOOOOOXXOO",
"OOXXXXXXXXOOOOOOOXX.OO",
"OOOOOOOOOOOOOOO.XXXOOO",
"OOOOOOOOOOOOOOOXXXOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO"
};

View File

@ -1,36 +0,0 @@
/* XPM */
static char *magick[] = {
/* columns rows colors chars-per-pixel */
"22 22 8 1",
" c Gray100",
". c Gray76",
"X c Gray53",
"o c Gray36",
"O c Gray18",
"+ c Gray0",
"@ c None",
"# c Gray0",
/* pixels */
"@@@@@@@@@@@@@@@@@@@@@@",
"@@@@++++++++++@@@@@@@@",
"@@@@+ +O+@@@@@@@",
"@@@@+ +oO+@@@@@@",
"@@@@+ +XoO+@@@@@",
"@@@@+ +.XoO+@@@@",
"@@@@+ + .XoO+@@@",
"@@@@+ +++++++@@@",
"@@@@+ +@@@",
"@@@@+ +@@@",
"@@@@+ +@@@",
"@@@@+ +@@@",
"@@@@+ +@@@",
"@@@@+ +@@@",
"@@@@+ +@@@",
"@@@@+ +@@@",
"@@@@+ +@@@",
"@@@@+ +@@@",
"@@@@+ +@@@",
"@@@@+++++++++++++++@@@",
"@@@@@@@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@@@@@@@"
};

View File

@ -1,36 +0,0 @@
/* XPM */
static char *magick[] = {
/* columns rows colors chars-per-pixel */
"22 22 8 1",
" c Gray100",
". c Yellow",
"X c #848200",
"o c Gray0",
"O c None",
"+ c Gray0",
"@ c Gray0",
"# c Gray0",
/* pixels */
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOooooOOOOoO",
"OOOOOOOOOOOoOOOOooOooO",
"OOOOOOOOOOOOOOOOOOoooO",
"OOOOOOOOOOOOOOOOOooooO",
"OooooOOOOOOOOOOOoooooO",
"o. . ooooooooooOOOOOOO",
"o . . . . . . oOOOOOOO",
"o. . . . . . .oOOOOOOO",
"o . . . . . . oOOOOOOO",
"o. . . ooooooooooooooo",
"o . . ooXXXXXXXXXXXXoo",
"o. . ooXXXXXXXXXXXXooO",
"o . ooXXXXXXXXXXXXooOO",
"o. ooXXXXXXXXXXXXooOOO",
"o ooXXXXXXXXXXXXooOOOO",
"oooXXXXXXXXXXXXooOOOOO",
"ooXXXXXXXXXXXXooOOOOOO",
"oooooooooooooooOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOO"
};

View File

@ -1,117 +0,0 @@
/* XPM */
static char *magick[] = {
/* columns rows colors chars-per-pixel */
"22 22 89 1",
" c Gray0",
". c #101008081010",
"X c #101010101010",
"o c #101010101818",
"O c #181810101818",
"+ c #181818181818",
"@ c #181818182121",
"# c #212118182121",
"$ c Gray13",
"% c #212121212929",
"& c #292921212929",
"* c Gray16",
"= c #292929293131",
"- c #313129293131",
"; c #313131313131",
": c #313131313939",
"> c #393931313939",
", c #393939393939",
"< c #393939394242",
"1 c #424239394242",
"2 c Gray26",
"3 c #4a4a4a4a5252",
"4 c #5a5a52525a5a",
"5 c #5a5a5a5a6363",
"6 c #6b6b63636b6b",
"7 c Gray42",
"8 c #6b6b6b6b7373",
"9 c #73736b6b7373",
"0 c #7b7b73737b7b",
"q c #7b7b73738484",
"w c #0808ffff0808",
"e c #2929ffff2929",
"r c #3131ffff3131",
"t c #5a5acece5a5a",
"y c #6b6bffff6363",
"u c #7b7bffff7b7b",
"i c #84847b7b8484",
"p c #84847b7b8c8c",
"a c #8c8c7b7b9494",
"s c #848484848c8c",
"d c #8c8c84848c8c",
"f c Gray55",
"g c #8c8c84849494",
"h c #8c8c8c8c9494",
"j c #94948c8c9494",
"k c #94948c8c9c9c",
"l c Gray58",
"z c #949494949c9c",
"x c #9c9c94949c9c",
"c c Gray61",
"v c #9c9c9494a5a5",
"b c #9c9c9c9ca5a5",
"n c #a5a59c9ca5a5",
"m c #a5a59c9cadad",
"M c #adad9c9cadad",
"N c #a5a5a5a5a5a5",
"B c #a5a5a5a5adad",
"V c #adada5a5adad",
"C c Gray68",
"Z c #adadadadb5b5",
"A c #b5b5adadb5b5",
"S c Gray71",
"D c Gray74",
"F c #9494c6c69494",
"G c #9c9ccecea5a5",
"H c #bdbdd6d6bdbd",
"J c #c0c0c0c0c0c0",
"K c #c6c6c6c6c6c6",
"L c #cecec6c6cece",
"P c #cececececece",
"I c #cecececed6d6",
"U c #d6d6ceced6d6",
"Y c #d6d6cecedede",
"T c Gray84",
"R c #d6d6d6d6dede",
"E c #deded6d6dede",
"W c Gray87",
"Q c #deded6d6e7e7",
"! c #dedededee7e7",
"~ c #d6d6ffffd6d6",
"^ c #e7e7dedee7e7",
"/ c #e7e7e7e7e7e7",
"( c #e7e7e7e7efef",
") c #efefe7e7efef",
"_ c #efefefefefef",
"` c #e7e7ffffe7e7",
"' c Gray97",
"] c Gray100",
"[ c None",
/* pixels */
"[[[[[[SDPPPPKKDDCD[[[[",
"[[[[[[D_/////___WD[[[[",
"[[[[[[DKKKPPKKKKDK[[[[",
"[[[[[[SDDDDSDDSSCD[[[[",
"[[[[[KCKDKKKDDDKS[[[[[",
"[[[[[DDSDDDDDDKKS[[[[[",
"[[[[[DSKDDDDDKDKC[[[[[",
"[[[[[KDDDDDDDDDDS[[[[[",
"[[[[[CP/WWWWWWTWNNZ[[[",
"[[[Dc9STPTPTPTWWj427S[",
"[[Dziq0000000pag8<%@2N",
"[DcE(!ERRRRUYGtFn2##O<",
"Db)]]]]]]]]]~ewePa;@X#",
"V']]]]]]]]]]`yru]Q0@ #",
"BRILITRRW^!E!RHUILhO @",
"jAZVBmBnmmNmnmMvzh6o #",
"jZZmBnnnbnbbbbvxxg6o +",
"lmmnbnbbbvcvxxxvjs6O 3",
"jBnnvcvxvcvxvxzjhd8o+C",
"lsdgfgdhgdhhjhjkhg6+l[",
"S9%@$%&&&=--::>>:-:l[[",
"[[C511,:;;;**%++.2c[[["
};

View File

@ -1,172 +0,0 @@
/* XPM */
static char * editreload_xpm[] = {
"22 22 147 2",
" c None",
". c #215017",
"+ c #225118",
"@ c #1C3F10",
"# c #1C4110",
"$ c #213B14",
"% c #1A330D",
"& c #141400",
"* c #1D4613",
"= c #2A732F",
"- c #65C284",
"; c #D8F0D6",
"> c #B9E4BD",
", c #82CD91",
"' c #3D8F4B",
") c #477D40",
"! c #417036",
"~ c #1E4917",
"{ c #1B3E0F",
"] c #32A85D",
"^ c #FFFFFF",
"/ c #B8E2BE",
"( c #46B670",
"_ c #2F833C",
": c #112405",
"< c #121600",
"[ c #212106",
"} c #142B0A",
"| c #B2E0B8",
"1 c #47B671",
"2 c #50854A",
"3 c #686868",
"4 c #6E6E6E",
"5 c #101800",
"6 c #CBE9CB",
"7 c #63C284",
"8 c #337F3A",
"9 c #17320C",
"0 c #747474",
"a c #2A6F2B",
"b c #A3DAAE",
"c c #31843E",
"d c #676767",
"e c #7B7B7B",
"f c #296C27",
"g c #E0F3DD",
"h c #63C385",
"i c #46914F",
"j c #142908",
"k c #6D6D6D",
"l c #284919",
"m c #305020",
"n c #2FA057",
"o c #BEE5C1",
"p c #55BD7A",
"q c #32843F",
"r c #192C0B",
"s c #161600",
"t c #2C7F39",
"u c #B0E1B5",
"v c #DFF3DD",
"w c #D4F4D4",
"x c #6FC386",
"y c #419652",
"z c #378843",
"A c #7DCB8F",
"B c #CEECCE",
"C c #2C813A",
"D c #16310C",
"E c #000000",
"F c #171717",
"G c #366D2F",
"H c #32A65C",
"I c #34B464",
"J c #319E52",
"K c #3A924C",
"L c #64C280",
"M c #256022",
"N c #A0A0A0",
"O c #474747",
"P c #191919",
"Q c #2F8F46",
"R c #33B364",
"S c #6AC684",
"T c #5A5A5A",
"U c #B8B8B8",
"V c #848484",
"W c #454545",
"X c #151515",
"Y c #407438",
"Z c #2F8B40",
"` c #2D823B",
" . c #C3C3C3",
".. c #383838",
"+. c #484848",
"@. c #8D8D8D",
"#. c #4C4C4C",
"$. c #B5B5B5",
"%. c #6F6F6F",
"&. c #353535",
"*. c #222222",
"=. c #292929",
"-. c #4D4D4D",
";. c #464646",
">. c #282828",
",. c #9B9B9B",
"'. c #2A2A2A",
"). c #2F2F2F",
"!. c #2E2E2E",
"~. c #717171",
"{. c #2C2C2C",
"]. c #0A0A0A",
"^. c #030303",
"/. c #757575",
"(. c #3C3C3C",
"_. c #515151",
":. c #242424",
"<. c #010101",
"[. c #898989",
"}. c #414141",
"|. c #575757",
"1. c #252525",
"2. c #A3A3A3",
"3. c #3B3B3B",
"4. c #1A1A1A",
"5. c #AFAFAF",
"6. c #6A6A6A",
"7. c #434343",
"8. c #404040",
"9. c #070707",
"0. c #424242",
"a. c #141414",
"b. c #080808",
"c. c #0B0B0B",
"d. c #1C1C1C",
"e. c #797979",
"f. c #828282",
"g. c #505050",
"h. c #1F1F1F",
"i. c #4B4B4B",
"j. c #818181",
"k. c #A5A5A5",
"l. c #5E5E5E",
"m. c #0D0D0D",
"n. c #121212",
"o. c #212121",
"p. c #1D1D1D",
" . + @ # $ % & ",
" * = - ; > , ' ) ! ~ { ",
" * ] ^ / ( _ * : < [ & ~ } ",
" = ^ | 1 2 & & 3 4 & } 5 ",
" * - 6 7 8 9 3 0 } & ",
" a ^ b c & d e & ",
" f g h i j k ",
"& { l m n o p q r s & & ",
"& t u v w x y z A B C D E F ",
" & G H I J K L C M & E N O P ",
" & G Q R S C M & T E U k V W X ",
" & Y Z ` M & E .4 ..+.@.#.P ",
" & G M & E $.%.&.*.=.-.@.;.X ",
" & & >.,.3 W W '.).!.;.~.{.].",
" E E ^.E /.(._.:.<.E E E ",
" E [.}.|.1. ",
" E E 2.3._.4. ",
" E E E 5.6.7.8.9. ",
" E E E E E 5.V 0.+.a. ",
" b.*.c.d.E E e.5.f.g.g.{.9. ",
" E h.i.6.j.k.l.0.g.m.E ",
" ].n.P h.o.p.E "};

View File

@ -1,36 +0,0 @@
/* XPM */
static char *magick[] = {
/* columns rows colors chars-per-pixel */
"22 22 8 1",
" c Gray100",
". c #cab5d1",
"X c #c1c1c1",
"o c #848200",
"O c Gray0",
"+ c None",
"@ c Gray0",
"# c Gray0",
/* pixels */
"++++++++++++++++++++++",
"+OOOOOOOOOOOOOOOOOOOO+",
"+OooOXXXXXXXXXXXXOXXO+",
"+OooOXXXXXXXXXXXXOXXO+",
"+OooOXXXXXXXXX.XXOOOO+",
"+OooOXXX..XXXXXXXOooO+",
"+OooOXXX..XXXXXXXOooO+",
"+OooOXXXXXXXXXXXXOooO+",
"+OooOXXXXXXXXXXXXOooO+",
"+OooOXXXXXXXXXXXXOooO+",
"+OooOXXXXXXXXXXXXOooO+",
"+OoooOOOOOOOOOOOOoooO+",
"+OooooooooooooooooooO+",
"+OooooooooooooooooooO+",
"+OoooOOOOOOOOOOOOOooO+",
"+OoooOOOOOOOOOXXXOooO+",
"+OoooOOOOOOOOOXXXOooO+",
"+OoooOOOOOOOOOXXXOooO+",
"+OoooOOOOOOOOOXXXOooO+",
"+OoooOOOOOOOOOXXXOooO+",
"++OOOOOOOOOOOOOOOOOO++",
"++++++++++++++++++++++"
};

View File

@ -1,28 +0,0 @@
/* XPM */
static char * musrcalcchisq_xpm[] = {
"22 22 3 1",
" c None",
". c #FF0000",
"+ c #000000",
" ... ",
" +... . ",
" .+ ...+. ",
" ... . ... ",
" ... ... ",
" ... ... ",
"+ . . ",
" . ",
" +++ ",
" ++..+ ",
" + ..+ . ",
" .+.+ . ",
"++ + +. + ... ",
"+++ ++ + ...++... ",
" ++ ++ +++++.. ... ",
" +++ ... .+ ",
" ++ . ",
" ++ ...",
" +++ ...",
" ++ + ...",
" ++ +++ . ",
"++ +++ "};

View File

@ -1,290 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="524.40942"
height="372.04724"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="musrfit.svg">
<defs
id="defs4">
<linearGradient
id="linearGradient3649">
<stop
style="stop-color:#c8c8c8;stop-opacity:1;"
offset="0"
id="stop3651" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3653" />
</linearGradient>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
<inkscape:perspective
id="perspective3010"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3834"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3865"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3896"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3927"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3958"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3665"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.1690794"
inkscape:cx="190.97634"
inkscape:cy="186.29563"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="-4"
inkscape:window-y="-3"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-680.31488)">
<rect
style="fill:#c8c864;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3647"
width="405.38635"
height="340.13422"
x="54.14386"
y="690.67322" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
x="143.41449"
y="951.34796"
id="text3016-4"><tspan
sodipodi:role="line"
id="tspan3018-6"
x="143.41449"
y="951.34796"
style="font-size:96px;font-weight:bold;fill:#ffffff;fill-opacity:1;font-family:CM Sans;-inkscape-font-specification:CM Sans Bold">FIT</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
x="140.35832"
y="947.95404"
id="text3016"><tspan
sodipodi:role="line"
id="tspan3018"
x="140.35832"
y="947.95404"
style="font-size:96px;font-weight:bold;font-family:CM Sans;-inkscape-font-specification:CM Sans Bold">FIT</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 166.07351,789.68979 c 0,0 5.53059,-9.03661 30.91685,-16.64754 25.38626,-7.61093 48.7535,35.6733 48.7535,35.6733 13.04598,27.30078 14.82377,35.16392 28.53864,47.56438 16.57186,14.98364 34.1988,9.42906 60.6446,28.53864 20.09704,14.522 26.16042,35.6733 26.16042,35.6733"
id="path3020"
sodipodi:nodetypes="czcasc" />
<g
id="g3821"
transform="translate(34.411958,364.20129)">
<path
transform="matrix(0.80862041,0,0,0.80862041,24.230764,83.900652)"
d="m 161.71894,403.10822 c 0,8.53745 -6.92097,15.45842 -15.45843,15.45842 -8.53745,0 -15.45842,-6.92097 -15.45842,-15.45842 0,-8.53746 6.92097,-15.45843 15.45842,-15.45843 8.53746,0 15.45843,6.92097 15.45843,15.45843 z"
sodipodi:ry="15.458427"
sodipodi:rx="15.458427"
sodipodi:cy="403.10822"
sodipodi:cx="146.26051"
id="path3815"
style="fill:#ff0000;fill-opacity:1;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:type="arc" />
<path
id="path3817"
d="m 141.1961,374.75509 0,75.72405"
style="fill:none;stroke:#000000;stroke-width:0.00099861px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path3819"
d="m 142.46542,383.0094 0,56.39595"
style="fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:4.16823864px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
id="g3821-8"
transform="translate(69.411958,366.29912)">
<path
transform="matrix(0.80862041,0,0,0.80862041,24.230764,83.900652)"
d="m 161.71894,403.10822 c 0,8.53745 -6.92097,15.45842 -15.45843,15.45842 -8.53745,0 -15.45842,-6.92097 -15.45842,-15.45842 0,-8.53746 6.92097,-15.45843 15.45842,-15.45843 8.53746,0 15.45843,6.92097 15.45843,15.45843 z"
sodipodi:ry="15.458427"
sodipodi:rx="15.458427"
sodipodi:cy="403.10822"
sodipodi:cx="146.26051"
id="path3815-4"
style="fill:#ff0000;fill-opacity:1;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:type="arc" />
<path
id="path3817-6"
d="m 141.1961,374.75509 0,75.72405"
style="fill:none;stroke:#000000;stroke-width:0.00099861px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path3819-5"
d="m 142.46542,383.0094 0,56.39595"
style="fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:4.16823864px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
id="g3821-8-5"
transform="translate(104.41196,396.0705)">
<path
transform="matrix(0.80862041,0,0,0.80862041,24.230764,83.900652)"
d="m 161.71894,403.10822 c 0,8.53745 -6.92097,15.45842 -15.45843,15.45842 -8.53745,0 -15.45842,-6.92097 -15.45842,-15.45842 0,-8.53746 6.92097,-15.45843 15.45842,-15.45843 8.53746,0 15.45843,6.92097 15.45843,15.45843 z"
sodipodi:ry="15.458427"
sodipodi:rx="15.458427"
sodipodi:cy="403.10822"
sodipodi:cx="146.26051"
id="path3815-4-5"
style="fill:#ff0000;fill-opacity:1;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:type="arc" />
<path
id="path3817-6-0"
d="m 141.1961,374.75509 0,75.72405"
style="fill:none;stroke:#000000;stroke-width:0.00099861px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path3819-5-9"
d="m 142.46542,383.0094 0,56.39595"
style="fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:4.16823864px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
id="g3821-8-5-3"
transform="translate(139.41196,426.67611)">
<path
transform="matrix(0.80862041,0,0,0.80862041,24.230764,83.900652)"
d="m 161.71894,403.10822 c 0,8.53745 -6.92097,15.45842 -15.45843,15.45842 -8.53745,0 -15.45842,-6.92097 -15.45842,-15.45842 0,-8.53746 6.92097,-15.45843 15.45842,-15.45843 8.53746,0 15.45843,6.92097 15.45843,15.45843 z"
sodipodi:ry="15.458427"
sodipodi:rx="15.458427"
sodipodi:cy="403.10822"
sodipodi:cx="146.26051"
id="path3815-4-5-7"
style="fill:#ff0000;fill-opacity:1;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:type="arc" />
<path
id="path3817-6-0-8"
d="m 141.1961,374.75509 0,75.72405"
style="fill:none;stroke:#000000;stroke-width:0.00099861px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path3819-5-9-3"
d="m 142.46542,383.0094 0,56.39595"
style="fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:4.16823864px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
id="g3821-8-5-3-2"
transform="translate(174.41196,463.92211)">
<path
transform="matrix(0.80862041,0,0,0.80862041,24.230764,83.900652)"
d="m 161.71894,403.10822 c 0,8.53745 -6.92097,15.45842 -15.45843,15.45842 -8.53745,0 -15.45842,-6.92097 -15.45842,-15.45842 0,-8.53746 6.92097,-15.45843 15.45842,-15.45843 8.53746,0 15.45843,6.92097 15.45843,15.45843 z"
sodipodi:ry="15.458427"
sodipodi:rx="15.458427"
sodipodi:cy="403.10822"
sodipodi:cx="146.26051"
id="path3815-4-5-7-2"
style="fill:#ff0000;fill-opacity:1;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:type="arc" />
<path
id="path3817-6-0-8-2"
d="m 141.1961,374.75509 0,75.72405"
style="fill:none;stroke:#000000;stroke-width:0.00099861px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path3819-5-9-3-8"
d="m 142.46542,383.0094 0,56.39595"
style="fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:4.16823864px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
id="g3821-8-5-3-2-8"
transform="translate(209.41196,520.84722)">
<path
transform="matrix(0.80862041,0,0,0.80862041,24.230764,83.900652)"
d="m 161.71894,403.10822 c 0,8.53745 -6.92097,15.45842 -15.45843,15.45842 -8.53745,0 -15.45842,-6.92097 -15.45842,-15.45842 0,-8.53746 6.92097,-15.45843 15.45842,-15.45843 8.53746,0 15.45843,6.92097 15.45843,15.45843 z"
sodipodi:ry="15.458427"
sodipodi:rx="15.458427"
sodipodi:cy="403.10822"
sodipodi:cx="146.26051"
id="path3815-4-5-7-2-6"
style="fill:#ff0000;fill-opacity:1;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:type="arc" />
<path
id="path3817-6-0-8-2-5"
d="m 141.1961,374.75509 0,75.72405"
style="fill:none;stroke:#000000;stroke-width:0.00099861px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path3819-5-9-3-8-4"
d="m 142.46542,383.0094 0,56.39595"
style="fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:4.16823864px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,28 +0,0 @@
/* XPM */
static char * musrfit_xpm[] = {
"22 22 3 1",
" c None",
". c #FF0000",
"+ c #000000",
" ... ",
" +... . ",
" .+ ...+. ",
" ... . ... ",
" ... ... ",
" ... ... ",
"+ . .+ ",
" .+ ",
" . ",
" ... ",
" ... . ",
" ...+ . ",
" . + ... ",
" ...++... ",
"++++ + +++++... ... ",
"+ + + ... .+ ",
"+ + + . ",
"++++ + + ...",
"+ + + ...",
"+ + + ...",
"+ + + . ",
" "};

View File

@ -1,28 +0,0 @@
/* XPM */
static char * musrswap_xpm[] = {
"22 22 3 1",
" c None",
". c #000000",
"+ c #FF0000",
".. .. .... .... ",
".. .. . . . . ",
". . . . . . . ",
". ... . ... . . ",
". . . .. .... ",
". . . . . ",
". . . . . . ",
". . .+.. . . ",
" +++ ",
" +++++ ",
" ++ + ++ ",
" + ",
" ++ + ++ ",
" +++++ ",
".. .. .+++... ... ",
".. .. . +.. .. .. ..",
". . . . . . . . .",
". ... . . . . . ",
". . . . . . . ...",
". . . . . . .",
". . . .. .. .. ..",
". . ....... ... "};

View File

@ -1,28 +0,0 @@
/* XPM */
static char * musrview_xpm[] = {
"22 22 3 1",
" c None",
". c #000000",
"+ c #FF0000",
" .. ... .. ",
" ",
"......................",
" . ",
" . . ... ",
" ++ . ",
" ++ . ..... ",
" + + . ",
" + ... . ..... ",
" + . + . . ",
" +. + . . . ....",
" +. + . . ",
" + . + . . ... . ",
" + . + . . ",
" +. + . . ",
" +. + ... ",
" ++ . ",
" . ",
"......................",
" ",
" ....... .... .... ",
" "};

View File

@ -1,29 +1,29 @@
<RCC>
<qresource prefix="/">
<file>images/editcopy.xpm</file>
<file>images/editcut.xpm</file>
<file>images/editfind.xpm</file>
<file>images/editnext.xpm</file>
<file>images/editpaste.xpm</file>
<file>images/editprevious.xpm</file>
<file>images/editredo.xpm</file>
<file>images/editundo.xpm</file>
<file>images/filenew.xpm</file>
<file>images/fileopen.xpm</file>
<file>images/fileprint.xpm</file>
<file>images/filereload.xpm</file>
<file>images/filesave.xpm</file>
<file>images/musrasym.xpm</file>
<file>images/musrcalcchisq.xpm</file>
<file>images/musrfit.xpm</file>
<file>images/musrmsr2data.xpm</file>
<file>images/musrprefs.xpm</file>
<file>images/musrsinglehisto.xpm</file>
<file>images/musrswap.xpm</file>
<file>images/musrt0.xpm</file>
<file>images/musrview.xpm</file>
<file>images/musrFT.xpm</file>
<file>images/musrdump.xpm</file>
<file>icons/edit-copy-plain.svg</file>
<file>icons/edit-cut-plain.svg</file>
<file>icons/edit-find-plain.svg</file>
<file>icons/go-next-use-plain.svg</file>
<file>icons/edit-paste-plain.svg</file>
<file>icons/go-previous-use-plain.svg</file>
<file>icons/edit-redo-plain.svg</file>
<file>icons/edit-undo-plain.svg</file>
<file>icons/document-new-plain.svg</file>
<file>icons/document-open-plain.svg</file>
<file>icons/document-print-plain.svg</file>
<file>icons/view-refresh-plain.svg</file>
<file>icons/document-save-plain.svg</file>
<file>icons/musrasym.xpm</file>
<file>icons/musrchisq-plain.svg</file>
<file>icons/musrfit-plain.svg</file>
<file>icons/msr2data-plain.svg</file>
<file>icons/musrprefs.xpm</file>
<file>icons/musrsinglehisto.xpm</file>
<file>icons/musrswap-plain.svg</file>
<file>icons/musrt0.xpm</file>
<file>icons/musrview-plain.svg</file>
<file>icons/musrFT.xpm</file>
<file>icons/musrdump.xpm</file>
<file>latex_images/abragam.png</file>
<file>latex_images/asymmetry.png</file>
<file>latex_images/bessel.png</file>