間引きDUMP機能追加しました
C++Builder2007コード
//**** Unit1.h
//—————————————————————————
#ifndef Unit1H
#define Unit1H
//—————————————————————————
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include “Chart.hpp”
#include “TeEngine.hpp”
#include “TeeProcs.hpp”
#include <ExtCtrls.hpp>
#include <Series.hpp>
#include <ComCtrls.hpp> // ← これを追加(最重要)
//—————————————————————————
//————————————————
// 履歴用構造体
//————————————————
struct OctoState {
int step;
int depth;
double c[8];
double norm2;
double N;
int lastDeriv;
};
//————————————————
// 八元数
//————————————————
struct Octonion {
double e[8];
Octonion(double a0=0.0, double a1=0.0, double a2=0.0, double a3=0.0,
double a4=0.0, double a5=0.0, double a6=0.0, double a7=0.0);
Octonion operator+(const Octonion& o) const;
Octonion operator-(const Octonion& o) const; // 減算
Octonion operator-() const; // 単項マイナス(念のため)
Octonion operator*(const Octonion& o) const; // ← 変更:完全乗算
Octonion operator*(double scalar) const; // スカラー乗算は残す
double Norm() const;
Octonion Conjugate() const; // 標準的な共役
Octonion PhaseConjugate() const; // 位相共役用(必要に応じて拡張可能)
Octonion ApplyDerivation(const Octonion& a, const Octonion& b) const; // D_a,b (this)
};
//————————————————
// 再帰八元数
//————————————————
class RecursiveOcto {
public:
int depth;
Octonion value;
RecursiveOcto* child; // 通常の子
RecursiveOcto* childConj; // 共役の子(追加)
Octonion interference; // 干渉結果を保持するメンバーを追加
// ★ 追加
double N; // 数演算子(励起度)
double Q; // 電荷的な量 = N / 3
RecursiveOcto(int d, Octonion init);
~RecursiveOcto();
void Generate(int maxDepth);
void Dump(TMemo* memo);
// 既存の Dump の下あたりに追加
void DumpThinnedToFile(const AnsiString& filename, int thinFactor = 3);
void ComputeNumberOperator(); // ★ 追加
// 観察(Observe)機能との連携
int preferredDir; // 観察で固定された方向(-1 = 未観察)
void Observe(int dir); // dir = 0~6(e1~e7)
};
//————————————————
// フォーム
//————————————————
class TForm1 : public TForm
{
__published: // IDE-managed Components
TButton *ButtonExit;
TMemo *Memo1;
TButton *Button2;
TChart *ChartTime;
TChart *ChartNorm;
TChart *Chart3D;
TPaintBox *PaintBox3D;
TTrackBar *TrackBarZoom;
TRadioGroup *RadioGroup1;
TEdit *EditMaxDepth;
TUpDown *UpDownMaxDepth;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TEdit *EditObserve;
TUpDown *UpDownObserve;
TLabel *Label4;
TEdit *EditMabikiN;
TUpDown *UpDownMabikiN;
TLabel *Label5;
void __fastcall ButtonExitClick(TObject *Sender);
void __fastcall Button2Click(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
void __fastcall PaintBox3DPaint(TObject *Sender);
void __fastcall PaintBox3DMouseDown(TObject *Sender, TMouseButton Button,
TShiftState Shift, int X, int Y);
void __fastcall PaintBox3DMouseMove(TObject *Sender, TShiftState Shift, int X,
int Y);
void __fastcall PaintBox3DMouseUp(TObject *Sender, TMouseButton Button,
TShiftState Shift, int X, int Y);
void __fastcall TrackBarZoomChange(TObject *Sender);
void __fastcall RadioGroup1Click(TObject *Sender);
private: // User declarations
TList* History;
void ClearHistory();
void CollectHistory(RecursiveOcto* node, int& counter);
void __fastcall InitTimeCharts();
void Init3DChart();
void __fastcall UpdateTimeCharts();
void __fastcall Update3DChart();
//OpenGL風
double rotX, rotY; // 回転角度(ラジアン)
double zoom; // ズーム(1.0が基準)
double panX, panY; // 画面移動 int oldX, oldY; // マウス前回位置
int oldX, oldY;
bool dragging;
bool panning; // パン中かどうか
int projMode; // 0~4 などの射影番号
void Project3D(double x, double y, double z, int& sx, int& sy);
void DrawPointCloud();
public: // User declarations
__fastcall TForm1(TComponent* Owner);
void __fastcall MyOnIdle(TObject *Sender, bool &Done); //2001-2-21 Add
};
//—————————————————————————
extern PACKAGE TForm1 *Form1;
//—————————————————————————
#endif
//**** Unit1.cpp ****
//—————————————————————————
#include <vcl.h>
#pragma hdrstop
#include <math.h>
#include “Unit1.h”
//—————————————————————————
#pragma package(smart_init)
#pragma link “Chart”
#pragma link “TeEngine”
#pragma link “TeeProcs”
#pragma resource “*.dfm”
TForm1 *Form1;
//リンカ|出力オプション|最大スタックサイズ 0x64000000(約1.56GB)大きすぎであったので、0x10000000に設定
//—————————————————————————
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//—————————————————————————
void __fastcall TForm1::MyOnIdle(TObject *Sender, bool &Done) //2001-2-21
{
Label5->Caption = “e” + IntToStr(UpDownObserve->Position + 1); //観測方向の選択表示
}
//—————————————————————————
void __fastcall TForm1::ButtonExitClick(TObject *Sender)
{
Close();
}
//—————————————————————————
//—————————————————————————
Octonion::Octonion(double a0, double a1, double a2, double a3,
double a4, double a5, double a6, double a7) {
e[0]=a0; e[1]=a1; e[2]=a2; e[3]=a3;
e[4]=a4; e[5]=a5; e[6]=a6; e[7]=a7;
}
Octonion Octonion::Conjugate() const {
return Octonion(
e[0],
-e[1], -e[2], -e[3], -e[4], -e[5], -e[6], -e[7]
);
}
Octonion Octonion::PhaseConjugate() const {
return Conjugate();
}
Octonion Octonion::operator+(const Octonion& o) const {
Octonion res;
for(int i=0; i<8; i++) res.e[i] = e[i] + o.e[i];
return res;
}
// 二項減算
Octonion Octonion::operator-(const Octonion& o) const {
Octonion res;
for(int i = 0; i < 8; i++) {
res.e[i] = e[i] – o.e[i];
}
return res;
}
// 単項マイナス
Octonion Octonion::operator-() const {
Octonion res;
for(int i = 0; i < 8; i++) {
res.e[i] = -e[i];
}
return res;
}
// スカラー乗算は残す
Octonion Octonion::operator*(double scalar) const {
Octonion res;
for(int i=0; i<8; i++) res.e[i] = e[i] * scalar;
return res;
}
// 完全な八元数乗算
Octonion Octonion::operator*(const Octonion& o) const {
Octonion res;
// e0(実部)
res.e[0] = e[0]*o.e[0] – e[1]*o.e[1] – e[2]*o.e[2] – e[3]*o.e[3]
– e[4]*o.e[4] – e[5]*o.e[5] – e[6]*o.e[6] – e[7]*o.e[7];
// e1
res.e[1] = e[0]*o.e[1] + e[1]*o.e[0] + e[2]*o.e[3] – e[3]*o.e[2]
+ e[4]*o.e[5] – e[5]*o.e[4] – e[6]*o.e[7] + e[7]*o.e[6];
// e2
res.e[2] = e[0]*o.e[2] – e[1]*o.e[3] + e[2]*o.e[0] + e[3]*o.e[1]
+ e[4]*o.e[6] + e[5]*o.e[7] – e[6]*o.e[4] – e[7]*o.e[5];
// e3
res.e[3] = e[0]*o.e[3] + e[1]*o.e[2] – e[2]*o.e[1] + e[3]*o.e[0]
+ e[4]*o.e[7] – e[5]*o.e[6] + e[6]*o.e[5] – e[7]*o.e[4];
// e4
res.e[4] = e[0]*o.e[4] – e[1]*o.e[5] – e[2]*o.e[6] – e[3]*o.e[7]
+ e[4]*o.e[0] + e[5]*o.e[1] + e[6]*o.e[2] + e[7]*o.e[3];
// e5
res.e[5] = e[0]*o.e[5] + e[1]*o.e[4] – e[2]*o.e[7] + e[3]*o.e[6]
– e[4]*o.e[1] + e[5]*o.e[0] – e[6]*o.e[3] + e[7]*o.e[2];
// e6
res.e[6] = e[0]*o.e[6] + e[1]*o.e[7] + e[2]*o.e[4] – e[3]*o.e[5]
– e[4]*o.e[2] + e[5]*o.e[3] + e[6]*o.e[0] – e[7]*o.e[1];
// e7
res.e[7] = e[0]*o.e[7] – e[1]*o.e[6] + e[2]*o.e[5] + e[3]*o.e[4]
– e[4]*o.e[3] – e[5]*o.e[2] + e[6]*o.e[1] + e[7]*o.e[0];
return res;
}
double Octonion::Norm() const {
double sum = 0.0;
for(int i=0; i<8; i++) sum += e[i]*e[i];
return sqrt(sum);
}
Octonion Octonion::ApplyDerivation(const Octonion& a, const Octonion& b) const
{
// 1. 交換子 [a,b]
Octonion ab = a * b – b * a; // [a,b]
// 2. 交換子の作用 [[a,b], this]
Octonion commutator_term = ab * (*this) – (*this) * ab;
// 3. 結合子 [a,b,this] = (a*b)*this – a*(b*this)
Octonion assoc = (a * b) * (*this) – a * (b * (*this));
// 4. 標準的な導分公式(係数は調整可能)
// D = [[a,b],x] – 3[a,b,x]
Octonion result = commutator_term – assoc * 3.0;
// スケール調整(摂動が大きすぎないように)
//return result * 0.5;
//return result * 0.20; // 摂動が少し強めに出ているようなので、スケールを少し弱めて0.5→0.20(60%減)安定性を確認する
//return result * 0.25; // 摂動が少し強めに出ているようなので、スケールを少し弱めて0.5→0.25(50%減)安定性を確認する
//return result * 0.30; // 摂動が少し強めに出ているようなので、スケールを少し弱めて0.5→0.30(40%減)安定性を確認する
return result * 0.35; // 摂動が少し強めに出ているようなので、スケールを少し弱めて0.5→0.35(30%減)安定性を確認する
//return result * 0.40; // 摂動が少し強めに出ているようなので、スケールを少し弱めて0.5→0.40(20%減)安定性を確認する
//return result * 0.45; // 摂動が少し強めに出ているようなので、スケールを少し弱めて0.5→0.45(10%減)安定性を確認する
//*** 評価結果:0.30:控えめだが効果は十分出る ***
//*** 評価結果:0.35:導分の影響がより明確に現れつつ、安定性も高い ***
}
//—————————————————————————
RecursiveOcto::RecursiveOcto(int d, Octonion v)
: depth(d), value(v), child(NULL), childConj(NULL),
N(0.0), Q(0.0), preferredDir(-1)
{
}
RecursiveOcto::~RecursiveOcto() {
delete child;
delete childConj;
}
void RecursiveOcto::Generate(int maxDepth) {
if (depth >= maxDepth) return;
// === 既存の回転子 ===
Octonion rotator(cos(depth*0.15), sin(depth*0.15), 0.05, 0,0,0,0,0);
// === Fano平面の方向定義 ===
Octonion dirs[7][2] = {
{ Octonion(0,1,0,0,0,0,0,0), Octonion(0,0,1,0,0,0,0,0) }, // 0
{ Octonion(0,1,0,0,0,0,0,0), Octonion(0,0,0,0,1,0,0,0) }, // 1
{ Octonion(0,1,0,0,0,0,0,0), Octonion(0,0,0,0,0,0,1,0) }, // 2
{ Octonion(0,0,1,0,0,0,0,0), Octonion(0,0,0,0,1,0,0,0) }, // 3
{ Octonion(0,0,1,0,0,0,0,0), Octonion(0,0,0,0,0,1,0,0) }, // 4
{ Octonion(0,0,0,1,0,0,0,0), Octonion(0,0,0,0,1,0,0,0) }, // 5
{ Octonion(0,0,0,1,0,0,0,0), Octonion(0,0,0,0,0,1,0,0) } // 6
};
int dir = depth % 7;
// === 簡易的な局所N推定(Generate時点で使えるように) ===
double imagStrength = 0.0;
for(int i=1; i<=7; i++) imagStrength += fabs(value.e[i]);
// 簡易N(量子化前)
double localN = 1.0 + imagStrength * 0.8; // ベース + 虚部の強さ
if (localN > 3.0) localN = 3.0;
// Nに応じたスケール係数(Nが大きいほど強くする)
// N=0 → 弱い, N=3 → 強い
double nFactor = 0.4 + (localN / 3.0) * 0.9; // 0.4 ? 1.3 程度の範囲
//*******************************************************************
// Generate 内の導分部分で、観察済みの場合は固定方向を避ける/弱める
if (preferredDir >= 0) {
// 観察済みなら、固定方向に関係する導分を弱める
// (簡易的に nFactor をさらに下げる)
nFactor *= 0.5;
}
//*******************************************************************
// === 複数導分(N依存スケールを掛ける) ===
Octonion g2_perturb = value.ApplyDerivation(dirs[dir][0], dirs[dir][1]) * (0.07 * nFactor);
int dir2 = (dir + 1) % 7;
g2_perturb = g2_perturb + value.ApplyDerivation(dirs[dir2][0], dirs[dir2][1]) * (0.03 * nFactor);
int dir3 = (dir + 3) % 7;
g2_perturb = g2_perturb + value.ApplyDerivation(dirs[dir3][0], dirs[dir3][1]) * (0.015 * nFactor);
// 次の状態
Octonion next = (value + g2_perturb) * rotator;
next = next + Octonion(0.03, 0,0,0,0,0,0,0);
// 共役版
Octonion nextConj = next.PhaseConjugate();
// 子生成 (2個:共役対を生成)
child = new RecursiveOcto(depth+1, next);
child->Generate(maxDepth);
childConj = new RecursiveOcto(depth+1, nextConj);
childConj->Generate(maxDepth);
// 干渉 + フィードバック
interference = (child->value + childConj->value) * 0.5;
double feedbackStrength = 0.3;
value = value * (1.0 – feedbackStrength) + interference * feedbackStrength;
}
// 数演算子を計算するメソッド(新規追加)
void RecursiveOcto::ComputeNumberOperator()
{
//if (depth > 12) return; // 追加
// 基本励起:自分自身の虚数成分の「強さ」
// (e1?e7 の絶対値の合計を適度にスケール)
double imagStrength = 0.0;
// ★ ここを e[1] ~ e[7] に修正
imagStrength += fabs(value.e[1]);
imagStrength += fabs(value.e[2]);
imagStrength += fabs(value.e[3]);
imagStrength += fabs(value.e[4]);
imagStrength += fabs(value.e[5]);
imagStrength += fabs(value.e[6]);
imagStrength += fabs(value.e[7]);
// 子供の有無による励起
int childCount = 0;
if (child) childCount++;
if (childConj) childCount++;
// 再帰的に子供の N を加算(階層全体の励起を蓄積) // 子供の N を再帰的に集める
double childrenN = 0.0;
if (child) {
child->ComputeNumberOperator();
childrenN += child->N;
}
if (childConj) {
childConj->ComputeNumberOperator();
childrenN += childConj->N;
}
// 最終的な N の定義(調整しやすい形)
// 子供の数 × 1.0 + 虚数強度 × 係数 + 子供たちの N の一部
//N = childCount * 1.0 + imagStrength * 0.8 + childrenN * 0.3;
// ★ 係数を調整したバージョン
// 子供の寄与を強め、虚数強度の影響を抑えめにする
/*N = childCount * 1.5
+ imagStrength * 0.4
+ childrenN * 0.25;*/
// ★ ここを大きく変更
N = childCount * 1.0 // 子供の数の影響を弱める
+ imagStrength * 0.6
+ childrenN * 0.05; // 子孫からの蓄積をかなり弱くする
// さらに、ある程度整数に近づけるための丸め(任意)
// N = floor(N + 0.5); // 整数にしたい場合はこの行を有効にする
// ★ ここから量子化(離散化)
/*if (N < 0.7) N = 0.0;
else if (N < 1.7) N = 1.0;
else if (N < 2.7) N = 2.0;
else if (N < 3.7) N = 3.0;
else N = 3.0; // 上限を3に制限
*/
// ★ 閾値を緩めた量子化
/*if (N < 0.8) N = 0.0;
else if (N < 1.8) N = 1.0;
else if (N < 2.8) N = 2.0;
else N = 3.0;*/
// 量子化
if (N < 0.7) N = 0.0;
else if (N < 1.5) N = 1.0;
else if (N < 2.3) N = 2.0;
else N = 3.0;
// 電荷的な量
Q = N / 3.0;
}
void RecursiveOcto::Observe(int dir)
{
if (depth > 12) return; // 追加
if (dir < 0 || dir > 6) return;
preferredDir = dir;
// 指定した虚単位の成分を強調し、他を相対的に抑制する簡易投影
// (完全な射影ではなく、観察による「固定」のイメージ)
double strength = value.e[dir + 1]; // e1?e7
// 指定方向を残しつつ、全体を少し正規化
for(int i = 1; i <= 7; i++) {
if (i == dir + 1) {
// 指定方向はそのまま(または少し強調)
value.e[i] = strength * 1.1;
} else {
// 他の方向を弱める
value.e[i] *= 0.6;
}
}
// 子にも同じ観察を伝播(再帰)
if (child) child->Observe(dir);
if (childConj) childConj->Observe(dir);
}
void RecursiveOcto::Dump(TMemo* memo)
{
if (!memo) return;
AnsiString s;
s.sprintf(“Depth=%d Norm=%.4f e0=%.4f e1=%.4f N=%.1f Q=%.3f”,
depth, value.Norm(), value.e[0], value.e[1], N, Q);
memo->Lines->Add(s);
// オプション:虚部の大きさを少し詳しく
double imag = 0;
for(int i=1;i<8;i++) imag += fabs(value.e[i]);
s.sprintf(” imagStrength=%.4f”, imag);
memo->Lines->Add(s);
if (child) { memo->Lines->Add(” [通常の子]”); child->Dump(memo); }
if (childConj) { memo->Lines->Add(” [共役の子]”); childConj->Dump(memo); }
}
//—————————————————————————
// 間引きDUMPをテキストファイルに出力
// thinFactor = 3 なら約1/3に間引き
void RecursiveOcto::DumpThinnedToFile(const AnsiString& filename, int thinFactor)
{
if (thinFactor < 1) thinFactor = 1;
TStringList* list = new TStringList();
int counter = 0; // 全体のノード番号
//Observe方向を記録
list->Add( “Observe方向 = e” + IntToStr(preferredDir + 1) + ” (dir=”+IntToStr(preferredDir)+”)” ); // dir = 0~6(e1~e7)
list->Add( “間引き N = ” + IntToStr(thinFactor) + ” (thinFactor=”+IntToStr(thinFactor)+”)” ); // thinFactor = 3 なら約1/3に間引き
// 再帰的に走査する内部関数(ラムダが使えないのでネスト関数風に)
struct Dumper {
static void Walk(RecursiveOcto* node, TStringList* list, int& counter, int thinFactor, bool isConj)
{
if (!node) return;
// 間引き判定
if (counter % thinFactor == 0) {
AnsiString line;
line.sprintf(
“Depth=%d Norm=%.4f ”
“e0=%.4f e1=%.4f e2=%.4f e3=%.4f e4=%.4f e5=%.4f e6=%.4f e7=%.4f ”
“N=%.1f Q=%.3f imagStrength=%.4f %s”,
node->depth,
node->value.Norm(),
node->value.e[0], node->value.e[1], node->value.e[2], node->value.e[3],
node->value.e[4], node->value.e[5], node->value.e[6], node->value.e[7],
node->N, node->Q,
// imagStrength の計算(既存のDumpと同じ式に合わせてください)
sqrt(node->value.e[1]*node->value.e[1] + node->value.e[2]*node->value.e[2] +
node->value.e[3]*node->value.e[3] + node->value.e[4]*node->value.e[4] +
node->value.e[5]*node->value.e[5] + node->value.e[6]*node->value.e[6] +
node->value.e[7]*node->value.e[7]),
isConj ? “[共役の子]” : “[通常の子]”
);
list->Add(line);
}
counter++;
// 子を再帰
Walk(node->child, list, counter, thinFactor, false);
Walk(node->childConj, list, counter, thinFactor, true);
}
};
Dumper::Walk(this, list, counter, thinFactor, false);
// ファイルに保存
try {
list->SaveToFile(filename);
// 必要ならメッセージを出す
// ShowMessage(“間引きDUMPを保存しました: ” + filename);
} catch (…) {
ShowMessage(“ファイル保存に失敗しました: ” + filename);
}
delete list;
}
//—————————————————————————
//—————————————————————————
void __fastcall TForm1::UpdateTimeCharts()
{
if (!ChartTime || !ChartNorm) return;
if (ChartTime->SeriesCount() < 8) return;
if (ChartNorm->SeriesCount() < 2) return;
// クリア
for (int i = 0; i < ChartTime->SeriesCount(); i++)
ChartTime->Series[i]->Clear();
ChartNorm->Series[0]->Clear();
ChartNorm->Series[1]->Clear();
for (int i = 0; i < History->Count; i++) {
OctoState* s = (OctoState*)History->Items[i];
for (int k = 0; k < 8; k++)
ChartTime->Series[k]->AddXY(s->step, s->c[k]);
ChartNorm->Series[0]->AddXY(s->step, s->norm2);
ChartNorm->Series[1]->AddXY(s->step, s->N);
}
ChartTime->Refresh();
ChartNorm->Refresh();
}
void TForm1::ClearHistory()
{
for (int i = 0; i < History->Count; i++)
delete (OctoState*)History->Items[i];
History->Clear();
}
void __fastcall TForm1::Update3DChart()
{
if (!Chart3D) return;
if (Chart3D->SeriesCount() == 0) return;
TPointSeries* ser = dynamic_cast<TPointSeries*>(Chart3D->Series[0]);
if (!ser) return;
ser->Clear();
for (int i = 0; i < History->Count; i++) {
OctoState* s = (OctoState*)History->Items[i];
double x = s->c[1];
double y = s->c[2];
TColor col = clBlack;
if (s->N >= 2.5) col = clRed;
else if (s->N >= 1.5) col = clLime;
else if (s->N >= 0.5) col = clBlue;
ser->AddXY(x, y, “”, col);
}
Chart3D->Axes->Bottom->Automatic = true;
Chart3D->Axes->Left->Automatic = true;
Chart3D->Refresh();
}
void TForm1::CollectHistory(RecursiveOcto* node, int& counter)
{
if (!node) return;
OctoState* s = new OctoState;
s->step = counter++;
s->depth = node->depth;
for (int i = 0; i < 8; i++) s->c[i] = node->value.e[i];
s->norm2 = node->value.Norm() * node->value.Norm();
s->N = node->N;
s->lastDeriv = node->depth % 7;
History->Add(s);
CollectHistory(node->child, counter);
CollectHistory(node->childConj, counter);
}
void __fastcall TForm1::Button2Click(TObject *Sender)
{
Memo1->Hide();
Memo1->Clear();
ClearHistory();
Octonion rootVal(1.0, 0, 0, 0, 0, 0, 0, 0);
RecursiveOcto* root = new RecursiveOcto(0, rootVal);
//root->Generate(5); // 後で7?8に上げてください
root->Generate(UpDownMaxDepth->Position); // 後で7?8に上げてください
//root->Observe(2);
root->Observe(UpDownObserve->Position);
root->ComputeNumberOperator();
int counter = 0;
CollectHistory(root, counter);
root->Dump(Memo1);
// 1/3に間引きしてテキストファイルに保存
//root->DumpThinnedToFile( ExtractFilePath(ExtractFileDir(Application->ExeName)) + “RecursiveOcto_Dump_thinned.txt”, 3);
root->DumpThinnedToFile( ExtractFilePath(Application->ExeName) + “RecursiveOcto_Dump_thinned.txt”, UpDownMabikiN->Position );
UpdateTimeCharts();
Update3DChart();
Memo1->Show();
delete root;
// 既存の UpdateTimeCharts(); Update3DChart(); の後に
PaintBox3D->Invalidate(); // 新しい点群を描画
}
//—————————————————————————
void __fastcall TForm1::FormCreate(TObject *Sender)
{
Application->OnIdle = MyOnIdle; //2001-2-21 Add Event Handle
History = new TList();
// チャートがちゃんとフォームに結びついているか確認
if (!ChartTime || !ChartNorm || !Chart3D) {
ShowMessage(“チャートコンポーネントがフォームに正しく結びついていません。\n”
“IDEでコンポーネント名を確認してください。”);
return;
}
InitTimeCharts();
Init3DChart();
//OpenGL風
rotX = 0.4; // 初期の傾き
rotY = 0.6;
zoom = 1.0;
panX = 0.0;
panY = 0.0;
dragging = false;
panning = false;
// PaintBox のイベントを結びつける(IDEで設定しても可)
PaintBox3D->OnPaint = PaintBox3DPaint;
PaintBox3D->OnMouseDown = PaintBox3DMouseDown;
PaintBox3D->OnMouseMove = PaintBox3DMouseMove;
PaintBox3D->OnMouseUp = PaintBox3DMouseUp;
// 射影軸の切り替え用パラメータ
projMode = 0; // 初期は (e1, e2, e4)
}
//—————————————————————————
void __fastcall TForm1::InitTimeCharts()
{
ChartTime->View3D = false;
ChartTime->Legend->Visible = true;
ChartTime->Title->Text->Text = “Octonion Components”;
// 8本の線シリーズを作成
for (int i = 0; i < 8; i++) {
TLineSeries* ser = new TLineSeries(ChartTime);
ChartTime->AddSeries(ser);
//ser->Title = (i == 0) ? “Re” : “e” + IntToStr(i);
ser->Title = (i == 0) ? AnsiString(“Re”) : AnsiString(“e”) + IntToStr(i);
ser->LinePen->Width = 1;
// 色はお好みで(例)
static TColor cols[8] = {clBlack, clRed, clGreen, clBlue,
clFuchsia, clOlive, clNavy, clMaroon};
ser->SeriesColor = cols[i];
}
// ノルム用チャート
ChartNorm->View3D = false;
TLineSeries* sNorm = new TLineSeries(ChartNorm);
TLineSeries* sN = new TLineSeries(ChartNorm);
ChartNorm->AddSeries(sNorm);
ChartNorm->AddSeries(sN);
sNorm->Title = “|O|2”;
sN->Title = “N”;
sNorm->SeriesColor = clBlack;
sN->SeriesColor = clRed;
}
void TForm1::Init3DChart()
{
if (!Chart3D) return;
// 最低限の設定だけにする
Chart3D->View3D = true;
Chart3D->Legend->Visible = false;
// View3DOptions へのアクセスを一旦削除(これがAVの原因)
// Chart3D->View3DOptions->Orthogonal = false;
// Chart3D->View3DOptions->Zoom = 90;
// 既存シリーズをクリア
while (Chart3D->SeriesCount() > 0)
Chart3D->Series[0]->Free();
// ポイントシリーズを追加
TPointSeries* ser = new TPointSeries(Chart3D);
Chart3D->AddSeries(ser);
ser->Pointer->Style = psCircle;
ser->Pointer->HorizSize = 3;
ser->Pointer->VertSize = 3;
ser->Pointer->Visible = true;
}
//—————————————————————————
//—————————————————————————
void TForm1::Project3D(double x, double y, double z, int& sx, int& sy)
{
// 回転
double cosy = cos(rotY), siny = sin(rotY);
double cosx = cos(rotX), sinx = sin(rotX);
double x1 = x * cosy – z * siny;
double z1 = x * siny + z * cosy;
double y1 = y;
double y2 = y1 * cosx – z1 * sinx;
double z2 = y1 * sinx + z1 * cosx;
double x2 = x1;
// ズーム付き透視投影
double scale = (250.0 * zoom) / (4.0 + z2);
sx = (int)(PaintBox3D->Width / 2 + panX + x2 * scale);
sy = (int)(PaintBox3D->Height / 2 + panY – y2 * scale);
}
void TForm1::DrawPointCloud()
{
TCanvas* c = PaintBox3D->Canvas;
// 背景
c->Brush->Color = (TColor)0x1A1A2E;
c->FillRect(PaintBox3D->ClientRect);
// ========== 3Dグリッド・座標軸を描画 ==========
c->Pen->Width = 1;
// 軸の長さ(データに合わせて調整してください)
double axisLen = 0.8;
// 色を変えて3軸を描く
// X軸(赤っぽい)
c->Pen->Color = (TColor)0x5555AA;
int x1, y1, x2, y2;
Project3D(-axisLen, 0, 0, x1, y1);
Project3D( axisLen, 0, 0, x2, y2);
c->MoveTo(x1, y1); c->LineTo(x2, y2);
// Y軸(緑っぽい)
c->Pen->Color = (TColor)0x55AA55;
Project3D(0, -axisLen, 0, x1, y1);
Project3D(0, axisLen, 0, x2, y2);
c->MoveTo(x1, y1); c->LineTo(x2, y2);
// Z軸(青っぽい)
c->Pen->Color = (TColor)0xAA5555;
Project3D(0, 0, -axisLen, x1, y1);
Project3D(0, 0, axisLen, x2, y2);
c->MoveTo(x1, y1); c->LineTo(x2, y2);
// 簡易グリッド(XY平面・XZ平面・YZ平面に数本)
c->Pen->Color = (TColor)0x333355;
double g = 0.4; // グリッド間隔
// XY平面のグリッド
for (double v = -axisLen; v <= axisLen; v += g) {
Project3D(v, -axisLen, 0, x1, y1);
Project3D(v, axisLen, 0, x2, y2);
c->MoveTo(x1, y1); c->LineTo(x2, y2);
Project3D(-axisLen, v, 0, x1, y1);
Project3D( axisLen, v, 0, x2, y2);
c->MoveTo(x1, y1); c->LineTo(x2, y2);
}
// ========== ここから点群描画(既存のまま) ==========
if (!History || History->Count == 0) return;
for (int i = 0; i < History->Count; i++) {
OctoState* s = (OctoState*)History->Items[i];
// ===== 射影軸の選択 =====
double x, y, z;
switch (projMode) {
case 0: // 基本 (e1, e2, e4)
x = s->c[1];
y = s->c[2];
z = s->c[4];
break;
case 1: // Observe方向を含む (e1, e3, e7)
x = s->c[1];
y = s->c[3]; // e3
z = s->c[7];
break;
case 2: // 実部と主な虚部 (Re, e1, e2)
x = s->c[0];
y = s->c[1];
z = s->c[2];
break;
case 3: // Fano三角形風
x = s->c[1] + s->c[2] + s->c[4];
y = s->c[3] + s->c[5] + s->c[6];
z = s->c[7];
break;
case 4: // 励起度をZ軸に (e1, e2, N)
x = s->c[1];
y = s->c[2];
z = s->N * 0.3; // スケール調整
break;
default:
x = s->c[1];
y = s->c[2];
z = s->c[4];
break;
}
int sx, sy;
Project3D(x, y, z, sx, sy);
if (sx < -20 || sx > PaintBox3D->Width+20 ||
sy < -20 || sy > PaintBox3D->Height+20) continue;
TColor col;
if (s->N >= 2.5) col = clRed;
else if (s->N >= 1.5) col = clLime;
else if (s->N >= 0.5) col = clAqua;
else col = clSilver;
c->Brush->Color = col;
c->Pen->Color = col;
c->Ellipse(sx-1, sy-1, sx+2, sy+2);
}
}
void __fastcall TForm1::PaintBox3DPaint(TObject *Sender)
{
DrawPointCloud();
}
//—————————————————————————
void __fastcall TForm1::PaintBox3DMouseDown(TObject *Sender,
TMouseButton Button, TShiftState Shift, int X, int Y)
{
oldX = X;
oldY = Y;
if (Button == mbLeft) {
dragging = true;
panning = false;
}
else if (Button == mbRight) {
panning = true;
dragging = false;
}
}
//—————————————————————————
void __fastcall TForm1::PaintBox3DMouseMove(TObject *Sender, TShiftState Shift,
int X, int Y)
{
if (dragging) {
// 回転
rotY += (X – oldX) * 0.01;
rotX += (Y – oldY) * 0.01;
oldX = X;
oldY = Y;
PaintBox3D->Invalidate();
}
else if (panning) {
// 移動
panX += (X – oldX);
panY += (Y – oldY);
oldX = X;
oldY = Y;
PaintBox3D->Invalidate();
}
}
//—————————————————————————
void __fastcall TForm1::PaintBox3DMouseUp(TObject *Sender, TMouseButton Button,
TShiftState Shift, int X, int Y)
{
// dragging = false;
dragging = false;
panning = false;
}
//—————————————————————————
void __fastcall TForm1::TrackBarZoomChange(TObject *Sender)
{
int WheelDelta = TrackBarZoom->Position;
if (WheelDelta > 0)
zoom *= 1.15; // 拡大
else
zoom /= 1.15; // 縮小
// 範囲制限
if (zoom < 0.1) zoom = 0.1;
if (zoom > 30.0) zoom = 30.0;
PaintBox3D->Invalidate();
//Handled = true;
}
//—————————————————————————
void __fastcall TForm1::RadioGroup1Click(TObject *Sender)
{
projMode = RadioGroup1->ItemIndex;
PaintBox3D->Invalidate();
}
//—————————————————————————
1/10間引きDump( MaxDepth=13, Observe=2(e3) )
Observe方向 = e3 (dir=2)
Depth=0 Norm=1.0091 e0=1.0091 e1=0.0000 e2=0.0000 e3=0.0000 e4=0.0000 e5=0.0000 e6=0.0000 e7=0.0000 N=3.0 Q=1.000 imagStrength=0.0000 [通常の子]
Depth=10 Norm=0.6614 e0=0.6197 e1=0.1798 e2=0.0612 e3=0.0448 e4=0.0404 e5=0.0325 e6=0.0723 e7=-0.0866 N=3.0 Q=1.000 imagStrength=0.2314 [通常の子]
Depth=13 Norm=1.1446 e0=0.0368 e1=1.0666 e2=0.1035 e3=-0.1344 e4=0.0712 e5=-0.1388 e6=0.2503 e7=0.2356 N=1.0 Q=0.333 imagStrength=1.1441 [通常の子]
Depth=12 Norm=0.5291 e0=-0.4783 e1=-0.1840 e2=-0.0556 e3=-0.0331 e4=-0.0491 e5=-0.0375 e6=-0.0741 e7=0.0619 N=3.0 Q=1.000 imagStrength=0.2263 [共役の子]
Depth=9 Norm=0.4890 e0=0.3069 e1=0.3473 e2=0.0295 e3=-0.1007 e4=0.0292 e5=-0.0507 e6=0.0264 e7=0.0955 N=3.0 Q=1.000 imagStrength=0.3806 [共役の子]
Depth=12 Norm=0.3941 e0=-0.0370 e1=-0.3619 e2=-0.0646 e3=-0.0579 e4=-0.0413 e5=-0.0367 e6=-0.0665 e7=0.0891 N=3.0 Q=1.000 imagStrength=0.3923 [通常の子]
Depth=13 Norm=1.0939 e0=-0.9585 e1=-0.4648 e2=-0.0156 e3=-0.1183 e4=0.0671 e5=-0.1196 e6=0.1068 e7=0.1316 N=0.0 Q=0.000 imagStrength=0.5271 [共役の子]
Depth=13 Norm=1.1060 e0=0.9100 e1=0.5566 e2=0.0374 e3=-0.1165 e4=0.0590 e5=-0.1522 e6=0.0522 e7=0.2023 N=1.0 Q=0.333 imagStrength=0.6285 [共役の子]
Depth=13 Norm=1.1054 e0=1.0125 e1=-0.2176 e2=0.0081 e3=-0.1211 e4=0.0613 e5=-0.1780 e6=0.0358 e7=0.3131 N=0.0 Q=0.000 imagStrength=0.4437 [共役の子]
Depth=12 Norm=0.5249 e0=0.3017 e1=-0.3996 e2=-0.0664 e3=-0.0478 e4=-0.0512 e5=-0.0379 e6=-0.1023 e7=0.0602 N=3.0 Q=1.000 imagStrength=0.4296 [通常の子]
Depth=12 Norm=0.4516 e0=-0.1540 e1=0.3989 e2=-0.0264 e3=-0.0478 e4=-0.0512 e5=-0.0379 e6=-0.1023 e7=0.0602 N=3.0 Q=1.000 imagStrength=0.4246 [共役の子]
Depth=13 Norm=1.0984 e0=0.8748 e1=0.6204 e2=0.0428 e3=-0.1175 e4=0.0673 e5=-0.1171 e6=0.0092 e7=0.1494 N=0.0 Q=0.000 imagStrength=0.6642 [通常の子]
Depth=11 Norm=0.5877 e0=-0.5559 e1=-0.1337 e2=-0.0318 e3=0.0801 e4=-0.0424 e5=0.0457 e6=-0.0291 e7=-0.0798 N=3.0 Q=1.000 imagStrength=0.1908 [通常の子]
Depth=13 Norm=1.0321 e0=0.9791 e1=-0.0026 e2=0.0259 e3=-0.1207 e4=0.0589 e5=-0.1565 e6=-0.0092 e7=0.2515 N=0.0 Q=0.000 imagStrength=0.3264 [共役の子]
Depth=13 Norm=1.1131 e0=0.8016 e1=-0.7470 e2=-0.0376 e3=-0.1239 e4=-0.0112 e5=0.0428 e6=-0.1074 e7=0.0895 N=0.0 Q=0.000 imagStrength=0.7722 [通常の子]
Depth=13 Norm=1.1274 e0=-0.6083 e1=0.9204 e2=0.0481 e3=-0.1228 e4=-0.0155 e5=0.0248 e6=-0.1377 e7=0.1288 N=1.0 Q=0.333 imagStrength=0.9492 [通常の子]
Depth=11 Norm=0.7571 e0=0.6487 e1=-0.3719 e2=-0.0424 e3=0.0910 e4=0.0081 e5=-0.0120 e6=0.0063 e7=-0.0610 N=3.0 Q=1.000 imagStrength=0.3903 [共役の子]
Depth=12 Norm=0.7360 e0=0.6283 e1=-0.3684 e2=-0.0706 e3=-0.0287 e4=0.0084 e5=0.0075 e6=-0.0724 e7=-0.0002 N=3.0 Q=1.000 imagStrength=0.3833 [通常の子]
Depth=12 Norm=0.6541 e0=-0.5066 e1=0.4050 e2=-0.0318 e3=-0.0287 e4=0.0084 e5=0.0075 e6=-0.0724 e7=-0.0002 N=3.0 Q=1.000 imagStrength=0.4138 [共役の子]
Depth=13 Norm=1.1510 e0=0.8279 e1=-0.7529 e2=-0.0050 e3=-0.1366 e4=-0.0125 e5=-0.0001 e6=-0.0068 e7=0.2317 N=0.0 Q=0.000 imagStrength=0.7997 [共役の子]
Depth=10 Norm=0.4482 e0=0.1130 e1=-0.4266 e2=0.0272 e3=0.0376 e4=-0.0183 e5=-0.0115 e6=0.0506 e7=-0.0303 N=3.0 Q=1.000 imagStrength=0.4337 [通常の子]
Depth=13 Norm=1.0423 e0=-0.8947 e1=-0.4962 e2=-0.0053 e3=-0.1295 e4=-0.0158 e5=0.0154 e6=-0.0388 e7=0.1450 N=0.0 Q=0.000 imagStrength=0.5348 [通常の子]
Depth=12 Norm=0.4546 e0=-0.1678 e1=0.4170 e2=-0.0307 e3=-0.0371 e4=0.0173 e5=0.0080 e6=-0.0418 e7=0.0147 N=3.0 Q=1.000 imagStrength=0.4226 [共役の子]
Depth=9 Norm=0.7749 e0=-0.7661 e1=0.0208 e2=0.0109 e3=-0.0955 e4=-0.0022 e5=0.0193 e6=0.0175 e7=0.0568 N=3.0 Q=1.000 imagStrength=0.1165 [共役の子]
Depth=12 Norm=0.6519 e0=-0.4977 e1=0.4095 e2=-0.0322 e3=-0.0415 e4=0.0128 e5=0.0059 e6=-0.0610 e7=0.0546 N=3.0 Q=1.000 imagStrength=0.4211 [通常の子]
Depth=13 Norm=1.0490 e0=0.8906 e1=-0.4964 e2=-0.0050 e3=-0.1331 e4=-0.0115 e5=-0.0011 e6=0.0324 e7=0.2046 N=0.0 Q=0.000 imagStrength=0.5543 [共役の子]
Depth=13 Norm=0.9848 e0=-0.9154 e1=0.2949 e2=0.0350 e3=-0.1353 e4=-0.0015 e5=0.0389 e6=0.0992 e7=0.1182 N=0.0 Q=0.000 imagStrength=0.3630 [共役の子]
Depth=12 Norm=0.4494 e0=0.2588 e1=0.3455 e2=0.0054 e3=-0.0816 e4=0.0209 e5=-0.0216 e6=-0.0398 e7=0.0806 N=3.0 Q=1.000 imagStrength=0.3675 [共役の子]
Depth=10 Norm=0.5145 e0=-0.3527 e1=-0.3554 e2=-0.0076 e3=0.0754 e4=-0.0150 e5=0.0181 e6=0.0454 e7=-0.0752 N=3.0 Q=1.000 imagStrength=0.3746 [共役の子]
Depth=13 Norm=1.1488 e0=-0.5191 e1=-1.0122 e2=0.0172 e3=-0.0461 e4=0.0591 e5=-0.0007 e6=0.0441 e7=0.1333 N=1.0 Q=0.333 imagStrength=1.0248 [通常の子]
Depth=13 Norm=1.1934 e0=0.6619 e1=0.9267 e2=0.1589 e3=-0.0631 e4=0.0680 e5=-0.0001 e6=0.2332 e7=0.1975 N=1.0 Q=0.333 imagStrength=0.9930 [共役の子]
Depth=13 Norm=1.2205 e0=-0.4538 e1=-1.0853 e2=0.0554 e3=-0.0635 e4=0.0709 e5=0.0123 e6=0.2528 e7=0.1722 N=1.0 Q=0.333 imagStrength=1.1330 [共役の子]
Depth=12 Norm=0.5739 e0=0.5045 e1=0.2585 e2=0.0018 e3=-0.0533 e4=0.0124 e5=-0.0223 e6=-0.0469 e7=0.0481 N=3.0 Q=1.000 imagStrength=0.2736 [通常の子]
Depth=12 Norm=0.8198 e0=0.7937 e1=-0.1717 e2=-0.0196 e3=-0.0520 e4=0.0062 e5=-0.0201 e6=-0.0867 e7=-0.0404 N=3.0 Q=1.000 imagStrength=0.2053 [通常の子]
Depth=12 Norm=0.7862 e0=-0.7409 e1=0.2385 e2=0.0010 e3=-0.0520 e4=0.0062 e5=-0.0201 e6=-0.0867 e7=-0.0404 N=3.0 Q=1.000 imagStrength=0.2630 [共役の子]
Depth=13 Norm=1.1910 e0=0.2599 e1=-1.1329 e2=0.0467 e3=-0.0581 e4=0.0635 e5=-0.0042 e6=-0.0135 e7=0.2400 N=1.0 Q=0.333 imagStrength=1.1623 [共役の子]
Depth=11 Norm=0.5124 e0=-0.1088 e1=0.4922 e2=-0.0142 e3=0.0158 e4=-0.0219 e5=-0.0095 e6=0.0096 e7=-0.0858 N=3.0 Q=1.000 imagStrength=0.5008 [通常の子]
Depth=13 Norm=1.2247 e0=-0.4874 e1=-1.0992 e2=-0.0001 e3=-0.0409 e4=0.0594 e5=0.0094 e6=-0.1611 e7=0.1508 N=1.0 Q=0.333 imagStrength=1.1235 [共役の子]
Depth=13 Norm=1.1837 e0=0.2789 e1=-1.1258 e2=0.0505 e3=-0.0587 e4=0.0647 e5=0.0099 e6=0.0004 e7=0.2136 N=1.0 Q=0.333 imagStrength=1.1504 [通常の子]
Depth=8 Norm=0.8031 e0=-0.7198 e1=0.3436 e2=-0.0114 e3=-0.0473 e4=-0.0102 e5=-0.0178 e6=-0.0771 e7=-0.0057 N=3.0 Q=1.000 imagStrength=0.3561 [通常の子]
Depth=11 Norm=0.7841 e0=0.7800 e1=-0.0359 e2=-0.0417 e3=0.0177 e4=-0.0048 e5=-0.0344 e6=-0.0264 e7=-0.0336 N=3.0 Q=1.000 imagStrength=0.0798 [共役の子]
Depth=13 Norm=1.0900 e0=1.0733 e1=0.0998 e2=0.0879 e3=-0.0542 e4=0.0440 e5=0.0921 e6=0.0575 e7=0.0430 N=0.0 Q=0.000 imagStrength=0.1903 [通常の子]
Depth=13 Norm=1.0452 e0=-1.0230 e1=0.1167 e2=0.0894 e3=-0.0519 e4=0.0336 e5=0.0505 e6=-0.0120 e7=0.1330 N=0.0 Q=0.000 imagStrength=0.2140 [通常の子]
Depth=13 Norm=1.1343 e0=0.8081 e1=-0.7543 e2=0.0602 e3=-0.0606 e4=0.0397 e5=0.0360 e6=0.1073 e7=0.2071 N=1.0 Q=0.333 imagStrength=0.7960 [共役の子]
Depth=12 Norm=0.7353 e0=0.6333 e1=-0.3596 e2=-0.0311 e3=-0.0612 e4=0.0313 e5=-0.0081 e6=-0.0530 e7=0.0418 N=3.0 Q=1.000 imagStrength=0.3736 [通常の子]
Depth=12 Norm=0.6527 e0=-0.5116 e1=0.3935 e2=0.0066 e3=-0.0612 e4=0.0313 e5=-0.0081 e6=-0.0530 e7=0.0418 N=3.0 Q=1.000 imagStrength=0.4053 [共役の子]
Depth=12 Norm=0.7719 e0=-0.7547 e1=0.1271 e2=-0.0051 e3=-0.0461 e4=0.0286 e5=-0.0053 e6=-0.0643 e7=-0.0543 N=2.0 Q=0.667 imagStrength=0.1620 [共役の子]
Depth=10 Norm=0.8726 e0=0.8558 e1=-0.1348 e2=0.0028 e3=0.0706 e4=-0.0286 e5=0.0016 e6=0.0695 e7=0.0151 N=3.0 Q=1.000 imagStrength=0.1704 [共役の子]
Depth=13 Norm=1.1844 e0=-0.7062 e1=0.9148 e2=0.1535 e3=-0.0592 e4=0.0385 e5=0.0581 e6=-0.0197 e7=0.1871 N=1.0 Q=0.333 imagStrength=0.9509 [通常の子]
Depth=13 Norm=1.1288 e0=0.5217 e1=-0.9734 e2=0.0188 e3=-0.0482 e4=0.0350 e5=0.0413 e6=-0.1178 e7=0.1869 N=1.0 Q=0.333 imagStrength=1.0010 [共役の子]
Depth=13 Norm=1.0563 e0=-0.6339 e1=0.8203 e2=0.1106 e3=-0.0500 e4=0.0424 e5=0.0711 e6=-0.0678 e7=0.1222 N=1.0 Q=0.333 imagStrength=0.8450 [共役の子]
Depth=12 Norm=0.7883 e0=-0.7306 e1=0.2718 e2=-0.0002 e3=-0.0792 e4=0.0321 e5=-0.0068 e6=-0.0780 e7=0.0209 N=3.0 Q=1.000 imagStrength=0.2963 [通常の子]
Depth=9 Norm=0.8524 e0=-0.7733 e1=0.3140 e2=0.0158 e3=-0.1188 e4=0.0310 e5=-0.0654 e6=0.0265 e7=0.0987 N=3.0 Q=1.000 imagStrength=0.3587 [通常の子]
Depth=12 Norm=0.7900 e0=-0.7341 e1=0.2275 e2=-0.0463 e3=-0.0531 e4=-0.0612 e5=-0.0418 e6=-0.0861 e7=0.1248 N=3.0 Q=1.000 imagStrength=0.2919 [通常の子]
Depth=13 Norm=1.1782 e0=0.3975 e1=-1.0458 e2=-0.0764 e3=-0.1355 e4=0.0597 e5=-0.2029 e6=0.0815 e7=0.2467 N=1.0 Q=0.333 imagStrength=1.1091 [共役の子]
Depth=13 Norm=1.1093 e0=-0.5260 e1=0.9210 e2=0.0238 e3=-0.1371 e4=0.0666 e5=-0.1751 e6=0.1281 e7=0.1863 N=1.0 Q=0.333 imagStrength=0.9767 [共役の子]
Depth=11 Norm=0.8725 e0=0.8318 e1=-0.2109 e2=-0.0283 e3=0.0995 e4=-0.0470 e5=0.0608 e6=-0.0680 e7=-0.0607 N=3.0 Q=1.000 imagStrength=0.2634 [共役の子]
Depth=13 Norm=1.1898 e0=1.1148 e1=-0.3148 e2=-0.0356 e3=-0.1352 e4=0.0652 e5=-0.1554 e6=0.0970 e7=0.1275 N=0.0 Q=0.000 imagStrength=0.4156 [通常の子]
Depth=13 Norm=1.1698 e0=-0.9828 e1=0.5453 e2=0.0092 e3=-0.1331 e4=0.0554 e5=-0.1950 e6=0.0308 e7=0.2132 N=1.0 Q=0.333 imagStrength=0.6345 [通常の子]
Depth=13 Norm=1.1836 e0=-0.9728 e1=-0.5094 e2=-0.0275 e3=-0.1414 e4=0.0609 e5=-0.2233 e6=0.0842 e7=0.3372 N=1.0 Q=0.333 imagStrength=0.6742 [通常の子]
Depth=11 Norm=0.7971 e0=0.7698 e1=0.1007 e2=-0.0118 e3=0.1003 e4=-0.0515 e5=0.0691 e6=-0.0770 e7=-0.0955 N=3.0 Q=1.000 imagStrength=0.2069 [通常の子]
Depth=13 Norm=1.2450 e0=-1.1946 e1=0.0940 e2=-0.0105 e3=-0.1391 e4=0.0726 e5=-0.1698 e6=0.1325 e7=0.2073 N=0.0 Q=0.000 imagStrength=0.3507 [共役の子]
Depth=12 Norm=0.6844 e0=-0.4713 e1=0.4822 e2=-0.0307 e3=-0.0261 e4=-0.0629 e5=-0.0398 e6=-0.0788 e7=0.0199 N=3.0 Q=1.000 imagStrength=0.4963 [共役の子]
Depth=10 Norm=0.6651 e0=0.4317 e1=-0.4880 e2=0.0391 e3=0.0264 e4=0.0577 e5=0.0361 e6=0.0913 e7=-0.0520 N=3.0 Q=1.000 imagStrength=0.5060 [共役の子]
Depth=13 Norm=1.2428 e0=-1.1760 e1=-0.1755 e2=-0.0156 e3=-0.1356 e4=0.0544 e5=-0.2032 e6=-0.0212 e7=0.2596 N=0.0 Q=0.000 imagStrength=0.4019 [通常の子]
Depth=12 Norm=0.6621 e0=0.6412 e1=0.1269 e2=-0.0554 e3=0.0013 e4=-0.0017 e5=0.0110 e6=-0.0663 e7=-0.0591 N=2.0 Q=0.667 imagStrength=0.1649 [通常の子]
Depth=12 Norm=0.6742 e0=-0.6636 e1=-0.0457 e2=-0.0640 e3=0.0013 e4=-0.0017 e5=0.0110 e6=-0.0663 e7=-0.0591 N=2.0 Q=0.667 imagStrength=0.1192 [共役の子]
Depth=13 Norm=1.1844 e0=-0.4487 e1=-1.0709 e2=-0.0386 e3=-0.1588 e4=-0.0182 e5=0.0159 e6=-0.0088 e7=0.1648 N=1.0 Q=0.333 imagStrength=1.0961 [共役の子]
Depth=11 Norm=0.5653 e0=0.3943 e1=0.3808 e2=0.0040 e3=0.1136 e4=0.0069 e5=0.0027 e6=0.0027 e7=-0.0780 N=3.0 Q=1.000 imagStrength=0.4050 [通常の子]
Depth=13 Norm=1.2425 e0=-1.0401 e1=-0.6430 e2=-0.0594 e3=-0.1462 e4=-0.0192 e5=0.0161 e6=-0.0954 e7=0.1176 N=0.0 Q=0.000 imagStrength=0.6796 [共役の子]
Depth=13 Norm=1.1776 e0=-0.4313 e1=-1.0591 e2=-0.0398 e3=-0.1589 e4=-0.0217 e5=-0.0123 e6=-0.0165 e7=0.2266 N=1.0 Q=0.333 imagStrength=1.0957 [通常の子]
Depth=9 Norm=0.7983 e0=0.7674 e1=0.1788 e2=0.0071 e3=-0.1134 e4=-0.0039 e5=0.0121 e6=0.0167 e7=0.0557 N=3.0 Q=1.000 imagStrength=0.2200 [通常の子]
Depth=12 Norm=0.6470 e0=0.4046 e1=-0.4950 e2=-0.0875 e3=-0.0212 e4=0.0081 e5=0.0092 e6=-0.0322 e7=0.0240 N=3.0 Q=1.000 imagStrength=0.5049 [通常の子]
Depth=13 Norm=1.2389 e0=-1.2198 e1=0.1286 e2=-0.0017 e3=-0.1524 e4=-0.0149 e5=0.0426 e6=0.0663 e7=0.0267 N=0.0 Q=0.000 imagStrength=0.2165 [共役の子]
Depth=13 Norm=1.2875 e0=1.2706 e1=0.0121 e2=-0.0070 e3=-0.1496 e4=-0.0281 e5=-0.0095 e6=-0.0208 e7=0.1393 N=0.0 Q=0.000 imagStrength=0.2080 [共役の子]
Depth=11 Norm=0.5987 e0=-0.4853 e1=-0.3195 e2=-0.0325 e3=0.1144 e4=0.0053 e5=0.0019 e6=-0.0650 e7=-0.0486 N=3.0 Q=1.000 imagStrength=0.3505 [共役の子]
Depth=13 Norm=1.2449 e0=-0.8189 e1=-0.9019 e2=-0.0629 e3=-0.1502 e4=-0.0233 e5=-0.0250 e6=0.0352 e7=0.1914 N=1.0 Q=0.333 imagStrength=0.9376 [通常の子]
Depth=13 Norm=1.3174 e0=1.0095 e1=0.8191 e2=0.0249 e3=-0.1527 e4=-0.0120 e5=0.0204 e6=0.1113 e7=0.0930 N=1.0 Q=0.333 imagStrength=0.8465 [通常の子]
Depth=13 Norm=1.1241 e0=-0.8675 e1=0.6815 e2=0.1242 e3=-0.0492 e4=0.0582 e5=0.0738 e6=0.1318 e7=0.0524 N=1.0 Q=0.333 imagStrength=0.7150 [共役の子]
Depth=13 Norm=1.1948 e0=1.0165 e1=-0.6001 e2=0.0592 e3=-0.0469 e4=0.0470 e5=0.0288 e6=0.0570 e7=0.1490 N=0.0 Q=0.000 imagStrength=0.6280 [共役の子]
Depth=12 Norm=0.7903 e0=0.6928 e1=-0.3718 e2=-0.0272 e3=-0.0553 e4=0.0298 e5=-0.0132 e6=-0.0306 e7=0.0217 N=3.0 Q=1.000 imagStrength=0.3802 [通常の子]
Depth=13 Norm=1.1131 e0=-0.8712 e1=0.6276 e2=0.1318 e3=-0.0529 e4=0.0535 e5=0.0250 e6=0.1605 e7=0.1918 N=1.0 Q=0.333 imagStrength=0.6929 [通常の子]
Depth=13 Norm=1.1124 e0=0.8101 e1=-0.7127 e2=0.0624 e3=-0.0541 e4=0.0601 e5=0.0518 e6=0.2046 e7=0.1348 N=1.0 Q=0.333 imagStrength=0.7623 [通常の子]
Depth=11 Norm=0.7145 e0=-0.6323 e1=0.3208 e2=-0.0212 e3=0.0126 e4=-0.0144 e5=-0.0229 e6=-0.0690 e7=-0.0413 N=3.0 Q=1.000 imagStrength=0.3328 [共役の子]
Depth=11 Norm=0.5106 e0=-0.1312 e1=0.4866 e2=-0.0114 e3=0.0113 e4=-0.0128 e5=-0.0227 e6=0.0157 e7=-0.0745 N=3.0 Q=1.000 imagStrength=0.4935 [通常の子]
Depth=13 Norm=1.2045 e0=-0.4464 e1=-1.0970 e2=-0.0041 e3=-0.0330 e4=0.0474 e5=0.0457 e6=-0.1659 e7=0.1227 N=1.0 Q=0.333 imagStrength=1.1187 [共役の子]
Depth=13 Norm=1.1649 e0=0.3091 e1=-1.1040 e2=0.0461 e3=-0.0504 e4=0.0529 e5=0.0474 e6=-0.0057 e7=0.1817 N=1.0 Q=0.333 imagStrength=1.1232 [通常の子]
Depth=10 Norm=0.8288 e0=-0.7975 e1=0.1998 e2=0.0174 e3=0.0660 e4=-0.0209 e5=0.0083 e6=0.0736 e7=0.0221 N=3.0 Q=1.000 imagStrength=0.2258 [通常の子]
Depth=13 Norm=1.1104 e0=0.8156 e1=-0.7284 e2=0.0201 e3=-0.0368 e4=0.0513 e5=0.0490 e6=-0.1222 e7=0.1244 N=0.0 Q=0.000 imagStrength=0.7535 [通常の子]
Depth=12 Norm=0.8374 e0=0.8004 e1=-0.2157 e2=-0.0208 e3=-0.0784 e4=0.0260 e5=-0.0128 e6=-0.0799 e7=0.0156 N=3.0 Q=1.000 imagStrength=0.2461 [共役の子]
Depth=7 Norm=0.5489 e0=0.2586 e1=-0.4732 e2=0.0123 e3=0.0651 e4=0.0086 e5=0.0191 e6=0.0413 e7=-0.0634 N=3.0 Q=1.000 imagStrength=0.4842 [共役の子]
Depth=13 Norm=1.1620 e0=-1.1077 e1=-0.2898 e2=0.0745 e3=-0.0494 e4=0.0600 e5=0.0715 e6=0.1416 e7=0.0489 N=0.0 Q=0.000 imagStrength=0.3509 [共役の子]
Depth=12 Norm=0.4731 e0=0.0215 e1=0.4666 e2=0.0149 e3=-0.0551 e4=0.0290 e5=-0.0142 e6=-0.0286 e7=0.0243 N=3.0 Q=1.000 imagStrength=0.4726 [通常の子]
Depth=12 Norm=0.4453 e0=-0.0998 e1=-0.4265 e2=-0.0299 e3=-0.0551 e4=0.0290 e5=-0.0142 e6=-0.0286 e7=0.0243 N=3.0 Q=1.000 imagStrength=0.4339 [共役の子]
Depth=13 Norm=1.1919 e0=-0.4510 e1=-1.0650 e2=0.0490 e3=-0.0547 e4=0.0562 e5=0.0221 e6=0.1882 e7=0.1963 N=1.0 Q=0.333 imagStrength=1.1033 [通常の子]
Depth=11 Norm=0.5622 e0=0.3979 e1=0.3866 e2=-0.0179 e3=0.0126 e4=-0.0155 e5=-0.0217 e6=-0.0743 e7=-0.0401 N=3.0 Q=1.000 imagStrength=0.3972 [通常の子]
Depth=13 Norm=1.2573 e0=-1.0508 e1=-0.6703 e2=0.0271 e3=-0.0415 e4=0.0589 e5=0.0515 e6=0.1070 e7=0.0841 N=0.0 Q=0.000 imagStrength=0.6903 [共役の子]
Depth=13 Norm=1.1878 e0=-0.1456 e1=-1.1548 e2=-0.0065 e3=-0.0331 e4=0.0481 e5=0.0360 e6=-0.1764 e7=0.1416 N=1.0 Q=0.333 imagStrength=1.1788 [共役の子]
Depth=13 Norm=1.1335 e0=-0.0051 e1=1.1062 e2=0.1097 e3=-0.0336 e4=0.0497 e5=0.0422 e6=-0.1656 e7=0.1276 N=1.0 Q=0.333 imagStrength=1.1335 [共役の子]
Depth=12 Norm=0.7068 e0=-0.6968 e1=-0.0004 e2=-0.0097 e3=-0.0810 e4=0.0259 e5=-0.0132 e6=-0.0797 e7=0.0121 N=2.0 Q=0.667 imagStrength=0.1183 [通常の子]
Depth=13 Norm=1.2063 e0=-0.0865 e1=-1.1775 e2=-0.0072 e3=-0.0336 e4=0.0475 e5=0.0284 e6=-0.1778 e7=0.1596 N=1.0 Q=0.333 imagStrength=1.2032 [通常の子]
Depth=13 Norm=1.2707 e0=0.3408 e1=1.2011 e2=0.1148 e3=-0.0347 e4=0.0519 e5=0.0457 e6=-0.1484 e7=0.1215 N=1.0 Q=0.333 imagStrength=1.2242 [通常の子]
Depth=11 Norm=0.5004 e0=0.0526 e1=-0.4866 e2=-0.0601 e3=0.0119 e4=-0.0146 e5=-0.0204 e6=0.0132 e7=-0.0794 N=3.0 Q=1.000 imagStrength=0.4977 [共役の子]
Depth=7 Norm=0.4840 e0=-0.0137 e1=0.4741 e2=0.0885 e3=0.0201 e4=0.0086 e5=0.0112 e6=0.0184 e7=-0.0225 N=3.0 Q=1.000 imagStrength=0.4838 [通常の子]
Depth=13 Norm=1.2134 e0=1.1445 e1=0.0304 e2=-0.1453 e3=-0.2015 e4=-0.0337 e5=-0.2195 e6=-0.0526 e7=0.2187 N=0.0 Q=0.000 imagStrength=0.4032 [共役の子]
Depth=12 Norm=0.4862 e0=0.1487 e1=-0.4299 e2=-0.1198 e3=0.0487 e4=-0.0820 e5=-0.0110 e6=-0.0689 e7=0.0325 N=3.0 Q=1.000 imagStrength=0.4628 [通常の子]
Depth=12 Norm=0.4405 e0=0.0182 e1=0.4156 e2=-0.0774 e3=0.0487 e4=-0.0820 e5=-0.0110 e6=-0.0689 e7=0.0325 N=3.0 Q=1.000 imagStrength=0.4402 [共役の子]
Depth=13 Norm=1.1963 e0=0.7601 e1=0.8755 e2=-0.1112 e3=-0.1986 e4=-0.0268 e5=-0.1579 e6=-0.0828 e7=0.0505 N=1.0 Q=0.333 imagStrength=0.9237 [通常の子]
Depth=11 Norm=0.5763 e0=-0.4757 e1=-0.2530 e2=0.0153 e3=0.1825 e4=-0.0161 e5=0.0733 e6=0.0107 e7=-0.0497 N=3.0 Q=1.000 imagStrength=0.3252 [通常の子]
Depth=13 Norm=1.1280 e0=1.0313 e1=0.2905 e2=-0.1134 e3=-0.2063 e4=-0.0331 e5=-0.1947 e6=-0.0578 e7=0.1627 N=0.0 Q=0.000 imagStrength=0.4568 [共役の子]
Depth=13 Norm=1.2089 e0=0.4562 e1=1.0457 e2=-0.0527 e3=-0.2203 e4=-0.0227 e5=-0.1837 e6=0.2315 e7=0.1433 N=1.0 Q=0.333 imagStrength=1.1195 [共役の子]
Depth=13 Norm=1.2480 e0=-0.2380 e1=-1.1477 e2=-0.1647 e3=-0.2207 e4=-0.0214 e5=-0.1805 e6=0.2372 e7=0.1361 N=1.0 Q=0.333 imagStrength=1.2251 [共役の子]
Depth=12 Norm=0.6560 e0=0.6155 e1=0.1733 e2=-0.0895 e3=0.0715 e4=-0.0785 e5=-0.0103 e6=-0.0264 e7=0.0371 N=3.0 Q=1.000 imagStrength=0.2269 [通常の子]
Depth=13 Norm=1.1911 e0=0.4475 e1=1.0468 e2=-0.0638 e3=-0.2144 e4=-0.0227 e5=-0.1627 e6=0.2012 e7=0.0729 N=1.0 Q=0.333 imagStrength=1.1039 [通常の子]
Depth=13 Norm=1.1224 e0=-0.5520 e1=-0.8964 e2=-0.1639 e3=-0.2126 e4=-0.0306 e5=-0.1919 e6=0.1520 e7=0.1365 N=1.0 Q=0.333 imagStrength=0.9773 [通常の子]
Depth=11 Norm=0.5207 e0=0.2687 e1=0.3924 e2=0.0461 e3=0.1829 e4=-0.0156 e5=0.0722 e6=-0.0598 e7=-0.0163 N=3.0 Q=1.000 imagStrength=0.4460 [共役の子]
Depth=10 Norm=0.8135 e0=-0.6967 e1=0.3872 e2=0.1243 e3=-0.0679 e4=0.0504 e5=-0.0059 e6=0.0568 e7=0.0235 N=3.0 Q=1.000 imagStrength=0.4200 [通常の子]
Depth=13 Norm=1.2232 e0=1.1449 e1=-0.2893 e2=-0.1696 e3=-0.2030 e4=-0.0459 e5=-0.1288 e6=-0.0728 e7=0.0874 N=0.0 Q=0.000 imagStrength=0.4305 [通常の子]
Depth=12 Norm=0.8750 e0=0.7600 e1=-0.4030 e2=-0.1203 e3=0.0440 e4=-0.0660 e5=0.0022 e6=-0.0676 e7=0.0154 N=3.0 Q=1.000 imagStrength=0.4336 [共役の子]
Depth=9 Norm=0.8803 e0=0.7638 e1=-0.3889 e2=-0.0807 e3=-0.1737 e4=-0.0031 e5=-0.0412 e6=0.0076 e7=0.0417 N=3.0 Q=1.000 imagStrength=0.4376 [共役の子]
Depth=12 Norm=0.8839 e0=0.8570 e1=-0.1330 e2=-0.1052 e3=0.0786 e4=-0.0675 e5=0.0040 e6=-0.0490 e7=-0.0713 N=3.0 Q=1.000 imagStrength=0.2167 [通常の子]
Depth=13 Norm=1.2587 e0=-0.2659 e1=1.1982 e2=-0.0531 e3=-0.2162 e4=-0.0447 e5=-0.1230 e6=-0.0181 e7=0.1055 N=1.0 Q=0.333 imagStrength=1.2303 [共役の子]
Depth=13 Norm=1.3265 e0=0.4834 e1=-1.1814 e2=-0.1755 e3=-0.2145 e4=-0.0516 e5=-0.1478 e6=-0.0601 e7=0.1596 N=1.0 Q=0.333 imagStrength=1.2353 [共役の子]
Depth=13 Norm=1.2130 e0=-0.5688 e1=-0.9983 e2=-0.1623 e3=-0.2207 e4=-0.0420 e5=-0.1248 e6=0.2316 e7=0.0733 N=1.0 Q=0.333 imagStrength=1.0714 [共役の子]
Depth=12 Norm=0.6370 e0=0.5937 e1=0.1870 e2=-0.0897 e3=0.0745 e4=-0.0607 e5=0.0020 e6=-0.0084 e7=0.0313 N=3.0 Q=1.000 imagStrength=0.2309 [通常の子]
Depth=12 Norm=0.6505 e0=-0.6257 e1=-0.1023 e2=-0.1043 e3=0.0745 e4=-0.0607 e5=0.0020 e6=-0.0084 e7=0.0313 N=3.0 Q=1.000 imagStrength=0.1778 [共役の子]
Depth=13 Norm=1.2561 e0=0.4496 e1=-1.1008 e2=-0.1631 e3=-0.2230 e4=-0.0414 e5=-0.1291 e6=0.2459 e7=0.0929 N=1.0 Q=0.333 imagStrength=1.1729 [通常の子]
Depth=11 Norm=0.6013 e0=-0.2386 e1=0.5085 e2=0.0523 e3=0.1873 e4=-0.0026 e5=0.0570 e6=-0.0706 e7=-0.0079 N=3.0 Q=1.000 imagStrength=0.5520 [通常の子]
Depth=13 Norm=1.2887 e0=-0.3310 e1=-1.1975 e2=-0.2237 e3=-0.2033 e4=-0.0480 e5=-0.1358 e6=0.0597 e7=0.0387 N=1.0 Q=0.333 imagStrength=1.2454 [共役の子]
Depth=12 Norm=0.4562 e0=0.2242 e1=0.3885 e2=-0.0225 e3=0.0337 e4=0.0275 e5=0.0223 e6=-0.0027 e7=-0.0633 N=3.0 Q=1.000 imagStrength=0.3973 [通常の子]
Depth=12 Norm=0.4527 e0=-0.2928 e1=-0.3307 e2=-0.0586 e3=0.0337 e4=0.0275 e5=0.0223 e6=-0.0027 e7=-0.0633 N=3.0 Q=1.000 imagStrength=0.3453 [共役の子]
Depth=13 Norm=1.1492 e0=-0.9783 e1=-0.5805 e2=-0.0563 e3=-0.0985 e4=-0.0346 e5=0.1054 e6=-0.0211 e7=-0.0298 N=0.0 Q=0.000 imagStrength=0.6029 [共役の子]
Depth=11 Norm=0.7857 e0=0.7716 e1=0.1166 e2=0.0112 e3=0.0812 e4=0.0213 e5=-0.0233 e6=0.0036 e7=-0.0243 N=3.0 Q=1.000 imagStrength=0.1481 [通常の子]
Depth=13 Norm=1.2119 e0=-1.2012 e1=0.0697 e2=-0.0405 e3=-0.0966 e4=-0.0314 e5=0.0952 e6=0.0013 e7=-0.0070 N=0.0 Q=0.000 imagStrength=0.1610 [共役の子]
Depth=13 Norm=1.1456 e0=-0.9804 e1=-0.5659 e2=-0.0599 e3=-0.0984 e4=-0.0419 e5=0.0475 e6=-0.0386 e7=0.1108 N=0.0 Q=0.000 imagStrength=0.5927 [通常の子]
Depth=9 Norm=0.9783 e0=0.9672 e1=-0.1238 e2=-0.0227 e3=-0.0651 e4=-0.0114 e5=0.0391 e6=-0.0029 e7=0.0029 N=3.0 Q=1.000 imagStrength=0.1475 [通常の子]
Depth=12 Norm=0.8846 e0=0.7790 e1=-0.4087 e2=-0.0627 e3=0.0301 e4=0.0295 e5=0.0220 e6=0.0041 e7=-0.0509 N=3.0 Q=1.000 imagStrength=0.4193 [通常の子]
Depth=13 Norm=1.2576 e0=-0.9443 e1=0.8137 e2=0.0126 e3=-0.0981 e4=-0.0332 e5=0.1143 e6=-0.0026 e7=-0.0619 N=0.0 Q=0.000 imagStrength=0.8306 [共役の子]
Depth=13 Norm=1.3295 e0=1.1132 e1=-0.7067 e2=-0.0644 e3=-0.0954 e4=-0.0457 e5=0.0654 e6=-0.0847 e7=0.0442 N=0.0 Q=0.000 imagStrength=0.7268 [共役の子]
Depth=11 Norm=0.8072 e0=-0.8013 e1=-0.0382 e2=0.0031 e3=0.0815 e4=0.0209 e5=-0.0234 e6=-0.0096 e7=-0.0195 N=3.0 Q=1.000 imagStrength=0.0978 [共役の子]
Depth=13 Norm=1.2544 e0=-1.2121 e1=-0.2739 e2=-0.0502 e3=-0.0969 e4=-0.0428 e5=0.0422 e6=-0.0337 e7=0.1121 N=0.0 Q=0.000 imagStrength=0.3228 [通常の子]
Depth=13 Norm=1.3088 e0=1.2922 e1=0.1380 e2=-0.0299 e3=-0.0998 e4=-0.0291 e5=0.0961 e6=0.0565 e7=-0.0046 N=0.0 Q=0.000 imagStrength=0.2079 [通常の子]
Depth=12 Norm=0.7864 e0=0.7765 e1=-0.0088 e2=-0.0400 e3=-0.0156 e4=-0.0257 e5=-0.0247 e6=-0.0203 e7=0.1084 N=2.0 Q=0.667 imagStrength=0.1239 [共役の子]
Depth=10 Norm=0.8394 e0=-0.8345 e1=-0.0049 e2=0.0412 e3=-0.0082 e4=0.0247 e5=0.0232 e6=0.0170 e7=-0.0709 N=3.0 Q=1.000 imagStrength=0.0909 [共役の子]
Depth=13 Norm=1.1911 e0=0.4266 e1=-1.0957 e2=-0.1184 e3=-0.0797 e4=0.0361 e5=-0.0908 e6=0.0667 e7=0.0431 N=1.0 Q=0.333 imagStrength=1.1121 [通常の子]
Depth=13 Norm=1.2498 e0=-0.2467 e1=1.1938 e2=0.0483 e3=-0.0963 e4=0.0429 e5=-0.0760 e6=0.2295 e7=0.0639 N=1.0 Q=0.333 imagStrength=1.2252 [共役の子]
Depth=13 Norm=1.3179 e0=0.4865 e1=-1.1937 e2=-0.0744 e3=-0.0950 e4=0.0366 e5=-0.1004 e6=0.1889 e7=0.1164 N=1.0 Q=0.333 imagStrength=1.2248 [共役の子]
Depth=12 Norm=0.8946 e0=0.8822 e1=-0.1302 e2=-0.0436 e3=0.0262 e4=-0.0330 e5=-0.0241 e6=-0.0101 e7=0.0260 N=2.0 Q=0.667 imagStrength=0.1483 [通常の子]
Depth=12 Norm=0.7853 e0=0.6183 e1=-0.4735 e2=-0.0613 e3=0.0138 e4=-0.0406 e5=-0.0244 e6=-0.0630 e7=0.0007 N=3.0 Q=1.000 imagStrength=0.4841 [通常の子]
Depth=12 Norm=0.6880 e0=-0.4671 e1=0.4987 e2=-0.0126 e3=0.0138 e4=-0.0406 e5=-0.0244 e6=-0.0630 e7=0.0007 N=3.0 Q=1.000 imagStrength=0.5052 [共役の子]
Depth=13 Norm=1.3190 e0=1.0954 e1=-0.6795 e2=-0.0685 e3=-0.0860 e4=0.0319 e5=-0.1316 e6=-0.0333 e7=0.2159 N=1.0 Q=0.333 imagStrength=0.7348 [共役の子]
Depth=11 Norm=0.8242 e0=-0.7075 e1=0.4114 e2=0.0252 e3=0.0689 e4=-0.0264 e5=0.0306 e6=0.0230 e7=-0.0455 N=3.0 Q=1.000 imagStrength=0.4229 [通常の子]
Depth=13 Norm=1.3043 e0=0.4577 e1=-1.1912 e2=-0.1231 e3=-0.0738 e4=0.0280 e5=-0.1024 e6=-0.1787 e7=0.0952 N=1.0 Q=0.333 imagStrength=1.2214 [共役の子]
Depth=13 Norm=1.3139 e0=1.1159 e1=-0.6775 e2=-0.0584 e3=-0.0894 e4=0.0406 e5=-0.0685 e6=-0.0006 e7=0.0672 N=0.0 Q=0.000 imagStrength=0.6938 [通常の子]
Depth=6 Norm=0.5523 e0=0.3615 e1=0.4038 e2=0.0128 e3=-0.0973 e4=0.0056 e5=-0.0095 e6=0.0102 e7=0.0377 N=3.0 Q=1.000 imagStrength=0.4176 [通常の子]
Depth=13 Norm=1.1805 e0=1.0147 e1=-0.5616 e2=0.0689 e3=-0.0489 e4=0.0575 e5=0.0522 e6=0.1798 e7=0.0550 N=0.0 Q=0.000 imagStrength=0.6033 [通常の子]
Depth=11 Norm=0.7435 e0=-0.6481 e1=0.3587 e2=-0.0199 e3=0.0091 e4=-0.0139 e5=-0.0212 e6=-0.0518 e7=-0.0180 N=3.0 Q=1.000 imagStrength=0.3644 [通常の子]
Depth=13 Norm=1.1686 e0=0.4499 e1=-1.0729 e2=0.0109 e3=-0.0355 e4=0.0464 e5=0.0220 e6=0.0287 e7=0.0848 N=1.0 Q=0.333 imagStrength=1.0785 [共役の子]
Depth=12 Norm=0.8096 e0=0.7770 e1=-0.1799 e2=-0.0179 e3=-0.0841 e4=0.0255 e5=-0.0160 e6=-0.0354 e7=0.0994 N=3.0 Q=1.000 imagStrength=0.2276 [共役の子]
Depth=10 Norm=0.8124 e0=-0.7885 e1=0.1666 e2=0.0147 e3=0.0708 e4=-0.0207 e5=0.0122 e6=0.0292 e7=-0.0621 N=3.0 Q=1.000 imagStrength=0.1956 [共役の子]
Depth=13 Norm=1.0858 e0=0.7368 e1=-0.7858 e2=0.0220 e3=-0.0369 e4=0.0528 e5=0.0338 e6=0.0901 e7=0.0695 N=0.0 Q=0.000 imagStrength=0.7976 [通常の子]
Depth=13 Norm=1.1568 e0=-0.0876 e1=-1.1304 e2=-0.0015 e3=-0.0314 e4=0.0449 e5=0.0158 e6=-0.1727 e7=0.1404 N=1.0 Q=0.333 imagStrength=1.1535 [通常の子]
Depth=13 Norm=1.2215 e0=0.3330 e1=1.1539 e2=0.1156 e3=-0.0325 e4=0.0491 e5=0.0325 e6=-0.1444 e7=0.1039 N=1.0 Q=0.333 imagStrength=1.1752 [通常の子]
Depth=11 Norm=0.4797 e0=0.0490 e1=-0.4672 e2=-0.0597 e3=0.0096 e4=-0.0151 e5=-0.0150 e6=0.0156 e7=-0.0713 N=3.0 Q=1.000 imagStrength=0.4772 [共役の子]
Depth=12 Norm=0.7458 e0=0.7379 e1=-0.0378 e2=-0.0088 e3=-0.0453 e4=0.0131 e5=-0.0132 e6=-0.0660 e7=-0.0579 N=2.0 Q=0.667 imagStrength=0.1078 [通常の子]
Depth=12 Norm=0.7342 e0=-0.7190 e1=0.1097 e2=-0.0014 e3=-0.0453 e4=0.0131 e5=-0.0132 e6=-0.0660 e7=-0.0579 N=2.0 Q=0.667 imagStrength=0.1488 [共役の子]
Depth=13 Norm=1.1474 e0=-0.0641 e1=-1.1289 e2=0.0450 e3=-0.0473 e4=0.0508 e5=0.0262 e6=-0.0213 e7=0.1734 N=1.0 Q=0.333 imagStrength=1.1456 [共役の子]
Depth=9 Norm=0.7726 e0=0.7450 e1=0.1912 e2=0.0468 e3=-0.0218 e4=0.0064 e5=0.0349 e6=0.0098 e7=0.0371 N=3.0 Q=1.000 imagStrength=0.2048 [通常の子]
Depth=12 Norm=0.6278 e0=0.3773 e1=-0.4940 e2=-0.0340 e3=-0.0642 e4=0.0441 e5=-0.0002 e6=-0.0160 e7=0.0146 N=3.0 Q=1.000 imagStrength=0.5017 [通常の子]
Depth=13 Norm=1.2252 e0=-1.2113 e1=0.0825 e2=0.0846 e3=-0.0447 e4=0.0325 e5=0.1167 e6=0.0541 e7=-0.0180 N=0.0 Q=0.000 imagStrength=0.1841 [共役の子]
Depth=13 Norm=1.2721 e0=1.2623 e1=0.0462 e2=0.0834 e3=-0.0419 e4=0.0198 e5=0.0660 e6=-0.0307 e7=0.0918 N=0.0 Q=0.000 imagStrength=0.1580 [共役の子]
Depth=11 Norm=0.5746 e0=-0.4614 e1=-0.3302 e2=-0.0541 e3=0.0132 e4=-0.0007 e5=-0.0338 e6=-0.0538 e7=-0.0322 N=3.0 Q=1.000 imagStrength=0.3423 [共役の子]
Depth=13 Norm=1.2314 e0=-0.7910 e1=-0.9297 e2=0.0238 e3=-0.0418 e4=0.0241 e5=0.0515 e6=0.0234 e7=0.1418 N=1.0 Q=0.333 imagStrength=0.9437 [通常の子]
Depth=13 Norm=1.3048 e0=0.9790 e1=0.8409 e2=0.1143 e3=-0.0444 e4=0.0351 e5=0.0953 e6=0.0970 e7=0.0467 N=1.0 Q=0.333 imagStrength=0.8626 [通常の子]
Depth=13 Norm=1.1953 e0=0.0233 e1=1.1705 e2=0.1148 e3=-0.0323 e4=0.0233 e5=0.0863 e6=-0.1760 e7=0.0697 N=1.0 Q=0.333 imagStrength=1.1950 [通常の子]
Depth=11 Norm=0.4713 e0=0.0376 e1=-0.4604 e2=-0.0592 e3=0.0109 e4=0.0017 e5=-0.0356 e6=0.0282 e7=-0.0556 N=3.0 Q=1.000 imagStrength=0.4698 [通常の子]
Depth=13 Norm=1.1426 e0=0.6059 e1=0.9406 e2=0.1518 e3=-0.0487 e4=0.0267 e5=0.0799 e6=-0.0353 e7=0.1417 N=1.0 Q=0.333 imagStrength=0.9688 [共役の子]
Depth=12 Norm=0.5002 e0=-0.3911 e1=-0.2964 e2=-0.0237 e3=-0.0453 e4=0.0322 e5=-0.0003 e6=-0.0585 e7=-0.0477 N=3.0 Q=1.000 imagStrength=0.3118 [共役の子]
Depth=10 Norm=0.6425 e0=0.5665 e1=0.2865 e2=0.0201 e3=0.0657 e4=-0.0336 e5=-0.0040 e6=0.0548 e7=0.0308 N=3.0 Q=1.000 imagStrength=0.3031 [共役の子]
Depth=13 Norm=1.2337 e0=0.2741 e1=1.1799 e2=0.1617 e3=-0.0515 e4=0.0324 e5=0.0871 e6=0.0097 e7=0.1313 N=1.0 Q=0.333 imagStrength=1.2029 [通常の子]
Depth=11 Norm=0.6478 e0=0.4262 e1=-0.4640 e2=-0.0472 e3=0.0771 e4=-0.0389 e5=0.0452 e6=-0.0932 e7=-0.0484 N=3.0 Q=1.000 imagStrength=0.4879 [通常の子]
Depth=13 Norm=1.1724 e0=0.0576 e1=1.1027 e2=0.1049 e3=-0.1263 e4=0.0623 e5=-0.1285 e6=0.2650 e7=0.1942 N=1.0 Q=0.333 imagStrength=1.1710 [共役の子]
Depth=13 Norm=1.1950 e0=-0.5317 e1=1.0362 e2=0.0513 e3=-0.1077 e4=0.0537 e5=-0.1420 e6=0.0854 e7=0.1647 N=1.0 Q=0.333 imagStrength=1.0702 [通常の子]
Depth=10 Norm=0.8848 e0=0.8070 e1=-0.3413 e2=0.0308 e3=0.0404 e4=0.0377 e5=0.0294 e6=0.0537 e7=-0.0861 N=3.0 Q=1.000 imagStrength=0.3628 [通常の子]
Depth=13 Norm=1.2540 e0=-1.0903 e1=0.5233 e2=0.0644 e3=-0.1191 e4=0.0523 e5=-0.1473 e6=0.1568 e7=0.2061 N=1.0 Q=0.333 imagStrength=0.6194 [通常の子]
Depth=12 Norm=0.8474 e0=-0.7720 e1=0.3377 e2=-0.0253 e3=-0.0282 e4=-0.0432 e5=-0.0328 e6=-0.0442 e7=0.0425 N=3.0 Q=1.000 imagStrength=0.3496 [共役の子]
Depth=8 Norm=0.8679 e0=0.7635 e1=-0.4010 e2=-0.0722 e3=0.0236 e4=-0.0125 e5=0.0005 e6=-0.0602 e7=-0.0037 N=3.0 Q=1.000 imagStrength=0.4127 [共役の子]
Depth=11 Norm=0.8038 e0=-0.7904 e1=-0.0246 e2=-0.0235 e3=0.0754 e4=-0.0417 e5=0.0509 e6=-0.0536 e7=-0.0862 N=3.0 Q=1.000 imagStrength=0.1465 [共役の子]
Depth=13 Norm=1.2587 e0=-1.1776 e1=-0.2476 e2=0.0034 e3=-0.1114 e4=0.0513 e5=-0.1778 e6=0.0137 e7=0.2991 N=0.0 Q=0.000 imagStrength=0.4445 [通常の子]
Depth=13 Norm=1.3106 e0=1.2764 e1=0.1156 e2=0.0218 e3=-0.1142 e4=0.0656 e5=-0.1206 e6=0.1091 e7=0.1757 N=0.0 Q=0.000 imagStrength=0.2975 [通常の子]
Depth=13 Norm=1.2100 e0=-0.8905 e1=0.7959 e2=0.0434 e3=-0.1056 e4=0.0579 e5=-0.1041 e6=-0.0334 e7=0.0962 N=1.0 Q=0.333 imagStrength=0.8192 [共役の子]
Depth=12 Norm=0.8382 e0=-0.6864 e1=0.4697 e2=-0.0189 e3=-0.0488 e4=-0.0420 e5=-0.0319 e6=-0.0700 e7=0.0218 N=3.0 Q=1.000 imagStrength=0.4811 [通常の子]
Depth=12 Norm=0.8251 e0=0.6448 e1=-0.4999 e2=-0.0676 e3=-0.0488 e4=-0.0420 e5=-0.0319 e6=-0.0700 e7=0.0218 N=3.0 Q=1.000 imagStrength=0.5148 [共役の子]
Depth=13 Norm=1.2000 e0=-0.8186 e1=-0.8520 e2=-0.0489 e3=-0.1146 e4=-0.0297 e5=0.0743 e6=-0.1436 e7=0.0375 N=1.0 Q=0.333 imagStrength=0.8774 [共役の子]
Depth=13 Norm=1.1861 e0=0.7120 e1=0.9181 e2=0.0420 e3=-0.1133 e4=-0.0346 e5=0.0541 e6=-0.1776 e7=0.0815 N=1.0 Q=0.333 imagStrength=0.9486 [共役の子]
Depth=12 Norm=0.4600 e0=-0.3427 e1=-0.2915 e2=-0.0641 e3=-0.0441 e4=0.0268 e5=0.0183 e6=-0.0456 e7=-0.0008 N=2.0 Q=0.667 imagStrength=0.3069 [通常の子]
Depth=13 Norm=1.2137 e0=-0.7760 e1=-0.9016 e2=-0.0403 e3=-0.1197 e4=-0.0341 e5=0.0274 e6=-0.1160 e7=0.1636 N=1.0 Q=0.333 imagStrength=0.9333 [通常の子]
Depth=13 Norm=1.2867 e0=0.9731 e1=0.8242 e2=0.0478 e3=-0.1221 e4=-0.0233 e5=0.0709 e6=-0.0432 e7=0.0694 N=1.0 Q=0.333 imagStrength=0.8419 [通常の子]
Depth=11 Norm=0.5693 e0=-0.4525 e1=-0.3259 e2=-0.0374 e3=0.0884 e4=0.0162 e5=-0.0164 e6=-0.0006 e7=-0.0580 N=3.0 Q=1.000 imagStrength=0.3454 [共役の子]
Depth=11 Norm=0.8699 e0=-0.8552 e1=0.1269 e2=-0.0156 e3=0.0869 e4=0.0190 e5=-0.0250 e6=-0.0008 e7=-0.0201 N=3.0 Q=1.000 imagStrength=0.1590 [通常の子]
Depth=13 Norm=1.2651 e0=1.0553 e1=-0.6745 e2=-0.0185 e3=-0.1209 e4=-0.0355 e5=0.0443 e6=-0.0707 e7=0.0925 N=0.0 Q=0.000 imagStrength=0.6977 [共役の子]
Depth=13 Norm=1.3134 e0=1.2994 e1=0.0933 e2=0.0277 e3=-0.1264 e4=-0.0220 e5=0.0953 e6=0.0380 e7=-0.0100 N=0.0 Q=0.000 imagStrength=0.1912 [通常の子]
Depth=10 Norm=0.5040 e0=0.0418 e1=0.4937 e2=0.0704 e3=0.0323 e4=-0.0281 e5=-0.0203 e6=0.0307 e7=-0.0193 N=3.0 Q=1.000 imagStrength=0.5023 [通常の子]
Depth=13 Norm=1.2716 e0=0.9551 e1=0.8072 e2=0.0703 e3=-0.1326 e4=-0.0169 e5=0.0707 e6=0.1375 e7=0.0809 N=1.0 Q=0.333 imagStrength=0.8395 [通常の子]
Depth=12 Norm=0.5289 e0=0.1243 e1=-0.5044 e2=-0.0754 e3=-0.0271 e4=0.0205 e5=0.0149 e6=-0.0420 e7=0.0321 N=3.0 Q=1.000 imagStrength=0.5141 [共役の子]
Depth=3 Norm=1.0170 e0=0.9966 e1=-0.1918 e2=-0.0615 e3=0.0226 e4=-0.0020 e5=-0.0014 e6=-0.0051 e7=-0.0011 N=3.0 Q=1.000 imagStrength=0.2027 [共役の子]
Depth=13 Norm=1.1400 e0=-0.2229 e1=-1.0503 e2=-0.2508 e3=-0.1259 e4=-0.0967 e5=-0.0853 e6=-0.2260 e7=-0.0200 N=1.0 Q=0.333 imagStrength=1.1180 [通常の子]
Depth=13 Norm=1.2069 e0=0.4521 e1=1.0787 e2=-0.1420 e3=-0.1269 e4=-0.0913 e5=-0.0621 e6=-0.1879 e7=-0.0693 N=1.0 Q=0.333 imagStrength=1.1190 [通常の子]
Depth=11 Norm=0.4714 e0=-0.0438 e1=-0.4399 e2=0.0303 e3=0.1429 e4=0.0208 e5=0.0408 e6=0.0576 e7=-0.0086 N=3.0 Q=1.000 imagStrength=0.4694 [共役の子]
Depth=12 Norm=0.6967 e0=0.6730 e1=0.0184 e2=-0.0725 e3=0.1209 e4=-0.0472 e5=0.0245 e6=0.0035 e7=-0.0975 N=3.0 Q=1.000 imagStrength=0.1805 [通常の子]
Depth=12 Norm=0.6901 e0=-0.6641 e1=0.0579 e2=-0.0705 e3=0.1209 e4=-0.0472 e5=0.0245 e6=0.0035 e7=-0.0975 N=3.0 Q=1.000 imagStrength=0.1879 [共役の子]
Depth=13 Norm=1.1247 e0=-0.1815 e1=-1.0727 e2=-0.2062 e3=-0.1436 e4=-0.0870 e5=-0.0685 e6=-0.0772 e7=-0.0065 N=1.0 Q=0.333 imagStrength=1.1100 [共役の子]
Depth=10 Norm=0.8340 e0=0.7693 e1=-0.2919 e2=0.0610 e3=-0.1062 e4=0.0244 e5=-0.0206 e6=-0.0402 e7=-0.0284 N=3.0 Q=1.000 imagStrength=0.3220 [通常の子]
Depth=13 Norm=1.1599 e0=-0.9746 e1=0.5801 e2=-0.1247 e3=-0.1414 e4=-0.0923 e5=-0.0777 e6=0.0863 e7=-0.0376 N=0.0 Q=0.000 imagStrength=0.6289 [通常の子]
Depth=12 Norm=0.7805 e0=-0.7126 e1=0.2833 e2=-0.0591 e3=0.1145 e4=-0.0395 e5=0.0229 e6=0.0484 e7=-0.0109 N=3.0 Q=1.000 imagStrength=0.3184 [共役の子]
Depth=9 Norm=0.7028 e0=-0.5565 e1=0.4081 e2=-0.0537 e3=-0.1158 e4=-0.0205 e5=-0.0172 e6=-0.0109 e7=-0.0230 N=3.0 Q=1.000 imagStrength=0.4292 [共役の子]
Depth=12 Norm=0.6915 e0=-0.6749 e1=0.0616 e2=-0.0723 e3=0.0805 e4=-0.0345 e5=0.0216 e6=0.0352 e7=0.0653 N=3.0 Q=1.000 imagStrength=0.1505 [通常の子]
Depth=13 Norm=1.1138 e0=0.0119 e1=-1.0683 e2=-0.2485 e3=-0.1309 e4=-0.0897 e5=-0.0753 e6=0.0103 e7=-0.0807 N=1.0 Q=0.333 imagStrength=1.1138 [共役の子]
Depth=13 Norm=1.0547 e0=-0.1264 e1=1.0177 e2=-0.1418 e3=-0.1313 e4=-0.0873 e5=-0.0638 e6=0.0287 e7=-0.1045 N=1.0 Q=0.333 imagStrength=1.0471 [共役の子]
Depth=13 Norm=1.1545 e0=-1.0220 e1=-0.4177 e2=-0.1953 e3=-0.1297 e4=-0.0427 e5=-0.2136 e6=-0.0053 e7=0.1070 N=0.0 Q=0.000 imagStrength=0.5370 [通常の子]
Depth=11 Norm=0.8213 e0=0.8018 e1=0.0525 e2=0.0541 e3=0.1372 e4=-0.0150 e5=0.0802 e6=-0.0144 e7=-0.0145 N=3.0 Q=1.000 imagStrength=0.1778 [通常の子]
Depth=13 Norm=1.2158 e0=-1.1634 e1=0.2194 e2=-0.1715 e3=-0.1295 e4=-0.0306 e5=-0.1620 e6=0.0557 e7=-0.0129 N=0.0 Q=0.000 imagStrength=0.3532 [共役の子]
Depth=12 Norm=0.7042 e0=-0.5109 e1=0.4633 e2=-0.0467 e3=0.1021 e4=-0.0791 e5=-0.0058 e6=0.0071 e7=-0.0353 N=3.0 Q=1.000 imagStrength=0.4846 [共役の子]
Depth=10 Norm=0.6974 e0=0.4933 e1=-0.4737 e2=0.0546 e3=-0.1052 e4=0.0663 e5=0.0082 e6=0.0050 e7=0.0032 N=3.0 Q=1.000 imagStrength=0.4929 [共役の子]
Depth=13 Norm=1.2218 e0=-1.1808 e1=-0.0470 e2=-0.1764 e3=-0.1263 e4=-0.0476 e5=-0.1936 e6=-0.0894 e7=0.0369 N=0.0 Q=0.000 imagStrength=0.3136 [通常の子]
Depth=13 Norm=1.1556 e0=-0.7670 e1=0.8081 e2=-0.1097 e3=-0.1398 e4=-0.0384 e5=-0.1940 e6=0.1430 e7=0.0556 N=1.0 Q=0.333 imagStrength=0.8644 [通常の子]
Depth=13 Norm=1.1424 e0=0.6809 e1=-0.8490 e2=-0.1942 e3=-0.1413 e4=-0.0328 e5=-0.1742 e6=0.1768 e7=0.0119 N=1.0 Q=0.333 imagStrength=0.9172 [通常の子]
Depth=11 Norm=0.7015 e0=-0.5663 e1=0.3742 e2=0.0691 e3=0.1379 e4=-0.0129 e5=0.0766 e6=-0.0390 e7=0.0102 N=3.0 Q=1.000 imagStrength=0.4141 [共役の子]
Depth=12 Norm=0.7994 e0=-0.6791 e1=0.4013 e2=-0.0506 e3=0.0832 e4=-0.0747 e5=-0.0060 e6=0.0189 e7=0.0359 N=3.0 Q=1.000 imagStrength=0.4217 [通常の子]
Depth=12 Norm=0.8071 e0=0.6634 e1=-0.4342 e2=-0.0925 e3=0.0832 e4=-0.0747 e5=-0.0060 e6=0.0189 e7=0.0359 N=3.0 Q=1.000 imagStrength=0.4597 [共役の子]
Depth=13 Norm=1.1217 e0=-0.7050 e1=0.8306 e2=-0.1468 e3=-0.1243 e4=-0.0389 e5=-0.1539 e6=0.0250 e7=-0.0922 N=1.0 Q=0.333 imagStrength=0.8724 [共役の子]
Depth=8 Norm=0.6968 e0=0.6138 e1=0.2994 e2=-0.0029 e3=0.1340 e4=-0.0099 e5=0.0169 e6=0.0287 e7=-0.0007 N=3.0 Q=1.000 imagStrength=0.3299 [通常の子]
Depth=11 Norm=0.5587 e0=-0.2310 e1=0.4842 e2=0.0704 e3=0.1109 e4=0.0322 e5=0.0087 e6=0.0776 e7=0.0036 N=3.0 Q=1.000 imagStrength=0.5087 [共役の子]
Depth=13 Norm=1.2200 e0=-0.2654 e1=1.1770 e2=-0.0603 e3=-0.1093 e4=-0.0880 e5=0.0076 e6=-0.0897 e7=-0.0345 N=1.0 Q=0.333 imagStrength=1.1908 [通常の子]
Depth=13 Norm=1.1710 e0=0.1306 e1=-1.1370 e2=-0.1790 e3=-0.1090 e4=-0.0889 e5=0.0056 e6=-0.0937 e7=-0.0294 N=1.0 Q=0.333 imagStrength=1.1637 [通常の子]
Depth=13 Norm=1.2634 e0=0.8123 e1=0.9152 e2=-0.1225 e3=-0.0912 e4=-0.0983 e5=-0.0113 e6=-0.2523 e7=-0.0462 N=1.0 Q=0.333 imagStrength=0.9677 [共役の子]
Depth=12 Norm=0.5758 e0=-0.5229 e1=-0.2148 e2=-0.0691 e3=0.0715 e4=-0.0115 e5=0.0319 e6=0.0034 e7=-0.0321 N=3.0 Q=1.000 imagStrength=0.2412 [通常の子]
Depth=12 Norm=0.6962 e0=0.6738 e1=0.1444 e2=-0.0510 e3=0.0715 e4=-0.0115 e5=0.0319 e6=0.0034 e7=-0.0321 N=3.0 Q=1.000 imagStrength=0.1754 [共役の子]
Depth=12 Norm=0.4917 e0=-0.0567 e1=0.4754 e2=-0.0336 e3=0.0851 e4=-0.0039 e5=0.0312 e6=0.0557 e7=-0.0080 N=3.0 Q=1.000 imagStrength=0.4884 [共役の子]
Depth=10 Norm=0.5020 e0=-0.0192 e1=-0.4891 e2=0.0313 e3=-0.0922 e4=-0.0026 e5=-0.0284 e6=-0.0453 e7=-0.0040 N=3.0 Q=1.000 imagStrength=0.5016 [共役の子]
Depth=13 Norm=1.2373 e0=-0.9538 e1=-0.7432 e2=-0.1889 e3=-0.0973 e4=-0.0993 e5=-0.0053 e6=-0.0770 e7=-0.0892 N=1.0 Q=0.333 imagStrength=0.7882 [通常の子]
Depth=13 Norm=1.2613 e0=1.0677 e1=0.6424 e2=-0.0895 e3=-0.1114 e4=-0.0893 e5=-0.0152 e6=0.0974 e7=-0.0124 N=0.0 Q=0.000 imagStrength=0.6715 [共役の子]
Depth=13 Norm=1.2595 e0=-0.8911 e1=-0.8461 e2=-0.1664 e3=-0.1134 e4=-0.0810 e5=0.0159 e6=0.1503 e7=-0.0807 N=1.0 Q=0.333 imagStrength=0.8901 [共役の子]
Depth=12 Norm=0.4941 e0=0.1982 e1=0.4367 e2=-0.0357 e3=0.1018 e4=-0.0128 e5=0.0293 e6=0.0390 e7=-0.0056 N=3.0 Q=1.000 imagStrength=0.4527 [通常の子]
Depth=11 Norm=0.8123 e0=0.7231 e1=-0.3453 e2=0.0262 e3=0.1020 e4=-0.0224 e5=0.0713 e6=-0.0334 e7=0.0005 N=3.0 Q=1.000 imagStrength=0.3701 [通常の子]
Depth=13 Norm=1.1554 e0=-0.5118 e1=1.0036 e2=-0.0763 e3=-0.1007 e4=-0.0037 e5=-0.1615 e6=0.1540 e7=0.0104 N=1.0 Q=0.333 imagStrength=1.0359 [共役の子]
Depth=13 Norm=1.1427 e0=-0.9368 e1=0.6031 e2=-0.1284 e3=-0.0875 e4=-0.0155 e5=-0.1948 e6=-0.0010 e7=0.0465 N=0.0 Q=0.000 imagStrength=0.6544 [通常の子]
Depth=10 Norm=0.6991 e0=0.5088 e1=-0.4653 e2=0.0357 e3=-0.0866 e4=0.0612 e5=0.0174 e6=-0.0047 e7=-0.0229 N=3.0 Q=1.000 imagStrength=0.4794 [通常の子]
Depth=13 Norm=1.2048 e0=-1.1776 e1=-0.0232 e2=-0.1429 e3=-0.0896 e4=-0.0200 e5=-0.1847 e6=-0.0186 e7=0.0276 N=0.0 Q=0.000 imagStrength=0.2542 [通常の子]
Depth=12 Norm=0.7052 e0=-0.5251 e1=0.4559 e2=-0.0280 e3=0.0858 e4=-0.0711 e5=-0.0148 e6=0.0164 e7=-0.0090 N=3.0 Q=1.000 imagStrength=0.4708 [共役の子]
Depth=8 Norm=0.6394 e0=0.3870 e1=-0.4875 e2=-0.0483 e3=0.1340 e4=-0.0099 e5=0.0169 e6=0.0287 e7=-0.0007 N=3.0 Q=1.000 imagStrength=0.5090 [共役の子]
Depth=11 Norm=0.6465 e0=-0.5748 e1=-0.2640 e2=0.0307 e3=0.1016 e4=-0.0232 e5=0.0728 e6=-0.0255 e7=-0.0088 N=3.0 Q=1.000 imagStrength=0.2959 [共役の子]
Depth=13 Norm=1.2484 e0=-0.9380 e1=-0.7632 e2=-0.1963 e3=-0.0874 e4=-0.0168 e5=-0.2046 e6=-0.0224 e7=0.0852 N=1.0 Q=0.333 imagStrength=0.8238 [通常の子]
Depth=13 Norm=1.3187 e0=1.1081 e1=0.6780 e2=-0.1228 e3=-0.0901 e4=-0.0041 e5=-0.1540 e6=0.0623 e7=-0.0244 N=0.0 Q=0.000 imagStrength=0.7149 [通常の子]
Depth=13 Norm=1.1862 e0=-1.1333 e1=0.2653 e2=-0.1372 e3=-0.0886 e4=-0.0078 e5=-0.1323 e6=0.0041 e7=-0.0898 N=0.0 Q=0.000 imagStrength=0.3503 [共役の子]
Depth=12 Norm=0.6507 e0=-0.3671 e1=0.5253 e2=-0.0246 e3=0.0815 e4=-0.0701 e5=-0.0148 e6=0.0109 e7=-0.0138 N=3.0 Q=1.000 imagStrength=0.5372 [通常の子]
Depth=12 Norm=0.6096 e0=0.2943 e1=-0.5167 e2=-0.0769 e3=0.0815 e4=-0.0701 e5=-0.0148 e6=0.0109 e7=-0.0138 N=3.0 Q=1.000 imagStrength=0.5339 [共役の子]
Depth=12 Norm=0.5745 e0=-0.2785 e1=0.4969 e2=0.0243 e3=0.0011 e4=0.0463 e5=0.0212 e6=0.0357 e7=-0.0334 N=3.0 Q=1.000 imagStrength=0.5025 [通常の子]
Depth=12 Norm=0.5363 e0=0.2128 e1=-0.4866 e2=-0.0251 e3=0.0011 e4=0.0463 e5=0.0212 e6=0.0357 e7=-0.0334 N=3.0 Q=1.000 imagStrength=0.4923 [共役の子]
Depth=13 Norm=1.1157 e0=-1.0870 e1=0.1385 e2=0.0206 e3=-0.0051 e4=-0.0224 e5=0.1466 e6=-0.0050 e7=-0.1468 N=0.0 Q=0.000 imagStrength=0.2514 [共役の子]
Depth=11 Norm=0.8637 e0=0.8420 e1=-0.1857 e2=-0.0129 e3=0.0027 e4=0.0228 e5=-0.0386 e6=-0.0084 e7=0.0143 N=3.0 Q=1.000 imagStrength=0.1922 [通常の子]
Depth=13 Norm=1.1557 e0=-0.8841 e1=0.7223 e2=0.0570 e3=-0.0108 e4=-0.0177 e5=0.1257 e6=0.0923 e7=-0.0654 N=0.0 Q=0.000 imagStrength=0.7443 [共役の子]
Depth=13 Norm=1.1158 e0=-1.1014 e1=0.1529 e2=0.0157 e3=-0.0039 e4=-0.0299 e5=0.0821 e6=-0.0204 e7=0.0140 N=0.0 Q=0.000 imagStrength=0.1786 [通常の子]
Depth=9 Norm=0.8834 e0=0.7957 e1=-0.3794 e2=-0.0157 e3=0.0068 e4=-0.0121 e5=0.0460 e6=-0.0082 e7=-0.0243 N=3.0 Q=1.000 imagStrength=0.3836 [通常の子]
Depth=12 Norm=0.8886 e0=0.8672 e1=-0.1600 e2=-0.0074 e3=0.0218 e4=0.0384 e5=0.0217 e6=0.0138 e7=-0.0964 N=3.0 Q=1.000 imagStrength=0.1938 [通常の子]
Depth=13 Norm=1.2356 e0=-0.3085 e1=1.1837 e2=0.0906 e3=-0.0091 e4=-0.0232 e5=0.1294 e6=-0.0410 e7=-0.0570 N=1.0 Q=0.333 imagStrength=1.1965 [共役の子]
Depth=13 Norm=1.3060 e0=0.5455 e1=-1.1783 e2=-0.0298 e3=-0.0076 e4=-0.0296 e5=0.1038 e6=-0.0835 e7=-0.0019 N=1.0 Q=0.333 imagStrength=1.1866 [共役の子]
Depth=11 Norm=0.8338 e0=-0.7918 e1=0.2547 e2=0.0103 e3=0.0025 e4=0.0230 e5=-0.0377 e6=0.0350 e7=-0.0063 N=3.0 Q=1.000 imagStrength=0.2611 [共役の子]
Depth=13 Norm=1.2228 e0=-1.1288 e1=0.4514 e2=0.0471 e3=-0.0083 e4=-0.0293 e5=0.0844 e6=-0.0697 e7=0.0476 N=0.0 Q=0.000 imagStrength=0.4703 [通常の子]
Depth=13 Norm=1.2399 e0=1.0926 e1=-0.5716 e2=-0.0063 e3=-0.0105 e4=-0.0198 e5=0.1224 e6=-0.0062 e7=-0.0345 N=0.0 Q=0.000 imagStrength=0.5860 [通常の子]
Depth=12 Norm=0.5491 e0=0.4660 e1=0.2804 e2=0.0155 e3=-0.0228 e4=0.0167 e5=-0.0051 e6=0.0265 e7=0.0626 N=3.0 Q=1.000 imagStrength=0.2904 [共役の子]
Depth=10 Norm=0.6360 e0=-0.5609 e1=-0.2944 e2=-0.0178 e3=0.0102 e4=-0.0119 e5=0.0055 e6=-0.0231 e7=-0.0453 N=3.0 Q=1.000 imagStrength=0.2998 [共役の子]
Depth=13 Norm=1.2175 e0=-0.2939 e1=-1.1782 e2=-0.0699 e3=0.0088 e4=0.0109 e5=0.0125 e6=0.0115 e7=-0.0484 N=1.0 Q=0.333 imagStrength=1.1815 [通常の子]
Depth=13 Norm=1.2706 e0=0.4839 e1=1.1510 e2=0.0994 e3=-0.0100 e4=0.0200 e5=0.0170 e6=0.2113 e7=0.0105 N=1.0 Q=0.333 imagStrength=1.1748 [共役の子]
Depth=13 Norm=1.3127 e0=-0.2333 e1=-1.2731 e2=-0.0252 e3=-0.0100 e4=0.0206 e5=0.0196 e6=0.2153 e7=0.0053 N=1.0 Q=0.333 imagStrength=1.2918 [共役の子]
Depth=12 Norm=0.7061 e0=0.6840 e1=0.1722 e2=0.0113 e3=0.0131 e4=0.0076 e5=-0.0055 e6=0.0245 e7=0.0097 N=2.0 Q=0.667 imagStrength=0.1753 [通常の子]
Depth=12 Norm=0.9014 e0=0.8491 e1=-0.2937 e2=-0.0124 e3=0.0099 e4=0.0007 e5=-0.0039 e6=-0.0232 e7=-0.0681 N=3.0 Q=1.000 imagStrength=0.3028 [通常の子]
Depth=12 Norm=0.8435 e0=-0.7617 e1=0.3544 e2=0.0201 e3=0.0099 e4=0.0007 e5=-0.0039 e6=-0.0232 e7=-0.0681 N=3.0 Q=1.000 imagStrength=0.3623 [共役の子]
Depth=13 Norm=1.2899 e0=0.5546 e1=-1.1589 e2=-0.0302 e3=-0.0042 e4=0.0134 e5=-0.0024 e6=-0.0648 e7=0.0881 N=1.0 Q=0.333 imagStrength=1.1646 [共役の子]
Depth=11 Norm=0.6168 e0=-0.3049 e1=0.5324 e2=0.0237 e3=-0.0042 e4=-0.0033 e5=-0.0078 e6=0.0538 e7=-0.0217 N=3.0 Q=1.000 imagStrength=0.5361 [通常の子]
Depth=13 Norm=1.3116 e0=-0.2599 e1=-1.2619 e2=-0.0849 e3=0.0136 e4=0.0094 e5=0.0150 e6=-0.2286 e7=-0.0181 N=1.0 Q=0.333 imagStrength=1.2856 [共役の子]
Depth=13 Norm=1.2820 e0=0.5557 e1=-1.1535 e2=-0.0246 e3=-0.0058 e4=0.0170 e5=0.0240 e6=-0.0435 e7=0.0291 N=1.0 Q=0.333 imagStrength=1.1553 [通常の子]
Depth=7 Norm=0.6702 e0=0.5784 e1=0.3330 e2=0.0598 e3=0.0059 e4=0.0084 e5=-0.0005 e6=0.0002 e7=0.0003 N=3.0 Q=1.000 imagStrength=0.3385 [通常の子]
Depth=13 Norm=1.2425 e0=0.9851 e1=-0.6832 e2=-0.1236 e3=-0.1246 e4=-0.0094 e5=-0.2105 e6=0.0605 e7=0.1665 N=1.0 Q=0.333 imagStrength=0.7572 [共役の子]
Depth=12 Norm=0.7558 e0=0.6104 e1=-0.4264 e2=-0.0807 e3=0.0424 e4=-0.0771 e5=-0.0179 e6=-0.0349 e7=0.0323 N=3.0 Q=1.000 imagStrength=0.4457 [通常の子]
Depth=12 Norm=0.6642 e0=-0.4700 e1=0.4567 e2=-0.0364 e3=0.0424 e4=-0.0771 e5=-0.0179 e6=-0.0349 e7=0.0323 N=3.0 Q=1.000 imagStrength=0.4693 [共役の子]
Depth=13 Norm=1.2506 e0=1.1982 e1=0.2928 e2=-0.0860 e3=-0.1192 e4=-0.0026 e5=-0.1405 e6=0.0288 e7=-0.0238 N=0.0 Q=0.000 imagStrength=0.3584 [通常の子]
Depth=11 Norm=0.7945 e0=-0.7826 e1=0.0340 e2=0.0226 e3=0.1098 e4=-0.0212 e5=0.0670 e6=-0.0015 e7=-0.0131 N=3.0 Q=1.000 imagStrength=0.1373 [通常の子]
Depth=13 Norm=1.1946 e0=1.0742 e1=-0.4451 e2=-0.1234 e3=-0.1164 e4=-0.0151 e5=-0.1902 e6=-0.0545 e7=0.0836 N=0.0 Q=0.000 imagStrength=0.5227 [共役の子]
Depth=13 Norm=1.2551 e0=1.0479 e1=0.6132 e2=-0.0437 e3=-0.1300 e4=-0.0071 e5=-0.2020 e6=0.1395 e7=0.1487 N=1.0 Q=0.333 imagStrength=0.6908 [共役の子]
Depth=13 Norm=1.2521 e0=-0.8932 e1=-0.8164 e2=-0.1167 e3=-0.1319 e4=0.0014 e5=-0.1696 e6=0.1938 e7=0.0785 N=1.0 Q=0.333 imagStrength=0.8775 [共役の子]
Depth=12 Norm=0.4851 e0=0.1879 e1=0.4342 e2=-0.0374 e3=0.0484 e4=-0.0771 e5=-0.0175 e6=-0.0243 e7=0.0311 N=3.0 Q=1.000 imagStrength=0.4473 [通常の子]
Depth=13 Norm=1.2451 e0=1.0472 e1=0.6374 e2=-0.0602 e3=-0.1220 e4=-0.0026 e5=-0.1422 e6=0.0899 e7=-0.0220 N=0.0 Q=0.000 imagStrength=0.6735 [通常の子]
Depth=13 Norm=1.1797 e0=-1.0773 e1=-0.3999 e2=-0.1134 e3=-0.1192 e4=-0.0153 e5=-0.1917 e6=0.0068 e7=0.0855 N=0.0 Q=0.000 imagStrength=0.4809 [通常の子]
Depth=11 Norm=0.7580 e0=0.7240 e1=0.1794 e2=0.0294 e3=0.1096 e4=-0.0208 e5=0.0668 e6=-0.0180 e7=-0.0045 N=3.0 Q=1.000 imagStrength=0.2243 [共役の子]
Depth=10 Norm=0.9022 e0=-0.8831 e1=0.1463 e2=0.0717 e3=-0.0536 e4=0.0165 e5=-0.0247 e6=0.0208 e7=0.0575 N=3.0 Q=1.000 imagStrength=0.1845 [通常の子]
Depth=13 Norm=1.2117 e0=0.7598 e1=-0.8939 e2=-0.1686 e3=-0.1200 e4=-0.0746 e5=-0.0272 e6=-0.2058 e7=-0.0173 N=1.0 Q=0.333 imagStrength=0.9439 [通常の子]
Depth=12 Norm=0.8925 e0=0.8725 e1=-0.1652 e2=-0.0730 e3=0.0276 e4=-0.0215 e5=0.0232 e6=-0.0264 e7=-0.0157 N=3.0 Q=1.000 imagStrength=0.1879 [共役の子]
Depth=9 Norm=0.6230 e0=0.3329 e1=-0.5108 e2=-0.0698 e3=-0.1057 e4=-0.0191 e5=-0.0036 e6=-0.0015 e7=-0.0027 N=3.0 Q=1.000 imagStrength=0.5266 [共役の子]
Depth=12 Norm=0.6979 e0=0.6629 e1=0.1693 e2=-0.0543 e3=0.0707 e4=-0.0290 e5=0.0237 e6=-0.0187 e7=-0.0962 N=3.0 Q=1.000 imagStrength=0.2182 [通常の子]
Depth=13 Norm=1.2673 e0=0.4659 e1=1.1649 e2=-0.0087 e3=-0.1389 e4=-0.0701 e5=-0.0337 e6=-0.0561 e7=0.0592 N=1.0 Q=0.333 imagStrength=1.1785 [共役の子]
Depth=13 Norm=1.3100 e0=-0.2337 e1=-1.2699 e2=-0.1337 e3=-0.1392 e4=-0.0693 e5=-0.0316 e6=-0.0524 e7=0.0545 N=1.0 Q=0.333 imagStrength=1.2890 [共役の子]
Depth=13 Norm=1.2188 e0=-1.0800 e1=-0.5089 e2=-0.1073 e3=-0.1362 e4=-0.0656 e5=-0.0010 e6=0.1365 e7=-0.0842 N=0.0 Q=0.000 imagStrength=0.5649 [共役の子]
Depth=12 Norm=0.4790 e0=0.1719 e1=0.4394 e2=-0.0410 e3=0.0579 e4=-0.0180 e5=0.0220 e6=0.0315 e7=-0.0013 N=3.0 Q=1.000 imagStrength=0.4471 [通常の子]
Depth=12 Norm=0.4678 e0=-0.2488 e1=-0.3808 e2=-0.0822 e3=0.0579 e4=-0.0180 e5=0.0220 e6=0.0315 e7=-0.0013 N=3.0 Q=1.000 imagStrength=0.3962 [共役の子]
Depth=13 Norm=1.2533 e0=-0.2752 e1=-1.1906 e2=-0.1284 e3=-0.1420 e4=-0.0679 e5=-0.0432 e6=0.1804 e7=0.0420 N=1.0 Q=0.333 imagStrength=1.2227 [通常の子]
Depth=11 Norm=0.5501 e0=0.2752 e1=0.4552 e2=0.0438 e3=0.1207 e4=0.0199 e5=0.0208 e6=-0.0448 e7=0.0183 N=3.0 Q=1.000 imagStrength=0.4763 [通常の子]
Depth=13 Norm=1.3149 e0=-0.9687 e1=-0.8577 e2=-0.1620 e3=-0.1256 e4=-0.0678 e5=-0.0209 e6=0.0606 e7=-0.0648 N=1.0 Q=0.333 imagStrength=0.8891 [共役の子]
Depth=10 Norm=0.8687 e0=0.8363 e1=-0.2137 e2=-0.0114 e3=0.0612 e4=-0.0056 e5=0.0165 e6=0.0194 e7=-0.0703 N=3.0 Q=1.000 imagStrength=0.2349 [通常の子]
Depth=13 Norm=1.1726 e0=-0.8612 e1=0.7518 e2=0.1338 e3=-0.0267 e4=0.0502 e5=-0.0163 e6=0.1815 e7=0.1170 N=1.0 Q=0.333 imagStrength=0.7958 [通常の子]
Depth=12 Norm=0.7938 e0=-0.7637 e1=0.2085 e2=0.0117 e3=-0.0418 e4=0.0058 e5=-0.0184 e6=-0.0133 e7=0.0317 N=2.0 Q=0.667 imagStrength=0.2166 [共役の子]
Depth=9 Norm=0.6210 e0=-0.4254 e1=0.4463 e2=0.0560 e3=-0.0105 e4=0.0162 e5=-0.0037 e6=0.0144 e7=0.0432 N=3.0 Q=1.000 imagStrength=0.4525 [共役の子]
Depth=12 Norm=0.6279 e0=-0.6123 e1=-0.0391 e2=-0.0025 e3=-0.0776 e4=0.0113 e5=-0.0189 e6=-0.0228 e7=0.1037 N=2.0 Q=0.667 imagStrength=0.1390 [通常の子]
Depth=13 Norm=1.1201 e0=-0.2272 e1=-1.0911 e2=-0.0035 e3=-0.0124 e4=0.0483 e5=-0.0088 e6=0.0806 e7=0.0590 N=1.0 Q=0.333 imagStrength=1.0968 [共役の子]
Depth=13 Norm=1.0697 e0=0.1037 e1=1.0533 e2=0.1066 e3=-0.0127 e4=0.0490 e5=-0.0064 e6=0.0850 e7=0.0533 N=1.0 Q=0.333 imagStrength=1.0647 [共役の子]
Depth=13 Norm=1.1653 e0=0.8977 e1=0.7074 e2=0.0900 e3=-0.0110 e4=0.0439 e5=-0.0303 e6=-0.1335 e7=0.1507 N=1.0 Q=0.333 imagStrength=0.7429 [共役の子]
Depth=12 Norm=0.4595 e0=-0.3567 e1=-0.2713 e2=-0.0140 e3=-0.0715 e4=0.0029 e5=-0.0176 e6=-0.0659 e7=0.0187 N=2.0 Q=0.667 imagStrength=0.2897 [通常の子]
Depth=12 Norm=0.5605 e0=0.5105 e1=0.2081 e2=0.0101 e3=-0.0715 e4=0.0029 e5=-0.0176 e6=-0.0659 e7=0.0187 N=3.0 Q=1.000 imagStrength=0.2314 [共役の子]
Depth=13 Norm=1.1284 e0=0.0569 e1=1.1082 e2=0.1056 e3=-0.0091 e4=0.0456 e5=-0.0055 e6=-0.1471 e7=0.0833 N=1.0 Q=0.333 imagStrength=1.1269 [通常の子]
Depth=11 Norm=0.4389 e0=0.0152 e1=-0.4310 e2=-0.0521 e3=-0.0053 e4=-0.0185 e5=-0.0018 e6=0.0177 e7=-0.0572 N=3.0 Q=1.000 imagStrength=0.4387 [通常の子]
Depth=13 Norm=1.0743 e0=0.5949 e1=0.8688 e2=0.1375 e3=-0.0238 e4=0.0484 e5=-0.0125 e6=-0.0218 e7=0.1513 N=1.0 Q=0.333 imagStrength=0.8945 [共役の子]
Depth=13 Norm=1.2101 e0=1.1943 e1=0.1130 e2=0.0775 e3=-0.0233 e4=0.0092 e5=0.1263 e6=0.0144 e7=-0.0487 N=0.0 Q=0.000 imagStrength=0.1948 [通常の子]
Depth=13 Norm=1.1646 e0=-1.1495 e1=0.1230 e2=0.0785 e3=-0.0207 e4=-0.0026 e5=0.0793 e6=-0.0643 e7=0.0531 N=0.0 Q=0.000 imagStrength=0.1870 [通常の子]
Depth=11 Norm=0.8710 e0=0.8682 e1=-0.0413 e2=-0.0332 e3=-0.0007 e4=0.0128 e5=-0.0422 e6=0.0036 e7=-0.0055 N=3.0 Q=1.000 imagStrength=0.0693 [共役の子]
Depth=12 Norm=0.4886 e0=0.1129 e1=-0.4660 e2=-0.0267 e3=-0.0596 e4=0.0402 e5=0.0072 e6=-0.0277 e7=0.0459 N=3.0 Q=1.000 imagStrength=0.4754 [通常の子]
Depth=12 Norm=0.4509 e0=0.0730 e1=0.4354 e2=0.0185 e3=-0.0596 e4=0.0402 e5=0.0072 e6=-0.0277 e7=0.0459 N=3.0 Q=1.000 imagStrength=0.4450 [共役の子]
Depth=13 Norm=1.2679 e0=1.2531 e1=0.1059 e2=0.0762 e3=-0.0238 e4=0.0014 e5=0.0573 e6=0.0088 e7=0.1276 N=0.0 Q=0.000 imagStrength=0.1929 [共役の子]
Depth=10 Norm=0.6265 e0=-0.5778 e1=-0.2288 e2=-0.0140 e3=0.0548 e4=-0.0360 e5=-0.0121 e6=0.0325 e7=0.0243 N=3.0 Q=1.000 imagStrength=0.2422 [通常の子]
Depth=13 Norm=1.1179 e0=-0.1480 e1=-1.0909 e2=-0.0055 e3=-0.0128 e4=-0.0011 e5=0.0884 e6=-0.1670 e7=0.0428 N=1.0 Q=0.333 imagStrength=1.1081 [通常の子]
Depth=12 Norm=0.5512 e0=0.5012 e1=0.2131 e2=0.0084 e3=-0.0647 e4=0.0437 e5=0.0097 e6=-0.0303 e7=-0.0047 N=2.0 Q=0.667 imagStrength=0.2294 [共役の子]
Depth=9 Norm=0.5217 e0=-0.3721 e1=-0.3627 e2=0.0124 e3=-0.0068 e4=-0.0025 e5=0.0385 e6=0.0087 e7=0.0197 N=3.0 Q=1.000 imagStrength=0.3657 [共役の子]
Depth=12 Norm=0.4540 e0=0.0738 e1=0.4416 e2=0.0198 e3=-0.0411 e4=0.0352 e5=0.0084 e6=-0.0395 e7=-0.0266 N=3.0 Q=1.000 imagStrength=0.4480 [通常の子]
Depth=13 Norm=1.1681 e0=1.0611 e1=0.4467 e2=0.1111 e3=-0.0288 e4=0.0038 e5=0.0677 e6=-0.0204 e7=0.1444 N=0.0 Q=0.000 imagStrength=0.4884 [共役の子]
Depth=13 Norm=1.1560 e0=-0.9305 e1=-0.6708 e2=0.0529 e3=-0.0307 e4=0.0121 e5=0.1011 e6=0.0349 e7=0.0728 N=0.0 Q=0.000 imagStrength=0.6859 [共役の子]
Depth=12 Norm=0.7849 e0=0.7699 e1=-0.0208 e2=-0.0197 e3=-0.0701 e4=-0.0195 e5=-0.0278 e6=-0.0334 e7=0.1233 N=2.0 Q=0.667 imagStrength=0.1523 [共役の子]
Depth=10 Norm=0.8348 e0=-0.8275 e1=0.0079 e2=0.0207 e3=0.0465 e4=0.0229 e5=0.0251 e6=0.0298 e7=-0.0856 N=3.0 Q=1.000 imagStrength=0.1097 [共役の子]
Depth=13 Norm=1.1795 e0=0.4465 e1=-1.0780 e2=-0.0355 e3=-0.0488 e4=0.0515 e5=-0.0852 e6=0.0986 e7=0.0805 N=1.0 Q=0.333 imagStrength=1.0917 [通常の子]
Depth=13 Norm=1.2381 e0=-0.2745 e1=1.1633 e2=0.1276 e3=-0.0652 e4=0.0591 e5=-0.0704 e6=0.2561 e7=0.0979 N=1.0 Q=0.333 imagStrength=1.2072 [共役の子]
Depth=13 Norm=1.3065 e0=0.5089 e1=-1.1674 e2=0.0079 e3=-0.0639 e4=0.0527 e5=-0.0964 e6=0.2134 e7=0.1530 N=1.0 Q=0.333 imagStrength=1.2033 [共役の子]
Depth=12 Norm=0.8904 e0=0.8762 e1=-0.1412 e2=-0.0233 e3=-0.0288 e4=-0.0262 e5=-0.0272 e6=-0.0229 e7=0.0415 N=2.0 Q=0.667 imagStrength=0.1581 [通常の子]
Depth=12 Norm=0.7717 e0=0.6009 e1=-0.4725 e2=-0.0405 e3=-0.0411 e4=-0.0339 e5=-0.0275 e6=-0.0753 e7=0.0176 N=3.0 Q=1.000 imagStrength=0.4842 [通常の子]
Depth=12 Norm=0.6750 e0=-0.4495 e1=0.4939 e2=0.0080 e3=-0.0411 e4=-0.0339 e5=-0.0275 e6=-0.0753 e7=0.0176 N=3.0 Q=1.000 imagStrength=0.5036 [共役の子]
Depth=13 Norm=1.3084 e0=1.0971 e1=-0.6503 e2=0.0142 e3=-0.0553 e4=0.0484 e5=-0.1281 e6=-0.0034 e7=0.2519 N=0.0 Q=0.000 imagStrength=0.7130 [共役の子]
Depth=11 Norm=0.8216 e0=-0.7128 e1=0.4018 e2=-0.0035 e3=0.0266 e4=-0.0296 e5=0.0266 e6=0.0058 e7=-0.0561 N=3.0 Q=1.000 imagStrength=0.4086 [通常の子]
Depth=13 Norm=1.2925 e0=0.4775 e1=-1.1788 e2=-0.0397 e3=-0.0433 e4=0.0441 e5=-0.0977 e6=-0.1435 e7=0.1324 N=1.0 Q=0.333 imagStrength=1.2010 [共役の子]
Depth=13 Norm=1.3037 e0=1.1214 e1=-0.6481 e2=0.0237 e3=-0.0583 e4=0.0565 e5=-0.0634 e6=0.0295 e7=0.1006 N=0.0 Q=0.000 imagStrength=0.6649 [通常の子]
Depth=8 Norm=0.5071 e0=-0.1019 e1=0.4943 e2=0.0002 e3=-0.0118 e4=-0.0101 e5=-0.0025 e6=-0.0467 e7=-0.0003 N=3.0 Q=1.000 imagStrength=0.4967 [通常の子]
Depth=11 Norm=0.5514 e0=0.4219 e1=0.3496 e2=-0.0053 e3=0.0364 e4=0.0211 e5=-0.0333 e6=0.0223 e7=-0.0208 N=3.0 Q=1.000 imagStrength=0.3550 [共役の子]
Depth=13 Norm=1.1817 e0=0.6497 e1=0.9729 e2=0.1056 e3=-0.0674 e4=-0.0188 e5=0.1077 e6=0.0065 e7=0.0103 N=1.0 Q=0.333 imagStrength=0.9871 [通常の子]
Depth=13 Norm=1.1085 e0=-0.7435 e1=-0.8096 e2=0.0150 e3=-0.0655 e4=-0.0275 e5=0.0730 e6=-0.0511 e7=0.0847 N=0.0 Q=0.000 imagStrength=0.8221 [通常の子]
Depth=13 Norm=1.2477 e0=1.2312 e1=0.1020 e2=0.0430 e3=-0.0625 e4=-0.0275 e5=0.0484 e6=-0.0582 e7=0.1356 N=0.0 Q=0.000 imagStrength=0.2026 [共役の子]
Depth=12 Norm=0.4778 e0=0.1081 e1=-0.4579 e2=-0.0462 e3=-0.0422 e4=0.0316 e5=0.0169 e6=-0.0372 e7=0.0191 N=3.0 Q=1.000 imagStrength=0.4654 [通常の子]
Depth=12 Norm=0.4413 e0=0.0742 e1=0.4294 e2=-0.0016 e3=-0.0422 e4=0.0316 e5=0.0169 e6=-0.0372 e7=0.0191 N=3.0 Q=1.000 imagStrength=0.4350 [共役の子]
Depth=12 Norm=0.7867 e0=-0.6368 e1=0.4582 e2=0.0017 e3=-0.0256 e4=0.0354 e5=0.0189 e6=-0.0084 e7=-0.0339 N=3.0 Q=1.000 imagStrength=0.4620 [共役の子]
Depth=10 Norm=0.7886 e0=0.6326 e1=-0.4672 e2=-0.0066 e3=0.0383 e4=-0.0340 e5=-0.0207 e6=0.0197 e7=-0.0014 N=3.0 Q=1.000 imagStrength=0.4709 [共役の子]
Depth=13 Norm=1.2640 e0=-1.2491 e1=0.1214 e2=0.0594 e3=-0.0643 e4=-0.0298 e5=0.0674 e6=-0.0560 e7=0.0796 N=0.0 Q=0.000 imagStrength=0.1931 [通常の子]
Depth=13 Norm=1.2433 e0=1.1979 e1=-0.2859 e2=0.0316 e3=-0.0662 e4=-0.0261 e5=0.0459 e6=0.0013 e7=0.1450 N=0.0 Q=0.000 imagStrength=0.3331 [共役の子]
Depth=13 Norm=1.1898 e0=-1.1787 e1=0.0351 e2=0.0472 e3=-0.0689 e4=-0.0134 e5=0.0967 e6=0.0860 e7=0.0353 N=0.0 Q=0.000 imagStrength=0.1625 [共役の子]
Depth=12 Norm=0.6854 e0=-0.4340 e1=0.5265 e2=0.0033 e3=-0.0373 e4=0.0309 e5=0.0165 e6=-0.0318 e7=0.0239 N=3.0 Q=1.000 imagStrength=0.5305 [通常の子]
Depth=9 Norm=0.8144 e0=-0.7939 e1=-0.0623 e2=-0.0533 e3=-0.1379 e4=0.0099 e5=-0.0694 e6=0.0119 e7=0.0473 N=3.0 Q=1.000 imagStrength=0.1817 [通常の子]
Depth=12 Norm=0.6703 e0=-0.4505 e1=0.4784 e2=-0.0510 e3=0.0436 e4=-0.0860 e5=-0.0195 e6=-0.0578 e7=0.0432 N=3.0 Q=1.000 imagStrength=0.4964 [通常の子]
Depth=13 Norm=1.1766 e0=1.0616 e1=-0.3414 e2=-0.1388 e3=-0.1529 e4=-0.0128 e5=-0.2346 e6=0.0078 e7=0.2068 N=0.0 Q=0.000 imagStrength=0.5072 [共役の子]
Depth=13 Norm=1.1213 e0=-1.0724 e1=0.1310 e2=-0.1147 e3=-0.1555 e4=-0.0003 e5=-0.1857 e6=0.0899 e7=0.1005 N=0.0 Q=0.000 imagStrength=0.3274 [共役の子]
Depth=11 Norm=0.7020 e0=0.6564 e1=0.1838 e2=0.0342 e3=0.1392 e4=-0.0243 e5=0.0764 e6=0.0003 e7=-0.0348 N=3.0 Q=1.000 imagStrength=0.2490 [共役の子]
Depth=13 Norm=1.1736 e0=0.9541 e1=0.6374 e2=-0.0819 e3=-0.1548 e4=-0.0042 e5=-0.1669 e6=0.0244 e7=0.0391 N=0.0 Q=0.000 imagStrength=0.6834 [通常の子]
Depth=13 Norm=1.1079 e0=-0.9747 e1=-0.4107 e2=-0.1357 e3=-0.1522 e4=-0.0159 e5=-0.2124 e6=-0.0521 e7=0.1379 N=0.0 Q=0.000 imagStrength=0.5267 [通常の子]
Depth=13 Norm=1.2131 e0=-0.2529 e1=-1.1156 e2=-0.1446 e3=-0.1675 e4=-0.0068 e5=-0.2125 e6=0.2080 e7=0.1600 N=1.0 Q=0.333 imagStrength=1.1864 [通常の子]
Depth=11 Norm=0.5370 e0=0.2618 e1=0.4298 e2=0.0452 e3=0.1417 e4=-0.0258 e5=0.0803 e6=-0.0727 e7=-0.0248 N=3.0 Q=1.000 imagStrength=0.4689 [通常の子]
Depth=13 Norm=1.2726 e0=-0.9256 e1=-0.8128 e2=-0.1793 e3=-0.1512 e4=-0.0065 e5=-0.1900 e6=0.0904 e7=0.0539 N=1.0 Q=0.333 imagStrength=0.8734 [共役の子]
Depth=12 Norm=0.4486 e0=0.1801 e1=0.3923 e2=-0.0551 e3=0.0340 e4=-0.0760 e5=-0.0174 e6=-0.0186 e7=0.0655 N=3.0 Q=1.000 imagStrength=0.4109 [共役の子]
Depth=10 Norm=0.5031 e0=-0.2727 e1=-0.4027 e2=0.0624 e3=-0.0536 e4=0.0671 e5=0.0168 e6=0.0262 e7=-0.0656 N=3.0 Q=1.000 imagStrength=0.4227 [共役の子]
Depth=13 Norm=1.1993 e0=-0.6453 e1=-0.9568 e2=-0.1793 e3=-0.1478 e4=-0.0172 e5=-0.2104 e6=0.0101 e7=0.0883 N=1.0 Q=0.333 imagStrength=1.0109 [通常の子]
Depth=12 Norm=0.8905 e0=0.8353 e1=-0.2715 e2=-0.0912 e3=0.0682 e4=-0.0552 e5=0.0101 e6=-0.0470 e7=-0.0578 N=3.0 Q=1.000 imagStrength=0.3088 [通常の子]
Depth=12 Norm=0.8392 e0=-0.7558 e1=0.3405 e2=-0.0606 e3=0.0682 e4=-0.0552 e5=0.0101 e6=-0.0470 e7=-0.0578 N=3.0 Q=1.000 imagStrength=0.3646 [共役の子]
Depth=13 Norm=1.2889 e0=0.5069 e1=-1.1439 e2=-0.1532 e3=-0.1673 e4=-0.0572 e5=-0.1195 e6=-0.0521 e7=0.1550 N=1.0 Q=0.333 imagStrength=1.1850 [共役の子]
Depth=11 Norm=0.6177 e0=-0.2783 e1=0.5233 e2=0.0526 e3=0.1470 e4=0.0060 e5=0.0455 e6=0.0413 e7=-0.0451 N=3.0 Q=1.000 imagStrength=0.5514 [通常の子]
Depth=13 Norm=1.3117 e0=-0.2913 e1=-1.2262 e2=-0.2090 e3=-0.1502 e4=-0.0598 e5=-0.0994 e6=-0.2246 e7=0.0438 N=1.0 Q=0.333 imagStrength=1.2789 [共役の子]
Depth=13 Norm=1.2813 e0=0.5223 e1=-1.1388 e2=-0.1469 e3=-0.1708 e4=-0.0518 e5=-0.0913 e6=-0.0314 e7=0.0956 N=1.0 Q=0.333 imagStrength=1.1700 [通常の子]
Depth=9 Norm=0.5128 e0=0.1349 e1=0.4739 e2=-0.0254 e3=-0.1346 e4=-0.0091 e5=-0.0283 e6=0.0068 e7=0.0233 N=3.0 Q=1.000 imagStrength=0.4948 [通常の子]
Depth=12 Norm=0.4520 e0=-0.2587 e1=-0.3449 e2=-0.0962 e3=0.0347 e4=-0.0379 e5=0.0086 e6=0.0056 e7=0.0801 N=3.0 Q=1.000 imagStrength=0.3707 [通常の子]
Depth=13 Norm=1.2554 e0=-0.9415 e1=-0.7863 e2=-0.1763 e3=-0.1559 e4=-0.0531 e5=-0.0777 e6=0.0725 e7=-0.0432 N=1.0 Q=0.333 imagStrength=0.8304 [共役の子]
Depth=13 Norm=1.2493 e0=0.8555 e1=0.8840 e2=-0.0900 e3=-0.1544 e4=-0.0595 e5=-0.1044 e6=0.0282 e7=0.0142 N=1.0 Q=0.333 imagStrength=0.9104 [共役の子]
Depth=11 Norm=0.5768 e0=0.1718 e1=-0.5245 e2=-0.0018 e3=0.1478 e4=0.0052 e5=0.0432 e6=-0.0654 e7=0.0046 N=3.0 Q=1.000 imagStrength=0.5506 [共役の子]
Depth=13 Norm=1.2715 e0=0.0739 e1=-1.2363 e2=-0.2042 e3=-0.1554 e4=-0.0554 e5=-0.1038 e6=0.0507 e7=0.0189 N=1.0 Q=0.333 imagStrength=1.2693 [通常の子]
Depth=13 Norm=1.3306 e0=0.1748 e1=1.3014 e2=-0.0744 e3=-0.1560 e4=-0.0529 e5=-0.0914 e6=0.0708 e7=-0.0071 N=1.0 Q=0.333 imagStrength=1.3190 [通常の子]
Depth=13 Norm=1.1878 e0=-1.1565 e1=-0.2007 e2=-0.0264 e3=-0.0309 e4=-0.0234 e5=0.1273 e6=-0.0537 e7=-0.1081 N=0.0 Q=0.000 imagStrength=0.2706 [共役の子]
Depth=13 Norm=1.2193 e0=1.1639 e1=0.3269 e2=0.0013 e3=-0.0285 e4=-0.0344 e5=0.0832 e6=-0.1275 e7=-0.0126 N=0.0 Q=0.000 imagStrength=0.3636 [共役の子]
Depth=12 Norm=0.4950 e0=0.1669 e1=-0.4616 e2=-0.0380 e3=0.0019 e4=0.0398 e5=0.0194 e6=0.0139 e7=-0.0220 N=3.0 Q=1.000 imagStrength=0.4660 [通常の子]
Depth=13 Norm=1.1915 e0=-1.1566 e1=-0.2637 e2=-0.0177 e3=-0.0364 e4=-0.0298 e5=0.0603 e6=-0.0244 e7=0.0754 N=0.0 Q=0.000 imagStrength=0.2863 [通常の子]
Depth=13 Norm=1.2463 e0=1.2317 e1=0.1329 e2=0.0018 e3=-0.0391 e4=-0.0174 e5=0.1101 e6=0.0590 e7=-0.0325 N=0.0 Q=0.000 imagStrength=0.1901 [通常の子]
Depth=11 Norm=0.7641 e0=-0.7617 e1=-0.0369 e2=-0.0019 e3=0.0293 e4=0.0196 e5=-0.0312 e6=-0.0077 e7=-0.0063 N=3.0 Q=1.000 imagStrength=0.0607 [共役の子]
Depth=11 Norm=0.8209 e0=-0.7173 e1=0.3930 e2=0.0202 e3=0.0269 e4=0.0229 e5=-0.0371 e6=0.0428 e7=0.0015 N=3.0 Q=1.000 imagStrength=0.3991 [通常の子]
Depth=13 Norm=1.2841 e0=0.5063 e1=-1.1585 e2=-0.0871 e3=-0.0243 e4=-0.0341 e5=0.0875 e6=-0.1813 e7=-0.0241 N=1.0 Q=0.333 imagStrength=1.1800 [共役の子]
Depth=13 Norm=1.2960 e0=1.1218 e1=-0.6327 e2=-0.0247 e3=-0.0389 e4=-0.0218 e5=0.1217 e6=-0.0128 e7=-0.0568 N=0.0 Q=0.000 imagStrength=0.6489 [通常の子]
Depth=10 Norm=0.6919 e0=-0.4830 e1=0.4916 e2=0.0357 e3=-0.0039 e4=-0.0356 e5=-0.0196 e6=0.0020 e7=0.0302 N=3.0 Q=1.000 imagStrength=0.4955 [通常の子]
Depth=13 Norm=1.2353 e0=1.2223 e1=0.1317 e2=-0.0052 e3=-0.0363 e4=-0.0190 e5=0.1091 e6=-0.0010 e7=-0.0307 N=0.0 Q=0.000 imagStrength=0.1786 [通常の子]
Depth=12 Norm=0.7860 e0=0.5973 e1=-0.5078 e2=-0.0417 e3=0.0007 e4=0.0328 e5=0.0177 e6=-0.0139 e7=0.0006 N=3.0 Q=1.000 imagStrength=0.5110 [共役の子]
Depth=7 Norm=0.9696 e0=0.9105 e1=-0.3317 e2=0.0219 e3=0.0100 e4=0.0104 e5=0.0104 e6=0.0101 e7=-0.0163 N=3.0 Q=1.000 imagStrength=0.3334 [共役の子]
Depth=13 Norm=1.2330 e0=-0.5540 e1=-1.0741 e2=-0.0359 e3=-0.0381 e4=0.0409 e5=-0.0333 e6=0.2305 e7=0.0334 N=1.0 Q=0.333 imagStrength=1.1016 [共役の子]
Depth=12 Norm=0.6670 e0=0.6434 e1=0.1717 e2=-0.0018 e3=0.0159 e4=-0.0137 e5=-0.0186 e6=0.0071 e7=0.0246 N=2.0 Q=0.667 imagStrength=0.1759 [通常の子]
Depth=12 Norm=0.6807 e0=-0.6732 e1=-0.0917 e2=-0.0150 e3=0.0159 e4=-0.0137 e5=-0.0186 e6=0.0071 e7=0.0246 N=2.0 Q=0.667 imagStrength=0.1004 [共役の子]
Depth=13 Norm=1.2769 e0=0.5027 e1=-1.1450 e2=-0.0361 e3=-0.0395 e4=0.0410 e5=-0.0364 e6=0.2425 e7=0.0463 N=1.0 Q=0.333 imagStrength=1.1738 [通常の子]
Depth=11 Norm=0.6043 e0=-0.2777 e1=0.5315 e2=0.0245 e3=0.0208 e4=-0.0195 e5=0.0113 e6=-0.0626 e7=0.0085 N=3.0 Q=1.000 imagStrength=0.5367 [通常の子]
Depth=13 Norm=1.3086 e0=-0.3025 e1=-1.2668 e2=-0.0974 e3=-0.0197 e4=0.0337 e5=-0.0442 e6=0.0570 e7=-0.0044 N=1.0 Q=0.333 imagStrength=1.2732 [共役の子]
Depth=13 Norm=1.2645 e0=0.7977 e1=-0.9567 e2=-0.0719 e3=-0.0207 e4=0.0286 e5=-0.0757 e6=-0.1323 e7=0.1329 N=1.0 Q=0.333 imagStrength=0.9811 [共役の子]
Depth=13 Norm=1.1915 e0=-0.9045 e1=0.7697 e2=0.0161 e3=-0.0230 e4=0.0390 e5=-0.0340 e6=-0.0625 e7=0.0426 N=0.0 Q=0.000 imagStrength=0.7756 [共役の子]
Depth=12 Norm=0.8838 e0=-0.7930 e1=0.3859 e2=0.0076 e3=-0.0132 e4=-0.0178 e5=-0.0180 e6=-0.0501 e7=0.0092 N=3.0 Q=1.000 imagStrength=0.3904 [通常の子]
Depth=13 Norm=1.2798 e0=0.8423 e1=-0.9424 e2=-0.0838 e3=-0.0161 e4=0.0318 e5=-0.0333 e6=-0.1753 e7=0.0085 N=1.0 Q=0.333 imagStrength=0.9635 [通常の子]
Depth=13 Norm=1.3002 e0=-0.6171 e1=1.1234 e2=0.0227 e3=-0.0151 e4=0.0276 e5=-0.0506 e6=-0.2040 e7=0.0456 N=1.0 Q=0.333 imagStrength=1.1445 [通常の子]
Depth=11 Norm=0.8358 e0=0.6948 e1=-0.4601 e2=-0.0232 e3=0.0198 e4=-0.0189 e5=0.0132 e6=0.0358 e7=-0.0367 N=3.0 Q=1.000 imagStrength=0.4646 [共役の子]
Depth=5 Norm=0.4949 e0=0.2312 e1=0.4331 e2=0.0462 e3=0.0393 e4=-0.0022 e5=0.0031 e6=0.0140 e7=0.0040 N=3.0 Q=1.000 imagStrength=0.4376 [通常の子]
Depth=12 Norm=0.7102 e0=-0.6832 e1=0.0525 e2=-0.0261 e3=0.1226 e4=-0.0044 e5=0.0387 e6=0.0461 e7=-0.1244 N=3.0 Q=1.000 imagStrength=0.1938 [共役の子]
Depth=10 Norm=0.8294 e0=0.8133 e1=-0.0655 e2=0.0247 e3=-0.1046 e4=-0.0059 e5=-0.0355 e6=-0.0417 e7=0.0869 N=3.0 Q=1.000 imagStrength=0.1625 [共役の子]
Depth=13 Norm=1.1605 e0=-0.5498 e1=1.0016 e2=-0.0670 e3=-0.0410 e4=-0.0990 e5=0.0382 e6=-0.1142 e7=-0.1048 N=1.0 Q=0.333 imagStrength=1.0221 [通常の子]
Depth=13 Norm=1.1030 e0=0.3797 e1=-0.9737 e2=-0.2090 e3=-0.0271 e4=-0.1054 e5=0.0246 e6=-0.2346 e7=-0.1147 N=1.0 Q=0.333 imagStrength=1.0356 [共役の子]
Depth=13 Norm=1.0345 e0=-0.4814 e1=0.8639 e2=-0.1149 e3=-0.0285 e4=-0.0993 e5=0.0500 e6=-0.1926 e7=-0.1690 N=1.0 Q=0.333 imagStrength=0.9156 [共役の子]
Depth=12 Norm=0.7605 e0=-0.7224 e1=0.2085 e2=-0.0203 e3=0.0867 e4=0.0002 e5=0.0381 e6=0.0347 e7=-0.0497 N=3.0 Q=1.000 imagStrength=0.2378 [通常の子]
Depth=12 Norm=0.6602 e0=-0.4852 e1=0.4271 e2=-0.0088 e3=0.0962 e4=0.0075 e5=0.0378 e6=0.0792 e7=-0.0304 N=3.0 Q=1.000 imagStrength=0.4477 [通常の子]
Depth=12 Norm=0.6500 e0=0.4547 e1=-0.4417 e2=-0.0523 e3=0.0962 e4=0.0075 e5=0.0378 e6=0.0792 e7=-0.0304 N=3.0 Q=1.000 imagStrength=0.4645 [共役の子]
Depth=13 Norm=1.0196 e0=-0.8349 e1=0.4982 e2=-0.1206 e3=-0.0336 e4=-0.0960 e5=0.0742 e6=-0.0335 e7=-0.2506 N=0.0 Q=0.000 imagStrength=0.5852 [共役の子]
Depth=11 Norm=0.7371 e0=0.6641 e1=-0.3026 e2=0.0361 e3=0.0635 e4=0.0388 e5=-0.0033 e6=0.0128 e7=0.0609 N=3.0 Q=1.000 imagStrength=0.3198 [通常の子]
Depth=13 Norm=1.0363 e0=-0.4751 e1=0.8923 e2=-0.0791 e3=-0.0442 e4=-0.0909 e5=0.0523 e6=0.0856 e7=-0.1598 N=1.0 Q=0.333 imagStrength=0.9210 [共役の子]
Depth=13 Norm=1.0215 e0=-0.8578 e1=0.5121 e2=-0.1245 e3=-0.0330 e4=-0.1014 e5=0.0228 e6=-0.0476 e7=-0.1253 N=0.0 Q=0.000 imagStrength=0.5546 [通常の子]
Depth=8 Norm=0.4825 e0=0.1205 e1=-0.4491 e2=-0.0201 e3=0.1101 e4=0.0018 e5=0.0161 e6=0.0618 e7=-0.0025 N=3.0 Q=1.000 imagStrength=0.4673 [通常の子]
Depth=11 Norm=0.5062 e0=-0.3567 e1=-0.3480 e2=0.0331 e3=0.0539 e4=-0.0100 e5=0.0540 e6=-0.0086 e7=0.0280 N=3.0 Q=1.000 imagStrength=0.3591 [共役の子]
Depth=13 Norm=1.1518 e0=-0.6508 e1=-0.9148 e2=-0.2023 e3=-0.0218 e4=-0.0306 e5=-0.1464 e6=-0.0372 e7=-0.0307 N=1.0 Q=0.333 imagStrength=0.9503 [通常の子]
Depth=13 Norm=1.2255 e0=0.8391 e1=0.8713 e2=-0.1112 e3=-0.0239 e4=-0.0213 e5=-0.1087 e6=0.0258 e7=-0.1123 N=1.0 Q=0.333 imagStrength=0.8931 [通常の子]
Depth=13 Norm=1.0879 e0=-1.0607 e1=-0.0646 e2=-0.1423 e3=-0.0265 e4=-0.0223 e5=-0.0883 e6=0.0222 e7=-0.1561 N=0.0 Q=0.000 imagStrength=0.2414 [共役の子]
Depth=12 Norm=0.5014 e0=-0.1346 e1=0.4673 e2=-0.0009 e3=0.0957 e4=-0.0539 e5=-0.0047 e6=0.0454 e7=-0.0277 N=3.0 Q=1.000 imagStrength=0.4830 [通常の子]
Depth=12 Norm=0.4658 e0=0.0668 e1=-0.4421 e2=-0.0465 e3=0.0957 e4=-0.0539 e5=-0.0047 e6=0.0454 e7=-0.0277 N=3.0 Q=1.000 imagStrength=0.4610 [共役の子]
Depth=12 Norm=0.7338 e0=0.5955 e1=-0.4133 e2=-0.0466 e3=0.0827 e4=-0.0574 e5=-0.0068 e6=0.0197 e7=0.0178 N=3.0 Q=1.000 imagStrength=0.4288 [共役の子]
Depth=10 Norm=0.6552 e0=-0.5061 e1=0.3970 e2=0.0515 e3=-0.0974 e4=0.0481 e5=0.0091 e6=-0.0293 e7=0.0119 N=3.0 Q=1.000 imagStrength=0.4161 [共役の子]
Depth=13 Norm=1.0705 e0=1.0484 e1=-0.0328 e2=-0.1518 e3=-0.0257 e4=-0.0200 e5=-0.1089 e6=0.0241 e7=-0.0954 N=0.0 Q=0.000 imagStrength=0.2162 [通常の子]
Depth=13 Norm=1.0908 e0=-1.0250 e1=0.2984 e2=-0.1288 e3=-0.0246 e4=-0.0224 e5=-0.0867 e6=-0.0167 e7=-0.1573 N=0.0 Q=0.000 imagStrength=0.3732 [共役の子]
Depth=13 Norm=1.1471 e0=1.1095 e1=-0.1733 e2=-0.1528 e3=-0.0220 e4=-0.0341 e5=-0.1330 e6=-0.0947 e7=-0.0563 N=0.0 Q=0.000 imagStrength=0.2913 [共役の子]
Depth=12 Norm=0.6341 e0=0.4537 e1=-0.4242 e2=-0.0458 e3=0.0935 e4=-0.0537 e5=-0.0047 e6=0.0398 e7=-0.0330 N=3.0 Q=1.000 imagStrength=0.4431 [通常の子]
Depth=10 Norm=0.8613 e0=-0.8082 e1=0.2448 e2=0.0647 e3=-0.1226 e4=0.0257 e5=-0.0289 e6=-0.0258 e7=0.0848 N=3.0 Q=1.000 imagStrength=0.2975 [通常の子]
Depth=13 Norm=1.1702 e0=0.9130 e1=-0.6344 e2=-0.2309 e3=-0.0680 e4=-0.1040 e5=-0.0339 e6=-0.2112 e7=-0.1369 N=1.0 Q=0.333 imagStrength=0.7319 [通常の子]
Depth=12 Norm=0.8877 e0=0.8363 e1=-0.2658 e2=-0.0647 e3=0.0968 e4=-0.0348 e5=0.0311 e6=0.0185 e7=-0.0432 N=3.0 Q=1.000 imagStrength=0.2977 [共役の子]
Depth=9 Norm=0.6989 e0=0.5065 e1=-0.4610 e2=-0.1019 e3=-0.0705 e4=-0.0273 e5=-0.0092 e6=-0.0228 e7=-0.0530 N=3.0 Q=1.000 imagStrength=0.4816 [共役の子]
Depth=12 Norm=0.7618 e0=0.7330 e1=0.0479 e2=-0.0471 e3=0.1377 e4=-0.0402 e5=0.0318 e6=0.0304 e7=-0.1268 N=3.0 Q=1.000 imagStrength=0.2076 [通常の子]
Depth=13 Norm=1.2194 e0=0.1839 e1=1.1876 e2=-0.0889 e3=-0.0853 e4=-0.0998 e5=-0.0385 e6=-0.0980 e7=-0.0810 N=1.0 Q=0.333 imagStrength=1.2055 [共役の子]
Depth=13 Norm=1.2741 e0=0.0529 e1=-1.2405 e2=-0.2136 e3=-0.0845 e4=-0.1021 e5=-0.0455 e6=-0.1107 e7=-0.0646 N=1.0 Q=0.333 imagStrength=1.2730 [共役の子]
Depth=13 Norm=1.1706 e0=-0.8665 e1=-0.7189 e2=-0.1934 e3=-0.0846 e4=-0.0968 e5=-0.0174 e6=0.1233 e7=-0.1826 N=1.0 Q=0.333 imagStrength=0.7871 [共役の子]
Depth=12 Norm=0.5047 e0=0.3421 e1=0.3340 e2=-0.0330 e3=0.1281 e4=-0.0306 e5=0.0302 e6=0.0780 e7=-0.0262 N=3.0 Q=1.000 imagStrength=0.3711 [通常の子]
Depth=12 Norm=0.5084 e0=-0.3970 e1=-0.2680 e2=-0.0632 e3=0.1281 e4=-0.0306 e5=0.0302 e6=0.0780 e7=-0.0262 N=3.0 Q=1.000 imagStrength=0.3176 [共役の子]
Depth=13 Norm=1.2089 e0=0.0087 e1=-1.1683 e2=-0.2063 e3=-0.0893 e4=-0.0973 e5=-0.0453 e6=0.1562 e7=-0.1000 N=1.0 Q=0.333 imagStrength=1.2089 [通常の子]
Depth=11 Norm=0.5062 e0=0.0735 e1=0.4769 e2=0.0831 e3=0.1015 e4=0.0294 e5=0.0275 e6=-0.0126 e7=0.0665 N=3.0 Q=1.000 imagStrength=0.5008 [通常の子]
Depth=13 Norm=1.2616 e0=-0.7113 e1=-0.9856 e2=-0.2511 e3=-0.0708 e4=-0.1006 e5=-0.0340 e6=0.0064 e7=-0.1866 N=1.0 Q=0.333 imagStrength=1.0419 [共役の子]
Depth=13 Norm=1.1291 e0=-1.0939 e1=-0.0587 e2=-0.1802 e3=-0.0716 e4=-0.0577 e5=-0.1786 e6=-0.0338 e7=0.0262 N=0.0 Q=0.000 imagStrength=0.2795 [通常の子]
Depth=13 Norm=1.1746 e0=1.1459 e1=-0.0411 e2=-0.1793 e3=-0.0744 e4=-0.0458 e5=-0.1326 e6=0.0440 e7=-0.0744 N=0.0 Q=0.000 imagStrength=0.2579 [通常の子]
Depth=11 Norm=0.7448 e0=-0.7317 e1=0.0344 e2=0.0618 e3=0.0965 e4=-0.0043 e5=0.0692 e6=0.0065 e7=0.0129 N=3.0 Q=1.000 imagStrength=0.1390 [共役の子]
Depth=12 Norm=0.5027 e0=-0.1446 e1=0.4580 e2=-0.0242 e3=0.1145 e4=-0.0688 e5=0.0028 e6=0.0345 e7=-0.0482 N=3.0 Q=1.000 imagStrength=0.4814 [通常の子]
Depth=12 Norm=0.4682 e0=0.0783 e1=-0.4324 e2=-0.0688 e3=0.1145 e4=-0.0688 e5=0.0028 e6=0.0345 e7=-0.0482 N=3.0 Q=1.000 imagStrength=0.4616 [共役の子]
Depth=13 Norm=1.0724 e0=-1.0360 e1=-0.0492 e2=-0.1807 e3=-0.0708 e4=-0.0503 e5=-0.1137 e6=-0.0351 e7=-0.1416 N=0.0 Q=0.000 imagStrength=0.2772 [共役の子]
Depth=10 Norm=0.6578 e0=0.5838 e1=0.2621 e2=0.0678 e3=-0.1165 e4=0.0568 e5=0.0015 e6=-0.0389 e7=-0.0145 N=3.0 Q=1.000 imagStrength=0.3031 [通常の子]
Depth=13 Norm=1.2264 e0=0.2143 e1=1.1803 e2=-0.0920 e3=-0.0832 e4=-0.0477 e5=-0.1432 e6=0.1537 e7=-0.0580 N=1.0 Q=0.333 imagStrength=1.2075 [通常の子]
Depth=12 Norm=0.5170 e0=-0.4098 e1=-0.2722 e2=-0.0614 e3=0.1217 e4=-0.0737 e5=0.0011 e6=0.0358 e7=-0.0047 N=3.0 Q=1.000 imagStrength=0.3153 [共役の子]
Depth=9 Norm=0.5795 e0=0.4586 e1=0.3355 e2=-0.0590 e3=-0.0745 e4=-0.0075 e5=-0.0532 e6=-0.0169 e7=-0.0277 N=3.0 Q=1.000 imagStrength=0.3543 [共役の子]
Depth=12 Norm=0.4566 e0=0.0632 e1=-0.4280 e2=-0.0690 e3=0.0997 e4=-0.0649 e5=0.0026 e6=0.0472 e7=0.0116 N=3.0 Q=1.000 imagStrength=0.4522 [通常の子]
Depth=13 Norm=1.1795 e0=-1.0918 e1=-0.3257 e2=-0.2074 e3=-0.0665 e4=-0.0532 e5=-0.1168 e6=0.0071 e7=-0.1712 N=0.0 Q=0.000 imagStrength=0.4465 [共役の子]
Depth=13 Norm=1.2019 e0=1.0786 e1=0.4580 e2=-0.1666 e3=-0.0643 e4=-0.0635 e5=-0.1580 e6=-0.0618 e7=-0.0821 N=0.0 Q=0.000 imagStrength=0.5303 [共役の子]
Depth=13 Norm=1.1841 e0=-1.0430 e1=-0.4343 e2=-0.0882 e3=0.0285 e4=-0.0760 e5=0.1697 e6=-0.1512 e7=-0.2445 N=1.0 Q=0.333 imagStrength=0.5607 [共役の子]
Depth=13 Norm=1.1996 e0=1.0218 e1=0.5438 e2=-0.0379 e3=0.0305 e4=-0.0856 e5=0.1308 e6=-0.2158 e7=-0.1610 N=1.0 Q=0.333 imagStrength=0.6285 [共役の子]
Depth=12 Norm=0.4264 e0=-0.0233 e1=-0.4092 e2=-0.0181 e3=0.0435 e4=0.0494 e5=0.0414 e6=0.0627 e7=-0.0591 N=3.0 Q=1.000 imagStrength=0.4257 [通常の子]
Depth=13 Norm=1.1913 e0=-1.0632 e1=-0.4961 e2=-0.0773 e3=0.0222 e4=-0.0818 e5=0.1056 e6=-0.1177 e7=-0.0661 N=0.0 Q=0.000 imagStrength=0.5373 [通常の子]
Depth=13 Norm=1.2550 e0=1.1687 e1=0.3808 e2=-0.0328 e3=0.0194 e4=-0.0688 e5=0.1579 e6=-0.0303 e7=-0.1792 N=0.0 Q=0.000 imagStrength=0.4573 [通常の子]
Depth=11 Norm=0.6930 e0=-0.6723 e1=-0.1449 e2=0.0176 e3=0.0006 e4=0.0444 e5=-0.0420 e6=0.0419 e7=0.0391 N=3.0 Q=1.000 imagStrength=0.1683 [共役の子]
Depth=11 Norm=0.8437 e0=-0.7781 e1=0.3008 e2=0.0400 e3=-0.0014 e4=0.0479 e5=-0.0495 e6=0.0775 e7=0.0595 N=3.0 Q=1.000 imagStrength=0.3261 [通常の子]
Depth=13 Norm=1.2713 e0=0.7249 e1=-0.9900 e2=-0.1160 e3=0.0301 e4=-0.0862 e5=0.1309 e6=-0.2117 e7=-0.1640 N=1.0 Q=0.333 imagStrength=1.0444 [共役の子]
Depth=13 Norm=1.2968 e0=1.1987 e1=-0.3873 e2=-0.0580 e3=0.0180 e4=-0.0722 e5=0.1751 e6=-0.0538 e7=-0.2287 N=0.0 Q=0.000 imagStrength=0.4947 [通常の子]
Depth=10 Norm=0.5992 e0=-0.3012 e1=0.5056 e2=0.0169 e3=-0.0487 e4=-0.0457 e5=-0.0378 e6=-0.0570 e7=0.0570 N=3.0 Q=1.000 imagStrength=0.5180 [通常の子]
Depth=13 Norm=1.2423 e0=1.1509 e1=0.3975 e2=-0.0283 e3=0.0175 e4=-0.0681 e5=0.1569 e6=-0.0063 e7=-0.1738 N=0.0 Q=0.000 imagStrength=0.4676 [通常の子]
Depth=12 Norm=0.6936 e0=0.4445 e1=-0.5237 e2=-0.0249 e3=0.0482 e4=0.0426 e5=0.0392 e6=0.0447 e7=-0.0301 N=3.0 Q=1.000 imagStrength=0.5325 [共役の子]
Depth=7 Norm=1.0059 e0=0.9751 e1=-0.2382 e2=0.0107 e3=-0.0416 e4=0.0054 e5=-0.0104 e6=-0.0212 e7=0.0410 N=3.0 Q=1.000 imagStrength=0.2467 [共役の子]
Depth=13 Norm=1.2240 e0=-0.2879 e1=-1.1702 e2=-0.0829 e3=0.0211 e4=0.0026 e5=-0.0229 e6=0.1785 e7=-0.0772 N=1.0 Q=0.333 imagStrength=1.1896 [共役の子]
Depth=12 Norm=0.7481 e0=0.7416 e1=0.0541 e2=0.0114 e3=0.0589 e4=-0.0144 e5=-0.0045 e6=0.0535 e7=-0.0072 N=2.0 Q=0.667 imagStrength=0.0983 [通常の子]
Depth=12 Norm=0.7470 e0=-0.7421 e1=0.0242 e2=0.0099 e3=0.0589 e4=-0.0144 e5=-0.0045 e6=0.0535 e7=-0.0072 N=2.0 Q=0.667 imagStrength=0.0854 [共役の子]
Depth=13 Norm=1.2655 e0=0.7304 e1=-1.0098 e2=-0.0763 e3=0.0218 e4=0.0034 e5=-0.0125 e6=0.1767 e7=-0.1035 N=1.0 Q=0.333 imagStrength=1.0335 [通常の子]
Depth=11 Norm=0.6716 e0=-0.4410 e1=0.5007 e2=0.0475 e3=-0.0117 e4=-0.0030 e5=0.0084 e6=-0.0199 e7=0.0552 N=3.0 Q=1.000 imagStrength=0.5065 [通常の子]
Depth=13 Norm=1.2839 e0=-0.0264 e1=-1.2685 e2=-0.1392 e3=0.0402 e4=-0.0058 e5=-0.0291 e6=-0.0060 e7=-0.1289 N=1.0 Q=0.333 imagStrength=1.2836 [共役の子]
Depth=13 Norm=1.2540 e0=0.9921 e1=-0.7450 e2=-0.0979 e3=0.0367 e4=-0.0090 e5=-0.0593 e6=-0.1365 e7=0.0153 N=0.0 Q=0.000 imagStrength=0.7670 [共役の子]
Depth=13 Norm=1.1850 e0=-1.0526 e1=0.5321 e2=-0.0330 e3=0.0341 e4=0.0028 e5=-0.0121 e6=-0.0577 e7=-0.0866 N=0.0 Q=0.000 imagStrength=0.5444 [共役の子]
Depth=12 Norm=0.8393 e0=-0.7030 e1=0.4556 e2=0.0304 e3=0.0335 e4=-0.0176 e5=-0.0036 e6=0.0028 e7=-0.0186 N=3.0 Q=1.000 imagStrength=0.4586 [通常の子]
Depth=13 Norm=1.2662 e0=1.0068 e1=-0.7223 e2=-0.1115 e3=0.0424 e4=-0.0048 e5=-0.0066 e6=-0.1843 e7=-0.1401 N=1.0 Q=0.333 imagStrength=0.7678 [通常の子]
Depth=13 Norm=1.2705 e0=-0.8232 e1=0.9345 e2=-0.0258 e3=0.0438 e4=-0.0116 e5=-0.0342 e6=-0.2298 e7=-0.0813 N=1.0 Q=0.333 imagStrength=0.9678 [通常の子]
Depth=11 Norm=0.8916 e0=0.8010 e1=-0.3851 e2=0.0049 e3=-0.0124 e4=-0.0021 e5=0.0097 e6=0.0666 e7=0.0164 N=3.0 Q=1.000 imagStrength=0.3916 [共役の子]
Depth=9 Norm=0.7186 e0=-0.6883 e1=-0.1626 e2=-0.0759 e3=-0.0877 e4=-0.0116 e5=-0.0467 e6=-0.0118 e7=-0.0175 N=3.0 Q=1.000 imagStrength=0.2066 [通常の子]
Depth=12 Norm=0.5868 e0=-0.3040 e1=0.4878 e2=-0.0293 e3=0.0905 e4=-0.0689 e5=0.0062 e6=-0.0015 e7=-0.0113 N=3.0 Q=1.000 imagStrength=0.5019 [通常の子]
Depth=13 Norm=1.1517 e0=1.1173 e1=-0.0873 e2=-0.1562 e3=-0.0910 e4=-0.0658 e5=-0.1659 e6=-0.0536 e7=0.0558 N=0.0 Q=0.000 imagStrength=0.2795 [共役の子]
Depth=13 Norm=1.1077 e0=-1.0756 e1=-0.1274 e2=-0.1584 e3=-0.0937 e4=-0.0544 e5=-0.1217 e6=0.0209 e7=-0.0406 N=0.0 Q=0.000 imagStrength=0.2645 [共役の子]
Depth=11 Norm=0.6007 e0=0.5173 e1=0.2696 e2=0.0620 e3=0.1041 e4=0.0042 e5=0.0581 e6=0.0477 e7=0.0139 N=3.0 Q=1.000 imagStrength=0.3053 [共役の子]
Depth=13 Norm=1.1453 e0=0.7652 e1=0.8259 e2=-0.1030 e3=-0.0934 e4=-0.0582 e5=-0.1062 e6=-0.0370 e7=-0.0922 N=1.0 Q=0.333 imagStrength=0.8521 [通常の子]
Depth=13 Norm=1.0739 e0=-0.8285 e1=-0.6252 e2=-0.1775 e3=-0.0909 e4=-0.0683 e5=-0.1449 e6=-0.1024 e7=-0.0076 N=1.0 Q=0.333 imagStrength=0.6832 [通常の子]
Depth=13 Norm=1.1924 e0=-0.0099 e1=-1.1510 e2=-0.1823 e3=-0.1044 e4=-0.0578 e5=-0.1390 e6=0.1732 e7=-0.0150 N=1.0 Q=0.333 imagStrength=1.1924 [通常の子]
Depth=11 Norm=0.5001 e0=0.0883 e1=0.4693 e2=0.0706 e3=0.1059 e4=0.0028 e5=0.0598 e6=-0.0321 e7=0.0351 N=3.0 Q=1.000 imagStrength=0.4922 [通常の子]
Depth=13 Norm=1.2456 e0=-0.7275 e1=-0.9658 e2=-0.2255 e3=-0.0868 e4=-0.0606 e5=-0.1277 e6=0.0287 e7=-0.1008 N=1.0 Q=0.333 imagStrength=1.0111 [共役の子]
Depth=12 Norm=0.4842 e0=0.3530 e1=0.3100 e2=-0.0384 e3=0.0731 e4=-0.0574 e5=0.0071 e6=0.0403 e7=0.0436 N=3.0 Q=1.000 imagStrength=0.3314 [共役の子]
Depth=10 Norm=0.5589 e0=-0.4376 e1=-0.3242 e2=0.0423 e3=-0.0957 e4=0.0502 e5=-0.0044 e6=-0.0353 e7=-0.0328 N=3.0 Q=1.000 imagStrength=0.3478 [共役の子]
Depth=13 Norm=1.1590 e0=-0.4097 e1=-1.0428 e2=-0.2235 e3=-0.0842 e4=-0.0684 e5=-0.1415 e6=-0.0231 e7=-0.0761 N=1.0 Q=0.333 imagStrength=1.0842 [通常の子]
Depth=12 Norm=0.8664 e0=0.7734 e1=-0.3582 e2=-0.0727 e3=0.1032 e4=-0.0516 e5=0.0234 e6=0.0033 e7=-0.0715 N=3.0 Q=1.000 imagStrength=0.3906 [通常の子]
Depth=12 Norm=0.7923 e0=-0.6624 e1=0.4110 e2=-0.0341 e3=0.1032 e4=-0.0516 e5=0.0234 e6=0.0033 e7=-0.0715 N=3.0 Q=1.000 imagStrength=0.4348 [共役の子]
Depth=13 Norm=1.2831 e0=0.7497 e1=-1.0052 e2=-0.1870 e3=-0.0980 e4=-0.0930 e5=-0.1022 e6=-0.0962 e7=0.0331 N=1.0 Q=0.333 imagStrength=1.0414 [共役の子]
Depth=11 Norm=0.6797 e0=-0.4414 e1=0.4924 e2=0.0737 e3=0.1072 e4=0.0218 e5=0.0401 e6=0.0748 e7=0.0072 N=3.0 Q=1.000 imagStrength=0.5168 [通常の子]
Depth=13 Norm=1.2922 e0=-0.0152 e1=-1.2293 e2=-0.2437 e3=-0.0823 e4=-0.0959 e5=-0.0792 e6=-0.2633 e7=-0.0855 N=1.0 Q=0.333 imagStrength=1.2921 [共役の子]
Depth=13 Norm=1.2754 e0=0.7486 e1=-1.0019 e2=-0.1794 e3=-0.1019 e4=-0.0860 e5=-0.0619 e6=-0.0698 e7=-0.0601 N=1.0 Q=0.333 imagStrength=1.0326 [通常の子]
Depth=9 Norm=0.5140 e0=-0.0760 e1=0.4973 e2=-0.0406 e3=-0.0855 e4=-0.0227 e5=-0.0222 e6=-0.0150 e7=-0.0317 N=3.0 Q=1.000 imagStrength=0.5084 [通常の子]
Depth=12 Norm=0.5099 e0=-0.4248 e1=-0.2481 e2=-0.0685 e3=0.0708 e4=-0.0348 e5=0.0222 e6=0.0541 e7=0.0603 N=3.0 Q=1.000 imagStrength=0.2820 [通常の子]
Depth=13 Norm=1.2286 e0=-0.7155 e1=-0.9498 e2=-0.2234 e3=-0.0879 e4=-0.0886 e5=-0.0618 e6=0.0228 e7=-0.1597 N=1.0 Q=0.333 imagStrength=0.9987 [共役の子]
Depth=13 Norm=1.2064 e0=0.6140 e1=1.0126 e2=-0.1222 e3=-0.0872 e4=-0.0923 e5=-0.0782 e6=-0.0038 e7=-0.1253 N=1.0 Q=0.333 imagStrength=1.0384 [共役の子]
Depth=11 Norm=0.6393 e0=0.3523 e1=-0.5165 e2=0.0214 e3=0.1082 e4=0.0211 e5=0.0376 e6=-0.0281 e7=0.0546 N=3.0 Q=1.000 imagStrength=0.5335 [共役の子]
Depth=13 Norm=1.2459 e0=0.3283 e1=-1.1616 e2=-0.2374 e3=-0.0880 e4=-0.0891 e5=-0.0751 e6=0.0085 e7=-0.1316 N=1.0 Q=0.333 imagStrength=1.2018 [通常の子]
Depth=13 Norm=1.2943 e0=-0.0956 e1=1.2703 e2=-0.1128 e3=-0.0879 e4=-0.0887 e5=-0.0722 e6=0.0126 e7=-0.1369 N=1.0 Q=0.333 imagStrength=1.2907 [通常の子]
Depth=12 Norm=0.7788 e0=-0.6501 e1=0.4200 e2=0.0535 e3=-0.0384 e4=0.0432 e5=0.0012 e6=0.0302 e7=0.0204 N=3.0 Q=1.000 imagStrength=0.4289 [通常の子]
Depth=12 Norm=0.7819 e0=0.6297 e1=-0.4584 e2=0.0094 e3=-0.0384 e4=0.0432 e5=0.0012 e6=0.0302 e7=0.0204 N=3.0 Q=1.000 imagStrength=0.4635 [共役の子]
Depth=13 Norm=1.1037 e0=-0.7673 e1=0.7664 e2=0.0912 e3=0.0666 e4=0.0240 e5=0.1115 e6=0.0277 e7=-0.1239 N=1.0 Q=0.333 imagStrength=0.7933 [共役の子]
Depth=11 Norm=0.7254 e0=0.6009 e1=-0.3966 e2=-0.0368 e3=-0.0614 e4=0.0032 e5=-0.0346 e6=-0.0319 e7=0.0195 N=3.0 Q=1.000 imagStrength=0.4062 [通常の子]
Depth=13 Norm=1.1063 e0=-0.2627 e1=1.0464 e2=0.1373 e3=0.0543 e4=0.0279 e5=0.0907 e6=0.1689 e7=-0.0237 N=1.0 Q=0.333 imagStrength=1.0747 [共役の子]
Depth=13 Norm=1.1088 e0=-0.7768 e1=0.7800 e2=0.0869 e3=0.0687 e4=0.0182 e5=0.0674 e6=0.0143 e7=-0.0170 N=0.0 Q=0.000 imagStrength=0.7912 [通常の子]
Depth=9 Norm=0.6034 e0=0.3566 e1=-0.4823 e2=0.0018 e3=0.0575 e4=0.0022 e5=0.0295 e6=-0.0055 e7=-0.0108 N=3.0 Q=1.000 imagStrength=0.4868 [通常の子]
Depth=12 Norm=0.6771 e0=0.6553 e1=0.1323 e2=0.0406 e3=-0.0072 e4=0.0288 e5=0.0021 e6=-0.0102 e7=-0.0942 N=2.0 Q=0.667 imagStrength=0.1704 [通常の子]
Depth=13 Norm=1.1881 e0=0.3868 e1=1.1080 e2=0.1423 e3=0.0580 e4=0.0214 e5=0.0822 e6=-0.0525 e7=0.0297 N=1.0 Q=0.333 imagStrength=1.1234 [共役の子]
Depth=13 Norm=1.2340 e0=-0.1575 e1=-1.2178 e2=0.0229 e3=0.0580 e4=0.0214 e5=0.0822 e6=-0.0524 e7=0.0297 N=1.0 Q=0.333 imagStrength=1.2239 [共役の子]
Depth=11 Norm=0.6570 e0=-0.4866 e1=0.4323 e2=0.0065 e3=-0.0620 e4=0.0034 e5=-0.0329 e6=0.0507 e7=-0.0196 N=3.0 Q=1.000 imagStrength=0.4414 [共役の子]
Depth=13 Norm=1.1706 e0=-0.6430 e1=0.9611 e2=0.1325 e3=0.0583 e4=0.0205 e5=0.0738 e6=-0.0639 e7=0.0473 N=1.0 Q=0.333 imagStrength=0.9782 [通常の子]
Depth=13 Norm=1.1443 e0=0.5357 e1=-1.0040 e2=0.0312 e3=0.0576 e4=0.0233 e5=0.0860 e6=-0.0439 e7=0.0214 N=1.0 Q=0.333 imagStrength=1.0112 [通常の子]
Depth=12 Norm=0.4691 e0=-0.0040 e1=0.4607 e2=0.0552 e3=-0.0350 e4=0.0475 e5=0.0046 e6=0.0340 e7=0.0083 N=3.0 Q=1.000 imagStrength=0.4691 [共役の子]
Depth=10 Norm=0.4876 e0=-0.0795 e1=-0.4735 e2=-0.0604 e3=0.0359 e4=-0.0377 e5=-0.0033 e6=-0.0242 e7=-0.0178 N=3.0 Q=1.000 imagStrength=0.4811 [共役の子]
Depth=13 Norm=1.2267 e0=-0.9010 e1=-0.8229 e2=0.0135 e3=0.0670 e4=0.0083 e5=0.0841 e6=-0.0463 e7=-0.0428 N=0.0 Q=0.000 imagStrength=0.8324 [通常の子]
Depth=13 Norm=1.2546 e0=1.0232 e1=0.6967 e2=0.1214 e3=0.0538 e4=0.0171 e5=0.0758 e6=0.1300 e7=0.0334 N=0.0 Q=0.000 imagStrength=0.7260 [共役の子]
Depth=13 Norm=1.2575 e0=-0.8356 e1=-0.9142 e2=0.0381 e3=0.0523 e4=0.0239 e5=0.1038 e6=0.1767 e7=-0.0270 N=1.0 Q=0.333 imagStrength=0.9398 [共役の子]
Depth=12 Norm=0.4914 e0=0.2589 e1=0.4117 e2=0.0530 e3=-0.0162 e4=0.0385 e5=0.0029 e6=0.0189 e7=0.0055 N=3.0 Q=1.000 imagStrength=0.4177 [通常の子]
Depth=12 Norm=0.7748 e0=0.7670 e1=-0.0121 e2=0.0332 e3=-0.0063 e4=0.0331 e5=0.0053 e6=-0.0081 e7=-0.0982 N=2.0 Q=0.667 imagStrength=0.1101 [通常の子]
Depth=12 Norm=0.7678 e0=-0.7549 e1=0.0853 e2=0.0380 e3=-0.0063 e4=0.0331 e5=0.0053 e6=-0.0081 e7=-0.0982 N=2.0 Q=0.667 imagStrength=0.1399 [共役の子]
Depth=13 Norm=1.2195 e0=-0.1432 e1=-1.2038 e2=0.0230 e3=0.0579 e4=0.0161 e5=0.0942 e6=-0.0618 e7=0.0229 N=1.0 Q=0.333 imagStrength=1.2110 [共役の子]
Depth=11 Norm=0.5111 e0=0.1935 e1=0.4640 e2=0.0082 e3=-0.0612 e4=0.0069 e5=-0.0368 e6=0.0530 e7=-0.0188 N=3.0 Q=1.000 imagStrength=0.4730 [通常の子]
Depth=13 Norm=1.2689 e0=-0.8616 e1=-0.9021 e2=-0.0105 e3=0.0730 e4=0.0151 e5=0.1016 e6=-0.1891 e7=-0.0485 N=1.0 Q=0.333 imagStrength=0.9316 [共役の子]
Depth=13 Norm=1.2105 e0=-0.1486 e1=-1.1941 e2=0.0240 e3=0.0568 e4=0.0157 e5=0.0855 e6=-0.0605 e7=0.0466 N=1.0 Q=0.333 imagStrength=1.2013 [通常の子]
Depth=7 Norm=0.9539 e0=0.9511 e1=0.0705 e2=0.0151 e3=0.0055 e4=0.0049 e5=0.0002 e6=0.0029 e7=-0.0016 N=3.0 Q=1.000 imagStrength=0.0725 [通常の子]
Depth=13 Norm=1.2443 e0=0.4546 e1=-1.1291 e2=-0.0507 e3=-0.0365 e4=0.0322 e5=-0.1386 e6=0.1690 e7=0.1179 N=1.0 Q=0.333 imagStrength=1.1583 [共役の子]
Depth=12 Norm=0.8727 e0=0.8339 e1=-0.2479 e2=-0.0244 e3=0.0123 e4=-0.0488 e5=-0.0244 e6=-0.0146 e7=0.0294 N=3.0 Q=1.000 imagStrength=0.2574 [通常の子]
Depth=12 Norm=0.8210 e0=-0.7566 e1=0.3122 e2=0.0037 e3=0.0123 e4=-0.0488 e5=-0.0244 e6=-0.0146 e7=0.0294 N=3.0 Q=1.000 imagStrength=0.3189 [共役の子]
Depth=13 Norm=1.2738 e0=1.1952 e1=-0.4039 e2=-0.0260 e3=-0.0308 e4=0.0364 e5=-0.0917 e6=0.1390 e7=-0.0146 N=0.0 Q=0.000 imagStrength=0.4404 [通常の子]
Depth=11 Norm=0.8389 e0=-0.7751 e1=0.3146 e2=0.0170 e3=0.0209 e4=-0.0263 e5=0.0409 e6=-0.0298 e7=0.0011 N=3.0 Q=1.000 imagStrength=0.3209 [通常の子]
Depth=13 Norm=1.2492 e0=0.6859 e1=-1.0310 e2=-0.0830 e3=-0.0194 e4=0.0237 e5=-0.1315 e6=-0.0093 e7=0.0411 N=1.0 Q=0.333 imagStrength=1.0440 [共役の子]
Depth=13 Norm=1.2692 e0=1.2456 e1=-0.0546 e2=-0.0166 e3=-0.0271 e4=0.0272 e5=-0.1600 e6=0.0246 e7=0.1684 N=0.0 Q=0.000 imagStrength=0.2435 [共役の子]
Depth=13 Norm=1.2266 e0=-1.1986 e1=-0.1935 e2=-0.0240 e3=-0.0299 e4=0.0399 e5=-0.1095 e6=0.1091 e7=0.0591 N=0.0 Q=0.000 imagStrength=0.2605 [共役の子]
Depth=12 Norm=0.6215 e0=-0.2994 e1=0.5394 e2=0.0152 e3=0.0022 e4=-0.0508 e5=-0.0246 e6=-0.0388 e7=0.0282 N=3.0 Q=1.000 imagStrength=0.5446 [通常の子]
Depth=13 Norm=1.2696 e0=1.2648 e1=-0.0241 e2=-0.0286 e3=-0.0213 e4=0.0334 e5=-0.0880 e6=-0.0193 e7=-0.0328 N=0.0 Q=0.000 imagStrength=0.1103 [通常の子]
Depth=13 Norm=1.2311 e0=-1.1839 e1=0.2816 e2=-0.0122 e3=-0.0187 e4=0.0214 e5=-0.1362 e6=-0.0999 e7=0.0715 N=0.0 Q=0.000 imagStrength=0.3375 [通常の子]
Depth=11 Norm=0.9333 e0=0.9253 e1=-0.1080 e2=-0.0031 e3=0.0203 e4=-0.0261 e5=0.0412 e6=0.0100 e7=-0.0156 N=3.0 Q=1.000 imagStrength=0.1217 [共役の子]
Depth=10 Norm=0.7523 e0=-0.7357 e1=-0.1420 e2=0.0071 e3=-0.0123 e4=-0.0192 e5=-0.0270 e6=0.0058 e7=0.0557 N=3.0 Q=1.000 imagStrength=0.1568 [通常の子]
Depth=13 Norm=1.1850 e0=0.1069 e1=-1.1492 e2=-0.1042 e3=-0.0244 e4=-0.0573 e5=0.0617 e6=-0.2277 e7=-0.0412 N=1.0 Q=0.333 imagStrength=1.1801 [通常の子]
Depth=12 Norm=0.6821 e0=0.6692 e1=0.1238 e2=-0.0115 e3=-0.0053 e4=0.0226 e5=0.0266 e6=-0.0058 e7=-0.0261 N=2.0 Q=0.667 imagStrength=0.1320 [共役の子]
Depth=9 Norm=0.4935 e0=-0.2038 e1=-0.4461 e2=-0.0322 e3=-0.0243 e4=-0.0194 e5=0.0289 e6=-0.0051 e7=-0.0148 N=3.0 Q=1.000 imagStrength=0.4495 [共役の子]
Depth=12 Norm=0.4855 e0=0.2503 e1=0.4082 e2=0.0033 e3=0.0266 e4=0.0134 e5=0.0259 e6=-0.0106 e7=-0.0687 N=3.0 Q=1.000 imagStrength=0.4160 [通常の子]
Depth=13 Norm=1.2399 e0=1.0057 e1=0.7141 e2=0.0391 e3=-0.0427 e4=-0.0530 e5=0.0444 e6=-0.0624 e7=0.0626 N=0.0 Q=0.000 imagStrength=0.7252 [共役の子]
Depth=13 Norm=1.2437 e0=-0.8326 e1=-0.9176 e2=-0.0455 e3=-0.0443 e4=-0.0464 e5=0.0705 e6=-0.0188 e7=0.0062 N=0.0 Q=0.000 imagStrength=0.9239 [共役の子]
Depth=13 Norm=1.2126 e0=-1.1869 e1=0.1693 e2=-0.0056 e3=-0.0381 e4=-0.0465 e5=0.1026 e6=0.0216 e7=-0.1358 N=0.0 Q=0.000 imagStrength=0.2485 [共役の子]
Depth=12 Norm=0.6269 e0=-0.3122 e1=0.5408 e2=0.0098 e3=0.0124 e4=0.0253 e5=0.0261 e6=0.0320 e7=-0.0212 N=3.0 Q=1.000 imagStrength=0.5436 [通常の子]
Depth=12 Norm=0.5830 e0=0.2356 e1=-0.5287 e2=-0.0439 e3=0.0124 e4=0.0253 e5=0.0261 e6=0.0320 e7=-0.0212 N=3.0 Q=1.000 imagStrength=0.5333 [共役の子]
Depth=13 Norm=1.2256 e0=-0.8780 e1=-0.8461 e2=-0.0440 e3=-0.0440 e4=-0.0521 e5=0.0356 e6=0.0672 e7=0.0540 N=0.0 Q=0.000 imagStrength=0.8551 [通常の子]
Depth=11 Norm=0.7413 e0=0.6983 e1=0.2427 e2=0.0148 e3=0.0341 e4=0.0257 e5=-0.0169 e6=-0.0219 e7=0.0105 N=3.0 Q=1.000 imagStrength=0.2486 [通常の子]
Depth=13 Norm=1.2957 e0=-1.2670 e1=-0.2293 e2=-0.0378 e3=-0.0377 e4=-0.0435 e5=0.0808 e6=0.0649 e7=-0.0726 N=0.0 Q=0.000 imagStrength=0.2708 [共役の子]
Depth=11 Norm=0.6916 e0=0.6464 e1=0.1958 e2=0.0602 e3=0.1175 e4=0.0017 e5=0.0627 e6=0.0224 e7=-0.0165 N=3.0 Q=1.000 imagStrength=0.2459 [通常の子]
Depth=13 Norm=1.1750 e0=-1.1386 e1=-0.1418 e2=-0.1820 e3=-0.1023 e4=-0.0570 e5=-0.1132 e6=-0.0555 e7=-0.0355 N=0.0 Q=0.000 imagStrength=0.2900 [共役の子]
Depth=13 Norm=1.1069 e0=-0.7938 e1=-0.7134 e2=-0.1887 e3=-0.1079 e4=-0.0650 e5=-0.1564 e6=-0.0598 e7=0.0811 N=1.0 Q=0.333 imagStrength=0.7714 [通常の子]
Depth=10 Norm=0.5627 e0=-0.4656 e1=-0.2871 e2=0.0510 e3=-0.1032 e4=0.0520 e5=-0.0067 e6=0.0055 e7=0.0374 N=3.0 Q=1.000 imagStrength=0.3160 [通常の子]
Depth=13 Norm=1.1129 e0=-0.3130 e1=-1.0058 e2=-0.2345 e3=-0.0962 e4=-0.0688 e5=-0.1348 e6=-0.2035 e7=-0.0216 N=1.0 Q=0.333 imagStrength=1.0680 [通常の子]
Depth=12 Norm=0.4903 e0=0.3928 e1=0.2705 e2=-0.0471 e3=0.0806 e4=-0.0596 e5=0.0086 e6=-0.0011 e7=-0.0246 N=3.0 Q=1.000 imagStrength=0.2935 [共役の子]
Depth=8 Norm=0.7058 e0=-0.6456 e1=-0.2346 e2=-0.0357 e3=0.1531 e4=-0.0157 e5=0.0260 e6=0.0270 e7=-0.0007 N=3.0 Q=1.000 imagStrength=0.2853 [共役の子]
Depth=11 Norm=0.6197 e0=0.3466 e1=-0.4935 e2=0.0242 e3=0.1186 e4=0.0036 e5=0.0553 e6=-0.0382 e7=0.0332 N=3.0 Q=1.000 imagStrength=0.5137 [共役の子]
Depth=13 Norm=1.1949 e0=0.3294 e1=-1.1066 e2=-0.2418 e3=-0.1011 e4=-0.0613 e5=-0.1277 e6=0.0205 e7=-0.0744 N=1.0 Q=0.333 imagStrength=1.1486 [通常の子]
Depth=13 Norm=1.2427 e0=-0.1002 e1=1.2177 e2=-0.1228 e3=-0.1011 e4=-0.0611 e5=-0.1255 e6=0.0237 e7=-0.0785 N=1.0 Q=0.333 imagStrength=1.2386 [通常の子]
Depth=13 Norm=1.1564 e0=-0.6019 e1=-0.9359 e2=-0.1852 e3=-0.1166 e4=-0.0557 e5=-0.1135 e6=0.1804 e7=-0.0498 N=1.0 Q=0.333 imagStrength=0.9874 [共役の子]
Depth=12 Norm=0.5921 e0=0.5377 e1=0.2052 e2=-0.0495 e3=0.1087 e4=-0.0609 e5=0.0071 e6=0.0362 e7=0.0032 N=3.0 Q=1.000 imagStrength=0.2479 [通常の子]
Depth=12 Norm=0.6024 e0=-0.5701 e1=-0.1287 e2=-0.0663 e3=0.1087 e4=-0.0609 e5=0.0071 e6=0.0362 e7=0.0032 N=3.0 Q=1.000 imagStrength=0.1946 [共役の子]
Depth=13 Norm=1.2461 e0=0.9483 e1=-0.7385 e2=-0.2110 e3=-0.0996 e4=-0.0674 e5=-0.1649 e6=-0.1282 e7=0.0744 N=1.0 Q=0.333 imagStrength=0.8084 [共役の子]
Depth=13 Norm=1.1779 e0=-1.0190 e1=0.5456 e2=-0.1455 e3=-0.1023 e4=-0.0553 e5=-0.1169 e6=-0.0478 e7=-0.0296 N=0.0 Q=0.000 imagStrength=0.5909 [共役の子]
Depth=12 Norm=0.8327 e0=-0.6956 e1=0.4428 e2=-0.0384 e3=0.0840 e4=-0.0672 e5=0.0063 e6=-0.0185 e7=-0.0037 N=3.0 Q=1.000 imagStrength=0.4577 [通常の子]
Depth=13 Norm=1.2583 e0=0.9778 e1=-0.7171 e2=-0.2233 e3=-0.0956 e4=-0.0621 e5=-0.1110 e6=-0.1762 e7=-0.0833 N=1.0 Q=0.333 imagStrength=0.7920 [通常の子]
Depth=13 Norm=1.2638 e0=-0.7855 e1=0.9375 e2=-0.1377 e3=-0.0943 e4=-0.0686 e5=-0.1385 e6=-0.2216 e7=-0.0247 N=1.0 Q=0.333 imagStrength=0.9901 [通常の子]
Depth=11 Norm=0.8796 e0=0.7777 e1=-0.3849 e2=0.0312 e3=0.1165 e4=0.0036 e5=0.0576 e6=0.0539 e7=-0.0039 N=3.0 Q=1.000 imagStrength=0.4110 [共役の子]
Depth=11 Norm=0.5161 e0=0.1109 e1=-0.4832 e2=0.0246 e3=0.1183 e4=0.0028 e5=0.0564 e6=-0.0405 e7=0.0344 N=3.0 Q=1.000 imagStrength=0.5041 [通常の子]
Depth=13 Norm=1.1804 e0=0.5330 e1=1.0158 e2=-0.0803 e3=-0.1188 e4=-0.0557 e5=-0.1306 e6=0.1914 e7=-0.0093 N=1.0 Q=0.333 imagStrength=1.0532 [共役の子]
Depth=13 Norm=1.2277 e0=-0.0906 e1=1.2027 e2=-0.1229 e3=-0.1009 e4=-0.0599 e5=-0.1283 e6=0.0314 e7=-0.0792 N=1.0 Q=0.333 imagStrength=1.2243 [通常の子]
Depth=10 Norm=0.9403 e0=0.9141 e1=-0.1735 e2=0.0563 e3=-0.0995 e4=0.0470 e5=-0.0040 e6=-0.0306 e7=-0.0472 N=3.0 Q=1.000 imagStrength=0.2203 [通常の子]
Depth=13 Norm=1.2752 e0=-0.8173 e1=0.9419 e2=-0.0855 e3=-0.1165 e4=-0.0594 e5=-0.1361 e6=0.1671 e7=-0.0023 N=1.0 Q=0.333 imagStrength=0.9788 [通常の子]
Depth=12 Norm=0.8444 e0=-0.8155 e1=0.1666 e2=-0.0513 e3=0.1108 e4=-0.0626 e5=0.0063 e6=0.0368 e7=0.0021 N=3.0 Q=1.000 imagStrength=0.2190 [共役の子]
Depth=6 Norm=0.9691 e0=0.9132 e1=-0.3203 e2=-0.0440 e3=-0.0192 e4=-0.0026 e5=-0.0032 e6=-0.0072 e7=-0.0119 N=3.0 Q=1.000 imagStrength=0.3242 [共役の子]
Depth=13 Norm=1.2452 e0=0.5081 e1=1.0961 e2=-0.0442 e3=-0.0000 e4=-0.0715 e5=0.1154 e6=-0.1984 e7=-0.1762 N=1.0 Q=0.333 imagStrength=1.1368 [通常の子]
Depth=11 Norm=0.4963 e0=-0.3061 e1=-0.3775 e2=0.0123 e3=0.0270 e4=0.0383 e5=-0.0311 e6=0.0770 e7=0.0301 N=3.0 Q=1.000 imagStrength=0.3907 [通常の子]
Depth=13 Norm=1.1784 e0=0.9819 e1=0.6262 e2=-0.0267 e3=-0.0131 e4=-0.0738 e5=0.0883 e6=-0.1156 e7=-0.0699 N=0.0 Q=0.000 imagStrength=0.6516 [共役の子]
Depth=12 Norm=0.4647 e0=-0.0534 e1=-0.4482 e2=-0.0357 e3=0.0708 e4=0.0225 e5=0.0331 e6=0.0229 e7=-0.0618 N=3.0 Q=1.000 imagStrength=0.4617 [共役の子]
Depth=10 Norm=0.5061 e0=0.2381 e1=0.4330 e2=0.0307 e3=-0.0617 e4=-0.0298 e5=-0.0318 e6=-0.0314 e7=0.0653 N=3.0 Q=1.000 imagStrength=0.4466 [共役の子]
Depth=13 Norm=1.2455 e0=0.7314 e1=0.9954 e2=-0.0132 e3=-0.0170 e4=-0.0632 e5=0.1065 e6=-0.0199 e7=-0.0959 N=1.0 Q=0.333 imagStrength=1.0081 [通常の子]
Depth=13 Norm=1.2692 e0=1.2358 e1=0.0048 e2=-0.0822 e3=-0.0082 e4=-0.0666 e5=0.1362 e6=-0.0683 e7=-0.2220 N=0.0 Q=0.000 imagStrength=0.2894 [通常の子]
Depth=13 Norm=1.2296 e0=-1.1810 e1=0.2508 e2=-0.0690 e3=-0.0056 e4=-0.0793 e5=0.0853 e6=-0.1534 e7=-0.1119 N=0.0 Q=0.000 imagStrength=0.3425 [通常の子]
Depth=11 Norm=0.9247 e0=0.9139 e1=-0.0996 e2=0.0252 e3=0.0280 e4=0.0392 e5=-0.0343 e6=0.0557 e7=0.0521 N=3.0 Q=1.000 imagStrength=0.1410 [共役の子]
Depth=12 Norm=0.5491 e0=0.2035 e1=-0.5026 e2=-0.0396 e3=0.0555 e4=0.0273 e5=0.0318 e6=0.0331 e7=-0.0000 N=3.0 Q=1.000 imagStrength=0.5100 [通常の子]
Depth=12 Norm=0.4856 e0=-0.0098 e1=0.4792 e2=0.0097 e3=0.0555 e4=0.0273 e5=0.0318 e6=0.0331 e7=-0.0000 N=3.0 Q=1.000 imagStrength=0.4855 [共役の子]
Depth=13 Norm=1.3265 e0=1.3190 e1=-0.0232 e2=-0.0788 e3=-0.0112 e4=-0.0743 e5=0.0607 e6=-0.0577 e7=-0.0230 N=0.0 Q=0.000 imagStrength=0.1412 [共役の子]
Depth=9 Norm=0.7700 e0=-0.6160 e1=0.4601 e2=-0.0072 e3=-0.0089 e4=0.0111 e5=-0.0367 e6=-0.0090 e7=-0.0074 N=3.0 Q=1.000 imagStrength=0.4620 [通常の子]
Depth=12 Norm=0.7652 e0=-0.7574 e1=0.0550 e2=-0.0058 e3=0.0274 e4=-0.0331 e5=-0.0176 e6=0.0202 e7=0.0786 N=2.0 Q=0.667 imagStrength=0.1086 [通常の子]
Depth=13 Norm=1.2274 e0=-0.0103 e1=-1.2114 e2=-0.1605 e3=0.0063 e4=0.0120 e5=-0.1009 e6=0.0183 e7=-0.0491 N=1.0 Q=0.333 imagStrength=1.2274 [共役の子]
Depth=13 Norm=1.1675 e0=-0.1288 e1=1.1532 e2=-0.0397 e3=0.0057 e4=0.0147 e5=-0.0895 e6=0.0369 e7=-0.0731 N=1.0 Q=0.333 imagStrength=1.1603 [共役の子]
Depth=11 Norm=0.8674 e0=0.7720 e1=-0.3911 e2=0.0087 e3=0.0164 e4=-0.0177 e5=0.0319 e6=-0.0226 e7=0.0343 N=3.0 Q=1.000 imagStrength=0.3954 [共役の子]
Depth=13 Norm=1.2435 e0=0.9671 e1=-0.7571 e2=-0.1360 e3=0.0072 e4=0.0144 e5=-0.0737 e6=0.0265 e7=-0.1133 N=0.0 Q=0.000 imagStrength=0.7816 [通常の子]
Depth=13 Norm=1.2509 e0=-0.7876 e1=0.9636 e2=-0.0469 e3=0.0087 e4=0.0083 e5=-0.0986 e6=-0.0146 e7=-0.0602 N=1.0 Q=0.333 imagStrength=0.9718 [通常の子]
Depth=13 Norm=1.2137 e0=-1.1938 e1=-0.1109 e2=-0.0869 e3=0.0035 e4=0.0084 e5=-0.1288 e6=-0.0641 e7=0.0849 N=0.0 Q=0.000 imagStrength=0.2187 [通常の子]
Depth=11 Norm=0.9247 e0=0.9183 e1=-0.0925 e2=0.0251 e3=0.0170 e4=-0.0208 e5=0.0403 e6=0.0034 e7=-0.0132 N=3.0 Q=1.000 imagStrength=0.1082 [通常の子]
Depth=13 Norm=1.2654 e0=-1.1254 e1=0.5693 e2=-0.0480 e3=-0.0010 e4=0.0219 e5=-0.0765 e6=0.0374 e7=-0.0242 N=0.0 Q=0.000 imagStrength=0.5786 [共役の子]
Depth=12 Norm=0.8420 e0=-0.7138 e1=0.4349 e2=0.0162 e3=0.0636 e4=-0.0403 e5=-0.0146 e6=0.0098 e7=-0.0640 N=3.0 Q=1.000 imagStrength=0.4467 [共役の子]
Depth=10 Norm=0.8583 e0=0.7302 e1=-0.4452 e2=-0.0111 e3=-0.0545 e4=0.0365 e5=0.0177 e6=0.0021 e7=0.0241 N=3.0 Q=1.000 imagStrength=0.4511 [共役の子]
Depth=13 Norm=1.2990 e0=-1.2546 e1=0.2973 e2=-0.0518 e3=0.0016 e4=0.0058 e5=-0.1075 e6=-0.1000 e7=0.0240 N=0.0 Q=0.000 imagStrength=0.3365 [通常の子]
Depth=8 Norm=0.7121 e0=-0.6849 e1=-0.1794 e2=-0.0305 e3=-0.0433 e4=-0.0052 e5=-0.0106 e6=-0.0530 e7=-0.0062 N=3.0 Q=1.000 imagStrength=0.1949 [通常の子]
Depth=11 Norm=0.6237 e0=0.4129 e1=-0.4565 e2=-0.0557 e3=0.0003 e4=-0.0268 e5=0.0053 e6=-0.0752 e7=-0.0259 N=3.0 Q=1.000 imagStrength=0.4675 [共役の子]
Depth=13 Norm=1.1294 e0=0.4420 e1=-1.0308 e2=-0.0034 e3=-0.0192 e4=0.0607 e5=-0.0331 e6=0.0769 e7=0.0812 N=1.0 Q=0.333 imagStrength=1.0393 [通常の子]
Depth=13 Norm=1.1712 e0=-0.2209 e1=1.1372 e2=0.1081 e3=-0.0189 e4=0.0600 e5=-0.0353 e6=0.0728 e7=0.0866 N=1.0 Q=0.333 imagStrength=1.1502 [通常の子]
Depth=13 Norm=1.0968 e0=-0.4677 e1=-0.9545 e2=0.0456 e3=-0.0352 e4=0.0667 e5=-0.0269 e6=0.2245 e7=0.1198 N=1.0 Q=0.333 imagStrength=0.9921 [共役の子]
Depth=12 Norm=0.5999 e0=0.5776 e1=0.1456 e2=0.0056 e3=-0.0438 e4=-0.0049 e5=-0.0253 e6=-0.0293 e7=0.0398 N=2.0 Q=0.667 imagStrength=0.1621 [通常の子]
Depth=12 Norm=0.6065 e0=-0.5976 e1=-0.0755 e2=-0.0055 e3=-0.0438 e4=-0.0049 e5=-0.0253 e6=-0.0293 e7=0.0398 N=2.0 Q=0.667 imagStrength=0.1037 [共役の子]
Depth=12 Norm=0.4104 e0=-0.1205 e1=-0.3801 e2=-0.0212 e3=-0.0496 e4=-0.0122 e5=-0.0248 e6=-0.0756 e7=-0.0073 N=3.0 Q=1.000 imagStrength=0.3923 [共役の子]
Depth=10 Norm=0.4753 e0=0.2821 e1=0.3702 e2=0.0228 e3=0.0588 e4=0.0105 e5=0.0208 e6=0.0690 e7=0.0053 N=3.0 Q=1.000 imagStrength=0.3826 [共役の子]
Depth=13 Norm=1.1252 e0=0.5881 e1=0.9321 e2=0.1304 e3=-0.0309 e4=0.0676 e5=-0.0311 e6=0.0452 e7=0.1610 N=1.0 Q=0.333 imagStrength=0.9593 [通常の子]
Depth=13 Norm=1.0865 e0=-0.7553 e1=-0.7640 e2=0.0111 e3=-0.0172 e4=0.0596 e5=-0.0251 e6=-0.1121 e7=0.0954 N=0.0 Q=0.000 imagStrength=0.7810 [共役の子]
Depth=13 Norm=1.0738 e0=0.6587 e1=0.8164 e2=0.0926 e3=-0.0160 e4=0.0549 e5=-0.0435 e6=-0.1432 e7=0.1357 N=1.0 Q=0.333 imagStrength=0.8480 [共役の子]
Depth=12 Norm=0.4134 e0=-0.2965 e1=-0.2693 e2=-0.0160 e3=-0.0714 e4=-0.0043 e5=-0.0235 e6=-0.0664 e7=0.0107 N=2.0 Q=0.667 imagStrength=0.2880 [通常の子]
Depth=11 Norm=0.8224 e0=-0.7826 e1=0.2466 e2=-0.0186 e3=0.0064 e4=0.0153 e5=-0.0442 e6=0.0127 e7=-0.0201 N=3.0 Q=1.000 imagStrength=0.2529 [通常の子]
Depth=13 Norm=1.2036 e0=0.7933 e1=-0.8909 e2=0.0167 e3=-0.0267 e4=-0.0068 e5=0.0906 e6=-0.1096 e7=0.0647 N=1.0 Q=0.333 imagStrength=0.9051 [共役の子]
Depth=13 Norm=1.2368 e0=1.2039 e1=-0.2368 e2=0.0690 e3=-0.0359 e4=0.0058 e5=0.1329 e6=0.0205 e7=-0.0059 N=0.0 Q=0.000 imagStrength=0.2833 [通常の子]
Depth=10 Norm=0.5316 e0=-0.1953 e1=0.4879 e2=0.0259 e3=0.0558 e4=-0.0413 e5=-0.0144 e6=0.0280 e7=-0.0014 N=3.0 Q=1.000 imagStrength=0.4945 [通常の子]
Depth=13 Norm=1.1841 e0=1.0633 e1=0.4876 e2=0.1006 e3=-0.0379 e4=0.0096 e5=0.1137 e6=0.0786 e7=0.0543 N=0.0 Q=0.000 imagStrength=0.5210 [通常の子]
Depth=12 Norm=0.6089 e0=0.3354 e1=-0.5006 e2=-0.0321 e3=-0.0525 e4=0.0409 e5=0.0102 e6=-0.0393 e7=0.0219 N=3.0 Q=1.000 imagStrength=0.5081 [共役の子]
Depth=8 Norm=0.4783 e0=-0.0827 e1=0.4658 e2=0.0067 e3=-0.0433 e4=-0.0052 e5=-0.0106 e6=-0.0530 e7=-0.0062 N=3.0 Q=1.000 imagStrength=0.4711 [共役の子]
Depth=11 Norm=0.5172 e0=0.3899 e1=0.3345 e2=-0.0138 e3=0.0062 e4=0.0150 e5=-0.0428 e6=0.0208 e7=-0.0294 N=3.0 Q=1.000 imagStrength=0.3398 [共役の子]
Depth=13 Norm=1.1186 e0=0.6005 e1=0.9250 e2=0.1320 e3=-0.0363 e4=0.0044 e5=0.1237 e6=0.0001 e7=0.0321 N=1.0 Q=0.333 imagStrength=0.9438 [通常の子]
Depth=13 Norm=1.0456 e0=-0.6866 e1=-0.7728 e2=0.0457 e3=-0.0345 e4=-0.0035 e5=0.0916 e6=-0.0531 e7=0.1009 N=0.0 Q=0.000 imagStrength=0.7886 [通常の子]
Depth=13 Norm=1.1843 e0=1.1633 e1=0.1115 e2=0.0731 e3=-0.0316 e4=-0.0036 e5=0.0687 e6=-0.0623 e7=0.1478 N=0.0 Q=0.000 imagStrength=0.2219 [共役の子]
Depth=12 Norm=0.4488 e0=0.0906 e1=-0.4301 e2=-0.0287 e3=-0.0573 e4=0.0417 e5=0.0106 e6=-0.0448 e7=0.0171 N=3.0 Q=1.000 imagStrength=0.4396 [通常の子]
Depth=12 Norm=0.4186 e0=0.0842 e1=0.4006 e2=0.0130 e3=-0.0573 e4=0.0417 e5=0.0106 e6=-0.0448 e7=0.0171 N=3.0 Q=1.000 imagStrength=0.4100 [共役の子]
Depth=13 Norm=1.2151 e0=0.0507 e1=1.1689 e2=0.1615 e3=-0.0316 e4=0.0696 e5=-0.0211 e6=0.2483 e7=0.1169 N=1.0 Q=0.333 imagStrength=1.2141 [通常の子]
Depth=13 Norm=1.1546 e0=-0.1890 e1=-1.1029 e2=0.0449 e3=-0.0310 e4=0.0663 e5=-0.0353 e6=0.2254 e7=0.1465 N=1.0 Q=0.333 imagStrength=1.1390 [通常の子]
Depth=11 Norm=0.4893 e0=-0.0215 e1=0.4812 e2=-0.0096 e3=-0.0044 e4=-0.0269 e5=0.0025 e6=-0.0783 e7=-0.0214 N=3.0 Q=1.000 imagStrength=0.4888 [共役の子]
Depth=12 Norm=0.8162 e0=-0.7964 e1=0.0979 e2=0.0038 e3=-0.0842 e4=0.0049 e5=-0.0261 e6=-0.0325 e7=0.1161 N=3.0 Q=1.000 imagStrength=0.1786 [通常の子]
Depth=12 Norm=0.9053 e0=0.8754 e1=-0.1757 e2=-0.0099 e3=-0.0842 e4=0.0049 e5=-0.0261 e6=-0.0325 e7=0.1161 N=3.0 Q=1.000 imagStrength=0.2308 [共役の子]
Depth=13 Norm=1.2243 e0=0.1122 e1=1.2069 e2=0.1127 e3=-0.0135 e4=0.0628 e5=-0.0276 e6=0.0826 e7=0.0724 N=1.0 Q=0.333 imagStrength=1.2191 [共役の子]
Depth=10 Norm=0.7983 e0=-0.6740 e1=0.4161 e2=0.0226 e3=0.0607 e4=0.0091 e5=0.0209 e6=0.0710 e7=0.0115 N=3.0 Q=1.000 imagStrength=0.4278 [通常の子]
Depth=13 Norm=1.2124 e0=1.1777 e1=-0.2419 e2=0.0481 e3=-0.0174 e4=0.0686 e5=-0.0225 e6=-0.0354 e7=0.1245 N=0.0 Q=0.000 imagStrength=0.2883 [通常の子]
Depth=12 Norm=0.8661 e0=0.7423 e1=-0.4308 e2=-0.0222 e3=-0.0715 e4=-0.0067 e5=-0.0253 e6=-0.0816 e7=0.0253 N=3.0 Q=1.000 imagStrength=0.4463 [共役の子]
Depth=9 Norm=0.8926 e0=0.8053 e1=-0.3790 e2=0.0130 e3=-0.0133 e4=0.0219 e5=-0.0132 e6=0.0135 e7=0.0576 N=3.0 Q=1.000 imagStrength=0.3849 [共役の子]
Depth=12 Norm=0.9000 e0=0.8787 e1=-0.1689 e2=-0.0071 e3=-0.0403 e4=-0.0085 e5=-0.0234 e6=-0.0630 e7=-0.0557 N=3.0 Q=1.000 imagStrength=0.1947 [通常の子]
Depth=13 Norm=1.2467 e0=-0.3409 e1=1.1789 e2=0.1561 e3=-0.0267 e4=0.0669 e5=-0.0157 e6=0.0064 e7=0.1350 N=1.0 Q=0.333 imagStrength=1.1992 [共役の子]
Depth=13 Norm=1.3172 e0=0.5602 e1=-1.1726 e2=0.0357 e3=-0.0252 e4=0.0602 e5=-0.0431 e6=-0.0386 e7=0.1932 N=1.0 Q=0.333 imagStrength=1.1922 [共役の子]
Depth=13 Norm=1.2096 e0=0.9574 e1=0.7165 e2=0.1042 e3=-0.0247 e4=0.0040 e5=0.1394 e6=-0.0405 e7=-0.0252 N=0.0 Q=0.000 imagStrength=0.7393 [通常の子]
Depth=11 Norm=0.6470 e0=-0.6218 e1=-0.1653 e2=-0.0402 e3=0.0020 e4=0.0163 e5=-0.0474 e6=0.0139 e7=-0.0197 N=3.0 Q=1.000 imagStrength=0.1790 [通常の子]
Depth=13 Norm=1.1413 e0=1.1281 e1=0.0336 e2=0.0871 e3=-0.0285 e4=-0.0048 e5=0.0966 e6=-0.0580 e7=0.0871 N=0.0 Q=0.000 imagStrength=0.1727 [共役の子]
Depth=12 Norm=0.6004 e0=0.3322 e1=-0.4923 e2=-0.0294 e3=-0.0542 e4=0.0444 e5=0.0110 e6=-0.0382 e7=0.0196 N=3.0 Q=1.000 imagStrength=0.5001 [共役の子]
Depth=10 Norm=0.5237 e0=-0.1938 e1=0.4794 e2=0.0228 e3=0.0578 e4=-0.0443 e5=-0.0151 e6=0.0271 e7=0.0006 N=3.0 Q=1.000 imagStrength=0.4865 [共役の子]
Depth=13 Norm=1.1643 e0=1.0457 e1=0.4766 e2=0.1042 e3=-0.0331 e4=0.0099 e5=0.1218 e6=0.0731 e7=0.0514 N=0.0 Q=0.000 imagStrength=0.5119 [通常の子]
Depth=13 Norm=1.2227 e0=1.0681 e1=-0.5697 e2=0.0283 e3=-0.0209 e4=0.0019 e5=0.1338 e6=-0.1013 e7=-0.0133 N=0.0 Q=0.000 imagStrength=0.5951 [通常の子]
Depth=13 Norm=1.2173 e0=-0.9088 e1=0.7801 e2=0.0976 e3=-0.0189 e4=-0.0061 e5=0.1021 e6=-0.1546 e7=0.0557 N=1.0 Q=0.333 imagStrength=0.8099 [通常の子]
Depth=11 Norm=0.8893 e0=0.8276 e1=-0.3163 e2=-0.0474 e3=0.0020 e4=0.0161 e5=-0.0466 e6=0.0237 e7=-0.0273 N=3.0 Q=1.000 imagStrength=0.3256 [共役の子]
Depth=12 Norm=0.7313 e0=0.5536 e1=-0.4703 e2=-0.0282 e3=-0.0499 e4=0.0429 e5=0.0112 e6=-0.0434 e7=0.0010 N=3.0 Q=1.000 imagStrength=0.4779 [通常の子]
Depth=12 Norm=0.6318 e0=-0.3957 e1=0.4857 e2=0.0197 e3=-0.0499 e4=0.0429 e5=0.0112 e6=-0.0434 e7=0.0010 N=3.0 Q=1.000 imagStrength=0.4925 [共役の子]
Depth=13 Norm=1.2712 e0=1.1128 e1=-0.5827 e2=0.0543 e3=-0.0319 e4=-0.0018 e5=0.0733 e6=-0.0243 e7=0.1677 N=0.0 Q=0.000 imagStrength=0.6145 [共役の子]
Depth=7 Norm=0.6518 e0=0.5506 e1=0.3426 e2=0.0525 e3=0.0202 e4=0.0051 e5=0.0103 e6=0.0207 e7=-0.0240 N=3.0 Q=1.000 imagStrength=0.3488 [通常の子]
Depth=13 Norm=1.2380 e0=0.9905 e1=-0.6423 e2=-0.0990 e3=-0.1255 e4=0.0212 e5=-0.2232 e6=0.0673 e7=0.2420 N=1.0 Q=0.333 imagStrength=0.7426 [共役の子]
Depth=12 Norm=0.7384 e0=0.5862 e1=-0.4265 e2=-0.0782 e3=0.0235 e4=-0.0778 e5=-0.0295 e6=-0.0654 e7=0.0445 N=3.0 Q=1.000 imagStrength=0.4491 [通常の子]
Depth=12 Norm=0.6484 e0=-0.4464 e1=0.4542 e2=-0.0340 e3=0.0235 e4=-0.0778 e5=-0.0295 e6=-0.0654 e7=0.0445 N=3.0 Q=1.000 imagStrength=0.4703 [共役の子]
Depth=13 Norm=1.2453 e0=1.1820 e1=0.3281 e2=-0.0615 e3=-0.1201 e4=0.0280 e5=-0.1522 e6=0.0355 e7=0.0489 N=0.0 Q=0.000 imagStrength=0.3917 [通常の子]
Depth=11 Norm=0.7822 e0=-0.7700 e1=0.0188 e2=0.0123 e3=0.1040 e4=-0.0340 e5=0.0678 e6=-0.0145 e7=-0.0418 N=3.0 Q=1.000 imagStrength=0.1379 [通常の子]
Depth=13 Norm=1.1882 e0=1.0735 e1=-0.4092 e2=-0.0978 e3=-0.1178 e4=0.0155 e5=-0.2023 e6=-0.0446 e7=0.1591 N=0.0 Q=0.000 imagStrength=0.5093 [共役の子]
Depth=13 Norm=1.2502 e0=1.0108 e1=0.6351 e2=-0.0177 e3=-0.1321 e4=0.0240 e5=-0.2128 e6=0.1599 e7=0.2206 N=1.0 Q=0.333 imagStrength=0.7357 [共役の子]
Depth=13 Norm=1.2494 e0=-0.8582 e1=-0.8340 e2=-0.0926 e3=-0.1339 e4=0.0322 e5=-0.1815 e6=0.2122 e7=0.1530 N=1.0 Q=0.333 imagStrength=0.9080 [共役の子]
Depth=12 Norm=0.4852 e0=0.2142 e1=0.4193 e2=-0.0357 e3=0.0304 e4=-0.0776 e5=-0.0292 e6=-0.0528 e7=0.0434 N=3.0 Q=1.000 imagStrength=0.4354 [通常の子]
Depth=13 Norm=1.2395 e0=1.0229 e1=0.6591 e2=-0.0348 e3=-0.1239 e4=0.0282 e5=-0.1540 e6=0.1094 e7=0.0518 N=0.0 Q=0.000 imagStrength=0.7001 [通常の子]
Depth=13 Norm=1.1738 e0=-1.0512 e1=-0.4268 e2=-0.0905 e3=-0.1211 e4=0.0156 e5=-0.2037 e6=0.0261 e7=0.1595 N=0.0 Q=0.000 imagStrength=0.5223 [通常の子]
Depth=11 Norm=0.7407 e0=0.7019 e1=0.1922 e2=0.0204 e3=0.1039 e4=-0.0336 e5=0.0676 e6=-0.0343 e7=-0.0316 N=3.0 Q=1.000 imagStrength=0.2367 [共役の子]
Depth=10 Norm=0.9003 e0=-0.8798 e1=0.1585 e2=0.0710 e3=-0.0346 e4=0.0185 e5=-0.0136 e6=0.0509 e7=0.0448 N=3.0 Q=1.000 imagStrength=0.1910 [通常の子]
Depth=13 Norm=1.2088 e0=0.7838 e1=-0.8764 e2=-0.1442 e3=-0.1228 e4=-0.0427 e5=-0.0401 e6=-0.1899 e7=0.0580 N=1.0 Q=0.333 imagStrength=0.9203 [通常の子]
Depth=12 Norm=0.8923 e0=0.8695 e1=-0.1763 e2=-0.0716 e3=0.0094 e4=-0.0228 e5=0.0110 e6=-0.0568 e7=-0.0030 N=3.0 Q=1.000 imagStrength=0.2005 [共役の子]
Depth=9 Norm=0.6331 e0=0.3550 e1=-0.5090 e2=-0.0589 e3=-0.1061 e4=-0.0076 e5=-0.0091 e6=0.0044 e7=0.0289 N=3.0 Q=1.000 imagStrength=0.5242 [共役の子]
Depth=12 Norm=0.7070 e0=0.6780 e1=0.1553 e2=-0.0531 e3=0.0525 e4=-0.0300 e5=0.0116 e6=-0.0487 e7=-0.0841 N=3.0 Q=1.000 imagStrength=0.2004 [通常の子]
Depth=13 Norm=1.2641 e0=0.4299 e1=1.1705 e2=0.0150 e3=-0.1413 e4=-0.0383 e5=-0.0455 e6=-0.0432 e7=0.1322 N=1.0 Q=0.333 imagStrength=1.1888 [共役の子]
Depth=13 Norm=1.3083 e0=-0.2017 e1=-1.2715 e2=-0.1104 e3=-0.1414 e4=-0.0379 e5=-0.0445 e6=-0.0415 e7=0.1300 N=1.0 Q=0.333 imagStrength=1.2927 [共役の子]
Depth=13 Norm=1.2148 e0=-1.0681 e1=-0.5325 e2=-0.0854 e3=-0.1386 e4=-0.0337 e5=-0.0154 e6=0.1529 e7=-0.0064 N=0.0 Q=0.000 imagStrength=0.5787 [共役の子]
Depth=12 Norm=0.4764 e0=0.1929 e1=0.4313 e2=-0.0394 e3=0.0400 e4=-0.0192 e5=0.0099 e6=0.0015 e7=0.0128 N=3.0 Q=1.000 imagStrength=0.4356 [通常の子]
Depth=12 Norm=0.4686 e0=-0.2704 e1=-0.3713 e2=-0.0797 e3=0.0400 e4=-0.0192 e5=0.0099 e6=0.0015 e7=0.0128 N=3.0 Q=1.000 imagStrength=0.3827 [共役の子]
Depth=13 Norm=1.2506 e0=-0.2391 e1=-1.1912 e2=-0.1051 e3=-0.1444 e4=-0.0360 e5=-0.0550 e6=0.1968 e7=0.1140 N=1.0 Q=0.333 imagStrength=1.2276 [通常の子]
Depth=11 Norm=0.5424 e0=0.2505 e1=0.4610 e2=0.0346 e3=0.1157 e4=0.0067 e5=0.0220 e6=-0.0601 e7=-0.0094 N=3.0 Q=1.000 imagStrength=0.4810 [通常の子]
Depth=13 Norm=1.3111 e0=-0.9460 e1=-0.8831 e2=-0.1403 e3=-0.1279 e4=-0.0362 e5=-0.0344 e6=0.0731 e7=0.0102 N=1.0 Q=0.333 imagStrength=0.9077 [共役の子]
Depth=12 Norm=0.5605 e0=-0.2529 e1=0.4961 e2=0.0283 e3=-0.0178 e4=0.0481 e5=0.0103 e6=0.0064 e7=-0.0238 N=3.0 Q=1.000 imagStrength=0.5002 [通常の子]
Depth=12 Norm=0.5209 e0=0.1841 e1=-0.4834 e2=-0.0209 e3=-0.0178 e4=0.0481 e5=0.0103 e6=0.0064 e7=-0.0238 N=3.0 Q=1.000 imagStrength=0.4873 [共役の子]
Depth=13 Norm=1.1131 e0=-1.0961 e1=0.1015 e2=0.0455 e3=-0.0035 e4=0.0084 e5=0.1407 e6=0.0049 e7=-0.0728 N=0.0 Q=0.000 imagStrength=0.1938 [共役の子]
Depth=11 Norm=0.8620 e0=0.8433 e1=-0.1700 e2=-0.0224 e3=-0.0060 e4=0.0109 e5=-0.0403 e6=-0.0209 e7=-0.0135 N=3.0 Q=1.000 imagStrength=0.1783 [通常の子]
Depth=13 Norm=1.1553 e0=-0.9106 e1=0.6887 e2=0.0811 e3=-0.0089 e4=0.0132 e5=0.1212 e6=0.0991 e7=0.0041 N=0.0 Q=0.000 imagStrength=0.7111 [共役の子]
Depth=13 Norm=1.1136 e0=-1.1007 e1=0.1157 e2=0.0410 e3=-0.0024 e4=0.0009 e5=0.0767 e6=-0.0110 e7=0.0869 N=0.0 Q=0.000 imagStrength=0.1693 [通常の子]
Depth=9 Norm=0.8933 e0=0.8121 e1=-0.3692 e2=-0.0030 e3=0.0098 e4=-0.0012 e5=0.0438 e6=-0.0028 e7=0.0056 N=3.0 Q=1.000 imagStrength=0.3720 [通常の子]
Depth=12 Norm=0.8944 e0=0.8718 e1=-0.1765 e2=-0.0046 e3=0.0018 e4=0.0410 e5=0.0107 e6=-0.0135 e7=-0.0822 N=2.0 Q=0.667 imagStrength=0.1998 [通常の子]
Depth=13 Norm=1.2340 e0=-0.3517 e1=1.1699 e2=0.1160 e3=-0.0078 e4=0.0080 e5=0.1260 e6=-0.0249 e7=0.0094 N=1.0 Q=0.333 imagStrength=1.1828 [共役の子]
Depth=13 Norm=1.3052 e0=0.5819 e1=-1.1600 e2=-0.0028 e3=-0.0063 e4=0.0013 e5=0.0989 e6=-0.0701 e7=0.0678 N=1.0 Q=0.333 imagStrength=1.1683 [共役の子]
Depth=11 Norm=0.8359 e0=-0.7984 e1=0.2413 e2=-0.0007 e3=-0.0057 e4=0.0109 e5=-0.0396 e6=0.0184 e7=-0.0325 N=3.0 Q=1.000 imagStrength=0.2477 [共役の子]
Depth=13 Norm=1.2216 e0=-1.1376 e1=0.4121 e2=0.0709 e3=-0.0071 e4=0.0019 e5=0.0788 e6=-0.0541 e7=0.1191 N=0.0 Q=0.000 imagStrength=0.4452 [通常の子]
Depth=13 Norm=1.2410 e0=1.1121 e1=-0.5360 e2=0.0214 e3=-0.0093 e4=0.0117 e5=0.1183 e6=0.0118 e7=0.0338 N=0.0 Q=0.000 imagStrength=0.5507 [通常の子]
Depth=12 Norm=0.5568 e0=0.4785 e1=0.2687 e2=0.0184 e3=-0.0424 e4=0.0168 e5=-0.0178 e6=-0.0032 e7=0.0777 N=3.0 Q=1.000 imagStrength=0.2846 [共役の子]
Depth=10 Norm=0.6443 e0=-0.5750 e1=-0.2815 e2=-0.0202 e3=0.0306 e4=-0.0109 e5=0.0173 e6=0.0063 e7=-0.0595 N=3.0 Q=1.000 imagStrength=0.2908 [共役の子]
Depth=13 Norm=1.2134 e0=-0.2603 e1=-1.1828 e2=-0.0449 e3=0.0098 e4=0.0448 e5=0.0022 e6=0.0291 e7=0.0247 N=1.0 Q=0.333 imagStrength=1.1851 [通常の子]
Depth=13 Norm=1.2672 e0=0.4463 e1=1.1528 e2=0.1254 e3=-0.0092 e4=0.0537 e5=0.0072 e6=0.2284 e7=0.0826 N=1.0 Q=0.333 imagStrength=1.1860 [共役の子]
Depth=13 Norm=1.3106 e0=-0.1997 e1=-1.2709 e2=0.0010 e3=-0.0092 e4=0.0540 e5=0.0086 e6=0.2306 e7=0.0798 N=1.0 Q=0.333 imagStrength=1.2953 [共役の子]
Depth=12 Norm=0.7158 e0=0.6974 e1=0.1575 e2=0.0141 e3=-0.0063 e4=0.0077 e5=-0.0181 e6=-0.0047 e7=0.0232 N=2.0 Q=0.667 imagStrength=0.1612 [通常の子]
Depth=12 Norm=0.8973 e0=0.8412 e1=-0.3022 e2=-0.0093 e3=-0.0097 e4=0.0006 e5=-0.0166 e6=-0.0535 e7=-0.0541 N=3.0 Q=1.000 imagStrength=0.3123 [通常の子]
Depth=12 Norm=0.8388 e0=-0.7526 e1=0.3611 e2=0.0240 e3=-0.0097 e4=0.0006 e5=-0.0166 e6=-0.0535 e7=-0.0541 N=3.0 Q=1.000 imagStrength=0.3703 [共役の子]
Depth=13 Norm=1.2884 e0=0.5771 e1=-1.1378 e2=-0.0037 e3=-0.0032 e4=0.0471 e5=-0.0145 e6=-0.0517 e7=0.1653 N=1.0 Q=0.333 imagStrength=1.1520 [共役の子]
Depth=11 Norm=0.6253 e0=-0.3265 e1=0.5289 e2=0.0134 e3=-0.0121 e4=-0.0170 e5=-0.0075 e6=0.0392 e7=-0.0496 N=3.0 Q=1.000 imagStrength=0.5333 [通常の子]
Depth=13 Norm=1.3087 e0=-0.2284 e1=-1.2667 e2=-0.0594 e3=0.0149 e4=0.0427 e5=0.0042 e6=-0.2172 e7=0.0565 N=1.0 Q=0.333 imagStrength=1.2886 [共役の子]
Depth=13 Norm=1.2811 e0=0.5868 e1=-1.1326 e2=0.0025 e3=-0.0048 e4=0.0507 e5=0.0143 e6=-0.0293 e7=0.1012 N=1.0 Q=0.333 imagStrength=1.1388 [通常の子]
Depth=5 Norm=0.9409 e0=0.9284 e1=0.1405 e2=0.0058 e3=0.0574 e4=-0.0050 e5=0.0007 e6=-0.0054 e7=-0.0091 N=3.0 Q=1.000 imagStrength=0.1524 [通常の子]
Depth=12 Norm=0.4533 e0=-0.2683 e1=-0.3267 e2=-0.0898 e3=0.1049 e4=-0.0565 e5=0.0149 e6=-0.0191 e7=-0.0628 N=3.0 Q=1.000 imagStrength=0.3654 [共役の子]
Depth=10 Norm=0.5653 e0=0.4443 e1=0.3142 e2=0.0934 e3=-0.1011 e4=0.0389 e5=-0.0150 e6=0.0143 e7=0.0514 N=3.0 Q=1.000 imagStrength=0.3496 [共役の子]
Depth=13 Norm=1.1817 e0=0.4002 e1=1.0924 e2=-0.0906 e3=-0.1448 e4=-0.0669 e5=-0.0890 e6=-0.0299 e7=0.0245 N=1.0 Q=0.333 imagStrength=1.1119 [通常の子]
Depth=13 Norm=1.1351 e0=-0.5824 e1=-0.9046 e2=-0.2359 e3=-0.1287 e4=-0.0745 e5=-0.0852 e6=-0.2104 e7=-0.0420 N=1.0 Q=0.333 imagStrength=0.9743 [共役の子]
Depth=13 Norm=1.1081 e0=0.4661 e1=0.9521 e2=-0.1400 e3=-0.1283 e4=-0.0769 e5=-0.0970 e6=-0.2292 e7=-0.0177 N=1.0 Q=0.333 imagStrength=1.0053 [共役の子]
Depth=12 Norm=0.5067 e0=-0.4522 e1=-0.1901 e2=-0.0841 e3=0.0758 e4=-0.0470 e5=0.0156 e6=-0.0136 e7=-0.0261 N=3.0 Q=1.000 imagStrength=0.2286 [通常の子]
Depth=12 Norm=0.8097 e0=-0.7778 e1=0.1852 e2=-0.0656 e3=0.0715 e4=-0.0404 e5=0.0137 e6=0.0262 e7=0.0668 N=3.0 Q=1.000 imagStrength=0.2252 [通常の子]
Depth=12 Norm=0.8797 e0=0.8327 e1=-0.2467 e2=-0.0872 e3=0.0715 e4=-0.0404 e5=0.0137 e6=0.0262 e7=0.0668 N=3.0 Q=1.000 imagStrength=0.2838 [共役の子]
Depth=13 Norm=1.1450 e0=-0.1126 e1=1.1155 e2=-0.1293 e3=-0.1322 e4=-0.0710 e5=-0.0834 e6=0.0186 e7=-0.0866 N=1.0 Q=0.333 imagStrength=1.1395 [共役の子]
Depth=11 Norm=0.4976 e0=0.1263 e1=-0.4547 e2=0.0237 e3=0.1426 e4=0.0115 e5=0.0425 e6=-0.0351 e7=0.0284 N=3.0 Q=1.000 imagStrength=0.4813 [通常の子]
Depth=13 Norm=1.1074 e0=0.4730 e1=0.9647 e2=-0.0881 e3=-0.1499 e4=-0.0664 e5=-0.0915 e6=0.1703 e7=-0.0038 N=1.0 Q=0.333 imagStrength=1.0013 [共役の子]
Depth=13 Norm=1.1534 e0=-0.1104 e1=1.1251 e2=-0.1283 e3=-0.1333 e4=-0.0705 e5=-0.0904 e6=0.0211 e7=-0.0661 N=1.0 Q=0.333 imagStrength=1.1481 [通常の子]
Depth=8 Norm=0.8965 e0=0.8020 e1=-0.3604 e2=-0.0544 e3=0.1631 e4=-0.0141 e5=0.0234 e6=0.0170 e7=-0.0049 N=3.0 Q=1.000 imagStrength=0.4006 [通常の子]
Depth=11 Norm=0.8136 e0=-0.7962 e1=0.0175 e2=0.0484 e3=0.1382 e4=-0.0105 e5=0.0727 e6=-0.0020 e7=-0.0292 N=3.0 Q=1.000 imagStrength=0.1673 [共役の子]
Depth=13 Norm=1.2356 e0=-1.1850 e1=-0.1185 e2=-0.1718 e3=-0.1328 e4=-0.0481 e5=-0.1950 e6=-0.0532 e7=0.1347 N=0.0 Q=0.000 imagStrength=0.3500 [通常の子]
Depth=13 Norm=1.2832 e0=1.2561 e1=0.0041 e2=-0.1656 e3=-0.1358 e4=-0.0344 e5=-0.1418 e6=0.0364 e7=0.0189 N=0.0 Q=0.000 imagStrength=0.2624 [通常の子]
Depth=13 Norm=1.1927 e0=-0.7886 e1=0.8546 e2=-0.1397 e3=-0.1265 e4=-0.0420 e5=-0.1282 e6=-0.1135 e7=-0.0608 N=1.0 Q=0.333 imagStrength=0.8948 [共役の子]
Depth=12 Norm=0.8485 e0=-0.7189 e1=0.4350 e2=-0.0499 e3=0.0795 e4=-0.0684 e5=-0.0017 e6=-0.0096 e7=-0.0183 N=3.0 Q=1.000 imagStrength=0.4507 [通常の子]
Depth=12 Norm=0.8481 e0=0.6920 e1=-0.4689 e2=-0.0952 e3=0.0795 e4=-0.0684 e5=-0.0017 e6=-0.0096 e7=-0.0183 N=3.0 Q=1.000 imagStrength=0.4903 [共役の子]
Depth=12 Norm=0.8250 e0=0.8032 e1=-0.1162 e2=-0.0796 e3=0.0650 e4=-0.0648 e5=-0.0037 e6=0.0046 e7=0.0847 N=3.0 Q=1.000 imagStrength=0.1884 [共役の子]
Depth=10 Norm=0.8471 e0=-0.8284 e1=0.1011 e2=0.0833 e3=-0.0954 e4=0.0548 e5=0.0041 e6=-0.0096 e7=-0.0455 N=3.0 Q=1.000 imagStrength=0.1774 [共役の子]
Depth=13 Norm=1.1528 e0=0.6359 e1=-0.9087 e2=-0.2329 e3=-0.1308 e4=-0.0414 e5=-0.1526 e6=0.0389 e7=-0.0307 N=1.0 Q=0.333 imagStrength=0.9615 [通常の子]
Depth=13 Norm=1.2077 e0=-0.4780 e1=1.0744 e2=-0.0888 e3=-0.1431 e4=-0.0373 e5=-0.1341 e6=0.1645 e7=-0.0305 N=1.0 Q=0.333 imagStrength=1.1090 [共役の子]
Depth=13 Norm=1.2794 e0=0.6943 e1=-1.0260 e2=-0.1969 e3=-0.1410 e4=-0.0461 e5=-0.1671 e6=0.1086 e7=0.0418 N=1.0 Q=0.333 imagStrength=1.0746 [共役の子]
Depth=12 Norm=0.8854 e0=0.8440 e1=-0.2213 e2=-0.0822 e3=0.1026 e4=-0.0705 e5=-0.0024 e6=0.0184 e7=0.0022 N=3.0 Q=1.000 imagStrength=0.2675 [通常の子]
Depth=10 Norm=0.7384 e0=-0.7135 e1=-0.1538 e2=0.0287 e3=-0.0715 e4=-0.0171 e5=-0.0307 e6=-0.0091 e7=0.0722 N=3.0 Q=1.000 imagStrength=0.1901 [通常の子]
Depth=13 Norm=1.1818 e0=0.0743 e1=-1.1255 e2=-0.1903 e3=-0.0567 e4=-0.0792 e5=0.0562 e6=-0.2619 e7=-0.0834 N=1.0 Q=0.333 imagStrength=1.1795 [通常の子]
Depth=12 Norm=0.6696 e0=0.6505 e1=0.1345 e2=-0.0331 e3=0.0535 e4=0.0155 e5=0.0318 e6=0.0096 e7=-0.0435 N=2.0 Q=0.667 imagStrength=0.1590 [共役の子]
Depth=9 Norm=0.4978 e0=-0.2245 e1=-0.4330 e2=-0.0679 e3=-0.0514 e4=-0.0215 e5=0.0304 e6=-0.0176 e7=-0.0327 N=3.0 Q=1.000 imagStrength=0.4444 [共役の子]
Depth=12 Norm=0.4859 e0=0.2226 e1=0.4134 e2=-0.0186 e3=0.0849 e4=0.0058 e5=0.0311 e6=0.0039 e7=-0.0839 N=3.0 Q=1.000 imagStrength=0.4319 [通常の子]
Depth=13 Norm=1.2354 e0=1.0144 e1=0.6872 e2=-0.0498 e3=-0.0749 e4=-0.0755 e5=0.0380 e6=-0.0948 e7=0.0230 N=0.0 Q=0.000 imagStrength=0.7050 [共役の子]
Depth=13 Norm=1.2374 e0=-0.8453 e1=-0.8837 e2=-0.1312 e3=-0.0767 e4=-0.0683 e5=0.0652 e6=-0.0485 e7=-0.0368 N=1.0 Q=0.333 imagStrength=0.9037 [共役の子]
Depth=13 Norm=1.2097 e0=-1.1680 e1=0.1953 e2=-0.0925 e3=-0.0701 e4=-0.0682 e5=0.1006 e6=-0.0107 e7=-0.1805 N=0.0 Q=0.000 imagStrength=0.3148 [共役の子]
Depth=12 Norm=0.6372 e0=-0.3290 e1=0.5364 e2=-0.0126 e3=0.0710 e4=0.0185 e5=0.0311 e6=0.0472 e7=-0.0374 N=3.0 Q=1.000 imagStrength=0.5458 [通常の子]
Depth=12 Norm=0.5953 e0=0.2555 e1=-0.5243 e2=-0.0658 e3=0.0710 e4=0.0185 e5=0.0311 e6=0.0472 e7=-0.0374 N=3.0 Q=1.000 imagStrength=0.5377 [共役の子]
Depth=13 Norm=1.2210 e0=-0.8902 e1=-0.8171 e2=-0.1305 e3=-0.0763 e4=-0.0739 e5=0.0307 e6=0.0353 e7=0.0145 N=1.0 Q=0.333 imagStrength=0.8357 [通常の子]
Depth=11 Norm=0.7498 e0=0.7073 e1=0.2282 e2=0.0445 e3=0.0792 e4=0.0308 e5=-0.0121 e6=-0.0049 e7=0.0236 N=3.0 Q=1.000 imagStrength=0.2490 [通常の子]
Depth=13 Norm=1.2909 e0=-1.2590 e1=-0.1907 e2=-0.1230 e3=-0.0703 e4=-0.0648 e5=0.0777 e6=0.0381 e7=-0.1145 N=0.0 Q=0.000 imagStrength=0.2850 [共役の子]
Depth=13 Norm=1.2106 e0=-0.8270 e1=0.8527 e2=-0.0364 e3=-0.0682 e4=0.0132 e5=-0.1473 e6=0.1442 e7=0.0761 N=1.0 Q=0.333 imagStrength=0.8841 [通常の子]
Depth=13 Norm=1.1975 e0=0.7319 e1=-0.9099 e2=-0.1265 e3=-0.0695 e4=0.0188 e5=-0.1263 e6=0.1797 e7=0.0302 N=1.0 Q=0.333 imagStrength=0.9478 [通常の子]
Depth=11 Norm=0.7398 e0=-0.6126 e1=0.3998 e2=0.0516 e3=0.0673 e4=-0.0249 e5=0.0519 e6=-0.0410 e7=0.0021 N=3.0 Q=1.000 imagStrength=0.4148 [共役の子]
Depth=12 Norm=0.8432 e0=-0.7218 e1=0.4282 e2=-0.0121 e3=0.0472 e4=-0.0489 e5=-0.0194 e6=0.0108 e7=0.0352 N=3.0 Q=1.000 imagStrength=0.4358 [通常の子]
Depth=12 Norm=0.8476 e0=0.7006 e1=-0.4669 e2=-0.0570 e3=0.0472 e4=-0.0489 e5=-0.0194 e6=0.0108 e7=0.0352 N=3.0 Q=1.000 imagStrength=0.4770 [共役の子]
Depth=13 Norm=1.1755 e0=-0.7637 e1=0.8790 e2=-0.0744 e3=-0.0527 e4=0.0132 e5=-0.1049 e6=0.0228 e7=-0.0782 N=1.0 Q=0.333 imagStrength=0.8937 [共役の子]
Depth=10 Norm=0.5289 e0=-0.0761 e1=0.5125 e2=0.0661 e3=-0.0635 e4=0.0477 e5=0.0209 e6=0.0140 e7=0.0047 N=3.0 Q=1.000 imagStrength=0.5234 [通常の子]
Depth=13 Norm=1.2767 e0=1.0558 e1=0.6975 e2=-0.0667 e3=-0.0609 e4=0.0209 e5=-0.1179 e6=0.0767 e7=0.0200 N=0.0 Q=0.000 imagStrength=0.7178 [通常の子]
Depth=12 Norm=0.5870 e0=0.2377 e1=-0.5253 e2=-0.0600 e3=0.0604 e4=-0.0594 e5=-0.0211 e6=-0.0255 e7=0.0130 N=3.0 Q=1.000 imagStrength=0.5367 [共役の子]
Depth=9 Norm=0.9544 e0=0.9497 e1=-0.0280 e2=-0.0450 e3=-0.0573 e4=0.0139 e5=-0.0488 e6=-0.0075 e7=0.0111 N=3.0 Q=1.000 imagStrength=0.0941 [共役の子]
Depth=12 Norm=0.8354 e0=0.6883 e1=-0.4606 e2=-0.0556 e3=0.0658 e4=-0.0537 e5=-0.0186 e6=-0.0013 e7=-0.0377 N=3.0 Q=1.000 imagStrength=0.4735 [通常の子]
Depth=13 Norm=1.2679 e0=-1.0884 e1=0.6340 e2=-0.0703 e3=-0.0573 e4=0.0166 e5=-0.0941 e6=-0.0076 e7=-0.0610 N=0.0 Q=0.000 imagStrength=0.6504 [共役の子]
Depth=13 Norm=1.3347 e0=1.2165 e1=-0.4975 e2=-0.1282 e3=-0.0543 e4=0.0029 e5=-0.1478 e6=-0.0978 e7=0.0557 N=0.0 Q=0.000 imagStrength=0.5490 [共役の子]
Depth=13 Norm=1.1676 e0=-1.0351 e1=0.4999 e2=0.0822 e3=0.0187 e4=0.0113 e5=0.1456 e6=0.0412 e7=-0.1085 N=0.0 Q=0.000 imagStrength=0.5402 [共役の子]
Depth=13 Norm=1.2320 e0=1.1623 e1=-0.3925 e2=0.0369 e3=0.0214 e4=-0.0009 e5=0.0967 e6=-0.0407 e7=-0.0025 N=0.0 Q=0.000 imagStrength=0.4086 [共役の子]
Depth=12 Norm=0.7509 e0=0.6057 e1=-0.4393 e2=-0.0077 e3=-0.0215 e4=0.0500 e5=0.0097 e6=0.0237 e7=-0.0208 N=3.0 Q=1.000 imagStrength=0.4439 [通常の子]
Depth=13 Norm=1.1595 e0=-1.0611 e1=0.4410 e2=0.0890 e3=0.0154 e4=0.0054 e5=0.0863 e6=0.0713 e7=0.0571 N=0.0 Q=0.000 imagStrength=0.4674 [通常の子]
Depth=13 Norm=1.1753 e0=1.0189 e1=-0.5561 e2=0.0371 e3=0.0134 e4=0.0142 e5=0.1218 e6=0.1306 e7=-0.0196 N=0.0 Q=0.000 imagStrength=0.5859 [通常の子]
Depth=11 Norm=0.7886 e0=-0.7452 e1=0.2514 e2=-0.0039 e3=-0.0270 e4=0.0114 e5=-0.0428 e6=-0.0226 e7=0.0058 N=3.0 Q=1.000 imagStrength=0.2578 [共役の子]
Depth=11 Norm=0.6011 e0=-0.3128 e1=0.5068 e2=0.0105 e3=-0.0289 e4=0.0130 e5=-0.0441 e6=0.0574 e7=-0.0179 N=3.0 Q=1.000 imagStrength=0.5133 [通常の子]
Depth=13 Norm=1.2596 e0=-0.2119 e1=-1.2136 e2=-0.0434 e3=0.0352 e4=0.0003 e5=0.1096 e6=-0.2300 e7=-0.0279 N=1.0 Q=0.333 imagStrength=1.2417 [共役の子]
Depth=13 Norm=1.2320 e0=0.5636 e1=-1.0875 e2=0.0162 e3=0.0163 e4=0.0081 e5=0.1193 e6=-0.0492 e7=0.0147 N=1.0 Q=0.333 imagStrength=1.0955 [通常の子]
Depth=10 Norm=0.8520 e0=-0.7913 e1=0.3062 e2=-0.0028 e3=0.0293 e4=-0.0395 e5=-0.0108 e6=0.0150 e7=0.0571 N=3.0 Q=1.000 imagStrength=0.3159 [通常の子]
Depth=13 Norm=1.1719 e0=1.0171 e1=-0.5504 e2=0.0023 e3=0.0278 e4=0.0079 e5=0.1198 e6=-0.1411 e7=-0.0286 N=0.0 Q=0.000 imagStrength=0.5821 [通常の子]
Depth=12 Norm=0.8918 e0=0.8279 e1=-0.3247 e2=-0.0031 e3=-0.0391 e4=0.0449 e5=0.0091 e6=-0.0233 e7=-0.0170 N=3.0 Q=1.000 imagStrength=0.3315 [共役の子]
Depth=7 Norm=0.6858 e0=0.4850 e1=-0.4843 e2=-0.0049 e3=0.0170 e4=0.0031 e5=0.0001 e6=0.0112 e7=-0.0082 N=3.0 Q=1.000 imagStrength=0.4849 [共役の子]
Depth=13 Norm=1.2109 e0=-1.0485 e1=-0.5766 e2=0.0357 e3=0.0173 e4=0.0339 e5=0.0916 e6=0.1393 e7=-0.0638 N=0.0 Q=0.000 imagStrength=0.6058 [共役の子]
Depth=12 Norm=0.4760 e0=0.2207 e1=0.4179 e2=0.0370 e3=-0.0163 e4=0.0323 e5=-0.0036 e6=0.0225 e7=-0.0022 N=3.0 Q=1.000 imagStrength=0.4217 [通常の子]
Depth=12 Norm=0.4700 e0=-0.2947 e1=-0.3637 e2=-0.0022 e3=-0.0163 e4=0.0323 e5=-0.0036 e6=0.0225 e7=-0.0022 N=2.0 Q=0.667 imagStrength=0.3662 [共役の子]
Depth=13 Norm=1.2470 e0=-0.2104 e1=-1.2130 e2=0.0152 e3=0.0136 e4=0.0307 e5=0.0534 e6=0.1806 e7=0.0510 N=1.0 Q=0.333 imagStrength=1.2291 [通常の子]
Depth=11 Norm=0.5278 e0=0.2281 e1=0.4719 e2=0.0066 e3=-0.0299 e4=-0.0024 e5=-0.0281 e6=-0.0445 e7=0.0115 N=3.0 Q=1.000 imagStrength=0.4760 [通常の子]
Depth=13 Norm=1.3072 e0=-0.9229 e1=-0.9188 e2=-0.0199 e3=0.0298 e4=0.0302 e5=0.0716 e6=0.0551 e7=-0.0483 N=1.0 Q=0.333 imagStrength=0.9257 [共役の子]
Depth=13 Norm=1.2409 e0=0.1407 e1=-1.2095 e2=-0.0387 e3=0.0351 e4=0.0212 e5=0.0500 e6=-0.2237 e7=0.0356 N=1.0 Q=0.333 imagStrength=1.2329 [共役の子]
Depth=13 Norm=1.1764 e0=-0.2910 e1=1.1173 e2=0.0808 e3=0.0340 e4=0.0256 e5=0.0670 e6=-0.1951 e7=-0.0014 N=1.0 Q=0.333 imagStrength=1.1399 [共役の子]
Depth=12 Norm=0.8185 e0=-0.8070 e1=0.1179 e2=0.0205 e3=-0.0459 e4=0.0283 e5=-0.0030 e6=-0.0348 e7=-0.0166 N=2.0 Q=0.667 imagStrength=0.1369 [通常の子]
Depth=13 Norm=1.2602 e0=0.1814 e1=-1.2211 e2=-0.0439 e3=0.0372 e4=0.0211 e5=0.0564 e6=-0.2390 e7=0.0132 N=1.0 Q=0.333 imagStrength=1.2471 [通常の子]
Depth=13 Norm=1.3155 e0=0.0757 e1=1.2887 e2=0.0851 e3=0.0367 e4=0.0232 e5=0.0643 e6=-0.2256 e7=-0.0040 N=1.0 Q=0.333 imagStrength=1.3133 [通常の子]
Depth=11 Norm=0.5914 e0=0.2513 e1=-0.5284 e2=-0.0417 e3=-0.0307 e4=-0.0017 e5=-0.0261 e6=0.0536 e7=-0.0336 N=3.0 Q=1.000 imagStrength=0.5353 [共役の子]
Depth=9 Norm=0.9232 e0=-0.8868 e1=0.2329 e2=-0.0077 e3=-0.0800 e4=0.0158 e5=-0.0563 e6=0.0053 e7=0.0435 N=3.0 Q=1.000 imagStrength=0.2570 [通常の子]
Depth=12 Norm=0.8330 e0=-0.7524 e1=0.3395 e2=-0.0240 e3=-0.0056 e4=-0.0584 e5=-0.0255 e6=-0.0426 e7=0.0778 N=3.0 Q=1.000 imagStrength=0.3575 [通常の子]
Depth=13 Norm=1.2038 e0=0.6822 e1=-0.9543 e2=-0.1109 e3=-0.0834 e4=0.0193 e5=-0.1796 e6=0.0200 e7=0.1442 N=1.0 Q=0.333 imagStrength=0.9919 [共役の子]
Depth=13 Norm=1.1312 e0=-0.7860 e1=0.7888 e2=-0.0220 e3=-0.0855 e4=0.0286 e5=-0.1421 e6=0.0828 e7=0.0630 N=1.0 Q=0.333 imagStrength=0.8135 [共役の子]
Depth=11 Norm=0.8920 e0=0.8798 e1=-0.1097 e2=0.0005 e3=0.0727 e4=-0.0283 e5=0.0538 e6=-0.0183 e7=-0.0188 N=3.0 Q=1.000 imagStrength=0.1473 [共役の子]
Depth=13 Norm=1.2126 e0=1.2006 e1=-0.0409 e2=-0.0592 e3=-0.0837 e4=0.0261 e5=-0.1204 e6=0.0386 e7=-0.0015 N=0.0 Q=0.000 imagStrength=0.1699 [通常の子]
Depth=13 Norm=1.1756 e0=-1.1183 e1=0.2909 e2=-0.0417 e3=-0.0812 e4=0.0148 e5=-0.1657 e6=-0.0373 e7=0.0967 N=0.0 Q=0.000 imagStrength=0.3625 [通常の子]
Depth=13 Norm=1.2192 e0=-0.8805 e1=-0.7847 e2=-0.0760 e3=-0.0922 e4=0.0215 e5=-0.1867 e6=0.0827 e7=0.1974 N=1.0 Q=0.333 imagStrength=0.8433 [通常の子]
Depth=11 Norm=0.7485 e0=0.7051 e1=0.2196 e2=0.0173 e3=0.0744 e4=-0.0321 e5=0.0615 e6=-0.0488 e7=-0.0423 N=3.0 Q=1.000 imagStrength=0.2511 [通常の子]
Depth=13 Norm=1.2872 e0=-1.2574 e1=-0.1780 e2=-0.0701 e3=-0.0859 e4=0.0309 e5=-0.1382 e6=0.0871 e7=0.0651 N=0.0 Q=0.000 imagStrength=0.2754 [共役の子]
Depth=12 Norm=0.6041 e0=-0.3128 e1=0.5123 e2=-0.0133 e3=0.0120 e4=-0.0561 e5=-0.0232 e6=-0.0244 e7=0.0053 N=3.0 Q=1.000 imagStrength=0.5168 [共役の子]
Depth=10 Norm=0.5839 e0=0.2506 e1=-0.5215 e2=0.0200 e3=-0.0156 e4=0.0525 e5=0.0229 e6=0.0367 e7=-0.0295 N=3.0 Q=1.000 imagStrength=0.5274 [共役の子]
Depth=13 Norm=1.2622 e0=-1.1526 e1=-0.4543 e2=-0.0759 e3=-0.0819 e4=0.0136 e5=-0.1698 e6=-0.0568 e7=0.1157 N=0.0 Q=0.000 imagStrength=0.5143 [通常の子]
Depth=12 Norm=0.7816 e0=0.7724 e1=0.0092 e2=-0.0438 e3=0.0445 e4=-0.0033 e5=0.0237 e6=-0.0235 e7=-0.0962 N=2.0 Q=0.667 imagStrength=0.1198 [通常の子]
Depth=12 Norm=0.7800 e0=-0.7675 e1=0.0739 e2=-0.0406 e3=0.0445 e4=-0.0033 e5=0.0237 e6=-0.0235 e7=-0.0962 N=2.0 Q=0.667 imagStrength=0.1395 [共役の子]
Depth=13 Norm=1.2468 e0=-0.1929 e1=-1.2195 e2=-0.0869 e3=-0.1048 e4=-0.0528 e5=0.0246 e6=-0.0640 e7=0.0625 N=1.0 Q=0.333 imagStrength=1.2317 [共役の子]
Depth=11 Norm=0.5293 e0=0.2254 e1=0.4659 e2=0.0319 e3=0.0847 e4=0.0220 e5=0.0001 e6=0.0480 e7=-0.0353 N=3.0 Q=1.000 imagStrength=0.4789 [通常の子]
Depth=13 Norm=1.2976 e0=-0.9131 e1=-0.8871 e2=-0.1202 e3=-0.0883 e4=-0.0558 e5=0.0304 e6=-0.1915 e7=-0.0083 N=1.0 Q=0.333 imagStrength=0.9220 [共役の子]
Depth=13 Norm=1.2381 e0=-0.1897 e1=-1.2094 e2=-0.0859 e3=-0.1052 e4=-0.0547 e5=0.0115 e6=-0.0641 e7=0.0919 N=1.0 Q=0.333 imagStrength=1.2234 [通常の子]
Depth=9 Norm=0.7135 e0=0.6452 e1=0.2944 e2=-0.0056 e3=-0.0746 e4=-0.0167 e5=0.0158 e6=-0.0038 e7=0.0032 N=3.0 Q=1.000 imagStrength=0.3047 [通常の子]
Depth=12 Norm=0.5558 e0=0.2247 e1=-0.5020 e2=-0.0708 e3=0.0154 e4=0.0098 e5=0.0221 e6=0.0189 e7=0.0124 N=3.0 Q=1.000 imagStrength=0.5083 [通常の子]
Depth=13 Norm=1.2753 e0=-1.2536 e1=-0.1540 e2=-0.0632 e3=-0.0962 e4=-0.0501 e5=0.0588 e6=0.0320 e7=-0.1043 N=0.0 Q=0.000 imagStrength=0.2342 [共役の子]
Depth=13 Norm=1.3101 e0=1.2687 e1=0.2998 e2=-0.0392 e3=-0.0935 e4=-0.0623 e5=0.0100 e6=-0.0497 e7=0.0015 N=0.0 Q=0.000 imagStrength=0.3265 [共役の子]
Depth=11 Norm=0.5447 e0=-0.3310 e1=-0.4215 e2=-0.0143 e3=0.0857 e4=0.0207 e5=-0.0013 e6=-0.0374 e7=0.0030 N=3.0 Q=1.000 imagStrength=0.4325 [共役の子]
Depth=13 Norm=1.2845 e0=-0.6298 e1=-1.1068 e2=-0.1209 e3=-0.0937 e4=-0.0575 e5=-0.0014 e6=-0.0001 e7=0.0402 N=1.0 Q=0.333 imagStrength=1.1195 [通常の子]
Depth=13 Norm=1.3587 e0=0.8457 e1=1.0545 e2=-0.0104 e3=-0.0959 e4=-0.0482 e5=0.0363 e6=0.0630 e7=-0.0414 N=1.0 Q=0.333 imagStrength=1.0633 [通常の子]
Depth=9 Norm=0.7557 e0=0.6580 e1=-0.3476 e2=-0.0573 e3=0.0415 e4=-0.0321 e5=0.0431 e6=-0.0276 e7=-0.0932 N=3.0 Q=1.000 imagStrength=0.3717 [通常の子]
Depth=12 Norm=0.7724 e0=0.7424 e1=-0.1049 e2=0.0064 e3=0.1016 e4=0.0258 e5=0.0419 e6=0.0771 e7=-0.1254 N=3.0 Q=1.000 imagStrength=0.2132 [通常の子]
Depth=13 Norm=1.1079 e0=-0.1790 e1=1.0571 e2=-0.0144 e3=0.0453 e4=-0.0856 e5=0.1228 e6=-0.0870 e7=-0.2134 N=1.0 Q=0.333 imagStrength=1.0933 [共役の子]
Depth=13 Norm=1.1744 e0=0.4064 e1=-1.0652 e2=-0.1228 e3=0.0466 e4=-0.0907 e5=0.1027 e6=-0.1210 e7=-0.1694 N=1.0 Q=0.333 imagStrength=1.1018 [共役の子]
Depth=11 Norm=0.7213 e0=-0.6681 e1=0.2428 e2=0.0549 e3=-0.0122 e4=0.0451 e5=-0.0291 e6=0.0758 e7=0.0556 N=3.0 Q=1.000 imagStrength=0.2717 [共役の子]
Depth=13 Norm=1.0945 e0=-0.9633 e1=0.4702 e2=-0.0495 e3=0.0465 e4=-0.0910 e5=0.0869 e6=-0.1116 e7=-0.1266 N=0.0 Q=0.000 imagStrength=0.5196 [通常の子]
Depth=13 Norm=1.1067 e0=0.9167 e1=-0.5557 e2=-0.1027 e3=0.0446 e4=-0.0829 e5=0.1193 e6=-0.0573 e7=-0.1969 N=0.0 Q=0.000 imagStrength=0.6201 [通常の子]
Depth=13 Norm=1.1060 e0=1.0203 e1=0.2234 e2=-0.0738 e3=0.0494 e4=-0.0844 e5=0.1459 e6=-0.0404 e7=-0.3072 N=0.0 Q=0.000 imagStrength=0.4268 [通常の子]
Depth=11 Norm=0.6791 e0=-0.6644 e1=0.0355 e2=0.0435 e3=-0.0127 e4=0.0482 e5=-0.0367 e6=0.0642 e7=0.0933 N=3.0 Q=1.000 imagStrength=0.1407 [通常の子]
Depth=13 Norm=1.0527 e0=0.9276 e1=-0.3939 e2=-0.1061 e3=0.0518 e4=-0.0954 e5=0.1020 e6=-0.1154 e7=-0.2138 N=0.0 Q=0.000 imagStrength=0.4976 [共役の子]
Depth=12 Norm=0.6955 e0=0.5547 e1=-0.4018 e2=-0.0111 e3=0.0728 e4=0.0310 e5=0.0395 e6=0.0805 e7=-0.0122 N=3.0 Q=1.000 imagStrength=0.4196 [共役の子]
Depth=10 Norm=0.6123 e0=-0.4580 e1=0.3830 e2=0.0048 e3=-0.0788 e4=-0.0333 e5=-0.0357 e6=-0.0900 e7=0.0414 N=3.0 Q=1.000 imagStrength=0.4064 [共役の子]
Depth=13 Norm=1.0324 e0=0.9861 e1=0.0079 e2=-0.0913 e3=0.0486 e4=-0.0818 e5=0.1247 e6=0.0049 e7=-0.2456 N=0.0 Q=0.000 imagStrength=0.3055 [通常の子]
Depth=12 Norm=0.4715 e0=-0.3948 e1=-0.2412 e2=0.0023 e3=0.0524 e4=-0.0271 e5=-0.0052 e6=0.0557 e7=0.0403 N=2.0 Q=0.667 imagStrength=0.2577 [通常の子]
Depth=12 Norm=0.5842 e0=0.5496 e1=0.1748 e2=0.0231 e3=0.0524 e4=-0.0271 e5=-0.0052 e6=0.0557 e7=0.0403 N=3.0 Q=1.000 imagStrength=0.1983 [共役の子]
Depth=13 Norm=1.1460 e0=0.8441 e1=0.7553 e2=-0.0661 e3=0.0651 e4=-0.0162 e5=-0.0778 e6=-0.0244 e7=-0.1218 N=0.0 Q=0.000 imagStrength=0.7752 [共役の子]
Depth=11 Norm=0.5782 e0=-0.5358 e1=-0.1999 e2=0.0305 e3=-0.0239 e4=-0.0027 e5=0.0223 e6=0.0192 e7=0.0701 N=3.0 Q=1.000 imagStrength=0.2174 [通常の子]
Depth=13 Norm=1.0827 e0=1.0595 e1=0.1468 e2=-0.0705 e3=0.0592 e4=-0.0178 e5=-0.0695 e6=0.0036 e7=-0.1207 N=0.0 Q=0.000 imagStrength=0.2231 [共役の子]
Depth=13 Norm=1.1518 e0=0.8304 e1=0.7596 e2=-0.0602 e3=0.0644 e4=-0.0107 e5=-0.0316 e6=0.0027 e7=-0.2261 N=0.0 Q=0.000 imagStrength=0.7982 [通常の子]
Depth=9 Norm=0.7522 e0=-0.7474 e1=-0.0201 e2=-0.0386 e3=0.0362 e4=-0.0008 e5=-0.0270 e6=-0.0187 e7=-0.0546 N=3.0 Q=1.000 imagStrength=0.0852 [通常の子]
Depth=12 Norm=0.6346 e0=-0.4609 e1=0.4264 e2=0.0365 e3=0.0674 e4=-0.0324 e5=-0.0046 e6=0.0391 e7=-0.0078 N=3.0 Q=1.000 imagStrength=0.4363 [通常の子]
Depth=13 Norm=1.0500 e0=0.9581 e1=-0.3938 e2=-0.1109 e3=0.0613 e4=-0.0167 e5=-0.0872 e6=-0.0496 e7=-0.0560 N=0.0 Q=0.000 imagStrength=0.4296 [共役の子]
Depth=13 Norm=0.9902 e0=-0.9540 e1=0.1923 e2=-0.0816 e3=0.0591 e4=-0.0066 e5=-0.0465 e6=0.0182 e7=-0.1437 N=0.0 Q=0.000 imagStrength=0.2652 [共役の子]
Depth=11 Norm=0.6549 e0=0.6348 e1=0.1296 e2=0.0478 e3=-0.0239 e4=-0.0024 e5=0.0229 e6=0.0524 e7=0.0543 N=3.0 Q=1.000 imagStrength=0.1609 [共役の子]
Depth=13 Norm=1.0497 e0=0.8939 e1=0.5035 e2=-0.0607 e3=0.0608 e4=-0.0103 e5=-0.0298 e6=-0.0365 e7=-0.1991 N=0.0 Q=0.000 imagStrength=0.5503 [通常の子]
Depth=13 Norm=0.9852 e0=-0.9171 e1=-0.2943 e2=-0.1010 e3=0.0630 e4=-0.0203 e5=-0.0700 e6=-0.1035 e7=-0.1124 N=0.0 Q=0.000 imagStrength=0.3598 [通常の子]
Depth=13 Norm=1.1779 e0=0.6392 e1=-0.9329 e2=-0.2127 e3=-0.0120 e4=-0.0963 e5=-0.0650 e6=-0.2038 e7=-0.0908 N=1.0 Q=0.333 imagStrength=0.9894 [共役の子]
Depth=13 Norm=1.1067 e0=-0.7330 e1=0.7836 e2=-0.1251 e3=-0.0139 e4=-0.0873 e5=-0.0287 e6=-0.1431 e7=-0.1693 N=1.0 Q=0.333 imagStrength=0.8291 [共役の子]
Depth=12 Norm=0.8262 e0=-0.7551 e1=0.3157 e2=-0.0093 e3=0.0905 e4=-0.0334 e5=0.0261 e6=0.0343 e7=-0.0376 N=3.0 Q=1.000 imagStrength=0.3351 [通常の子]
Depth=13 Norm=1.1947 e0=0.6476 e1=-0.9233 e2=-0.2241 e3=-0.0085 e4=-0.0928 e5=-0.0322 e6=-0.2418 e7=-0.1929 N=1.0 Q=0.333 imagStrength=1.0040 [通常の子]
Depth=13 Norm=1.2224 e0=-0.4375 e1=1.0866 e2=-0.1205 e3=-0.0082 e4=-0.0955 e5=-0.0442 e6=-0.2609 e7=-0.1683 N=1.0 Q=0.333 imagStrength=1.1414 [通常の子]
Depth=11 Norm=0.7336 e0=0.5667 e1=-0.4500 e2=0.0345 e3=0.0521 e4=0.0265 e5=0.0266 e6=0.0872 e7=0.0398 N=3.0 Q=1.000 imagStrength=0.4658 [共役の子]
Depth=11 Norm=0.4531 e0=-0.1487 e1=-0.4127 e2=0.0346 e3=0.0523 e4=0.0264 e5=0.0236 e6=-0.0026 e7=0.0873 N=3.0 Q=1.000 imagStrength=0.4280 [通常の子]
Depth=13 Norm=1.1328 e0=0.8091 e1=0.7581 e2=-0.0865 e3=-0.0281 e4=-0.0878 e5=-0.0440 e6=0.1192 e7=-0.1477 N=1.0 Q=0.333 imagStrength=0.7928 [共役の子]
Depth=13 Norm=1.1935 e0=0.2737 e1=1.1276 e2=-0.1122 e3=-0.0137 e4=-0.0882 e5=-0.0271 e6=0.0095 e7=-0.2379 N=1.0 Q=0.333 imagStrength=1.1617 [通常の子]
Depth=10 Norm=0.8607 e0=0.8487 e1=-0.0128 e2=0.0253 e3=-0.1077 e4=0.0187 e5=-0.0204 e6=-0.0842 e7=-0.0169 N=3.0 Q=1.000 imagStrength=0.1434 [通常の子]
Depth=13 Norm=1.2265 e0=-0.4728 e1=1.1044 e2=-0.0637 e3=-0.0317 e4=-0.0836 e5=-0.0405 e6=0.1610 e7=-0.1461 N=1.0 Q=0.333 imagStrength=1.1317 [通常の子]
Depth=12 Norm=0.7296 e0=-0.7121 e1=0.0033 e2=-0.0238 e3=0.1228 e4=-0.0307 e5=0.0245 e6=0.0873 e7=-0.0209 N=2.0 Q=0.667 imagStrength=0.1590 [共役の子]
Depth=7 Norm=0.4573 e0=0.0828 e1=0.4349 e2=0.0303 e3=-0.0742 e4=-0.0002 e5=-0.0166 e6=-0.0431 e7=0.0674 N=3.0 Q=1.000 imagStrength=0.4497 [共役の子]
Depth=13 Norm=1.1507 e0=1.1207 e1=-0.1143 e2=-0.1606 e3=-0.0146 e4=-0.0681 e5=-0.1285 e6=-0.0816 e7=-0.0362 N=0.0 Q=0.000 imagStrength=0.2611 [共役の子]
Depth=12 Norm=0.5065 e0=0.2329 e1=-0.4315 e2=-0.0451 e3=0.0981 e4=-0.0545 e5=0.0097 e6=0.0328 e7=-0.0155 N=3.0 Q=1.000 imagStrength=0.4497 [通常の子]
Depth=12 Norm=0.4395 e0=-0.0646 e1=0.4183 e2=-0.0025 e3=0.0981 e4=-0.0545 e5=0.0097 e6=0.0328 e7=-0.0155 N=3.0 Q=1.000 imagStrength=0.4347 [共役の子]
Depth=13 Norm=1.1366 e0=0.8135 e1=0.7433 e2=-0.1264 e3=-0.0111 e4=-0.0623 e5=-0.0701 e6=-0.1109 e7=-0.2013 N=1.0 Q=0.333 imagStrength=0.7938 [通常の子]
Depth=11 Norm=0.5651 e0=-0.5172 e1=-0.1983 e2=0.0467 e3=0.0493 e4=0.0099 e5=0.0443 e6=0.0606 e7=0.0467 N=3.0 Q=1.000 imagStrength=0.2277 [通常の子]
Depth=13 Norm=1.0681 e0=1.0291 e1=0.1615 e2=-0.1348 e3=-0.0165 e4=-0.0694 e5=-0.1078 e6=-0.1083 e7=-0.0946 N=0.0 Q=0.000 imagStrength=0.2857 [共役の子]
Depth=13 Norm=1.1482 e0=0.5801 e1=0.9642 e2=-0.0735 e3=-0.0290 e4=-0.0592 e5=-0.1041 e6=0.1473 e7=-0.0989 N=1.0 Q=0.333 imagStrength=0.9908 [共役の子]
Depth=13 Norm=1.1810 e0=-0.3576 e1=-1.0874 e2=-0.1785 e3=-0.0297 e4=-0.0569 e5=-0.0966 e6=0.1606 e7=-0.1162 N=1.0 Q=0.333 imagStrength=1.1256 [共役の子]
Depth=12 Norm=0.5855 e0=0.5229 e1=0.2192 e2=-0.0120 e3=0.1167 e4=-0.0531 e5=0.0094 e6=0.0673 e7=-0.0128 N=3.0 Q=1.000 imagStrength=0.2635 [通常の子]
Depth=13 Norm=1.1314 e0=0.5299 e1=0.9676 e2=-0.0842 e3=-0.0236 e4=-0.0581 e5=-0.0755 e6=0.1152 e7=-0.1816 N=1.0 Q=0.333 imagStrength=0.9996 [通常の子]
Depth=13 Norm=1.0594 e0=-0.6389 e1=-0.8063 e2=-0.1753 e3=-0.0216 e4=-0.0661 e5=-0.1059 e6=0.0634 e7=-0.1145 N=1.0 Q=0.333 imagStrength=0.8451 [通常の子]
Depth=11 Norm=0.5045 e0=0.3446 e1=0.3474 e2=0.0728 e3=0.0494 e4=0.0098 e5=0.0434 e6=0.0038 e7=0.0734 N=3.0 Q=1.000 imagStrength=0.3685 [共役の子]
Depth=8 Norm=0.4786 e0=0.0645 e1=0.4632 e2=0.0649 e3=0.0154 e4=0.0161 e5=0.0026 e6=0.0753 e7=0.0029 N=3.0 Q=1.000 imagStrength=0.4743 [通常の子]
Depth=11 Norm=0.4963 e0=0.2724 e1=0.3850 e2=0.0532 e3=-0.0343 e4=0.0519 e5=-0.0505 e6=0.0975 e7=0.0721 N=3.0 Q=1.000 imagStrength=0.4149 [共役の子]
Depth=13 Norm=1.1775 e0=0.4251 e1=1.0487 e2=0.0128 e3=0.0646 e4=-0.0820 e5=0.1707 e6=-0.0850 e7=-0.2422 N=1.0 Q=0.333 imagStrength=1.0981 [通常の子]
Depth=13 Norm=1.1076 e0=-0.5508 e1=-0.9126 e2=-0.0872 e3=0.0662 e4=-0.0891 e5=0.1423 e6=-0.1328 e7=-0.1804 N=1.0 Q=0.333 imagStrength=0.9609 [通常の子]
Depth=13 Norm=1.2404 e0=1.1741 e1=0.2802 e2=-0.0524 e3=0.0729 e4=-0.0911 e5=0.1195 e6=-0.1774 e7=-0.1403 N=0.0 Q=0.000 imagStrength=0.4004 [共役の子]
Depth=12 Norm=0.4348 e0=-0.0371 e1=-0.4177 e2=-0.0012 e3=0.0557 e4=0.0456 e5=0.0435 e6=0.0639 e7=-0.0458 N=3.0 Q=1.000 imagStrength=0.4332 [通常の子]
Depth=12 Norm=0.4506 e0=0.2216 e1=0.3730 e2=0.0384 e3=0.0557 e4=0.0456 e5=0.0435 e6=0.0639 e7=-0.0458 N=3.0 Q=1.000 imagStrength=0.3923 [共役の子]
Depth=12 Norm=0.7009 e0=-0.4969 e1=0.4637 e2=0.0441 e3=0.0723 e4=0.0508 e5=0.0456 e6=0.1011 e7=-0.0848 N=3.0 Q=1.000 imagStrength=0.4942 [共役の子]
Depth=10 Norm=0.6978 e0=0.4867 e1=-0.4788 e2=-0.0519 e3=-0.0614 e4=-0.0475 e5=-0.0395 e6=-0.0883 e7=0.0527 N=3.0 Q=1.000 imagStrength=0.5001 [共役の子]
Depth=13 Norm=1.2462 e0=-1.2061 e1=-0.0676 e2=-0.0520 e3=0.0684 e4=-0.0943 e5=0.1375 e6=-0.1370 e7=-0.1995 N=0.0 Q=0.000 imagStrength=0.3136 [通常の子]
Depth=13 Norm=1.2350 e0=1.2144 e1=-0.0630 e2=-0.0520 e3=0.0644 e4=-0.0885 e5=0.1174 e6=-0.0451 e7=-0.1265 N=0.0 Q=0.000 imagStrength=0.2246 [共役の子]
Depth=13 Norm=1.1932 e0=-1.1373 e1=-0.1816 e2=-0.0586 e3=0.0618 e4=-0.0761 e5=0.1672 e6=0.0380 e7=-0.2341 N=0.0 Q=0.000 imagStrength=0.3608 [共役の子]
Depth=12 Norm=0.6120 e0=-0.2998 e1=0.5170 e2=0.0456 e3=0.0656 e4=0.0452 e5=0.0429 e6=0.0769 e7=-0.0340 N=3.0 Q=1.000 imagStrength=0.5335 [通常の子]
Depth=11 Norm=0.6011 e0=0.3498 e1=-0.4813 e2=0.0068 e3=-0.0444 e4=-0.0049 e5=0.0141 e6=-0.0164 e7=0.0691 N=3.0 Q=1.000 imagStrength=0.4888 [通常の子]
Depth=13 Norm=1.1566 e0=0.2038 e1=1.1161 e2=0.0270 e3=0.0691 e4=0.0024 e5=-0.0339 e6=0.1704 e7=-0.1222 N=1.0 Q=0.333 imagStrength=1.1386 [共役の子]
Depth=13 Norm=1.1871 e0=-0.4285 e1=1.0906 e2=-0.0234 e3=0.0866 e4=-0.0047 e5=-0.0428 e6=0.0028 e7=-0.1620 N=1.0 Q=0.333 imagStrength=1.1070 [通常の子]
Depth=10 Norm=0.9071 e0=0.8524 e1=-0.2940 e2=-0.0398 e3=-0.0528 e4=0.0149 e5=0.0098 e6=-0.0691 e7=-0.0187 N=3.0 Q=1.000 imagStrength=0.3103 [通常の子]
Depth=13 Norm=1.2449 e0=-1.0338 e1=0.6725 e2=-0.0021 e3=0.0744 e4=-0.0046 e5=-0.0437 e6=0.0923 e7=-0.1131 N=0.0 Q=0.000 imagStrength=0.6936 [通常の子]
Depth=12 Norm=0.8446 e0=-0.7866 e1=0.2848 e2=0.0424 e3=0.0687 e4=-0.0170 e5=-0.0048 e6=0.0778 e7=-0.0228 N=3.0 Q=1.000 imagStrength=0.3075 [共役の子]
Depth=8 Norm=0.9069 e0=0.8291 e1=-0.3584 e2=0.0175 e3=0.0154 e4=0.0161 e5=0.0026 e6=0.0753 e7=0.0029 N=3.0 Q=1.000 imagStrength=0.3674 [共役の子]
Depth=11 Norm=0.8240 e0=-0.8203 e1=0.0299 e2=0.0339 e3=-0.0446 e4=-0.0056 e5=0.0191 e6=0.0276 e7=0.0282 N=3.0 Q=1.000 imagStrength=0.0774 [共役の子]
Depth=13 Norm=1.2400 e0=-1.2275 e1=-0.1007 e2=-0.0604 e3=0.0808 e4=-0.0081 e5=-0.0699 e6=-0.0719 e7=-0.0217 N=0.0 Q=0.000 imagStrength=0.1758 [通常の子]
Depth=13 Norm=1.2877 e0=1.2764 e1=-0.0340 e2=-0.0578 e3=0.0780 e4=0.0048 e5=-0.0180 e6=0.0148 e7=-0.1339 N=0.0 Q=0.000 imagStrength=0.1705 [通常の子]
Depth=13 Norm=1.1993 e0=-0.7714 e1=0.8778 e2=-0.0306 e3=0.0890 e4=-0.0036 e5=-0.0054 e6=-0.1353 e7=-0.2130 N=1.0 Q=0.333 imagStrength=0.9183 [共役の子]
Depth=12 Norm=0.8608 e0=-0.7400 e1=0.4292 e2=0.0489 e3=0.0445 e4=-0.0151 e5=-0.0028 e6=0.0497 e7=-0.0442 N=3.0 Q=1.000 imagStrength=0.4396 [通常の子]
Depth=12 Norm=0.8667 e0=0.7200 e1=-0.4756 e2=0.0036 e3=0.0445 e4=-0.0151 e5=-0.0028 e6=0.0497 e7=-0.0442 N=3.0 Q=1.000 imagStrength=0.4825 [共役の子]
Depth=13 Norm=1.1266 e0=-0.8690 e1=-0.6628 e2=-0.1882 e3=-0.0223 e4=-0.0817 e5=-0.1090 e6=-0.1356 e7=-0.0426 N=1.0 Q=0.333 imagStrength=0.7169 [通常の子]
Depth=13 Norm=1.1963 e0=1.0181 e1=0.5884 e2=-0.1244 e3=-0.0248 e4=-0.0703 e5=-0.0636 e6=-0.0595 e7=-0.1411 N=0.0 Q=0.000 imagStrength=0.6283 [通常の子]
Depth=11 Norm=0.5835 e0=-0.5265 e1=-0.2319 e2=0.0417 e3=0.0568 e4=0.0143 e5=0.0449 e6=0.0401 e7=0.0252 N=3.0 Q=1.000 imagStrength=0.2515 [共役の子]
Depth=12 Norm=0.4616 e0=0.3017 e1=0.3108 e2=-0.0104 e3=0.1113 e4=-0.0473 e5=0.0185 e6=0.0468 e7=-0.0904 N=3.0 Q=1.000 imagStrength=0.3494 [通常の子]
Depth=12 Norm=0.4640 e0=-0.3526 e1=-0.2531 e2=-0.0387 e3=0.1113 e4=-0.0473 e5=0.0185 e6=0.0468 e7=-0.0904 N=3.0 Q=1.000 imagStrength=0.3015 [共役の子]
Depth=13 Norm=1.0792 e0=-0.8101 e1=-0.6682 e2=-0.1644 e3=-0.0316 e4=-0.0723 e5=-0.0590 e6=-0.0587 e7=-0.1471 N=1.0 Q=0.333 imagStrength=0.7130 [共役の子]
Depth=10 Norm=0.8412 e0=0.8304 e1=0.0017 e2=0.0302 e3=-0.1015 e4=0.0326 e5=-0.0124 e6=-0.0713 e7=-0.0232 N=3.0 Q=1.000 imagStrength=0.1344 [通常の子]
Depth=13 Norm=1.2071 e0=-0.4332 e1=1.1009 e2=-0.0591 e3=-0.0400 e4=-0.0700 e5=-0.0791 e6=0.1670 e7=-0.1153 N=1.0 Q=0.333 imagStrength=1.1267 [通常の子]
Depth=12 Norm=0.7092 e0=-0.6936 e1=-0.0107 e2=-0.0272 e3=0.1144 e4=-0.0448 e5=0.0160 e6=0.0742 e7=-0.0136 N=2.0 Q=0.667 imagStrength=0.1480 [共役の子]
Depth=9 Norm=0.4691 e0=-0.0310 e1=0.4605 e2=-0.0390 e3=-0.0354 e4=-0.0195 e5=-0.0281 e6=-0.0166 e7=-0.0535 N=3.0 Q=1.000 imagStrength=0.4681 [共役の子]
Depth=12 Norm=0.4614 e0=-0.3661 e1=-0.2495 e2=-0.0402 e3=0.0781 e4=-0.0367 e5=0.0164 e6=0.0730 e7=0.0452 N=3.0 Q=1.000 imagStrength=0.2810 [通常の子]
Depth=13 Norm=1.1496 e0=-0.7044 e1=-0.8537 e2=-0.2081 e3=-0.0218 e4=-0.0746 e5=-0.0655 e6=0.0173 e7=-0.2070 N=1.0 Q=0.333 imagStrength=0.9086 [共役の子]
Depth=13 Norm=1.1308 e0=0.6214 e1=0.9144 e2=-0.1169 e3=-0.0210 e4=-0.0786 e5=-0.0826 e6=-0.0106 e7=-0.1710 N=1.0 Q=0.333 imagStrength=0.9448 [共役の子]
Depth=13 Norm=1.1644 e0=-1.0960 e1=0.3040 e2=-0.1390 e3=-0.0219 e4=-0.0850 e5=-0.1044 e6=-0.1502 e7=-0.0414 N=0.0 Q=0.000 imagStrength=0.3932 [通常の子]
Depth=11 Norm=0.8852 e0=0.8435 e1=-0.2501 e2=0.0408 e3=0.0569 e4=0.0161 e5=0.0434 e6=0.0447 e7=0.0230 N=3.0 Q=1.000 imagStrength=0.2686 [通常の子]
Depth=13 Norm=1.1960 e0=-0.8015 e1=0.8699 e2=-0.0897 e3=-0.0319 e4=-0.0715 e5=-0.0612 e6=-0.0135 e7=-0.1141 N=1.0 Q=0.333 imagStrength=0.8877 [共役の子]
Depth=12 Norm=0.8484 e0=-0.7784 e1=0.2915 e2=-0.0113 e3=0.1153 e4=-0.0465 e5=0.0203 e6=0.0465 e7=-0.1038 N=3.0 Q=1.000 imagStrength=0.3375 [共役の子]
Depth=10 Norm=0.9127 e0=0.8504 e1=-0.3036 e2=0.0150 e3=-0.1051 e4=0.0366 e5=-0.0160 e6=-0.0370 e7=0.0594 N=3.0 Q=1.000 imagStrength=0.3316 [共役の子]
Depth=13 Norm=1.2592 e0=-1.0374 e1=0.6841 e2=-0.0902 e3=-0.0308 e4=-0.0832 e5=-0.0837 e6=-0.1118 e7=-0.0763 N=0.0 Q=0.000 imagStrength=0.7137 [通常の子]
Depth=13 Norm=1.1905 e0=-0.1298 e1=1.1557 e2=-0.0569 e3=-0.0399 e4=-0.0717 e5=-0.0670 e6=0.1771 e7=-0.1371 N=1.0 Q=0.333 imagStrength=1.1834 [通常の子]
Depth=13 Norm=1.1360 e0=-0.0196 e1=-1.0981 e2=-0.1728 e3=-0.0392 e4=-0.0738 e5=-0.0738 e6=0.1649 e7=-0.1214 N=1.0 Q=0.333 imagStrength=1.1358 [通常の子]
Depth=11 Norm=0.5086 e0=-0.1353 e1=0.4730 e2=0.0757 e3=0.0573 e4=0.0176 e5=0.0360 e6=-0.0169 e7=0.0762 N=3.0 Q=1.000 imagStrength=0.4903 [共役の子]
Depth=12 Norm=0.8296 e0=-0.8044 e1=0.1583 e2=-0.0202 e3=0.0745 e4=-0.0341 e5=0.0177 e6=0.0743 e7=0.0569 N=3.0 Q=1.000 imagStrength=0.2031 [通常の子]
Depth=12 Norm=0.9103 e0=0.8710 e1=-0.2294 e2=-0.0396 e3=0.0745 e4=-0.0341 e5=0.0177 e6=0.0743 e7=0.0569 N=3.0 Q=1.000 imagStrength=0.2645 [共役の子]
Depth=13 Norm=1.1927 e0=-0.0370 e1=1.1648 e2=-0.1080 e3=-0.0211 e4=-0.0781 e5=-0.0656 e6=0.0101 e7=-0.2040 N=1.0 Q=0.333 imagStrength=1.1921 [共役の子]
Depth=6 Norm=0.8180 e0=0.7835 e1=0.2287 e2=0.0066 e3=0.0376 e4=-0.0061 e5=0.0047 e6=-0.0107 e7=-0.0375 N=3.0 Q=1.000 imagStrength=0.2352 [通常の子]
Depth=13 Norm=1.2123 e0=1.1682 e1=-0.0429 e2=0.0790 e3=0.1298 e4=0.0121 e5=0.1823 e6=0.0488 e7=-0.2105 N=0.0 Q=0.000 imagStrength=0.3240 [通常の子]
Depth=11 Norm=0.7984 e0=-0.7673 e1=0.1629 e2=-0.0033 e3=-0.1148 e4=0.0206 e5=-0.0633 e6=0.0242 e7=0.0628 N=3.0 Q=1.000 imagStrength=0.2207 [通常の子]
Depth=13 Norm=1.1704 e0=0.8964 e1=-0.7130 e2=0.0325 e3=0.1368 e4=-0.0011 e5=0.1363 e6=-0.0653 e7=-0.1238 N=1.0 Q=0.333 imagStrength=0.7526 [共役の子]
Depth=12 Norm=0.8227 e0=0.7220 e1=-0.3814 e2=0.0418 e3=-0.0343 e4=0.0613 e5=0.0112 e6=0.0453 e7=0.0331 N=3.0 Q=1.000 imagStrength=0.3943 [共役の子]
Depth=10 Norm=0.7594 e0=-0.6594 e1=0.3643 e2=-0.0490 e3=0.0298 e4=-0.0521 e5=-0.0100 e6=-0.0550 e7=0.0039 N=3.0 Q=1.000 imagStrength=0.3767 [共役の子]
Depth=13 Norm=1.1248 e0=1.0482 e1=-0.3068 e2=0.0470 e3=0.1344 e4=0.0119 e5=0.1579 e6=0.0518 e7=-0.1558 N=0.0 Q=0.000 imagStrength=0.4080 [通常の子]
Depth=13 Norm=1.2072 e0=0.4523 e1=-1.0657 e2=-0.0133 e3=0.1478 e4=0.0015 e5=0.1464 e6=-0.2351 e7=-0.1355 N=1.0 Q=0.333 imagStrength=1.1193 [通常の子]
Depth=13 Norm=1.2477 e0=-0.2283 e1=1.1737 e2=0.1012 e3=0.1480 e4=0.0005 e5=0.1436 e6=-0.2398 e7=-0.1296 N=1.0 Q=0.333 imagStrength=1.2267 [通常の子]
Depth=11 Norm=0.6705 e0=0.4368 e1=-0.4843 e2=-0.0342 e3=-0.1162 e4=0.0182 e5=-0.0570 e6=0.0745 e7=0.0203 N=3.0 Q=1.000 imagStrength=0.5087 [共役の子]
Depth=12 Norm=0.8453 e0=0.7922 e1=-0.2713 e2=0.0489 e3=-0.0044 e4=0.0521 e5=0.0126 e6=0.0214 e7=-0.0877 N=3.0 Q=1.000 imagStrength=0.2950 [通常の子]
Depth=12 Norm=0.7860 e0=-0.7049 e1=0.3220 e2=0.0786 e3=-0.0044 e4=0.0521 e5=0.0126 e6=0.0214 e7=-0.0877 N=3.0 Q=1.000 imagStrength=0.3478 [共役の子]
Depth=13 Norm=1.2252 e0=0.5138 e1=-1.0936 e2=0.0354 e3=0.1285 e4=0.0054 e5=0.1278 e6=-0.0789 e7=-0.0252 N=1.0 Q=0.333 imagStrength=1.1122 [共役の子]
Depth=9 Norm=0.5707 e0=0.3913 e1=0.3924 e2=0.0532 e3=0.1140 e4=0.0008 e5=0.0334 e6=-0.0091 e7=-0.0399 N=3.0 Q=1.000 imagStrength=0.4155 [通常の子]
Depth=12 Norm=0.4478 e0=-0.0266 e1=-0.4355 e2=0.0410 e3=-0.0347 e4=0.0529 e5=0.0013 e6=0.0620 e7=0.0250 N=3.0 Q=1.000 imagStrength=0.4471 [通常の子]
Depth=13 Norm=1.2465 e0=-1.1043 e1=-0.5003 e2=0.0333 e3=0.1397 e4=0.0291 e5=0.1360 e6=0.0399 e7=-0.2057 N=0.0 Q=0.000 imagStrength=0.5780 [共役の子]
Depth=13 Norm=1.2605 e0=1.0816 e1=0.6046 e2=0.0901 e3=0.1420 e4=0.0190 e5=0.0972 e6=-0.0250 e7=-0.1218 N=0.0 Q=0.000 imagStrength=0.6473 [共役の子]
Depth=11 Norm=0.5109 e0=-0.0777 e1=-0.4842 e2=-0.0364 e3=-0.1170 e4=0.0049 e5=-0.0438 e6=-0.0290 e7=0.0520 N=3.0 Q=1.000 imagStrength=0.5049 [共役の子]
Depth=13 Norm=1.2589 e0=-0.2864 e1=-1.2098 e2=-0.0119 e3=0.1436 e4=0.0218 e5=0.0890 e6=0.0112 e7=-0.0999 N=1.0 Q=0.333 imagStrength=1.2259 [通常の子]
Depth=13 Norm=1.3281 e0=0.5089 e1=1.1966 e2=0.1118 e3=0.1419 e4=0.0285 e5=0.1141 e6=0.0531 e7=-0.1541 N=1.0 Q=0.333 imagStrength=1.2267 [通常の子]
Depth=13 Norm=1.2126 e0=-0.5612 e1=1.0270 e2=0.0987 e3=0.1480 e4=0.0190 e5=0.0918 e6=-0.2347 e7=-0.0714 N=1.0 Q=0.333 imagStrength=1.0749 [通常の子]
Depth=11 Norm=0.6743 e0=0.4532 e1=-0.4775 e2=-0.0342 e3=-0.1177 e4=0.0050 e5=-0.0412 e6=0.0671 e7=0.0047 N=3.0 Q=1.000 imagStrength=0.4993 [通常の子]
Depth=13 Norm=1.1902 e0=0.0573 e1=1.1642 e2=0.1545 e3=0.1301 e4=0.0271 e5=0.1062 e6=-0.0566 e7=-0.0430 N=1.0 Q=0.333 imagStrength=1.1888 [共役の子]
Depth=12 Norm=0.7073 e0=-0.6905 e1=-0.0781 e2=0.0609 e3=0.0004 e4=0.0358 e5=0.0022 e6=0.0152 e7=-0.1108 N=2.0 Q=0.667 imagStrength=0.1536 [共役の子]
Depth=10 Norm=0.8602 e0=0.8509 e1=0.0665 e2=-0.0631 e3=0.0281 e4=-0.0320 e5=-0.0006 e6=-0.0127 e7=0.0741 N=3.0 Q=1.000 imagStrength=0.1260 [共役の子]
Depth=13 Norm=1.2885 e0=-0.3179 e1=1.2248 e2=0.1601 e3=0.1304 e4=0.0255 e5=0.1026 e6=-0.0627 e7=-0.0354 N=1.0 Q=0.333 imagStrength=1.2487 [通常の子]
Depth=11 Norm=0.8243 e0=0.7437 e1=-0.3498 e2=-0.0069 e3=-0.0119 e4=-0.0232 e5=0.0440 e6=-0.0370 e7=0.0067 N=3.0 Q=1.000 imagStrength=0.3556 [通常の子]
Depth=13 Norm=1.1651 e0=-0.5312 e1=1.0169 e2=0.0450 e3=0.0153 e4=0.0274 e5=-0.1019 e6=0.1665 e7=-0.0031 N=1.0 Q=0.333 imagStrength=1.0369 [共役の子]
Depth=13 Norm=1.1515 e0=-0.9691 e1=0.6051 e2=-0.0064 e3=0.0281 e4=0.0160 e5=-0.1350 e6=0.0157 e7=0.0329 N=0.0 Q=0.000 imagStrength=0.6219 [通常の子]
Depth=10 Norm=0.7031 e0=0.5150 e1=-0.4746 e2=-0.0267 e3=-0.0175 e4=0.0417 e5=0.0203 e6=-0.0105 e7=-0.0257 N=3.0 Q=1.000 imagStrength=0.4787 [通常の子]
Depth=13 Norm=1.2146 e0=-1.2067 e1=-0.0428 e2=-0.0219 e3=0.0262 e4=0.0123 e5=-0.1255 e6=-0.0038 e7=0.0127 N=0.0 Q=0.000 imagStrength=0.1381 [通常の子]
Depth=12 Norm=0.7115 e0=-0.5345 e1=0.4653 e2=0.0322 e3=0.0203 e4=-0.0411 e5=-0.0177 e6=0.0221 e7=-0.0053 N=3.0 Q=1.000 imagStrength=0.4696 [共役の子]
Depth=8 Norm=0.6366 e0=0.3916 e1=-0.5005 e2=-0.0186 e3=0.0129 e4=0.0036 e5=0.0085 e6=0.0272 e7=0.0050 N=3.0 Q=1.000 imagStrength=0.5019 [共役の子]
Depth=11 Norm=0.6498 e0=-0.5879 e1=-0.2701 e2=-0.0025 e3=-0.0122 e4=-0.0235 e5=0.0453 e6=-0.0297 e7=-0.0020 N=3.0 Q=1.000 imagStrength=0.2768 [共役の子]
Depth=13 Norm=1.2592 e0=-0.9603 e1=-0.7944 e2=-0.0753 e3=0.0278 e4=0.0147 e5=-0.1447 e6=-0.0036 e7=0.0693 N=0.0 Q=0.000 imagStrength=0.8145 [通常の子]
Depth=13 Norm=1.3308 e0=1.1287 e1=0.6920 e2=-0.0000 e3=0.0251 e4=0.0271 e5=-0.0950 e6=0.0794 e7=-0.0381 N=0.0 Q=0.000 imagStrength=0.7050 [通常の子]
Depth=13 Norm=1.1965 e0=-1.1596 e1=0.2626 e2=-0.0150 e3=0.0269 e4=0.0234 e5=-0.0740 e6=0.0221 e7=-0.1030 N=0.0 Q=0.000 imagStrength=0.2950 [共役の子]
Depth=12 Norm=0.6533 e0=-0.3705 e1=0.5345 e2=0.0356 e3=0.0159 e4=-0.0405 e5=-0.0174 e6=0.0170 e7=-0.0098 N=3.0 Q=1.000 imagStrength=0.5381 [通常の子]
Depth=12 Norm=0.6106 e0=0.2960 e1=-0.5313 e2=-0.0179 e3=0.0159 e4=-0.0405 e5=-0.0174 e6=0.0170 e7=-0.0098 N=3.0 Q=1.000 imagStrength=0.5340 [共役の子]
Depth=13 Norm=1.2315 e0=-0.2952 e1=-1.1584 e2=-0.1130 e3=0.0273 e4=-0.0609 e5=0.0597 e6=-0.2380 e7=-0.1006 N=1.0 Q=0.333 imagStrength=1.1956 [共役の子]
Depth=13 Norm=1.1844 e0=0.1542 e1=1.1422 e2=0.0052 e3=0.0273 e4=-0.0605 e5=0.0613 e6=-0.2356 e7=-0.1037 N=1.0 Q=0.333 imagStrength=1.1743 [共役の子]
Depth=12 Norm=0.6827 e0=-0.6776 e1=-0.0673 e2=-0.0009 e3=0.0069 e4=0.0189 e5=0.0274 e6=0.0131 e7=-0.0341 N=2.0 Q=0.667 imagStrength=0.0838 [通常の子]
Depth=13 Norm=1.2494 e0=-0.2705 e1=-1.1884 e2=-0.1103 e3=0.0257 e4=-0.0628 e5=0.0453 e6=-0.2309 e7=-0.0581 N=1.0 Q=0.333 imagStrength=1.2198 [通常の子]
Depth=13 Norm=1.3182 e0=0.5111 e1=1.1913 e2=0.0118 e3=0.0244 e4=-0.0566 e5=0.0705 e6=-0.1893 e7=-0.1119 N=1.0 Q=0.333 imagStrength=1.2151 [通常の子]
Depth=11 Norm=0.4972 e0=-0.0660 e1=-0.4875 e2=-0.0112 e3=-0.0034 e4=0.0287 e5=-0.0150 e6=0.0629 e7=0.0055 N=3.0 Q=1.000 imagStrength=0.4928 [共役の子]
Depth=11 Norm=0.7521 e0=-0.7378 e1=-0.1268 e2=0.0051 e3=-0.0035 e4=0.0314 e5=-0.0229 e6=0.0151 e7=0.0589 N=3.0 Q=1.000 imagStrength=0.1460 [通常の子]
Depth=13 Norm=1.2540 e0=1.2444 e1=-0.0971 e2=-0.0199 e3=0.0139 e4=-0.0630 e5=0.0502 e6=-0.0155 e7=-0.0842 N=0.0 Q=0.000 imagStrength=0.1544 [共役の子]
Depth=13 Norm=1.3201 e0=1.1145 e1=0.6653 e2=0.0046 e3=0.0162 e4=-0.0520 e5=0.1011 e6=0.0259 e7=-0.2101 N=0.0 Q=0.000 imagStrength=0.7075 [通常の子]
Depth=10 Norm=0.6077 e0=0.4748 e1=0.3735 e2=0.0135 e3=-0.0230 e4=-0.0210 e5=-0.0243 e6=-0.0502 e7=-0.0083 N=3.0 Q=1.000 imagStrength=0.3793 [通常の子]
Depth=13 Norm=1.3044 e0=0.4824 e1=1.1924 e2=0.0588 e3=0.0039 e4=-0.0476 e5=0.0719 e6=0.1664 e7=-0.0911 N=1.0 Q=0.333 imagStrength=1.2119 [通常の子]
Depth=12 Norm=0.4837 e0=-0.2859 e1=-0.3845 e2=-0.0167 e3=0.0363 e4=0.0160 e5=0.0252 e6=0.0440 e7=-0.0011 N=3.0 Q=1.000 imagStrength=0.3902 [共役の子]
Depth=5 Norm=0.9470 e0=0.9382 e1=0.1195 e2=0.0304 e3=-0.0144 e4=0.0052 e5=0.0003 e6=0.0287 e7=0.0175 N=3.0 Q=1.000 imagStrength=0.1287 [共役の子]
Depth=12 Norm=0.4402 e0=-0.2242 e1=-0.3485 e2=-0.0455 e3=0.1105 e4=-0.0450 e5=0.0184 e6=0.0218 e7=-0.0704 N=3.0 Q=1.000 imagStrength=0.3788 [共役の子]
Depth=10 Norm=0.5422 e0=0.4032 e1=0.3344 e2=0.0485 e3=-0.1064 e4=0.0325 e5=-0.0156 e6=-0.0270 e7=0.0625 N=3.0 Q=1.000 imagStrength=0.3625 [共役の子]
Depth=13 Norm=1.1704 e0=0.4545 e1=1.0682 e2=-0.0753 e3=-0.0371 e4=-0.0683 e5=-0.0576 e6=-0.0313 e7=-0.0784 N=1.0 Q=0.333 imagStrength=1.0785 [通常の子]
Depth=13 Norm=1.1258 e0=-0.6250 e1=-0.8700 e2=-0.2155 e3=-0.0214 e4=-0.0758 e5=-0.0539 e6=-0.2074 e7=-0.1459 N=1.0 Q=0.333 imagStrength=0.9363 [共役の子]
Depth=13 Norm=1.1023 e0=0.5226 e1=0.9214 e2=-0.1231 e3=-0.0208 e4=-0.0790 e5=-0.0678 e6=-0.2298 e7=-0.1170 N=1.0 Q=0.333 imagStrength=0.9705 [共役の子]
Depth=12 Norm=0.4832 e0=-0.4188 e1=-0.2137 e2=-0.0397 e3=0.0832 e4=-0.0363 e5=0.0190 e6=0.0284 e7=-0.0387 N=3.0 Q=1.000 imagStrength=0.2411 [通常の子]
Depth=12 Norm=0.7982 e0=-0.7728 e1=0.1569 e2=-0.0215 e3=0.0779 e4=-0.0297 e5=0.0169 e6=0.0662 e7=0.0561 N=3.0 Q=1.000 imagStrength=0.1996 [通常の子]
Depth=12 Norm=0.8765 e0=0.8375 e1=-0.2247 e2=-0.0407 e3=0.0779 e4=-0.0297 e5=0.0169 e6=0.0662 e7=0.0561 N=3.0 Q=1.000 imagStrength=0.2587 [共役の子]
Depth=13 Norm=1.1427 e0=-0.0442 e1=1.1175 e2=-0.1115 e3=-0.0248 e4=-0.0728 e5=-0.0556 e6=0.0138 e7=-0.1825 N=1.0 Q=0.333 imagStrength=1.1418 [共役の子]
Depth=11 Norm=0.4701 e0=0.0851 e1=-0.4506 e2=0.0302 e3=0.0599 e4=0.0169 e5=0.0314 e6=-0.0191 e7=0.0681 N=3.0 Q=1.000 imagStrength=0.4624 [通常の子]
Depth=13 Norm=1.1017 e0=0.5303 e1=0.9381 e2=-0.0721 e3=-0.0418 e4=-0.0687 e5=-0.0634 e6=0.1608 e7=-0.1038 N=1.0 Q=0.333 imagStrength=0.9656 [共役の子]
Depth=13 Norm=1.1504 e0=-0.0549 e1=1.1268 e2=-0.1102 e3=-0.0256 e4=-0.0724 e5=-0.0601 e6=0.0179 e7=-0.1697 N=1.0 Q=0.333 imagStrength=1.1491 [通常の子]
Depth=8 Norm=0.9055 e0=0.8259 e1=-0.3461 e2=-0.0137 e3=0.1179 e4=-0.0050 e5=0.0226 e6=0.0577 e7=0.0052 N=3.0 Q=1.000 imagStrength=0.3712 [通常の子]
Depth=11 Norm=0.8150 e0=-0.8078 e1=0.0388 e2=0.0558 e3=0.0570 e4=-0.0011 e5=0.0576 e6=0.0165 e7=0.0116 N=3.0 Q=1.000 imagStrength=0.1077 [共役の子]
Depth=13 Norm=1.2272 e0=-1.2033 e1=-0.0679 e2=-0.1495 e3=-0.0273 e4=-0.0544 e5=-0.1524 e6=-0.0596 e7=0.0274 N=0.0 Q=0.000 imagStrength=0.2412 [通常の子]
Depth=13 Norm=1.2731 e0=1.2551 e1=-0.0524 e2=-0.1489 e3=-0.0303 e4=-0.0414 e5=-0.1016 e6=0.0261 e7=-0.0836 N=0.0 Q=0.000 imagStrength=0.2133 [通常の子]
Depth=13 Norm=1.1870 e0=-0.7450 e1=0.8866 e2=-0.1208 e3=-0.0201 e4=-0.0493 e5=-0.0890 e6=-0.1261 e7=-0.1634 N=1.0 Q=0.333 imagStrength=0.9242 [共役の子]
Depth=12 Norm=0.8568 e0=-0.7385 e1=0.4199 e2=-0.0059 e3=0.0863 e4=-0.0540 e5=0.0051 e6=0.0321 e7=-0.0315 N=3.0 Q=1.000 imagStrength=0.4345 [通常の子]
Depth=12 Norm=0.8637 e0=0.7196 e1=-0.4616 e2=-0.0501 e3=0.0863 e4=-0.0540 e5=0.0051 e6=0.0321 e7=-0.0315 N=3.0 Q=1.000 imagStrength=0.4775 [共役の子]
Depth=12 Norm=0.8186 e0=0.8023 e1=-0.0998 e2=-0.0337 e3=0.0729 e4=-0.0507 e5=0.0024 e6=0.0484 e7=0.0708 N=3.0 Q=1.000 imagStrength=0.1623 [共役の子]
Depth=10 Norm=0.8434 e0=-0.8288 e1=0.0833 e2=0.0364 e3=-0.1014 e4=0.0452 e5=0.0007 e6=-0.0529 e7=-0.0320 N=3.0 Q=1.000 imagStrength=0.1563 [共役の子]
Depth=13 Norm=1.1456 e0=0.5938 e1=-0.9366 e2=-0.2169 e3=-0.0241 e4=-0.0481 e5=-0.1144 e6=0.0319 e7=-0.1365 N=1.0 Q=0.333 imagStrength=0.9797 [通常の子]
Depth=13 Norm=1.2018 e0=-0.4242 e1=1.0970 e2=-0.0691 e3=-0.0371 e4=-0.0434 e5=-0.0955 e6=0.1626 e7=-0.1321 N=1.0 Q=0.333 imagStrength=1.1245 [共役の子]
Depth=13 Norm=1.2734 e0=0.6549 e1=-1.0602 e2=-0.1801 e3=-0.0351 e4=-0.0514 e5=-0.1260 e6=0.1106 e7=-0.0648 N=1.0 Q=0.333 imagStrength=1.0921 [共役の子]
Depth=12 Norm=0.8828 e0=0.8468 e1=-0.2044 e2=-0.0364 e3=0.1106 e4=-0.0562 e5=0.0038 e6=0.0613 e7=-0.0104 N=3.0 Q=1.000 imagStrength=0.2498 [通常の子]
Depth=10 Norm=0.7178 e0=-0.6861 e1=-0.1630 e2=-0.0202 e3=-0.0751 e4=-0.0277 e5=-0.0331 e6=-0.0522 e7=0.0855 N=3.0 Q=1.000 imagStrength=0.2110 [通常の子]
Depth=13 Norm=1.1722 e0=0.0347 e1=-1.1038 e2=-0.1673 e3=0.0549 e4=-0.0832 e5=0.0973 e6=-0.2670 e7=-0.1890 N=1.0 Q=0.333 imagStrength=1.1717 [通常の子]
Depth=12 Norm=0.6523 e0=0.6270 e1=0.1423 e2=0.0147 e3=0.0591 e4=0.0307 e5=0.0370 e6=0.0532 e7=-0.0572 N=3.0 Q=1.000 imagStrength=0.1799 [共役の子]
Depth=9 Norm=0.4989 e0=-0.2472 e1=-0.4174 e2=-0.0583 e3=0.0355 e4=-0.0276 e5=0.0404 e6=-0.0216 e7=-0.0773 N=3.0 Q=1.000 imagStrength=0.4333 [共役の子]
Depth=12 Norm=0.4809 e0=0.1930 e1=0.4149 e2=0.0288 e3=0.0897 e4=0.0217 e5=0.0364 e6=0.0468 e7=-0.0952 N=3.0 Q=1.000 imagStrength=0.4405 [通常の子]
Depth=13 Norm=1.2245 e0=1.0259 e1=0.6447 e2=-0.0305 e3=0.0365 e4=-0.0789 e5=0.0798 e6=-0.1000 e7=-0.0814 N=0.0 Q=0.000 imagStrength=0.6687 [共役の子]
Depth=13 Norm=1.2245 e0=-0.8534 e1=-0.8471 e2=-0.1078 e3=0.0348 e4=-0.0716 e5=0.1089 e6=-0.0509 e7=-0.1448 N=1.0 Q=0.333 imagStrength=0.8781 [共役の子]
Depth=13 Norm=1.2016 e0=-1.1303 e1=0.2231 e2=-0.0685 e3=0.0409 e4=-0.0726 e5=0.1450 e6=-0.0220 e7=-0.2889 N=0.0 Q=0.000 imagStrength=0.4079 [共役の子]
Depth=12 Norm=0.6437 e0=-0.3466 e1=0.5235 e2=0.0338 e3=0.0754 e4=0.0344 e5=0.0372 e6=0.0897 e7=-0.0521 N=3.0 Q=1.000 imagStrength=0.5425 [通常の子]
Depth=12 Norm=0.6063 e0=0.2807 e1=-0.5190 e2=-0.0185 e3=0.0754 e4=0.0344 e5=0.0372 e6=0.0897 e7=-0.0521 N=3.0 Q=1.000 imagStrength=0.5374 [共役の子]
Depth=13 Norm=1.2100 e0=-0.9074 e1=-0.7796 e2=-0.1068 e3=0.0350 e4=-0.0784 e5=0.0731 e6=0.0245 e7=-0.0904 N=1.0 Q=0.333 imagStrength=0.8005 [通常の子]
Depth=11 Norm=0.7521 e0=0.7161 e1=0.2093 e2=0.0488 e3=-0.0067 e4=0.0394 e5=-0.0281 e6=0.0125 e7=0.0641 N=3.0 Q=1.000 imagStrength=0.2298 [通常の子]
Depth=13 Norm=1.2798 e0=-1.2391 e1=-0.1482 e2=-0.0971 e3=0.0406 e4=-0.0688 e5=0.1221 e6=0.0341 e7=-0.2208 N=0.0 Q=0.000 imagStrength=0.3203 [共役の子]
Depth=13 Norm=1.2019 e0=-0.8035 e1=0.8746 e2=-0.0129 e3=0.0431 e4=0.0096 e5=-0.1036 e6=0.1409 e7=-0.0344 N=1.0 Q=0.333 imagStrength=0.8938 [通常の子]
Depth=13 Norm=1.1865 e0=0.6958 e1=-0.9315 e2=-0.1056 e3=0.0418 e4=0.0144 e5=-0.0844 e6=0.1734 e7=-0.0765 N=1.0 Q=0.333 imagStrength=0.9611 [通常の子]
Depth=11 Norm=0.7243 e0=-0.5930 e1=0.4063 e2=0.0572 e3=-0.0188 e4=-0.0168 e5=0.0357 e6=-0.0244 e7=0.0446 N=3.0 Q=1.000 imagStrength=0.4158 [共役の子]
Depth=12 Norm=0.8439 e0=-0.7303 e1=0.4126 e2=0.0346 e3=0.0519 e4=-0.0328 e5=-0.0137 e6=0.0540 e7=0.0233 N=3.0 Q=1.000 imagStrength=0.4229 [通常の子]
Depth=12 Norm=0.8549 e0=0.7166 e1=-0.4582 e2=-0.0091 e3=0.0519 e4=-0.0328 e5=-0.0137 e6=0.0540 e7=0.0233 N=3.0 Q=1.000 imagStrength=0.4663 [共役の子]
Depth=13 Norm=1.1692 e0=-0.7224 e1=0.8948 e2=-0.0520 e3=0.0590 e4=0.0092 e5=-0.0614 e6=0.0180 e7=-0.1846 N=1.0 Q=0.333 imagStrength=0.9193 [共役の子]
Depth=10 Norm=0.5331 e0=-0.1062 e1=0.5150 e2=0.0178 e3=-0.0671 e4=0.0375 e5=0.0174 e6=-0.0285 e7=0.0204 N=3.0 Q=1.000 imagStrength=0.5225 [通常の子]
Depth=13 Norm=1.2659 e0=1.0691 e1=0.6613 e2=-0.0468 e3=0.0504 e4=0.0158 e5=-0.0738 e6=0.0638 e7=-0.0874 N=0.0 Q=0.000 imagStrength=0.6778 [通常の子]
Depth=12 Norm=0.5994 e0=0.2682 e1=-0.5297 e2=-0.0129 e3=0.0649 e4=-0.0432 e5=-0.0148 e6=0.0172 e7=-0.0013 N=3.0 Q=1.000 imagStrength=0.5361 [共役の子]
Depth=9 Norm=0.9552 e0=0.9515 e1=-0.0447 e2=-0.0370 e3=0.0296 e4=0.0077 e5=-0.0384 e6=-0.0116 e7=-0.0338 N=3.0 Q=1.000 imagStrength=0.0840 [共役の子]
Depth=12 Norm=0.8410 e0=0.7013 e1=-0.4518 e2=-0.0076 e3=0.0714 e4=-0.0382 e5=-0.0122 e6=0.0414 e7=-0.0540 N=3.0 Q=1.000 imagStrength=0.4643 [通常の子]
Depth=13 Norm=1.2595 e0=-1.0527 e1=0.6652 e2=-0.0451 e3=0.0538 e4=0.0115 e5=-0.0503 e6=-0.0138 e7=-0.1666 N=0.0 Q=0.000 imagStrength=0.6914 [共役の子]
Depth=13 Norm=1.3269 e0=1.1970 e1=-0.5380 e2=-0.1062 e3=0.0567 e4=-0.0018 e5=-0.1038 e6=-0.1034 e7=-0.0508 N=0.0 Q=0.000 imagStrength=0.5727 [共役の子]
Depth=12 Norm=0.8021 e0=-0.7633 e1=0.2070 e2=0.0472 e3=-0.0842 e4=0.0308 e5=-0.0193 e6=-0.0001 e7=0.0848 N=3.0 Q=1.000 imagStrength=0.2464 [通常の子]
Depth=12 Norm=0.8654 e0=0.8104 e1=-0.2758 e2=0.0230 e3=-0.0842 e4=0.0308 e5=-0.0193 e6=-0.0001 e7=0.0848 N=3.0 Q=1.000 imagStrength=0.3037 [共役の子]
Depth=13 Norm=1.1134 e0=-0.1820 e1=1.0817 e2=0.1414 e3=0.0696 e4=0.0640 e5=0.0458 e6=0.0708 e7=-0.0196 N=1.0 Q=0.333 imagStrength=1.0985 [共役の子]
Depth=11 Norm=0.4935 e0=0.1733 e1=-0.4473 e2=-0.0581 e3=-0.0735 e4=-0.0177 e5=-0.0221 e6=-0.0623 e7=0.0041 N=3.0 Q=1.000 imagStrength=0.4621 [通常の子]
Depth=13 Norm=1.0797 e0=0.3985 e1=0.9560 e2=0.1819 e3=0.0538 e4=0.0671 e5=0.0347 e6=0.2177 e7=0.0626 N=1.0 Q=0.333 imagStrength=1.0035 [共役の子]
Depth=13 Norm=1.1224 e0=-0.1813 e1=1.0917 e2=0.1420 e3=0.0703 e4=0.0617 e5=0.0342 e6=0.0711 e7=0.0086 N=1.0 Q=0.333 imagStrength=1.1077 [通常の子]
Depth=9 Norm=0.4464 e0=-0.1574 e1=-0.4120 e2=0.0250 e3=0.0557 e4=0.0170 e5=0.0087 e6=0.0092 e7=0.0234 N=3.0 Q=1.000 imagStrength=0.4177 [通常の子]
Depth=12 Norm=0.4510 e0=0.2568 e1=0.3569 e2=0.0558 e3=-0.0517 e4=0.0159 e5=-0.0179 e6=-0.0440 e7=-0.0415 N=3.0 Q=1.000 imagStrength=0.3707 [通常の子]
Depth=13 Norm=1.1270 e0=0.8812 e1=0.6637 e2=0.1589 e3=0.0578 e4=0.0624 e5=0.0159 e6=-0.0212 e7=0.1415 N=0.0 Q=0.000 imagStrength=0.7026 [共役の子]
Depth=13 Norm=1.1333 e0=-0.7212 e1=-0.8600 e2=0.0803 e3=0.0565 e4=0.0680 e5=0.0389 e6=0.0169 e7=0.0923 N=1.0 Q=0.333 imagStrength=0.8742 [共役の子]
Depth=11 Norm=0.4540 e0=-0.0344 e1=0.4430 e2=-0.0116 e3=-0.0739 e4=-0.0172 e5=-0.0202 e6=0.0282 e7=-0.0394 N=3.0 Q=1.000 imagStrength=0.4527 [共役の子]
Depth=13 Norm=1.1112 e0=0.0166 e1=1.0886 e2=0.1829 e3=0.0579 e4=0.0642 e5=0.0408 e6=-0.0143 e7=0.0812 N=1.0 Q=0.333 imagStrength=1.1111 [通常の子]
Depth=13 Norm=1.0508 e0=-0.1325 e1=-1.0300 e2=0.0744 e3=0.0585 e4=0.0617 e5=0.0296 e6=-0.0324 e7=0.1045 N=1.0 Q=0.333 imagStrength=1.0424 [通常の子]
Depth=12 Norm=0.6585 e0=-0.4401 e1=0.4776 e2=0.0588 e3=-0.0561 e4=0.0650 e5=0.0117 e6=0.0153 e7=-0.0254 N=3.0 Q=1.000 imagStrength=0.4898 [共役の子]
Depth=10 Norm=0.6445 e0=0.4062 e1=-0.4882 e2=-0.0660 e3=0.0681 e4=-0.0545 e5=-0.0118 e6=-0.0036 e7=-0.0022 N=3.0 Q=1.000 imagStrength=0.5005 [共役の子]
Depth=13 Norm=1.2146 e0=-1.1813 e1=-0.2138 e2=0.1041 e3=0.0577 e4=0.0068 e5=0.1265 e6=-0.0605 e7=0.0159 N=0.0 Q=0.000 imagStrength=0.2826 [通常の子]
Depth=13 Norm=1.2096 e0=1.1924 e1=0.0462 e2=0.1218 e3=0.0526 e4=0.0125 e5=0.1095 e6=0.0417 e7=0.0879 N=0.0 Q=0.000 imagStrength=0.2033 [共役の子]
Depth=13 Norm=1.1729 e0=-1.1106 e1=-0.3009 e2=0.1035 e3=0.0501 e4=0.0239 e5=0.1549 e6=0.1178 e7=-0.0106 N=0.0 Q=0.000 imagStrength=0.3773 [共役の子]
Depth=12 Norm=0.5580 e0=-0.2085 e1=0.5072 e2=0.0594 e3=-0.0578 e4=0.0587 e5=0.0094 e6=-0.0067 e7=0.0149 N=3.0 Q=1.000 imagStrength=0.5176 [通常の子]
Depth=12 Norm=0.5236 e0=0.4441 e1=0.2532 e2=0.0485 e3=-0.0407 e4=0.0585 e5=0.0115 e6=-0.0051 e7=-0.0728 N=3.0 Q=1.000 imagStrength=0.2775 [通常の子]
Depth=12 Norm=0.5345 e0=-0.4876 e1=-0.1915 e2=0.0262 e3=-0.0407 e4=0.0585 e5=0.0115 e6=-0.0051 e7=-0.0728 N=3.0 Q=1.000 imagStrength=0.2188 [共役の子]
Depth=13 Norm=1.1244 e0=-0.7124 e1=-0.8494 e2=0.0814 e3=0.0530 e4=0.0182 e5=0.1589 e6=-0.0159 e7=-0.0066 N=1.0 Q=0.333 imagStrength=0.8699 [共役の子]
Depth=11 Norm=0.6494 e0=0.5897 e1=0.2553 e2=-0.0205 e3=-0.0666 e4=0.0133 e5=-0.0553 e6=0.0145 e7=-0.0226 N=3.0 Q=1.000 imagStrength=0.2720 [通常の子]
Depth=13 Norm=1.1876 e0=-1.1321 e1=-0.3023 e2=0.0807 e3=0.0593 e4=0.0212 e5=0.1559 e6=-0.0474 e7=-0.0219 N=0.0 Q=0.000 imagStrength=0.3590 [共役の子]
Depth=13 Norm=1.1181 e0=-0.7199 e1=-0.8362 e2=0.0792 e3=0.0524 e4=0.0140 e5=0.1177 e6=-0.0293 e7=0.0935 N=1.0 Q=0.333 imagStrength=0.8555 [通常の子]
Depth=7 Norm=1.0127 e0=0.9913 e1=-0.2015 e2=-0.0265 e3=0.0311 e4=-0.0030 e5=0.0029 e6=0.0131 e7=-0.0242 N=3.0 Q=1.000 imagStrength=0.2075 [通常の子]
Depth=13 Norm=1.2214 e0=-0.2018 e1=-1.1713 e2=0.0482 e3=0.0190 e4=0.0696 e5=-0.0342 e6=0.2500 e7=0.0896 N=1.0 Q=0.333 imagStrength=1.2046 [共役の子]
Depth=12 Norm=0.7686 e0=0.7656 e1=0.0174 e2=0.0227 e3=-0.0385 e4=-0.0064 e5=-0.0271 e6=-0.0081 e7=0.0379 N=2.0 Q=0.667 imagStrength=0.0677 [通常の子]
Depth=12 Norm=0.7644 e0=-0.7592 e1=0.0591 e2=0.0248 e3=-0.0385 e4=-0.0064 e5=-0.0271 e6=-0.0081 e7=0.0379 N=2.0 Q=0.667 imagStrength=0.0887 [共役の子]
Depth=13 Norm=1.2629 e0=0.8041 e1=-0.9366 e2=0.0565 e3=0.0201 e4=0.0722 e5=-0.0201 e6=0.2439 e7=0.0490 N=1.0 Q=0.333 imagStrength=0.9738 [通常の子]
Depth=11 Norm=0.6978 e0=-0.4950 e1=0.4846 e2=-0.0049 e3=-0.0433 e4=-0.0275 e5=0.0038 e6=-0.0667 e7=-0.0004 N=3.0 Q=1.000 imagStrength=0.4919 [通常の子]
Depth=13 Norm=1.2754 e0=0.0647 e1=-1.2691 e2=-0.0082 e3=0.0386 e4=0.0619 e5=-0.0387 e6=0.0611 e7=0.0337 N=1.0 Q=0.333 imagStrength=1.2737 [共役の子]
Depth=13 Norm=1.2508 e0=1.0249 e1=-0.6837 e2=0.0363 e3=0.0342 e4=0.0598 e5=-0.0734 e6=-0.0569 e7=0.1785 N=0.0 Q=0.000 imagStrength=0.7169 [共役の子]
Depth=13 Norm=1.1834 e0=-1.0828 e1=0.4544 e2=0.0940 e3=0.0315 e4=0.0721 e5=-0.0250 e6=0.0245 e7=0.0731 N=0.0 Q=0.000 imagStrength=0.4776 [共役の子]
Depth=12 Norm=0.8145 e0=-0.6578 e1=0.4691 e2=0.0446 e3=-0.0622 e4=-0.0099 e5=-0.0267 e6=-0.0571 e7=0.0263 N=3.0 Q=1.000 imagStrength=0.4803 [通常の子]
Depth=13 Norm=1.2612 e0=1.0658 e1=-0.6613 e2=0.0234 e3=0.0400 e4=0.0641 e5=-0.0161 e6=-0.1034 e7=0.0152 N=0.0 Q=0.000 imagStrength=0.6744 [通常の子]
Depth=13 Norm=1.2606 e0=-0.8845 e1=0.8713 e2=0.1027 e3=0.0418 e4=0.0564 e5=-0.0459 e6=-0.1538 e7=0.0804 N=1.0 Q=0.333 imagStrength=0.8982 [通常の子]
Depth=11 Norm=0.9058 e0=0.8298 e1=-0.3541 e2=-0.0452 e3=-0.0445 e4=-0.0266 e5=0.0052 e6=0.0171 e7=-0.0378 N=3.0 Q=1.000 imagStrength=0.3631 [共役の子]
Depth=10 Norm=0.5121 e0=-0.3499 e1=-0.3636 e2=-0.0413 e3=0.0504 e4=-0.0495 e5=-0.0207 e6=0.0053 e7=0.0219 N=3.0 Q=1.000 imagStrength=0.3740 [通常の子]
Depth=13 Norm=1.1531 e0=-0.5367 e1=-1.0004 e2=0.0119 e3=0.0299 e4=-0.0185 e5=0.1261 e6=-0.1525 e7=-0.0069 N=1.0 Q=0.333 imagStrength=1.0205 [通常の子]
Depth=12 Norm=0.4477 e0=0.2660 e1=0.3485 e2=0.0339 e3=-0.0546 e4=0.0593 e5=0.0199 e6=0.0008 e7=-0.0163 N=3.0 Q=1.000 imagStrength=0.3602 [共役の子]
Depth=9 Norm=0.6793 e0=-0.6318 e1=-0.2407 e2=0.0209 e3=0.0301 e4=-0.0109 e5=0.0527 e6=0.0035 e7=-0.0031 N=3.0 Q=1.000 imagStrength=0.2494 [共役の子]
Depth=12 Norm=0.5461 e0=-0.2003 e1=0.5014 e2=0.0410 e3=-0.0419 e4=0.0512 e5=0.0181 e6=-0.0153 e7=-0.0099 N=3.0 Q=1.000 imagStrength=0.5081 [通常の子]
Depth=13 Norm=1.1902 e0=1.1763 e1=0.0645 e2=0.0923 e3=0.0175 e4=-0.0134 e5=0.1025 e6=-0.0206 e7=0.0939 N=0.0 Q=0.000 imagStrength=0.1815 [共役の子]
Depth=13 Norm=1.1543 e0=-1.0977 e1=-0.3126 e2=0.0724 e3=0.0150 e4=-0.0025 e5=0.1463 e6=0.0527 e7=-0.0008 N=0.0 Q=0.000 imagStrength=0.3569 [共役の子]
Depth=13 Norm=1.1947 e0=-0.8934 e1=0.7592 e2=0.1079 e3=0.0253 e4=-0.0086 e5=0.1662 e6=-0.0564 e7=-0.0984 N=1.0 Q=0.333 imagStrength=0.7933 [共役の子]
Depth=12 Norm=0.8243 e0=-0.6705 e1=0.4704 e2=0.0399 e3=-0.0521 e4=0.0601 e5=0.0200 e6=0.0088 e7=-0.0154 N=3.0 Q=1.000 imagStrength=0.4795 [通常の子]
Depth=12 Norm=0.8156 e0=0.6349 e1=-0.5050 e2=-0.0090 e3=-0.0521 e4=0.0601 e5=0.0200 e6=0.0088 e7=-0.0154 N=3.0 Q=1.000 imagStrength=0.5120 [共役の子]
Depth=13 Norm=1.1839 e0=-1.1479 e1=-0.2452 e2=0.0717 e3=0.0187 e4=-0.0144 e5=0.0980 e6=-0.0122 e7=0.0914 N=0.0 Q=0.000 imagStrength=0.2897 [通常の子]
Depth=11 Norm=0.8853 e0=0.8819 e1=-0.0313 e2=-0.0287 e3=-0.0321 e4=0.0212 e5=-0.0485 e6=-0.0140 e7=-0.0118 N=3.0 Q=1.000 imagStrength=0.0773 [通常の子]
Depth=13 Norm=1.2405 e0=-1.1508 e1=0.4180 e2=0.1052 e3=0.0159 e4=-0.0014 e5=0.1500 e6=0.0742 e7=-0.0219 N=0.0 Q=0.000 imagStrength=0.4632 [共役の子]
Depth=11 Norm=0.8489 e0=0.8389 e1=-0.0744 e2=0.0159 e3=0.0667 e4=-0.0254 e5=0.0618 e6=-0.0306 e7=-0.0344 N=3.0 Q=1.000 imagStrength=0.1297 [通常の子]
Depth=13 Norm=1.1701 e0=-1.0435 e1=0.4937 e2=-0.0500 e3=-0.0699 e4=0.0154 e5=-0.1327 e6=0.0931 e7=0.0520 N=0.0 Q=0.000 imagStrength=0.5295 [共役の子]
Depth=13 Norm=1.1185 e0=-1.0813 e1=-0.1163 e2=-0.0846 e3=-0.0659 e4=0.0027 e5=-0.1815 e6=0.0007 e7=0.1544 N=0.0 Q=0.000 imagStrength=0.2860 [通常の子]
Depth=10 Norm=0.4659 e0=-0.0149 e1=-0.4593 e2=0.0179 e3=-0.0402 e4=0.0535 e5=0.0179 e6=0.0268 e7=-0.0111 N=3.0 Q=1.000 imagStrength=0.4657 [通常の子]
Depth=13 Norm=1.1589 e0=-0.8912 e1=-0.7000 e2=-0.1205 e3=-0.0606 e4=-0.0019 e5=-0.1603 e6=-0.0976 e7=0.0725 N=1.0 Q=0.333 imagStrength=0.7408 [通常の子]
Depth=12 Norm=0.4568 e0=-0.0587 e1=0.4476 e2=-0.0119 e3=0.0309 e4=-0.0568 e5=-0.0169 e6=-0.0169 e7=-0.0013 N=3.0 Q=1.000 imagStrength=0.4530 [共役の子]
Depth=8 Norm=0.4900 e0=-0.1973 e1=-0.4391 e2=-0.0448 e3=0.0779 e4=-0.0110 e5=0.0134 e6=-0.0023 e7=0.0018 N=3.0 Q=1.000 imagStrength=0.4485 [共役の子]
Depth=11 Norm=0.4949 e0=-0.1139 e1=-0.4687 e2=-0.0051 e3=0.0675 e4=-0.0239 e5=0.0583 e6=-0.0603 e7=-0.0079 N=3.0 Q=1.000 imagStrength=0.4816 [共役の子]
Depth=13 Norm=1.2379 e0=-0.3227 e1=-1.1696 e2=-0.1542 e3=-0.0624 e4=0.0031 e5=-0.1651 e6=0.0351 e7=0.0649 N=1.0 Q=0.333 imagStrength=1.1952 [通常の子]
Depth=13 Norm=1.3082 e0=0.5601 e1=1.1691 e2=-0.0349 e3=-0.0639 e4=0.0096 e5=-0.1382 e6=0.0798 e7=0.0071 N=1.0 Q=0.333 imagStrength=1.1823 [通常の子]
Depth=13 Norm=1.1768 e0=-1.0628 e1=-0.4548 e2=-0.0857 e3=-0.0722 e4=0.0117 e5=-0.1182 e6=0.1464 e7=-0.0139 N=0.0 Q=0.000 imagStrength=0.5051 [共役の子]
Depth=12 Norm=0.4622 e0=0.1400 e1=0.4338 e2=-0.0121 e3=0.0428 e4=-0.0576 e5=-0.0174 e6=0.0023 e7=0.0156 N=3.0 Q=1.000 imagStrength=0.4405 [通常の子]
Depth=12 Norm=0.4484 e0=-0.2165 e1=-0.3817 e2=-0.0530 e3=0.0428 e4=-0.0576 e5=-0.0174 e6=0.0023 e7=0.0156 N=3.0 Q=1.000 imagStrength=0.3927 [共役の子]
Depth=13 Norm=1.2528 e0=0.4204 e1=-1.1474 e2=-0.1548 e3=-0.0641 e4=-0.0451 e5=-0.0679 e6=-0.1954 e7=0.0574 N=1.0 Q=0.333 imagStrength=1.1801 [共役の子]
Depth=13 Norm=1.1822 e0=-0.5625 e1=1.0247 e2=-0.0438 e3=-0.0657 e4=-0.0381 e5=-0.0393 e6=-0.1478 e7=-0.0041 N=1.0 Q=0.333 imagStrength=1.0398 [共役の子]
Depth=12 Norm=0.8722 e0=-0.8377 e1=0.2362 e2=-0.0269 e3=0.0226 e4=-0.0260 e5=0.0092 e6=-0.0326 e7=-0.0061 N=3.0 Q=1.000 imagStrength=0.2426 [通常の子]
Depth=13 Norm=1.2717 e0=0.4641 e1=-1.1475 e2=-0.1635 e3=-0.0619 e4=-0.0428 e5=-0.0462 e6=-0.2242 e7=-0.0082 N=1.0 Q=0.333 imagStrength=1.1839 [通常の子]
Depth=13 Norm=1.3144 e0=-0.2113 e1=1.2734 e2=-0.0390 e3=-0.0620 e4=-0.0431 e5=-0.0483 e6=-0.2273 e7=-0.0042 N=1.0 Q=0.333 imagStrength=1.2973 [通常の子]
Depth=11 Norm=0.6936 e0=0.4456 e1=-0.5229 e2=-0.0052 e3=0.0722 e4=0.0073 e5=0.0237 e6=0.0499 e7=-0.0272 N=3.0 Q=1.000 imagStrength=0.5315 [共役の子]
Depth=11 Norm=0.5321 e0=-0.3595 e1=-0.3823 e2=-0.0002 e3=0.0717 e4=0.0079 e5=0.0193 e6=-0.0375 e7=0.0278 N=3.0 Q=1.000 imagStrength=0.3923 [通常の子]
Depth=13 Norm=1.2240 e0=1.0548 e1=0.5960 e2=-0.0223 e3=-0.0801 e4=-0.0396 e5=-0.0549 e6=0.1362 e7=0.0211 N=0.0 Q=0.000 imagStrength=0.6211 [共役の子]
Depth=13 Norm=1.2919 e0=0.5723 e1=1.1499 e2=-0.0343 e3=-0.0678 e4=-0.0364 e5=-0.0260 e6=0.0591 e7=-0.0894 N=1.0 Q=0.333 imagStrength=1.1582 [通常の子]
Depth=10 Norm=0.8591 e0=0.8488 e1=0.1030 e2=0.0444 e3=-0.0411 e4=0.0139 e5=-0.0073 e6=-0.0191 e7=-0.0519 N=3.0 Q=1.000 imagStrength=0.1325 [通常の子]
Depth=13 Norm=1.3126 e0=-0.2400 e1=1.2659 e2=0.0222 e3=-0.0866 e4=-0.0312 e5=-0.0440 e6=0.2270 e7=0.0201 N=1.0 Q=0.333 imagStrength=1.2904 [通常の子]
Depth=12 Norm=0.7048 e0=-0.6914 e1=-0.1098 e2=-0.0429 e3=0.0586 e4=-0.0248 e5=0.0075 e6=0.0199 e7=0.0160 N=2.0 Q=0.667 imagStrength=0.1366 [共役の子]
Depth=6 Norm=1.0401 e0=1.0377 e1=-0.0699 e2=-0.0074 e3=0.0000 e4=0.0032 e5=-0.0010 e6=0.0011 e7=0.0023 N=3.0 Q=1.000 imagStrength=0.0704 [共役の子]
Depth=13 Norm=1.2415 e0=1.0090 e1=0.6757 e2=0.0593 e3=0.0530 e4=-0.0111 e5=0.1761 e6=-0.0603 e7=-0.1596 N=1.0 Q=0.333 imagStrength=0.7233 [通常の子]
Depth=11 Norm=0.6824 e0=-0.6601 e1=-0.1453 e2=-0.0121 e3=-0.0440 e4=0.0261 e5=-0.0585 e6=0.0412 e7=0.0296 N=3.0 Q=1.000 imagStrength=0.1728 [通常の子]
Depth=13 Norm=1.1743 e0=1.1609 e1=-0.0222 e2=0.0398 e3=0.0498 e4=-0.0209 e5=0.1301 e6=-0.0873 e7=-0.0422 N=0.0 Q=0.000 imagStrength=0.1770 [共役の子]
Depth=12 Norm=0.6409 e0=0.3873 e1=-0.5073 e2=-0.0028 e3=-0.0078 e4=0.0533 e5=0.0181 e6=0.0123 e7=-0.0006 N=3.0 Q=1.000 imagStrength=0.5107 [共役の子]
Depth=10 Norm=0.5544 e0=-0.2469 e1=0.4920 e2=-0.0046 e3=0.0115 e4=-0.0517 e5=-0.0185 e6=-0.0236 e7=0.0235 N=3.0 Q=1.000 imagStrength=0.4963 [共役の子]
Depth=13 Norm=1.1917 e0=1.0929 e1=0.4329 e2=0.0577 e3=0.0454 e4=-0.0055 e5=0.1563 e6=0.0494 e7=-0.0787 N=0.0 Q=0.000 imagStrength=0.4753 [通常の子]
Depth=13 Norm=1.2537 e0=1.0487 e1=-0.6320 e2=-0.0217 e3=0.0587 e4=-0.0140 e5=0.1665 e6=-0.1445 e7=-0.1406 N=1.0 Q=0.333 imagStrength=0.6870 [通常の子]
Depth=13 Norm=1.2519 e0=-0.8881 e1=0.8421 e2=0.0537 e3=0.0605 e4=-0.0219 e5=0.1353 e6=-0.1966 e7=-0.0733 N=1.0 Q=0.333 imagStrength=0.8823 [通常の子]
Depth=11 Norm=0.8997 e0=0.8248 e1=-0.3457 e2=-0.0216 e3=-0.0442 e4=0.0255 e5=-0.0571 e6=0.0546 e7=0.0184 N=3.0 Q=1.000 imagStrength=0.3594 [共役の子]
Depth=12 Norm=0.7677 e0=0.5987 e1=-0.4766 e2=-0.0011 e3=-0.0012 e4=0.0512 e5=0.0183 e6=0.0054 e7=-0.0285 N=3.0 Q=1.000 imagStrength=0.4806 [通常の子]
Depth=12 Norm=0.6651 e0=-0.4392 e1=0.4933 e2=0.0476 e3=-0.0012 e4=0.0512 e5=0.0183 e6=0.0054 e7=-0.0285 N=3.0 Q=1.000 imagStrength=0.4994 [共役の子]
Depth=13 Norm=1.3000 e0=1.1132 e1=-0.6572 e2=0.0073 e3=0.0465 e4=-0.0171 e5=0.1084 e6=-0.0550 e7=0.0415 N=0.0 Q=0.000 imagStrength=0.6715 [共役の子]
Depth=9 Norm=0.5455 e0=-0.1642 e1=0.5160 e2=0.0429 e3=0.0467 e4=0.0159 e5=-0.0025 e6=-0.0000 e7=0.0032 N=3.0 Q=1.000 imagStrength=0.5202 [通常の子]
Depth=12 Norm=0.5520 e0=-0.4964 e1=-0.2204 e2=0.0157 e3=-0.0347 e4=0.0142 e5=-0.0188 e6=0.0197 e7=0.0851 N=3.0 Q=1.000 imagStrength=0.2413 [通常の子]
Depth=13 Norm=1.2501 e0=-0.6510 e1=-1.0591 e2=-0.0463 e3=0.0649 e4=0.0481 e5=0.0121 e6=0.0594 e7=-0.0691 N=1.0 Q=0.333 imagStrength=1.0672 [共役の子]
Depth=13 Norm=1.2212 e0=0.5332 e1=1.0921 e2=0.0644 e3=0.0658 e4=0.0452 e5=0.0010 e6=0.0408 e7=-0.0451 N=1.0 Q=0.333 imagStrength=1.0986 [共役の子]
Depth=11 Norm=0.6850 e0=0.4348 e1=-0.5223 e2=-0.0331 e3=-0.0511 e4=-0.0174 e5=-0.0086 e6=-0.0522 e7=0.0255 N=3.0 Q=1.000 imagStrength=0.5294 [共役の子]
Depth=13 Norm=1.2676 e0=0.4500 e1=-1.1787 e2=-0.0547 e3=0.0660 e4=0.0466 e5=0.0047 e6=0.0487 e7=-0.0551 N=1.0 Q=0.333 imagStrength=1.1851 [通常の子]
Depth=13 Norm=1.3117 e0=-0.2136 e1=1.2878 e2=0.0720 e3=0.0661 e4=0.0462 e5=0.0033 e6=0.0464 e7=-0.0521 N=1.0 Q=0.333 imagStrength=1.2942 [通常の子]
Depth=13 Norm=1.2187 e0=-1.0786 e1=0.5353 e2=0.0446 e3=0.0639 e4=0.0417 e5=-0.0260 e6=-0.1417 e7=0.0821 N=0.0 Q=0.000 imagStrength=0.5673 [通常の子]
Depth=11 Norm=0.8969 e0=0.8276 e1=-0.3387 e2=-0.0219 e3=-0.0507 e4=-0.0186 e5=-0.0027 e6=0.0207 e7=-0.0307 N=3.0 Q=1.000 imagStrength=0.3457 [通常の子]
Depth=13 Norm=1.2381 e0=-0.6622 e1=1.0381 e2=0.0986 e3=0.0516 e4=0.0544 e5=0.0125 e6=0.0123 e7=0.0324 N=1.0 Q=0.333 imagStrength=1.0461 [共役の子]
Depth=12 Norm=0.8905 e0=-0.8553 e1=0.2285 e2=0.0404 e3=0.0085 e4=0.0004 e5=-0.0159 e6=-0.0133 e7=-0.0842 N=3.0 Q=1.000 imagStrength=0.2479 [共役の子]
Depth=10 Norm=0.9776 e0=0.9461 e1=-0.2377 e2=-0.0391 e3=0.0147 e4=0.0005 e5=0.0169 e6=0.0213 e7=0.0388 N=3.0 Q=1.000 imagStrength=0.2459 [共役の子]
Depth=13 Norm=1.3153 e0=-0.9614 e1=0.8848 e2=0.0993 e3=0.0531 e4=0.0445 e5=-0.0064 e6=-0.0637 e7=0.0651 N=1.0 Q=0.333 imagStrength=0.8977 [通常の子]
Depth=9 Norm=0.4552 e0=0.0188 e1=-0.4417 e2=-0.0837 e3=-0.0494 e4=-0.0194 e5=-0.0050 e6=-0.0155 e7=-0.0415 N=3.0 Q=1.000 imagStrength=0.4548 [通常の子]
Depth=12 Norm=0.5117 e0=0.3929 e1=0.2912 e2=-0.0217 e3=0.1083 e4=-0.0300 e5=0.0230 e6=0.0161 e7=-0.0933 N=3.0 Q=1.000 imagStrength=0.3278 [通常の子]
Depth=13 Norm=1.1388 e0=0.7370 e1=0.8544 e2=-0.0728 e3=-0.0603 e4=-0.0748 e5=-0.0388 e6=-0.0857 e7=-0.0198 N=1.0 Q=0.333 imagStrength=0.8682 [共役の子]
Depth=13 Norm=1.1601 e0=-0.5461 e1=-1.0018 e2=-0.1682 e3=-0.0615 e4=-0.0708 e5=-0.0245 e6=-0.0610 e7=-0.0518 N=1.0 Q=0.333 imagStrength=1.0236 [共役の子]
Depth=11 Norm=0.5033 e0=-0.1946 e1=0.4453 e2=0.0712 e3=0.0742 e4=0.0221 e5=0.0199 e6=0.0742 e7=0.0117 N=3.0 Q=1.000 imagStrength=0.4641 [共役の子]
Depth=13 Norm=1.1224 e0=-0.2224 e1=1.0895 e2=-0.0604 e3=-0.0611 e4=-0.0718 e5=-0.0252 e6=-0.0846 e7=-0.0540 N=1.0 Q=0.333 imagStrength=1.1001 [通常の子]
Depth=13 Norm=1.0723 e0=0.1015 e1=-1.0443 e2=-0.1699 e3=-0.0607 e4=-0.0728 e5=-0.0276 e6=-0.0893 e7=-0.0479 N=1.0 Q=0.333 imagStrength=1.0675 [通常の子]
Depth=13 Norm=1.1672 e0=0.8918 e1=-0.7037 e2=-0.1543 e3=-0.0620 e4=-0.0681 e5=-0.0038 e6=0.1343 e7=-0.1472 N=1.0 Q=0.333 imagStrength=0.7531 [通常の子]
Depth=11 Norm=0.6958 e0=-0.5591 e1=0.3963 e2=0.0668 e3=0.0739 e4=0.0229 e5=0.0157 e6=-0.0041 e7=0.0624 N=3.0 Q=1.000 imagStrength=0.4143 [通常の子]
Depth=13 Norm=1.1667 e0=0.2812 e1=-1.0991 e2=-0.2124 e3=-0.0472 e4=-0.0783 e5=-0.0297 e6=-0.0272 e7=-0.1374 N=1.0 Q=0.333 imagStrength=1.1323 [共役の子]
Depth=12 Norm=0.7822 e0=0.7657 e1=-0.1095 e2=-0.0436 e3=0.0711 e4=-0.0157 e5=0.0206 e6=0.0528 e7=0.0561 N=3.0 Q=1.000 imagStrength=0.1598 [共役の子]
Depth=10 Norm=0.7981 e0=-0.7834 e1=0.0926 e2=0.0423 e3=-0.0935 e4=0.0104 e5=-0.0183 e6=-0.0573 e7=-0.0197 N=3.0 Q=1.000 imagStrength=0.1524 [共役の子]
Depth=13 Norm=1.0770 e0=0.5885 e1=-0.8614 e2=-0.2028 e3=-0.0491 e4=-0.0722 e5=-0.0213 e6=0.0185 e7=-0.1486 N=1.0 Q=0.333 imagStrength=0.9021 [通常の子]
Depth=12 Norm=0.5572 e0=0.2535 e1=-0.4816 e2=-0.0587 e3=0.0820 e4=-0.0624 e5=-0.0066 e6=0.0014 e7=0.0127 N=3.0 Q=1.000 imagStrength=0.4962 [通常の子]
Depth=12 Norm=0.4846 e0=-0.0734 e1=0.4674 e2=-0.0111 e3=0.0820 e4=-0.0624 e5=-0.0066 e6=0.0014 e7=0.0127 N=3.0 Q=1.000 imagStrength=0.4790 [共役の子]
Depth=13 Norm=1.2703 e0=1.2427 e1=-0.1093 e2=-0.1504 e3=-0.0462 e4=-0.0326 e5=-0.1643 e6=-0.0419 e7=0.0545 N=0.0 Q=0.000 imagStrength=0.2636 [共役の子]
Depth=11 Norm=0.8420 e0=-0.8110 e1=0.1970 e2=0.0577 e3=0.0679 e4=-0.0075 e5=0.0515 e6=0.0381 e7=0.0215 N=3.0 Q=1.000 imagStrength=0.2267 [通常の子]
Depth=13 Norm=1.2294 e0=0.8983 e1=-0.7901 e2=-0.1913 e3=-0.0409 e4=-0.0370 e5=-0.1408 e6=-0.1393 e7=-0.0351 N=1.0 Q=0.333 imagStrength=0.8393 [共役の子]
Depth=13 Norm=1.2692 e0=1.2461 e1=-0.1075 e2=-0.1421 e3=-0.0488 e4=-0.0234 e5=-0.0930 e6=-0.0130 e7=-0.1208 N=0.0 Q=0.000 imagStrength=0.2410 [通常の子]
Depth=9 Norm=0.8159 e0=-0.7257 e1=0.3632 e2=-0.0402 e3=-0.0532 e4=-0.0002 e5=-0.0479 e6=-0.0098 e7=-0.0171 N=3.0 Q=1.000 imagStrength=0.3729 [通常の子]
Depth=12 Norm=0.7816 e0=-0.7530 e1=0.1759 e2=-0.0267 e3=0.0653 e4=-0.0555 e5=-0.0065 e6=0.0237 e7=0.0648 N=3.0 Q=1.000 imagStrength=0.2093 [通常の子]
Depth=13 Norm=1.1569 e0=0.2869 e1=-1.0887 e2=-0.2127 e3=-0.0442 e4=-0.0307 e5=-0.1446 e6=0.0041 e7=-0.0426 N=1.0 Q=0.333 imagStrength=1.1208 [共役の子]
Depth=13 Norm=1.0888 e0=-0.4048 e1=0.9914 e2=-0.1066 e3=-0.0454 e4=-0.0255 e5=-0.1228 e6=0.0400 e7=-0.0890 N=1.0 Q=0.333 imagStrength=1.0107 [共役の子]
Depth=11 Norm=0.8616 e0=0.8114 e1=-0.2718 e2=0.0331 e3=0.0681 e4=-0.0074 e5=0.0515 e6=-0.0050 e7=0.0398 N=3.0 Q=1.000 imagStrength=0.2897 [共役の子]
Depth=13 Norm=1.1708 e0=1.0529 e1=-0.4447 e2=-0.1769 e3=-0.0435 e4=-0.0269 e5=-0.1042 e6=0.0172 e7=-0.1395 N=0.0 Q=0.000 imagStrength=0.5121 [通常の子]
Depth=13 Norm=1.1592 e0=-0.9201 e1=0.6745 e2=-0.1188 e3=-0.0416 e4=-0.0352 e5=-0.1378 e6=-0.0388 e7=-0.0670 N=0.0 Q=0.000 imagStrength=0.7050 [通常の子]
Depth=13 Norm=1.2205 e0=-0.3105 e1=-1.1205 e2=-0.1928 e3=-0.0042 e4=-0.0801 e5=0.0555 e6=-0.2672 e7=-0.1401 N=1.0 Q=0.333 imagStrength=1.1804 [共役の子]
Depth=13 Norm=1.1753 e0=0.1752 e1=1.1154 e2=-0.0780 e3=-0.0042 e4=-0.0800 e5=0.0562 e6=-0.2661 e7=-0.1414 N=1.0 Q=0.333 imagStrength=1.1621 [共役の子]
Depth=12 Norm=0.6681 e0=-0.6574 e1=-0.0746 e2=-0.0225 e3=0.0613 e4=0.0123 e5=0.0320 e6=0.0266 e7=-0.0491 N=2.0 Q=0.667 imagStrength=0.1189 [通常の子]
Depth=13 Norm=1.2382 e0=-0.2944 e1=-1.1516 e2=-0.1897 e3=-0.0058 e4=-0.0831 e5=0.0395 e6=-0.2591 e7=-0.0926 N=1.0 Q=0.333 imagStrength=1.2027 [通常の子]
Depth=13 Norm=1.3069 e0=0.5290 e1=1.1594 e2=-0.0713 e3=-0.0072 e4=-0.0767 e5=0.0661 e6=-0.2152 e7=-0.1494 N=1.0 Q=0.333 imagStrength=1.1951 [通常の子]
Depth=11 Norm=0.4927 e0=-0.0829 e1=-0.4757 e2=0.0175 e3=0.0396 e4=0.0335 e5=-0.0105 e6=0.0784 e7=0.0171 N=3.0 Q=1.000 imagStrength=0.4856 [共役の子]
Depth=11 Norm=0.7488 e0=-0.7327 e1=-0.1165 e2=0.0338 e3=0.0394 e4=0.0360 e5=-0.0185 e6=0.0316 e7=0.0707 N=3.0 Q=1.000 imagStrength=0.1546 [通常の子]
Depth=13 Norm=1.2443 e0=1.2244 e1=-0.1118 e2=-0.1027 e3=-0.0173 e4=-0.0833 e5=0.0463 e6=-0.0464 e7=-0.1205 N=0.0 Q=0.000 imagStrength=0.2216 [共役の子]
Depth=13 Norm=1.3095 e0=1.1090 e1=0.6345 e2=-0.0787 e3=-0.0152 e4=-0.0720 e5=0.0977 e6=-0.0021 e7=-0.2475 N=0.0 Q=0.000 imagStrength=0.6964 [通常の子]
Depth=10 Norm=0.5971 e0=0.4520 e1=0.3738 e2=0.0349 e3=-0.0782 e4=-0.0192 e5=-0.0274 e6=-0.0632 e7=0.0070 N=3.0 Q=1.000 imagStrength=0.3902 [通常の子]
Depth=13 Norm=1.2929 e0=0.4970 e1=1.1742 e2=-0.0243 e3=-0.0278 e4=-0.0669 e5=0.0674 e6=0.1378 e7=-0.1285 N=1.0 Q=0.333 imagStrength=1.1935 [通常の子]
Depth=12 Norm=0.4814 e0=-0.2622 e1=-0.3859 e2=-0.0381 e3=0.0906 e4=0.0092 e5=0.0296 e6=0.0568 e7=-0.0151 N=3.0 Q=1.000 imagStrength=0.4037 [共役の子]
Depth=7 Norm=0.8396 e0=0.8156 e1=0.1841 e2=0.0282 e3=-0.0523 e4=-0.0007 e5=-0.0078 e6=-0.0237 e7=0.0417 N=3.0 Q=1.000 imagStrength=0.1995 [共役の子]
Depth=13 Norm=1.2286 e0=0.7069 e1=-0.9803 e2=-0.1390 e3=-0.0138 e4=0.0017 e5=-0.1420 e6=0.0900 e7=0.0320 N=1.0 Q=0.333 imagStrength=1.0049 [共役の子]
Depth=12 Norm=0.8425 e0=0.7648 e1=-0.3379 e2=-0.0301 e3=0.0781 e4=-0.0549 e5=-0.0162 e6=0.0178 e7=0.0060 N=3.0 Q=1.000 imagStrength=0.3532 [通常の子]
Depth=12 Norm=0.7683 e0=-0.6562 e1=0.3873 e2=0.0063 e3=0.0781 e4=-0.0549 e5=-0.0162 e6=0.0178 e7=0.0060 N=3.0 Q=1.000 imagStrength=0.3997 [共役の子]
Depth=13 Norm=1.2499 e0=1.2286 e1=-0.1199 e2=-0.1076 e3=-0.0080 e4=0.0070 e5=-0.0834 e6=0.0586 e7=-0.1284 N=0.0 Q=0.000 imagStrength=0.2300 [通常の子]
Depth=11 Norm=0.8310 e0=-0.8020 e1=0.2016 e2=0.0492 e3=0.0283 e4=-0.0166 e5=0.0433 e6=0.0104 e7=0.0340 N=3.0 Q=1.000 imagStrength=0.2174 [通常の子]
Depth=13 Norm=1.2108 e0=0.8807 e1=-0.8016 e2=-0.1567 e3=-0.0002 e4=-0.0062 e5=-0.1295 e6=-0.0650 e7=-0.0465 N=1.0 Q=0.333 imagStrength=0.8309 [共役の子]
Depth=13 Norm=1.2489 e0=1.2113 e1=0.2422 e2=-0.0837 e3=-0.0103 e4=-0.0001 e5=-0.1500 e6=0.0360 e7=0.0548 N=0.0 Q=0.000 imagStrength=0.3042 [共役の子]
Depth=13 Norm=1.2221 e0=-1.1086 e1=-0.4743 e2=-0.1205 e3=-0.0129 e4=0.0108 e5=-0.1070 e6=0.1085 e7=-0.0390 N=0.0 Q=0.000 imagStrength=0.5143 [共役の子]
Depth=12 Norm=0.5304 e0=-0.1015 e1=0.5117 e2=0.0125 e3=0.0745 e4=-0.0556 e5=-0.0163 e6=0.0076 e7=0.0052 N=3.0 Q=1.000 imagStrength=0.5206 [通常の子]
Depth=13 Norm=1.2455 e0=1.2012 e1=0.2706 e2=-0.0973 e3=-0.0038 e4=0.0058 e5=-0.0804 e6=-0.0080 e7=-0.1383 N=0.0 Q=0.000 imagStrength=0.3292 [通常の子]
Depth=13 Norm=1.1932 e0=-1.1765 e1=-0.0124 e2=-0.1113 e3=-0.0010 e4=-0.0070 e5=-0.1316 e6=-0.0938 e7=-0.0273 N=0.0 Q=0.000 imagStrength=0.1986 [通常の子]
Depth=11 Norm=0.8680 e0=0.8644 e1=0.0130 e2=0.0402 e3=0.0280 e4=-0.0164 e5=0.0431 e6=0.0273 e7=0.0275 N=3.0 Q=1.000 imagStrength=0.0788 [共役の子]
Depth=8 Norm=0.7915 e0=-0.6591 e1=0.4284 e2=0.0538 e3=-0.0682 e4=0.0171 e5=-0.0155 e6=0.0217 e7=-0.0018 N=3.0 Q=1.000 imagStrength=0.4383 [通常の子]
Depth=11 Norm=0.7942 e0=0.7829 e1=0.0536 e2=-0.0059 e3=-0.0724 e4=0.0293 e5=-0.0675 e6=0.0400 e7=0.0508 N=3.0 Q=1.000 imagStrength=0.1332 [共役の子]
Depth=13 Norm=1.1747 e0=1.0851 e1=0.3334 e2=0.0725 e3=0.0817 e4=-0.0085 e5=0.1988 e6=-0.0120 e7=-0.1993 N=0.0 Q=0.000 imagStrength=0.4500 [通常の子]
Depth=13 Norm=1.1191 e0=-1.0907 e1=-0.1122 e2=0.0498 e3=0.0843 e4=-0.0207 e5=0.1506 e6=-0.0928 e7=-0.0949 N=0.0 Q=0.000 imagStrength=0.2508 [通常の子]
Depth=13 Norm=1.2271 e0=1.0260 e1=-0.6542 e2=0.0296 e3=0.0785 e4=-0.0152 e5=0.1316 e6=0.0154 e7=-0.0166 N=0.0 Q=0.000 imagStrength=0.6731 [共役の子]
Depth=12 Norm=0.7364 e0=0.5863 e1=-0.4391 e2=0.0164 e3=-0.0098 e4=0.0616 e5=0.0197 e6=0.0342 e7=-0.0082 N=3.0 Q=1.000 imagStrength=0.4456 [通常の子]
Depth=12 Norm=0.6369 e0=-0.4340 e1=0.4561 e2=0.0613 e3=-0.0098 e4=0.0616 e5=0.0197 e6=0.0342 e7=-0.0082 N=3.0 Q=1.000 imagStrength=0.4661 [共役の子]
Depth=12 Norm=0.8469 e0=-0.8063 e1=0.2177 e2=0.0515 e3=0.0114 e4=0.0596 e5=0.0219 e6=0.0316 e7=-0.1096 N=3.0 Q=1.000 imagStrength=0.2593 [共役の子]
Depth=10 Norm=0.9344 e0=0.8992 e1=-0.2292 e2=-0.0574 e3=0.0181 e4=-0.0554 e5=-0.0201 e6=-0.0237 e7=0.0652 N=3.0 Q=1.000 imagStrength=0.2539 [共役の子]
Depth=13 Norm=1.2719 e0=-0.9254 e1=0.8406 e2=0.1158 e3=0.0795 e4=-0.0152 e5=0.1545 e6=-0.0927 e7=-0.0482 N=1.0 Q=0.333 imagStrength=0.8725 [通常の子]
Depth=13 Norm=1.2215 e0=0.7711 e1=-0.9175 e2=-0.0087 e3=0.0884 e4=-0.0177 e5=0.1351 e6=-0.1680 e7=-0.0304 N=1.0 Q=0.333 imagStrength=0.9473 [共役の子]
Depth=13 Norm=1.1497 e0=-0.8524 e1=0.7259 e2=0.0758 e3=0.0861 e4=-0.0073 e5=0.1758 e6=-0.1000 e7=-0.1183 N=1.0 Q=0.333 imagStrength=0.7714 [共役の子]
Depth=12 Norm=0.8474 e0=-0.7584 e1=0.3662 e2=0.0563 e3=-0.0228 e4=0.0622 e5=0.0203 e6=0.0133 e7=-0.0264 N=3.0 Q=1.000 imagStrength=0.3781 [通常の子]
Depth=11 Norm=0.5244 e0=-0.3348 e1=-0.3895 e2=-0.0294 e3=-0.0784 e4=-0.0011 e5=-0.0340 e6=-0.0242 e7=0.0497 N=3.0 Q=1.000 imagStrength=0.4036 [通常の子]
Depth=13 Norm=1.2232 e0=1.0367 e1=0.6174 e2=0.1051 e3=0.0818 e4=0.0304 e5=0.0592 e6=0.1287 e7=-0.0410 N=0.0 Q=0.000 imagStrength=0.6493 [共役の子]
Depth=13 Norm=1.2901 e0=0.5330 e1=1.1532 e2=0.0901 e3=0.0950 e4=0.0327 e5=0.0875 e6=0.0453 e7=-0.1506 N=1.0 Q=0.333 imagStrength=1.1749 [通常の子]
Depth=10 Norm=0.8668 e0=0.8582 e1=0.0931 e2=-0.0396 e3=0.0256 e4=-0.0283 e5=0.0075 e6=-0.0416 e7=-0.0371 N=3.0 Q=1.000 imagStrength=0.1219 [通常の子]
Depth=13 Norm=1.3124 e0=-0.2743 e1=1.2514 e2=0.1457 e3=0.0780 e4=0.0360 e5=0.0684 e6=0.2148 e7=-0.0412 N=1.0 Q=0.333 imagStrength=1.2834 [通常の子]
Depth=12 Norm=0.7118 e0=-0.7017 e1=-0.1008 e2=0.0380 e3=0.0016 e4=0.0286 e5=-0.0062 e6=0.0428 e7=0.0014 N=2.0 Q=0.667 imagStrength=0.1196 [共役の子]
Depth=8 Norm=0.9688 e0=0.9655 e1=0.0023 e2=0.0293 e3=-0.0682 e4=0.0171 e5=-0.0155 e6=0.0217 e7=-0.0018 N=3.0 Q=1.000 imagStrength=0.0808 [共役の子]
Depth=11 Norm=0.7937 e0=-0.6833 e1=0.3918 e2=0.0115 e3=-0.0778 e4=-0.0030 e5=-0.0264 e6=0.0514 e7=-0.0122 N=3.0 Q=1.000 imagStrength=0.4039 [共役の子]
Depth=13 Norm=1.2548 e0=-0.9375 e1=0.8155 e2=0.1132 e3=0.0837 e4=0.0290 e5=0.0473 e6=-0.0761 e7=0.0428 N=1.0 Q=0.333 imagStrength=0.8340 [通常の子]
Depth=13 Norm=1.2473 e0=0.8491 e1=-0.9054 e2=0.0243 e3=0.0822 e4=0.0351 e5=0.0723 e6=-0.0344 e7=-0.0112 N=0.0 Q=0.000 imagStrength=0.9137 [通常の子]
Depth=13 Norm=1.2630 e0=0.1231 e1=1.2229 e2=0.0827 e3=0.1025 e4=0.0251 e5=0.0666 e6=-0.2390 e7=-0.0710 N=1.0 Q=0.333 imagStrength=1.2570 [共役の子]
Depth=12 Norm=0.8471 e0=-0.8391 e1=0.0912 e2=0.0462 e3=-0.0381 e4=0.0305 e5=-0.0039 e6=-0.0038 e7=-0.0274 N=2.0 Q=0.667 imagStrength=0.1167 [通常の子]
Depth=12 Norm=0.9396 e0=0.9203 e1=-0.1781 e2=0.0327 e3=-0.0381 e4=0.0305 e5=-0.0039 e6=-0.0038 e7=-0.0274 N=2.0 Q=0.667 imagStrength=0.1896 [共役の子]
Depth=13 Norm=1.1902 e0=-1.1493 e1=0.2253 e2=-0.0362 e3=-0.0394 e4=0.0046 e5=-0.1601 e6=0.0535 e7=0.1156 N=0.0 Q=0.000 imagStrength=0.3090 [通常の子]
Depth=13 Norm=1.2202 e0=1.1553 e1=-0.3434 e2=-0.0653 e3=-0.0419 e4=0.0157 e5=-0.1162 e6=0.1271 e7=0.0204 N=0.0 Q=0.000 imagStrength=0.3927 [通常の子]
Depth=11 Norm=0.8166 e0=-0.7958 e1=0.1638 e2=0.0243 e3=0.0398 e4=-0.0222 e5=0.0535 e6=-0.0314 e7=-0.0134 N=3.0 Q=1.000 imagStrength=0.1831 [共役の子]
Depth=12 Norm=0.6219 e0=-0.3523 e1=0.5090 e2=0.0061 e3=0.0282 e4=-0.0491 e5=-0.0152 e6=0.0042 e7=-0.0063 N=3.0 Q=1.000 imagStrength=0.5125 [通常の子]
Depth=12 Norm=0.5824 e0=0.2833 e1=-0.5034 e2=-0.0447 e3=0.0282 e4=-0.0491 e5=-0.0152 e6=0.0042 e7=-0.0063 N=3.0 Q=1.000 imagStrength=0.5088 [共役の子]
Depth=13 Norm=1.1346 e0=-1.0986 e1=0.2515 e2=-0.0474 e3=-0.0340 e4=0.0107 e5=-0.0942 e6=0.0181 e7=-0.0665 N=0.0 Q=0.000 imagStrength=0.2836 [共役の子]
Depth=10 Norm=0.5844 e0=0.4360 e1=0.3808 e2=0.0454 e3=-0.0310 e4=0.0463 e5=0.0170 e6=0.0006 e7=-0.0297 N=3.0 Q=1.000 imagStrength=0.3891 [通常の子]
Depth=13 Norm=1.2856 e0=0.5241 e1=1.1527 e2=0.0230 e3=-0.0459 e4=0.0152 e5=-0.1205 e6=0.1764 e7=0.0309 N=1.0 Q=0.333 imagStrength=1.1739 [通常の子]
Depth=12 Norm=0.4727 e0=-0.2540 e1=-0.3900 e2=-0.0397 e3=0.0368 e4=-0.0560 e5=-0.0173 e6=-0.0069 e7=0.0211 N=3.0 Q=1.000 imagStrength=0.3987 [共役の子]
Depth=9 Norm=0.7297 e0=0.6800 e1=0.2563 e2=-0.0104 e3=-0.0402 e4=0.0082 e5=-0.0495 e6=0.0013 e7=0.0111 N=3.0 Q=1.000 imagStrength=0.2647 [共役の子]
Depth=12 Norm=0.5760 e0=0.2792 e1=-0.4984 e2=-0.0446 e3=0.0231 e4=-0.0474 e5=-0.0154 e6=0.0100 e7=0.0155 N=3.0 Q=1.000 imagStrength=0.5038 [通常の子]
Depth=13 Norm=1.2478 e0=-1.2372 e1=-0.0601 e2=-0.0677 e3=-0.0326 e4=0.0105 e5=-0.0928 e6=0.0399 e7=-0.0829 N=0.0 Q=0.000 imagStrength=0.1626 [共役の子]
Depth=13 Norm=1.2871 e0=1.2600 e1=0.2065 e2=-0.0534 e3=-0.0299 e4=-0.0018 e5=-0.1421 e6=-0.0427 e7=0.0240 N=0.0 Q=0.000 imagStrength=0.2627 [共役の子]
Depth=13 Norm=1.2346 e0=-0.5326 e1=1.0848 e2=-0.0270 e3=-0.0328 e4=-0.0628 e5=0.0053 e6=-0.2388 e7=-0.0319 N=1.0 Q=0.333 imagStrength=1.1138 [通常の子]
Depth=11 Norm=0.6650 e0=0.4347 e1=-0.4965 e2=-0.0067 e3=0.0468 e4=0.0224 e5=0.0027 e6=0.0622 e7=-0.0112 N=3.0 Q=1.000 imagStrength=0.5033 [通常の子]
Depth=13 Norm=1.2092 e0=0.1044 e1=1.2004 e2=0.0291 e3=-0.0514 e4=-0.0542 e5=0.0177 e6=-0.0605 e7=0.0012 N=1.0 Q=0.333 imagStrength=1.2047 [共役の子]
Depth=12 Norm=0.7111 e0=-0.6937 e1=-0.0936 e2=-0.0279 e3=0.0588 e4=-0.0086 e5=0.0231 e6=-0.0011 e7=-0.1041 N=2.0 Q=0.667 imagStrength=0.1563 [共役の子]
Depth=10 Norm=0.8679 e0=0.8597 e1=0.0827 e2=0.0276 e3=-0.0390 e4=0.0009 e5=-0.0229 e6=0.0031 e7=0.0672 N=3.0 Q=1.000 imagStrength=0.1191 [共役の子]
Depth=13 Norm=1.3089 e0=-0.2803 e1=1.2742 e2=0.0350 e3=-0.0518 e4=-0.0547 e5=0.0158 e6=-0.0627 e7=0.0070 N=1.0 Q=0.333 imagStrength=1.2785 [通常の子]
Depth=13 Norm=1.2654 e0=0.8150 e1=0.9474 e2=0.0072 e3=-0.0497 e4=-0.0507 e5=0.0470 e6=0.1231 e7=-0.1303 N=1.0 Q=0.333 imagStrength=0.9680 [通常の子]
Depth=13 Norm=1.1927 e0=-0.9176 e1=-0.7510 e2=-0.0793 e3=-0.0473 e4=-0.0614 e5=0.0049 e6=0.0524 e7=-0.0389 N=0.0 Q=0.000 imagStrength=0.7619 [通常の子]
Depth=11 Norm=0.6389 e0=0.5446 e1=0.3249 e2=0.0324 e3=0.0464 e4=0.0241 e5=-0.0041 e6=-0.0076 e7=0.0468 N=3.0 Q=1.000 imagStrength=0.3341 [共役の子]
Depth=12 Norm=0.5719 e0=-0.5088 e1=-0.2449 e2=-0.0380 e3=0.0132 e4=0.0050 e5=0.0201 e6=0.0299 e7=0.0729 N=3.0 Q=1.000 imagStrength=0.2612 [通常の子]
Depth=12 Norm=0.6985 e0=0.6722 e1=0.1701 e2=-0.0172 e3=0.0132 e4=0.0050 e5=0.0201 e6=0.0299 e7=0.0729 N=2.0 Q=0.667 imagStrength=0.1898 [共役の子]
Depth=13 Norm=1.3087 e0=0.8993 e1=0.9464 e2=-0.0284 e3=-0.0376 e4=-0.0595 e5=-0.0002 e6=0.0078 e7=-0.0522 N=0.0 Q=0.000 imagStrength=0.9509 [共役の子]
Depth=4 Norm=0.8145 e0=0.7708 e1=0.2596 e2=0.0383 e3=-0.0198 e4=0.0016 e5=0.0001 e6=-0.0032 e7=-0.0038 N=3.0 Q=1.000 imagStrength=0.2632 [通常の子]
Depth=13 Norm=1.1202 e0=0.3861 e1=0.9863 e2=0.1533 e3=-0.0494 e4=0.0785 e5=-0.0735 e6=0.2543 e7=0.1754 N=1.0 Q=0.333 imagStrength=1.0516 [共役の子]
Depth=13 Norm=1.1623 e0=-0.1735 e1=-1.0997 e2=0.0463 e3=-0.0494 e4=0.0788 e5=-0.0720 e6=0.2564 e7=0.1727 N=1.0 Q=0.333 imagStrength=1.1493 [共役の子]
Depth=12 Norm=0.6315 e0=0.6084 e1=0.1414 e2=0.0006 e3=-0.0505 e4=-0.0192 e5=-0.0337 e6=-0.0418 e7=0.0538 N=3.0 Q=1.000 imagStrength=0.1693 [通常の子]
Depth=13 Norm=1.1017 e0=0.3807 e1=0.9848 e2=0.1442 e3=-0.0459 e4=0.0801 e5=-0.0567 e6=0.2285 e7=0.1188 N=1.0 Q=0.333 imagStrength=1.0338 [通常の子]
Depth=13 Norm=1.0326 e0=-0.4815 e1=-0.8678 e2=0.0492 e3=-0.0446 e4=0.0740 e5=-0.0819 e6=0.1871 e7=0.1723 N=1.0 Q=0.333 imagStrength=0.9134 [通常の子]
Depth=11 Norm=0.4525 e0=0.2235 e1=0.3818 e2=-0.0169 e3=0.0071 e4=-0.0359 e5=0.0171 e6=-0.0786 e7=-0.0307 N=3.0 Q=1.000 imagStrength=0.3935 [共役の子]
Depth=11 Norm=0.6886 e0=0.6719 e1=0.1098 e2=-0.0291 e3=0.0073 e4=-0.0385 e5=0.0242 e6=-0.0422 e7=-0.0761 N=3.0 Q=1.000 imagStrength=0.1503 [通常の子]
Depth=13 Norm=1.0824 e0=-1.0621 e1=0.0328 e2=0.0686 e3=-0.0371 e4=0.0808 e5=-0.0638 e6=0.0612 e7=0.1483 N=0.0 Q=0.000 imagStrength=0.2085 [共役の子]
Depth=13 Norm=1.0180 e0=-0.8375 e1=-0.4986 e2=0.0544 e3=-0.0392 e4=0.0717 e5=-0.1061 e6=0.0286 e7=0.2542 N=0.0 Q=0.000 imagStrength=0.5788 [通常の子]
Depth=10 Norm=0.4590 e0=-0.3064 e1=-0.3250 e2=-0.0070 e3=0.0656 e4=0.0219 e5=0.0288 e6=0.0714 e7=-0.0208 N=3.0 Q=1.000 imagStrength=0.3418 [通常の子]
Depth=13 Norm=1.0346 e0=-0.4763 e1=-0.8924 e2=0.0136 e3=-0.0293 e4=0.0670 e5=-0.0841 e6=-0.0888 e7=0.1635 N=1.0 Q=0.333 imagStrength=0.9185 [通常の子]
Depth=12 Norm=0.4033 e0=0.2293 e1=0.3133 e2=0.0093 e3=-0.0747 e4=-0.0167 e5=-0.0318 e6=-0.0658 e7=0.0243 N=3.0 Q=1.000 imagStrength=0.3317 [共役の子]
Depth=7 Norm=0.7682 e0=-0.7466 e1=-0.1588 e2=-0.0033 e3=0.0607 e4=0.0011 e5=0.0129 e6=0.0288 e7=-0.0543 N=3.0 Q=1.000 imagStrength=0.1813 [共役の子]
Depth=13 Norm=1.1064 e0=-0.6156 e1=0.9034 e2=0.1048 e3=-0.0397 e4=0.0039 e5=0.1089 e6=-0.0674 e7=0.0085 N=1.0 Q=0.333 imagStrength=0.9193 [共役の子]
Depth=12 Norm=0.8150 e0=-0.7218 e1=0.3687 e2=0.0072 e3=-0.0664 e4=0.0428 e5=0.0101 e6=-0.0304 e7=0.0068 N=3.0 Q=1.000 imagStrength=0.3786 [通常の子]
Depth=12 Norm=0.8326 e0=0.7163 e1=-0.4145 e2=-0.0321 e3=-0.0664 e4=0.0428 e5=0.0101 e6=-0.0304 e7=0.0068 N=3.0 Q=1.000 imagStrength=0.4245 [共役の子]
Depth=13 Norm=1.0859 e0=-1.0664 e1=0.0670 e2=0.0763 e3=-0.0463 e4=-0.0004 e5=0.0541 e6=-0.0256 e7=0.1616 N=0.0 Q=0.000 imagStrength=0.2053 [通常の子]
Depth=11 Norm=0.8384 e0=0.8222 e1=-0.1456 e2=-0.0412 e3=0.0175 e4=0.0091 e5=-0.0318 e6=-0.0239 e7=-0.0450 N=3.0 Q=1.000 imagStrength=0.1640 [通常の子]
Depth=13 Norm=1.1293 e0=-0.9176 e1=0.6289 e2=0.1141 e3=-0.0522 e4=0.0119 e5=0.0989 e6=0.0795 e7=0.0763 N=0.0 Q=0.000 imagStrength=0.6582 [共役の子]
Depth=13 Norm=1.0841 e0=-1.0493 e1=-0.2371 e2=0.0547 e3=-0.0432 e4=0.0058 e5=0.1138 e6=-0.0138 e7=-0.0017 N=0.0 Q=0.000 imagStrength=0.2724 [共役の子]
Depth=13 Norm=1.1129 e0=1.0473 e1=0.3384 e2=0.0846 e3=-0.0410 e4=-0.0037 e5=0.0757 e6=-0.0775 e7=0.0808 N=0.0 Q=0.000 imagStrength=0.3763 [共役の子]
Depth=12 Norm=0.4409 e0=0.1255 e1=-0.4139 e2=-0.0319 e3=-0.0618 e4=0.0426 e5=0.0100 e6=-0.0236 e7=0.0058 N=3.0 Q=1.000 imagStrength=0.4227 [通常の子]
Depth=13 Norm=1.0890 e0=-1.0311 e1=-0.2949 e2=0.0625 e3=-0.0482 e4=0.0000 e5=0.0529 e6=0.0125 e7=0.1628 N=0.0 Q=0.000 imagStrength=0.3503 [通常の子]
Depth=13 Norm=1.1455 e0=1.1177 e1=0.1760 e2=0.0860 e3=-0.0507 e4=0.0116 e5=0.0992 e6=0.0898 e7=0.0629 N=0.0 Q=0.000 imagStrength=0.2508 [通常の子]
Depth=11 Norm=0.6817 e0=-0.6755 e1=-0.0531 e2=-0.0369 e3=0.0174 e4=0.0091 e5=-0.0321 e6=-0.0345 e7=-0.0392 N=3.0 Q=1.000 imagStrength=0.0912 [共役の子]
Depth=9 Norm=0.4787 e0=0.0569 e1=0.4652 e2=0.0742 e3=0.0109 e4=0.0236 e5=0.0020 e6=0.0213 e7=0.0537 N=3.0 Q=1.000 imagStrength=0.4754 [通常の子]
Depth=12 Norm=0.4540 e0=-0.3011 e1=-0.3063 e2=-0.0018 e3=-0.0972 e4=0.0243 e5=-0.0261 e6=-0.0245 e7=0.1013 N=3.0 Q=1.000 imagStrength=0.3397 [通常の子]
Depth=13 Norm=1.2021 e0=-0.8436 e1=-0.8431 e2=0.0472 e3=0.0099 e4=0.0784 e5=0.0272 e6=0.1098 e7=0.0376 N=0.0 Q=0.000 imagStrength=0.8564 [共役の子]
Depth=13 Norm=1.1901 e0=0.7531 e1=0.9014 e2=0.1371 e3=0.0115 e4=0.0729 e5=0.0062 e6=0.0740 e7=0.0839 N=1.0 Q=0.333 imagStrength=0.9215 [共役の子]
Depth=11 Norm=0.5675 e0=0.2320 e1=-0.5035 e2=-0.0698 e3=-0.0316 e4=-0.0260 e5=-0.0144 e6=-0.0869 e7=-0.0207 N=3.0 Q=1.000 imagStrength=0.5179 [共役の子]
Depth=13 Norm=1.2184 e0=0.1694 e1=-1.1974 e2=0.0249 e3=0.0123 e4=0.0741 e5=0.0070 e6=0.0918 e7=0.0851 N=1.0 Q=0.333 imagStrength=1.2066 [通常の子]
Depth=13 Norm=1.2743 e0=0.0711 e1=1.2547 e2=0.1507 e3=0.0115 e4=0.0763 e5=0.0144 e6=0.1049 e7=0.0680 N=1.0 Q=0.333 imagStrength=1.2723 [通常の子]
Depth=13 Norm=1.1690 e0=-0.8641 e1=0.7411 e2=0.1298 e3=0.0121 e4=0.0705 e5=-0.0130 e6=-0.1252 e7=0.1816 N=1.0 Q=0.333 imagStrength=0.7874 [通常の子]
Depth=11 Norm=0.7868 e0=0.6734 e1=-0.3929 e2=-0.0622 e3=-0.0314 e4=-0.0270 e5=-0.0097 e6=-0.0033 e7=-0.0745 N=3.0 Q=1.000 imagStrength=0.4070 [通常の子]
Depth=13 Norm=1.1715 e0=-0.3778 e1=1.0775 e2=0.1839 e3=-0.0027 e4=0.0818 e5=0.0158 e6=0.0386 e7=0.1631 N=1.0 Q=0.333 imagStrength=1.1090 [共役の子]
Depth=12 Norm=0.8153 e0=-0.8005 e1=0.1107 e2=0.0210 e3=-0.0578 e4=0.0093 e5=-0.0236 e6=-0.0639 e7=-0.0566 N=3.0 Q=1.000 imagStrength=0.1548 [共役の子]
Depth=10 Norm=0.9257 e0=0.9112 e1=-0.1180 e2=-0.0205 e3=0.0827 e4=-0.0071 e5=0.0207 e6=0.0693 e7=0.0142 N=3.0 Q=1.000 imagStrength=0.1633 [共役の子]
Depth=13 Norm=1.2606 e0=-0.7040 e1=1.0089 e2=0.1870 e3=-0.0017 e4=0.0747 e5=0.0037 e6=-0.0088 e7=0.1869 N=1.0 Q=0.333 imagStrength=1.0457 [通常の子]
Depth=12 Norm=0.5261 e0=-0.2106 e1=0.4719 e2=0.0357 e3=-0.0724 e4=0.0553 e5=0.0025 e6=-0.0148 e7=-0.0028 N=3.0 Q=1.000 imagStrength=0.4822 [通常の子]
Depth=12 Norm=0.4892 e0=0.1454 e1=-0.4577 e2=-0.0109 e3=-0.0724 e4=0.0553 e5=0.0025 e6=-0.0148 e7=-0.0028 N=3.0 Q=1.000 imagStrength=0.4671 [共役の子]
Depth=13 Norm=1.0676 e0=-1.0483 e1=0.0541 e2=0.1196 e3=-0.0022 e4=0.0351 e5=0.1419 e6=0.0454 e7=-0.0106 N=0.0 Q=0.000 imagStrength=0.2019 [共役の子]
Depth=11 Norm=0.8224 e0=0.8048 e1=-0.1427 e2=-0.0507 e3=-0.0262 e4=0.0028 e5=-0.0455 e6=-0.0440 e7=-0.0322 N=3.0 Q=1.000 imagStrength=0.1694 [通常の子]
Depth=13 Norm=1.1119 e0=-0.8954 e1=0.6102 e2=0.1524 e3=-0.0070 e4=0.0401 e5=0.1238 e6=0.1352 e7=0.0609 N=0.0 Q=0.000 imagStrength=0.6592 [共役の子]
Depth=13 Norm=1.0687 e0=-1.0464 e1=0.0687 e2=0.1154 e3=-0.0010 e4=0.0279 e5=0.0798 e6=0.0309 e7=0.1450 N=0.0 Q=0.000 imagStrength=0.2172 [通常の子]
Depth=9 Norm=0.8668 e0=0.7935 e1=-0.3425 e2=0.0308 e3=0.0147 e4=0.0048 e5=0.0443 e6=0.0156 e7=0.0299 N=3.0 Q=1.000 imagStrength=0.3487 [通常の子]
Depth=12 Norm=0.8676 e0=0.8419 e1=-0.1851 e2=0.0037 e3=-0.0550 e4=0.0493 e5=0.0028 e6=-0.0331 e7=-0.0557 N=3.0 Q=1.000 imagStrength=0.2096 [通常の子]
Depth=13 Norm=1.1884 e0=-0.3795 e1=1.1002 e2=0.1874 e3=-0.0058 e4=0.0352 e5=0.1309 e6=0.0183 e7=0.0631 N=1.0 Q=0.333 imagStrength=1.1262 [共役の子]
Depth=13 Norm=1.2600 e0=0.5976 e1=-1.0942 e2=0.0755 e3=-0.0043 e4=0.0283 e5=0.1028 e6=-0.0283 e7=0.1232 N=1.0 Q=0.333 imagStrength=1.1092 [共役の子]
Depth=11 Norm=0.8029 e0=-0.7688 e1=0.2179 e2=-0.0316 e3=-0.0260 e4=0.0028 e5=-0.0450 e6=-0.0078 e7=-0.0495 N=3.0 Q=1.000 imagStrength=0.2317 [共役の子]
Depth=13 Norm=1.1767 e0=-1.0973 e1=0.3490 e2=0.1429 e3=-0.0052 e4=0.0294 e5=0.0823 e6=-0.0109 e7=0.1744 N=0.0 Q=0.000 imagStrength=0.4247 [通常の子]
Depth=13 Norm=1.1983 e0=1.0831 e1=-0.4748 e2=0.1000 e3=-0.0074 e4=0.0393 e5=0.1223 e6=0.0558 e7=0.0881 N=0.0 Q=0.000 imagStrength=0.5127 [通常の子]
Depth=13 Norm=1.1855 e0=-1.0282 e1=0.4577 e2=0.0263 e3=-0.1002 e4=0.0546 e5=-0.2005 e6=0.1510 e7=0.2490 N=1.0 Q=0.333 imagStrength=0.5901 [通常の子]
Depth=13 Norm=1.1994 e0=1.0060 e1=-0.5578 e2=-0.0255 e3=-0.1022 e4=0.0643 e5=-0.1622 e6=0.2146 e7=0.1668 N=1.0 Q=0.333 imagStrength=0.6531 [通常の子]
Depth=11 Norm=0.7917 e0=-0.7347 e1=0.2578 e2=0.0038 e3=0.0694 e4=-0.0455 e5=0.0636 e6=-0.0789 e7=-0.0576 N=3.0 Q=1.000 imagStrength=0.2949 [共役の子]
Depth=12 Norm=0.7042 e0=-0.4971 e1=0.4893 e2=-0.0130 e3=-0.0213 e4=-0.0573 e5=-0.0363 e6=-0.0461 e7=0.0463 N=3.0 Q=1.000 imagStrength=0.4989 [通常の子]
Depth=12 Norm=0.6751 e0=0.4404 e1=-0.4986 e2=-0.0626 e3=-0.0213 e4=-0.0573 e5=-0.0363 e6=-0.0461 e7=0.0463 N=3.0 Q=1.000 imagStrength=0.5117 [共役の子]
Depth=13 Norm=1.1354 e0=-0.9985 e1=0.5006 e2=0.0045 e3=-0.0901 e4=0.0587 e5=-0.1389 e6=0.0799 e7=0.0653 N=0.0 Q=0.000 imagStrength=0.5405 [共役の子]
Depth=10 Norm=0.5157 e0=0.2437 e1=0.4368 e2=0.0682 e3=0.0138 e4=0.0556 e5=0.0343 e6=0.0593 e7=-0.0558 N=3.0 Q=1.000 imagStrength=0.4545 [通常の子]
Depth=13 Norm=1.2714 e0=0.7398 e1=0.9772 e2=0.0514 e3=-0.1012 e4=0.0651 e5=-0.1622 e6=0.2052 e7=0.1692 N=1.0 Q=0.333 imagStrength=1.0340 [通常の子]
Depth=12 Norm=0.4696 e0=-0.0756 e1=-0.4441 e2=-0.0603 e3=-0.0114 e4=-0.0660 e5=-0.0385 e6=-0.0685 e7=0.0573 N=3.0 Q=1.000 imagStrength=0.4635 [共役の子]
Depth=9 Norm=0.8193 e0=0.7947 e1=0.1491 e2=0.0037 e3=-0.0838 e4=0.0270 e5=-0.0636 e6=0.0237 e7=0.0711 N=3.0 Q=1.000 imagStrength=0.1992 [共役の子]
Depth=12 Norm=0.6752 e0=0.4478 e1=-0.4932 e2=-0.0620 e3=-0.0173 e4=-0.0581 e5=-0.0361 e6=-0.0474 e7=0.0326 N=3.0 Q=1.000 imagStrength=0.5053 [通常の子]
Depth=13 Norm=1.2442 e0=-1.2112 e1=0.2024 e2=-0.0080 e3=-0.0908 e4=0.0598 e5=-0.1343 e6=0.0804 e7=0.0611 N=0.0 Q=0.000 imagStrength=0.2848 [共役の子]
Depth=13 Norm=1.2957 e0=1.2637 e1=-0.0596 e2=-0.0212 e3=-0.0879 e4=0.0460 e5=-0.1891 e6=-0.0111 e7=0.1795 N=0.0 Q=0.000 imagStrength=0.2863 [共役の子]
Depth=13 Norm=1.2246 e0=-0.2629 e1=1.1744 e2=0.0194 e3=-0.0934 e4=-0.0251 e5=-0.0020 e6=-0.1884 e7=0.0774 N=1.0 Q=0.333 imagStrength=1.1960 [通常の子]
Depth=11 Norm=0.5624 e0=0.2419 e1=-0.4967 e2=-0.0313 e3=0.0795 e4=0.0076 e5=0.0030 e6=0.0281 e7=-0.0541 N=3.0 Q=1.000 imagStrength=0.5078 [通常の子]
Depth=13 Norm=1.1846 e0=0.3685 e1=1.1100 e2=0.0681 e3=-0.1116 e4=-0.0189 e5=0.0018 e6=-0.0205 e7=0.1325 N=1.0 Q=0.333 imagStrength=1.1259 [共役の子]
Depth=12 Norm=0.6086 e0=-0.5668 e1=-0.1991 e2=-0.0533 e3=0.0130 e4=-0.0080 e5=0.0091 e6=-0.0519 e7=-0.0610 N=3.0 Q=1.000 imagStrength=0.2219 [共役の子]
Depth=10 Norm=0.7674 e0=0.7391 e1=0.1898 e2=0.0530 e3=0.0048 e4=0.0000 e5=-0.0121 e6=0.0511 e7=0.0324 N=3.0 Q=1.000 imagStrength=0.2066 [共役の子]
Depth=13 Norm=1.2828 e0=-0.0025 e1=1.2687 e2=0.0764 e3=-0.1127 e4=-0.0169 e5=0.0029 e6=-0.0001 e7=0.1310 N=1.0 Q=0.333 imagStrength=1.2828 [通常の子]
Depth=13 Norm=1.2538 e0=1.0046 e1=0.7296 e2=0.0328 e3=-0.1083 e4=-0.0142 e5=0.0332 e6=0.1278 e7=-0.0131 N=0.0 Q=0.000 imagStrength=0.7503 [通常の子]
Depth=13 Norm=1.1854 e0=-1.0601 e1=-0.5081 e2=-0.0301 e3=-0.1057 e4=-0.0262 e5=-0.0140 e6=0.0489 e7=0.0889 N=0.0 Q=0.000 imagStrength=0.5305 [通常の子]
Depth=11 Norm=0.7294 e0=0.6884 e1=0.2254 e2=0.0032 e3=0.0792 e4=0.0084 e5=-0.0025 e6=-0.0316 e7=-0.0028 N=3.0 Q=1.000 imagStrength=0.2412 [共役の子]
Depth=12 Norm=0.4856 e0=-0.3336 e1=-0.3324 e2=-0.0621 e3=-0.0264 e4=0.0035 e5=0.0061 e6=-0.0252 e7=0.0937 N=3.0 Q=1.000 imagStrength=0.3529 [通常の子]
Depth=12 Norm=0.5860 e0=0.5090 e1=0.2705 e2=-0.0319 e3=-0.0264 e4=0.0035 e5=0.0061 e6=-0.0252 e7=0.0937 N=3.0 Q=1.000 imagStrength=0.2904 [共役の子]
Depth=13 Norm=1.3037 e0=1.0658 e1=0.7348 e2=0.0082 e3=-0.1000 e4=-0.0231 e5=-0.0231 e6=0.0459 e7=0.1038 N=0.0 Q=0.000 imagStrength=0.7509 [共役の子]
Depth=8 Norm=0.8590 e0=-0.7765 e1=0.3563 e2=0.0180 e3=-0.0734 e4=-0.0009 e5=-0.0221 e6=-0.0430 e7=-0.0002 N=3.0 Q=1.000 imagStrength=0.3674 [通常の子]
Depth=11 Norm=0.8318 e0=0.8272 e1=-0.0508 e2=-0.0346 e3=-0.0360 e4=0.0009 e5=-0.0487 e6=-0.0114 e7=0.0001 N=3.0 Q=1.000 imagStrength=0.0871 [共役の子]
Depth=13 Norm=1.1490 e0=1.1324 e1=0.0765 e2=0.0899 e3=0.0185 e4=0.0432 e5=0.1305 e6=0.0489 e7=-0.0477 N=0.0 Q=0.000 imagStrength=0.1946 [通常の子]
Depth=13 Norm=1.1051 e0=-1.0858 e1=0.1475 e2=0.0938 e3=0.0211 e4=0.0324 e5=0.0875 e6=-0.0234 e7=0.0458 N=0.0 Q=0.000 imagStrength=0.2058 [通常の子]
Depth=13 Norm=1.1922 e0=0.8381 e1=-0.8258 e2=0.0612 e3=0.0122 e4=0.0387 e5=0.0722 e6=0.1047 e7=0.1240 N=1.0 Q=0.333 imagStrength=0.8479 [共役の子]
Depth=12 Norm=0.7841 e0=0.6830 e1=-0.3779 e2=-0.0019 e3=-0.0484 e4=0.0444 e5=-0.0048 e6=-0.0186 e7=0.0289 N=3.0 Q=1.000 imagStrength=0.3851 [通常の子]
Depth=12 Norm=0.6981 e0=-0.5571 e1=0.4125 e2=0.0377 e3=-0.0484 e4=0.0444 e5=-0.0048 e6=-0.0186 e7=0.0289 N=3.0 Q=1.000 imagStrength=0.4208 [共役の子]
Depth=12 Norm=0.8062 e0=-0.7913 e1=0.1188 e2=0.0246 e3=-0.0320 e4=0.0410 e5=-0.0023 e6=-0.0319 e7=-0.0731 N=2.0 Q=0.667 imagStrength=0.1543 [共役の子]
Depth=10 Norm=0.9159 e0=0.9024 e1=-0.1275 e2=-0.0277 e3=0.0600 e4=-0.0387 e5=0.0006 e6=0.0373 e7=0.0320 N=3.0 Q=1.000 imagStrength=0.1566 [共役の子]
Depth=13 Norm=1.2433 e0=-0.7212 e1=0.9885 e2=0.1614 e3=0.0137 e4=0.0381 e5=0.0939 e6=-0.0306 e7=0.1053 N=1.0 Q=0.333 imagStrength=1.0128 [通常の子]
Depth=13 Norm=1.1867 e0=0.5300 e1=-1.0435 e2=0.0165 e3=0.0256 e4=0.0341 e5=0.0770 e6=-0.1411 e7=0.1029 N=1.0 Q=0.333 imagStrength=1.0618 [共役の子]
Depth=13 Norm=1.1142 e0=-0.6466 e1=0.8870 e2=0.1156 e3=0.0236 e4=0.0420 e5=0.1078 e6=-0.0893 e7=0.0357 N=1.0 Q=0.333 imagStrength=0.9073 [共役の子]
Depth=12 Norm=0.8326 e0=-0.7799 e1=0.2746 e2=0.0300 e3=-0.0679 e4=0.0453 e5=-0.0037 e6=-0.0459 e7=0.0069 N=3.0 Q=1.000 imagStrength=0.2918 [通常の子]
Depth=11 Norm=0.5899 e0=-0.5006 e1=-0.3000 e2=-0.0475 e3=-0.0384 e4=-0.0162 e5=-0.0296 e6=-0.0494 e7=0.0010 N=3.0 Q=1.000 imagStrength=0.3119 [通常の子]
Depth=13 Norm=1.2131 e0=1.1406 e1=0.3560 e2=0.1220 e3=0.0157 e4=0.0616 e5=0.0326 e6=0.1256 e7=0.0896 N=0.0 Q=0.000 imagStrength=0.4130 [共役の子]
Depth=13 Norm=1.2828 e0=0.7724 e1=1.0073 e2=0.1233 e3=0.0249 e4=0.0675 e5=0.0702 e6=0.0897 e7=-0.0275 N=1.0 Q=0.333 imagStrength=1.0241 [通常の子]
Depth=10 Norm=0.7702 e0=0.7375 e1=0.1998 e2=-0.0102 e3=0.0652 e4=-0.0256 e5=0.0174 e6=0.0115 e7=-0.0627 N=3.0 Q=1.000 imagStrength=0.2220 [通常の子]
Depth=13 Norm=1.2912 e0=0.0029 e1=1.2475 e2=0.1794 e3=0.0092 e4=0.0710 e5=0.0483 e6=0.2520 e7=0.0882 N=1.0 Q=0.333 imagStrength=1.2912 [通常の子]
Depth=12 Norm=0.6125 e0=-0.5732 e1=-0.2059 e2=0.0087 e3=-0.0404 e4=0.0254 e5=-0.0195 e6=-0.0130 e7=0.0353 N=3.0 Q=1.000 imagStrength=0.2157 [共役の子]
Depth=8 Norm=0.8791 e0=0.8675 e1=0.1118 e2=0.0039 e3=-0.0734 e4=-0.0009 e5=-0.0221 e6=-0.0430 e7=-0.0002 N=3.0 Q=1.000 imagStrength=0.1423 [共役の子]
Depth=11 Norm=0.7026 e0=-0.5376 e1=0.4455 e2=-0.0085 e3=-0.0379 e4=-0.0180 e5=-0.0222 e6=0.0218 e7=-0.0581 N=3.0 Q=1.000 imagStrength=0.4523 [共役の子]
Depth=13 Norm=1.2263 e0=-0.7067 e1=0.9735 e2=0.1596 e3=0.0147 e4=0.0635 e5=0.0319 e6=-0.0256 e7=0.1592 N=1.0 Q=0.333 imagStrength=1.0022 [通常の子]
Depth=13 Norm=1.2028 e0=0.6031 e1=-1.0279 e2=0.0565 e3=0.0139 e4=0.0670 e5=0.0468 e6=-0.0011 e7=0.1277 N=1.0 Q=0.333 imagStrength=1.0406 [通常の子]
Depth=13 Norm=1.2477 e0=0.3817 e1=1.1608 e2=0.1168 e3=0.0338 e4=0.0577 e5=0.0383 e6=-0.1945 e7=0.0789 N=1.0 Q=0.333 imagStrength=1.1879 [共役の子]
Depth=12 Norm=0.7558 e0=-0.7484 e1=-0.0203 e2=0.0168 e3=-0.0780 e4=0.0274 e5=-0.0172 e6=-0.0569 e7=0.0072 N=2.0 Q=0.667 imagStrength=0.1054 [通常の子]
Depth=12 Norm=0.8631 e0=0.8545 e1=-0.0643 e2=0.0146 e3=-0.0780 e4=0.0274 e5=-0.0172 e6=-0.0569 e7=0.0072 N=2.0 Q=0.667 imagStrength=0.1215 [共役の子]
Depth=11 Norm=0.6779 e0=0.6245 e1=0.2143 e2=0.0442 e3=0.1316 e4=-0.0043 e5=0.0567 e6=0.0066 e7=-0.0339 N=3.0 Q=1.000 imagStrength=0.2638 [通常の子]
Depth=13 Norm=1.1747 e0=-1.1348 e1=-0.1923 e2=-0.1519 e3=-0.1334 e4=-0.0376 e5=-0.1064 e6=-0.0365 e7=0.0149 N=0.0 Q=0.000 imagStrength=0.3035 [共役の子]
Depth=13 Norm=1.1065 e0=-0.7625 e1=-0.7462 e2=-0.1562 e3=-0.1395 e4=-0.0452 e5=-0.1481 e6=-0.0335 e7=0.1308 N=1.0 Q=0.333 imagStrength=0.8018 [通常の子]
Depth=10 Norm=0.5735 e0=-0.4924 e1=-0.2727 e2=0.0599 e3=-0.0726 e4=0.0453 e5=-0.0027 e6=0.0245 e7=0.0227 N=3.0 Q=1.000 imagStrength=0.2939 [通常の子]
Depth=13 Norm=1.1096 e0=-0.2696 e1=-1.0249 e2=-0.2025 e3=-0.1273 e4=-0.0488 e5=-0.1263 e6=-0.1781 e7=0.0282 N=1.0 Q=0.333 imagStrength=1.0763 [通常の子]
Depth=12 Norm=0.4993 e0=0.4173 e1=0.2571 e2=-0.0568 e3=0.0510 e4=-0.0522 e5=0.0027 e6=-0.0207 e7=-0.0085 N=3.0 Q=1.000 imagStrength=0.2741 [共役の子]
Depth=8 Norm=0.7198 e0=-0.6695 e1=-0.2189 e2=-0.0506 e3=0.1371 e4=-0.0150 e5=0.0199 e6=0.0010 e7=0.0033 N=3.0 Q=1.000 imagStrength=0.2644 [共役の子]
Depth=11 Norm=0.6341 e0=0.3742 e1=-0.4886 e2=0.0075 e3=0.1325 e4=-0.0022 e5=0.0492 e6=-0.0551 e7=0.0164 N=3.0 Q=1.000 imagStrength=0.5119 [共役の子]
Depth=13 Norm=1.1907 e0=0.3733 e1=-1.0952 e2=-0.2077 e3=-0.1318 e4=-0.0417 e5=-0.1174 e6=0.0488 e7=-0.0261 N=1.0 Q=0.333 imagStrength=1.1307 [通常の子]
Depth=13 Norm=1.2365 e0=-0.1442 e1=1.2100 e2=-0.0894 e3=-0.1318 e4=-0.0417 e5=-0.1170 e6=0.0494 e7=-0.0269 N=1.0 Q=0.333 imagStrength=1.2280 [通常の子]
Depth=13 Norm=1.1540 e0=-0.5664 e1=-0.9539 e2=-0.1525 e3=-0.1479 e4=-0.0360 e5=-0.1061 e6=0.2082 e7=0.0043 N=1.0 Q=0.333 imagStrength=1.0054 [共役の子]
Depth=12 Norm=0.6019 e0=0.5595 e1=0.1893 e2=-0.0593 e3=0.0797 e4=-0.0534 e5=0.0012 e6=0.0172 e7=0.0196 N=3.0 Q=1.000 imagStrength=0.2219 [通常の子]
Depth=12 Norm=0.6121 e0=-0.5891 e1=-0.1110 e2=-0.0743 e3=0.0797 e4=-0.0534 e5=0.0012 e6=0.0172 e7=0.0196 N=3.0 Q=1.000 imagStrength=0.1665 [共役の子]
Depth=13 Norm=1.2445 e0=0.9668 e1=-0.7151 e2=-0.1758 e3=-0.1310 e4=-0.0441 e5=-0.1648 e6=-0.0932 e7=0.1293 N=1.0 Q=0.333 imagStrength=0.7836 [共役の子]
Depth=13 Norm=1.1766 e0=-1.0352 e1=0.5164 e2=-0.1131 e3=-0.1336 e4=-0.0320 e5=-0.1167 e6=-0.0125 e7=0.0249 N=0.0 Q=0.000 imagStrength=0.5593 [共役の子]
Depth=12 Norm=0.8221 e0=-0.6795 e1=0.4509 e2=-0.0467 e3=0.0551 e4=-0.0624 e5=-0.0017 e6=-0.0380 e7=0.0139 N=3.0 Q=1.000 imagStrength=0.4627 [通常の子]
Depth=13 Norm=1.2559 e0=1.0052 e1=-0.6937 e2=-0.1881 e3=-0.1267 e4=-0.0388 e5=-0.1091 e6=-0.1413 e7=-0.0310 N=1.0 Q=0.333 imagStrength=0.7529 [通常の子]
Depth=13 Norm=1.2594 e0=-0.8148 e1=0.9155 e2=-0.1048 e3=-0.1252 e4=-0.0456 e5=-0.1376 e6=-0.1885 e7=0.0302 N=1.0 Q=0.333 imagStrength=0.9604 [通常の子]
Depth=11 Norm=0.8884 e0=0.7924 e1=-0.3737 e2=0.0148 e3=0.1301 e4=-0.0046 e5=0.0540 e6=0.0342 e7=-0.0213 N=3.0 Q=1.000 imagStrength=0.4016 [共役の子]
Depth=11 Norm=0.5251 e0=0.1354 e1=-0.4831 e2=0.0076 e3=0.1321 e4=-0.0052 e5=0.0528 e6=-0.0589 e7=0.0153 N=3.0 Q=1.000 imagStrength=0.5073 [通常の子]
Depth=13 Norm=1.1767 e0=0.4960 e1=1.0229 e2=-0.0465 e3=-0.1496 e4=-0.0328 e5=-0.1280 e6=0.2199 e7=0.0446 N=1.0 Q=0.333 imagStrength=1.0671 [共役の子]
Depth=13 Norm=1.2225 e0=-0.1259 e1=1.1966 e2=-0.0895 e3=-0.1317 e4=-0.0372 e5=-0.1270 e6=0.0587 e7=-0.0218 N=1.0 Q=0.333 imagStrength=1.2160 [通常の子]
Depth=10 Norm=0.9365 e0=0.9093 e1=-0.1884 e2=0.0639 e3=-0.0685 e4=0.0426 e5=0.0018 e6=-0.0102 e7=-0.0635 N=3.0 Q=1.000 imagStrength=0.2241 [通常の子]
Depth=13 Norm=1.2710 e0=-0.8427 e1=0.9069 e2=-0.0547 e3=-0.1468 e4=-0.0370 e5=-0.1352 e6=0.1892 e7=0.0520 N=1.0 Q=0.333 imagStrength=0.9514 [通常の子]
Depth=12 Norm=0.8465 e0=-0.8181 e1=0.1826 e2=-0.0592 e3=0.0808 e4=-0.0574 e5=-0.0014 e6=0.0166 e7=0.0185 N=3.0 Q=1.000 imagStrength=0.2175 [共役の子]
Depth=6 Norm=0.9592 e0=0.8981 e1=-0.3327 e2=-0.0308 e3=-0.0405 e4=0.0023 e5=-0.0012 e6=0.0064 e7=0.0114 N=3.0 Q=1.000 imagStrength=0.3369 [共役の子]
Depth=13 Norm=1.2443 e0=0.4767 e1=1.1233 e2=-0.0137 e3=-0.0349 e4=-0.0512 e5=0.1093 e6=-0.1727 e7=-0.1162 N=1.0 Q=0.333 imagStrength=1.1494 [通常の子]
Depth=11 Norm=0.4905 e0=-0.2845 e1=-0.3901 e2=-0.0043 e3=0.0446 e4=0.0303 e5=-0.0320 e6=0.0581 e7=0.0102 N=3.0 Q=1.000 imagStrength=0.3996 [通常の子]
Depth=13 Norm=1.1778 e0=0.9661 e1=0.6589 e2=0.0046 e3=-0.0481 e4=-0.0530 e5=0.0842 e6=-0.0850 e7=-0.0135 N=0.0 Q=0.000 imagStrength=0.6736 [共役の子]
Depth=12 Norm=0.4573 e0=-0.0860 e1=-0.4407 e2=-0.0462 e3=0.0435 e4=0.0247 e5=0.0257 e6=0.0022 e7=-0.0471 N=3.0 Q=1.000 imagStrength=0.4491 [共役の子]
Depth=10 Norm=0.5119 e0=0.2698 e1=0.4270 e2=0.0412 e3=-0.0329 e4=-0.0319 e5=-0.0264 e6=-0.0104 e7=0.0488 N=3.0 Q=1.000 imagStrength=0.4351 [共役の子]
Depth=13 Norm=1.2476 e0=0.7042 e1=1.0218 e2=0.0177 e3=-0.0520 e4=-0.0429 e5=0.1008 e6=0.0048 e7=-0.0379 N=1.0 Q=0.333 imagStrength=1.0299 [通常の子]
Depth=13 Norm=1.2688 e0=1.2478 e1=0.0381 e2=-0.0501 e3=-0.0435 e4=-0.0456 e5=0.1299 e6=-0.0334 e7=-0.1638 N=0.0 Q=0.000 imagStrength=0.2297 [通常の子]
Depth=13 Norm=1.2273 e0=-1.1955 e1=0.2171 e2=-0.0402 e3=-0.0408 e4=-0.0582 e5=0.0796 e6=-0.1176 e7=-0.0549 N=0.0 Q=0.000 imagStrength=0.2774 [通常の子]
Depth=11 Norm=0.9244 e0=0.9169 e1=-0.0835 e2=0.0100 e3=0.0454 e4=0.0310 e5=-0.0352 e6=0.0351 e7=0.0335 N=3.0 Q=1.000 imagStrength=0.1170 [共役の子]
Depth=12 Norm=0.5364 e0=0.1798 e1=-0.5002 e2=-0.0502 e3=0.0271 e4=0.0297 e5=0.0241 e6=0.0131 e7=0.0187 N=3.0 Q=1.000 imagStrength=0.5054 [通常の子]
Depth=12 Norm=0.4786 e0=0.0140 e1=0.4756 e2=-0.0013 e3=0.0271 e4=0.0297 e5=0.0241 e6=0.0131 e7=0.0187 N=3.0 Q=1.000 imagStrength=0.4784 [共役の子]
Depth=13 Norm=1.3266 e0=1.3219 e1=0.0174 e2=-0.0480 e3=-0.0459 e4=-0.0535 e5=0.0559 e6=-0.0277 e7=0.0292 N=0.0 Q=0.000 imagStrength=0.1110 [共役の子]
Depth=9 Norm=0.7825 e0=-0.6367 e1=0.4516 e2=0.0055 e3=-0.0338 e4=0.0179 e5=-0.0360 e6=0.0035 e7=0.0158 N=3.0 Q=1.000 imagStrength=0.4549 [通常の子]
Depth=12 Norm=0.7715 e0=-0.7611 e1=0.0712 e2=-0.0162 e3=-0.0005 e4=-0.0300 e5=-0.0242 e6=-0.0007 e7=0.0957 N=2.0 Q=0.667 imagStrength=0.1263 [通常の子]
Depth=13 Norm=1.2256 e0=0.0249 e1=-1.2123 e2=-0.1307 e3=-0.0291 e4=0.0306 e5=-0.1031 e6=0.0469 e7=0.0089 N=1.0 Q=0.333 imagStrength=1.2254 [共役の子]
Depth=13 Norm=1.1643 e0=-0.1656 e1=1.1458 e2=-0.0103 e3=-0.0299 e4=0.0336 e5=-0.0906 e6=0.0676 e7=-0.0178 N=1.0 Q=0.333 imagStrength=1.1524 [共役の子]
Depth=11 Norm=0.8741 e0=0.7853 e1=-0.3778 e2=-0.0067 e3=0.0346 e4=-0.0248 e5=0.0301 e6=-0.0404 e7=0.0156 N=3.0 Q=1.000 imagStrength=0.3839 [共役の子]
Depth=13 Norm=1.2412 e0=0.9930 e1=-0.7278 e2=-0.1043 e3=-0.0286 e4=0.0334 e5=-0.0752 e6=0.0557 e7=-0.0591 N=0.0 Q=0.000 imagStrength=0.7448 [通常の子]
Depth=13 Norm=1.2464 e0=-0.8157 e1=0.9359 e2=-0.0183 e3=-0.0270 e4=0.0271 e5=-0.1009 e6=0.0129 e7=-0.0036 N=0.0 Q=0.000 imagStrength=0.9424 [通常の子]
Depth=13 Norm=1.2135 e0=-1.1865 e1=-0.1449 e2=-0.0588 e3=-0.0324 e4=0.0274 e5=-0.1328 e6=-0.0309 e7=0.1409 N=0.0 Q=0.000 imagStrength=0.2544 [通常の子]
Depth=11 Norm=0.9194 e0=0.9135 e1=-0.0764 e2=0.0099 e3=0.0351 e4=-0.0282 e5=0.0386 e6=-0.0167 e7=-0.0312 N=3.0 Q=1.000 imagStrength=0.1035 [通常の子]
Depth=13 Norm=1.2662 e0=-1.1426 e1=0.5314 e2=-0.0213 e3=-0.0364 e4=0.0411 e5=-0.0795 e6=0.0683 e7=0.0287 N=0.0 Q=0.000 imagStrength=0.5456 [共役の子]
Depth=12 Norm=0.8354 e0=-0.7034 e1=0.4449 e2=0.0055 e3=0.0353 e4=-0.0369 e5=-0.0214 e6=-0.0099 e7=-0.0446 N=3.0 Q=1.000 imagStrength=0.4507 [共役の子]
Depth=10 Norm=0.8465 e0=0.7126 e1=-0.4539 e2=-0.0007 e3=-0.0257 e4=0.0334 e5=0.0226 e6=0.0217 e7=0.0055 N=3.0 Q=1.000 imagStrength=0.4570 [共役の子]
Depth=13 Norm=1.2970 e0=-1.2614 e1=0.2551 e2=-0.0254 e3=-0.0337 e4=0.0247 e5=-0.1107 e6=-0.0716 e7=0.0778 N=0.0 Q=0.000 imagStrength=0.3015 [通常の子]
Depth=10 Norm=0.7497 e0=0.6149 e1=-0.4172 e2=-0.0491 e3=0.0672 e4=-0.0403 e5=0.0038 e6=-0.0034 e7=-0.0368 N=3.0 Q=1.000 imagStrength=0.4289 [通常の子]
Depth=13 Norm=1.1733 e0=-1.1510 e1=0.1599 e2=0.1166 e3=0.0297 e4=0.0356 e5=0.0780 e6=0.0516 e7=0.0399 N=0.0 Q=0.000 imagStrength=0.2273 [通常の子]
Depth=12 Norm=0.7407 e0=-0.6118 e1=0.4092 e2=0.0448 e3=-0.0504 e4=0.0471 e5=-0.0045 e6=0.0136 e7=0.0035 N=3.0 Q=1.000 imagStrength=0.4176 [共役の子]
Depth=9 Norm=0.8464 e0=-0.7848 e1=0.3068 e2=0.0592 e3=0.0372 e4=0.0086 e5=0.0339 e6=0.0067 e7=0.0107 N=3.0 Q=1.000 imagStrength=0.3169 [共役の子]
Depth=12 Norm=0.7899 e0=-0.7437 e1=0.2368 e2=0.0347 e3=-0.0755 e4=0.0474 e5=-0.0062 e6=-0.0048 e7=0.0748 N=3.0 Q=1.000 imagStrength=0.2662 [通常の子]
Depth=13 Norm=1.1427 e0=0.4446 e1=-1.0468 e2=0.0273 e3=0.0376 e4=0.0374 e5=0.0742 e6=0.0407 e7=0.0384 N=1.0 Q=0.333 imagStrength=1.0526 [共役の子]
Depth=13 Norm=1.0706 e0=-0.5467 e1=0.9002 e2=0.1273 e3=0.0357 e4=0.0442 e5=0.1001 e6=0.0846 e7=-0.0184 N=1.0 Q=0.333 imagStrength=0.9205 [共役の子]
Depth=13 Norm=1.1968 e0=0.3774 e1=1.1065 e2=0.1237 e3=0.0457 e4=0.0342 e5=0.0865 e6=-0.1971 e7=0.0264 N=1.0 Q=0.333 imagStrength=1.1358 [共役の子]
Depth=12 Norm=0.7217 e0=-0.7146 e1=-0.0225 e2=0.0223 e3=-0.0777 e4=0.0443 e5=-0.0039 e6=-0.0348 e7=-0.0041 N=2.0 Q=0.667 imagStrength=0.1012 [通常の子]
Depth=12 Norm=0.8285 e0=0.8206 e1=-0.0593 e2=0.0204 e3=-0.0777 e4=0.0443 e5=-0.0039 e6=-0.0348 e7=-0.0041 N=2.0 Q=0.667 imagStrength=0.1148 [共役の子]
Depth=13 Norm=1.1538 e0=-0.5985 e1=0.9558 e2=0.1211 e3=0.0430 e4=0.0345 e5=0.0785 e6=-0.1810 e7=0.0528 N=1.0 Q=0.333 imagStrength=0.9864 [通常の子]
Depth=11 Norm=0.6653 e0=0.4807 e1=-0.4498 e2=-0.0548 e3=-0.0479 e4=-0.0025 e5=-0.0386 e6=0.0324 e7=-0.0373 N=3.0 Q=1.000 imagStrength=0.4599 [通常の子]
Depth=13 Norm=1.1354 e0=-0.0243 e1=1.1142 e2=0.1735 e3=0.0266 e4=0.0430 e5=0.0950 e6=-0.0141 e7=0.0721 N=1.0 Q=0.333 imagStrength=1.1351 [共役の子]
Depth=13 Norm=1.2449 e0=0.9693 e1=0.7424 e2=0.1445 e3=0.0272 e4=0.0445 e5=0.1302 e6=0.1177 e7=-0.0688 N=1.0 Q=0.333 imagStrength=0.7812 [通常の子]
Depth=13 Norm=1.1759 e0=-1.0366 e1=-0.5389 e2=0.0792 e3=0.0298 e4=0.0328 e5=0.0833 e6=0.0390 e7=0.0330 N=0.0 Q=0.000 imagStrength=0.5552 [通常の子]
Depth=11 Norm=0.7101 e0=0.6652 e1=0.2368 e2=-0.0219 e3=-0.0477 e4=0.0013 e5=-0.0482 e6=-0.0186 e7=0.0165 N=3.0 Q=1.000 imagStrength=0.2486 [共役の子]
Depth=12 Norm=0.4923 e0=-0.3500 e1=-0.3238 e2=0.0061 e3=-0.0772 e4=0.0496 e5=-0.0050 e6=-0.0050 e7=0.0805 N=3.0 Q=1.000 imagStrength=0.3461 [通常の子]
Depth=12 Norm=0.5974 e0=0.5254 e1=0.2542 e2=0.0351 e3=-0.0772 e4=0.0496 e5=-0.0050 e6=-0.0050 e7=0.0805 N=3.0 Q=1.000 imagStrength=0.2843 [共役の子]
Depth=13 Norm=1.2940 e0=1.0442 e1=0.7477 e2=0.1175 e3=0.0376 e4=0.0345 e5=0.0745 e6=0.0321 e7=0.0453 N=0.0 Q=0.000 imagStrength=0.7642 [共役の子]
Depth=10 Norm=0.8541 e0=-0.8478 e1=0.0424 e2=-0.0251 e3=0.0634 e4=-0.0359 e5=0.0004 e6=0.0314 e7=0.0463 N=3.0 Q=1.000 imagStrength=0.1043 [通常の子]
Depth=13 Norm=1.1774 e0=0.5255 e1=-1.0297 e2=0.0146 e3=0.0448 e4=0.0337 e5=0.0971 e6=-0.1922 e7=0.0135 N=1.0 Q=0.333 imagStrength=1.0536 [通常の子]
Depth=12 Norm=0.8190 e0=0.8108 e1=-0.0602 e2=0.0203 e3=-0.0769 e4=0.0460 e5=-0.0025 e6=-0.0349 e7=-0.0076 N=2.0 Q=0.667 imagStrength=0.1155 [共役の子]
Depth=9 Norm=0.5215 e0=0.1338 e1=-0.5009 e2=0.0158 e3=0.0373 e4=0.0077 e5=0.0361 e6=0.0064 e7=0.0095 N=3.0 Q=1.000 imagStrength=0.5040 [共役の子]
Depth=12 Norm=0.5941 e0=0.5233 e1=0.2612 e2=0.0377 e3=-0.0372 e4=0.0377 e5=-0.0026 e6=-0.0318 e7=-0.0750 N=3.0 Q=1.000 imagStrength=0.2812 [通常の子]
Depth=13 Norm=1.2355 e0=0.6832 e1=1.0048 e2=0.1710 e3=0.0261 e4=0.0382 e5=0.0882 e6=-0.0321 e7=0.1000 N=1.0 Q=0.333 imagStrength=1.0295 [共役の子]
Depth=13 Norm=1.2648 e0=-0.4681 e1=-1.1657 e2=0.0590 e3=0.0256 e4=0.0407 e5=0.0994 e6=-0.0141 e7=0.0767 N=1.0 Q=0.333 imagStrength=1.1750 [共役の子]
Depth=12 Norm=0.8844 e0=0.8237 e1=-0.2900 e2=-0.0387 e3=-0.0493 e4=-0.0400 e5=-0.0318 e6=-0.0407 e7=0.1070 N=3.0 Q=1.000 imagStrength=0.3221 [共役の子]
Depth=10 Norm=0.8625 e0=-0.8105 e1=0.2771 e2=0.0422 e3=0.0269 e4=0.0390 e5=0.0287 e6=0.0321 e7=-0.0655 N=3.0 Q=1.000 imagStrength=0.2948 [共役の子]
Depth=13 Norm=1.1789 e0=0.9696 e1=-0.6411 e2=-0.0380 e3=-0.0581 e4=0.0538 e5=-0.1177 e6=0.1099 e7=0.0728 N=0.0 Q=0.000 imagStrength=0.6707 [通常の子]
Depth=13 Norm=1.2242 e0=-0.8639 e1=0.8382 e2=0.0670 e3=-0.0656 e4=0.0561 e5=-0.0948 e6=0.1653 e7=0.0374 N=1.0 Q=0.333 imagStrength=0.8673 [共役の子]
Depth=13 Norm=1.2966 e0=1.0335 e1=-0.7482 e2=-0.0144 e3=-0.0631 e4=0.0442 e5=-0.1422 e6=0.0863 e7=0.1395 N=1.0 Q=0.333 imagStrength=0.7830 [共役の子]
Depth=12 Norm=0.8785 e0=0.7910 e1=-0.3746 e2=-0.0405 e3=-0.0189 e4=-0.0413 e5=-0.0301 e6=-0.0211 e7=0.0275 N=3.0 Q=1.000 imagStrength=0.3823 [通常の子]
Depth=12 Norm=0.5446 e0=0.1934 e1=-0.4950 e2=-0.0478 e3=-0.0348 e4=-0.0468 e5=-0.0321 e6=-0.0604 e7=0.0617 N=3.0 Q=1.000 imagStrength=0.5091 [通常の子]
Depth=12 Norm=0.4849 e0=-0.0086 e1=0.4724 e2=0.0007 e3=-0.0348 e4=-0.0468 e5=-0.0321 e6=-0.0604 e7=0.0617 N=3.0 Q=1.000 imagStrength=0.4848 [共役の子]
Depth=13 Norm=1.3262 e0=1.2951 e1=0.0026 e2=0.0057 e3=-0.0583 e4=0.0455 e5=-0.1675 e6=0.0212 e7=0.2179 N=0.0 Q=0.000 imagStrength=0.2855 [共役の子]
Depth=11 Norm=0.8834 e0=-0.8647 e1=0.1650 e2=-0.0057 e3=0.0378 e4=-0.0339 e5=0.0398 e6=-0.0095 e7=-0.0337 N=3.0 Q=1.000 imagStrength=0.1807 [通常の子]
Depth=13 Norm=1.2815 e0=1.0111 e1=-0.7572 e2=-0.0350 e3=-0.0537 e4=0.0412 e5=-0.1410 e6=-0.0683 e7=0.1278 N=1.0 Q=0.333 imagStrength=0.7874 [共役の子]
Depth=13 Norm=1.3266 e0=1.3196 e1=0.0040 e2=0.0139 e3=-0.0603 e4=0.0551 e5=-0.0898 e6=0.0517 e7=0.0291 N=0.0 Q=0.000 imagStrength=0.1359 [通常の子]
Depth=8 Norm=0.5882 e0=0.4388 e1=0.3904 e2=-0.0055 e3=0.0116 e4=-0.0040 e5=0.0017 e6=-0.0293 e7=0.0026 N=3.0 Q=1.000 imagStrength=0.3917 [通常の子]
Depth=11 Norm=0.4994 e0=-0.0434 e1=0.4915 e2=0.0127 e3=0.0496 e4=0.0211 e5=-0.0211 e6=0.0405 e7=-0.0283 N=3.0 Q=1.000 imagStrength=0.4975 [共役の子]
Depth=13 Norm=1.2264 e0=0.0133 e1=1.2162 e2=0.0971 e3=-0.0779 e4=-0.0305 e5=0.0716 e6=-0.0244 e7=0.0507 N=1.0 Q=0.333 imagStrength=1.2263 [通常の子]
Depth=13 Norm=1.1655 e0=-0.1508 e1=-1.1474 e2=-0.0237 e3=-0.0771 e4=-0.0336 e5=0.0594 e6=-0.0444 e7=0.0765 N=1.0 Q=0.333 imagStrength=1.1557 [通常の子]
Depth=13 Norm=1.2798 e0=1.0218 e1=0.7428 e2=0.0310 e3=-0.0640 e4=-0.0392 e5=0.0383 e6=-0.1665 e7=0.0792 N=0.0 Q=0.000 imagStrength=0.7706 [共役の子]
Depth=12 Norm=0.4884 e0=-0.3647 e1=-0.3165 e2=-0.0455 e3=-0.0325 e4=0.0224 e5=0.0189 e6=-0.0357 e7=0.0037 N=2.0 Q=0.667 imagStrength=0.3248 [通常の子]
Depth=12 Norm=0.5935 e0=0.5344 e1=0.2513 e2=-0.0170 e3=-0.0325 e4=0.0224 e5=0.0189 e6=-0.0357 e7=0.0037 N=3.0 Q=1.000 imagStrength=0.2582 [共役の子]
Depth=12 Norm=0.5774 e0=-0.2572 e1=0.5153 e2=-0.0026 e3=-0.0182 e4=0.0285 e5=0.0192 e6=0.0117 e7=0.0019 N=3.0 Q=1.000 imagStrength=0.5169 [共役の子]
Depth=10 Norm=0.5609 e0=0.1893 e1=-0.5260 e2=-0.0021 e3=0.0195 e4=-0.0270 e5=-0.0202 e6=-0.0004 e7=-0.0225 N=3.0 Q=1.000 imagStrength=0.5280 [共役の子]
Depth=13 Norm=1.2657 e0=-1.1367 e1=-0.5462 e2=-0.0149 e3=-0.0697 e4=-0.0408 e5=0.0463 e6=-0.0427 e7=0.0298 N=0.0 Q=0.000 imagStrength=0.5567 [通常の子]
Depth=13 Norm=1.2771 e0=1.2028 e1=0.3883 e2=0.0502 e3=-0.0799 e4=-0.0328 e5=0.0326 e6=0.1026 e7=0.1092 N=0.0 Q=0.000 imagStrength=0.4293 [共役の子]
Depth=13 Norm=1.2585 e0=-1.0693 e1=-0.6311 e2=-0.0030 e3=-0.0820 e4=-0.0225 e5=0.0733 e6=0.1703 e7=0.0217 N=0.0 Q=0.000 imagStrength=0.6636 [共役の子]
Depth=12 Norm=0.5044 e0=0.0113 e1=0.5028 e2=-0.0039 e3=-0.0096 e4=0.0209 e5=0.0170 e6=-0.0086 e7=0.0241 N=3.0 Q=1.000 imagStrength=0.5043 [通常の子]
Depth=7 Norm=0.8975 e0=-0.8464 e1=0.2850 e2=0.0438 e3=-0.0546 e4=0.0040 e5=-0.0081 e6=-0.0317 e7=0.0449 N=3.0 Q=1.000 imagStrength=0.2987 [通常の子]
Depth=13 Norm=1.1425 e0=0.4696 e1=0.9941 e2=-0.1119 e3=-0.0371 e4=-0.0914 e5=-0.0036 e6=-0.2425 e7=-0.1240 N=1.0 Q=0.333 imagStrength=1.0415 [共役の子]
Depth=12 Norm=0.6431 e0=-0.6313 e1=-0.0674 e2=-0.0386 e3=0.0752 e4=-0.0110 e5=0.0300 e6=0.0283 e7=-0.0386 N=2.0 Q=0.667 imagStrength=0.1224 [通常の子]
Depth=12 Norm=0.7542 e0=0.7474 e1=-0.0039 e2=-0.0354 e3=0.0752 e4=-0.0110 e5=0.0300 e6=0.0283 e7=-0.0386 N=2.0 Q=0.667 imagStrength=0.1011 [共役の子]
Depth=13 Norm=1.0988 e0=-0.4634 e1=0.9503 e2=-0.1113 e3=-0.0381 e4=-0.0914 e5=-0.0055 e6=-0.2321 e7=-0.1154 N=1.0 Q=0.333 imagStrength=0.9963 [通常の子]
Depth=11 Norm=0.5937 e0=0.3870 e1=-0.4358 e2=0.0274 e3=0.0697 e4=0.0302 e5=0.0106 e6=0.0747 e7=0.0230 N=3.0 Q=1.000 imagStrength=0.4502 [通常の子]
Depth=13 Norm=1.0739 e0=0.0913 e1=1.0573 e2=-0.0614 e3=-0.0548 e4=-0.0835 e5=0.0051 e6=-0.0742 e7=-0.0873 N=1.0 Q=0.333 imagStrength=1.0700 [共役の子]
Depth=13 Norm=1.1018 e0=-0.7000 e1=0.8112 e2=-0.0819 e3=-0.0532 e4=-0.0804 e5=0.0335 e6=0.0877 e7=-0.2028 N=1.0 Q=0.333 imagStrength=0.8509 [共役の子]
Depth=13 Norm=1.1741 e0=0.8868 e1=-0.7356 e2=-0.1608 e3=-0.0508 e4=-0.0905 e5=-0.0051 e6=0.0223 e7=-0.1182 N=1.0 Q=0.333 imagStrength=0.7695 [共役の子]
Depth=12 Norm=0.7988 e0=0.7220 e1=-0.3101 e2=-0.0494 e3=0.1029 e4=-0.0084 e5=0.0292 e6=0.0771 e7=-0.0281 N=3.0 Q=1.000 imagStrength=0.3419 [通常の子]
Depth=13 Norm=1.0884 e0=-0.7505 e1=0.7649 e2=-0.0759 e3=-0.0567 e4=-0.0836 e5=-0.0073 e6=0.1106 e7=-0.0902 N=1.0 Q=0.333 imagStrength=0.7883 [通常の子]
Depth=13 Norm=1.0758 e0=0.6556 e1=-0.8097 e2=-0.1571 e3=-0.0580 e4=-0.0786 e5=0.0113 e6=0.1424 e7=-0.1313 N=1.0 Q=0.333 imagStrength=0.8529 [通常の子]
Depth=11 Norm=0.6602 e0=-0.5441 e1=0.3544 e2=0.0654 e3=0.0706 e4=0.0295 e5=0.0086 e6=-0.0088 e7=0.0628 N=3.0 Q=1.000 imagStrength=0.3739 [共役の子]
Depth=10 Norm=0.4823 e0=0.1536 e1=0.4398 e2=0.0596 e3=-0.0919 e4=0.0528 e5=0.0111 e6=-0.0256 e7=0.0011 N=3.0 Q=1.000 imagStrength=0.4572 [通常の子]
Depth=13 Norm=1.2052 e0=0.7892 e1=0.8887 e2=-0.0824 e3=-0.0463 e4=-0.0151 e5=-0.1259 e6=0.1077 e7=-0.0574 N=1.0 Q=0.333 imagStrength=0.9109 [通常の子]
Depth=12 Norm=0.4697 e0=0.0173 e1=-0.4524 e2=-0.0532 e3=0.0904 e4=-0.0657 e5=-0.0093 e6=0.0168 e7=0.0054 N=3.0 Q=1.000 imagStrength=0.4694 [共役の子]
Depth=9 Norm=0.8158 e0=0.8044 e1=0.1005 e2=-0.0535 e3=-0.0475 e4=0.0014 e5=-0.0515 e6=-0.0074 e7=-0.0239 N=3.0 Q=1.000 imagStrength=0.1361 [共役の子]
Depth=12 Norm=0.6838 e0=0.4869 e1=-0.4632 e2=-0.0529 e3=0.0875 e4=-0.0587 e5=-0.0071 e6=0.0372 e7=-0.0243 N=3.0 Q=1.000 imagStrength=0.4801 [通常の子]
Depth=13 Norm=1.1829 e0=-1.1183 e1=0.3132 e2=-0.1253 e3=-0.0382 e4=-0.0193 e5=-0.0988 e6=0.0049 e7=-0.1523 N=0.0 Q=0.000 imagStrength=0.3855 [共役の子]
Depth=13 Norm=1.2389 e0=1.2038 e1=-0.1734 e2=-0.1500 e3=-0.0354 e4=-0.0323 e5=-0.1501 e6=-0.0815 e7=-0.0406 N=0.0 Q=0.000 imagStrength=0.2927 [共役の子]
Depth=13 Norm=1.1651 e0=0.6690 e1=-0.9195 e2=-0.1684 e3=-0.0470 e4=-0.0240 e5=-0.1588 e6=0.0897 e7=0.0096 N=1.0 Q=0.333 imagStrength=0.9539 [共役の子]
Depth=12 Norm=0.7945 e0=0.7179 e1=-0.3161 e2=-0.0464 e3=0.0936 e4=-0.0650 e5=-0.0091 e6=0.0264 e7=0.0064 N=3.0 Q=1.000 imagStrength=0.3404 [通常の子]
Depth=12 Norm=0.7220 e0=-0.6121 e1=0.3642 e2=-0.0123 e3=0.0936 e4=-0.0650 e5=-0.0091 e6=0.0264 e7=0.0064 N=3.0 Q=1.000 imagStrength=0.3828 [共役の子]
Depth=13 Norm=1.1860 e0=1.1570 e1=-0.1104 e2=-0.1388 e3=-0.0416 e4=-0.0190 e5=-0.1037 e6=0.0602 e7=-0.1415 N=0.0 Q=0.000 imagStrength=0.2606 [通常の子]
Depth=11 Norm=0.7826 e0=-0.7516 e1=0.1892 e2=0.0567 e3=0.0612 e4=-0.0100 e5=0.0537 e6=0.0104 e7=0.0414 N=3.0 Q=1.000 imagStrength=0.2181 [通常の子]
Depth=13 Norm=1.1473 e0=0.8273 e1=-0.7525 e2=-0.1853 e3=-0.0341 e4=-0.0315 e5=-0.1469 e6=-0.0567 e7=-0.0649 N=1.0 Q=0.333 imagStrength=0.7949 [共役の子]
Depth=12 Norm=0.8291 e0=0.8031 e1=-0.1108 e2=-0.0409 e3=0.1155 e4=-0.0208 e5=0.0310 e6=0.0301 e7=-0.1133 N=3.0 Q=1.000 imagStrength=0.2060 [通常の子]
Depth=12 Norm=0.8043 e0=-0.7636 e1=0.1859 e2=-0.0260 e3=0.1155 e4=-0.0208 e5=0.0310 e6=0.0301 e7=-0.1133 N=3.0 Q=1.000 imagStrength=0.2524 [共役の子]
Depth=13 Norm=1.2337 e0=0.1040 e1=-1.2065 e2=-0.1775 e3=-0.0585 e4=-0.0885 e5=-0.0065 e6=-0.0954 e7=-0.0610 N=1.0 Q=0.333 imagStrength=1.2293 [共役の子]
Depth=11 Norm=0.5113 e0=0.0243 e1=0.4917 e2=0.0747 e3=0.0731 e4=0.0309 e5=0.0118 e6=0.0817 e7=0.0203 N=3.0 Q=1.000 imagStrength=0.5108 [通常の子]
Depth=13 Norm=1.2739 e0=-0.6610 e1=-1.0221 e2=-0.2214 e3=-0.0400 e4=-0.0919 e5=0.0056 e6=-0.2454 e7=-0.1484 N=1.0 Q=0.333 imagStrength=1.0890 [共役の子]
Depth=13 Norm=1.2242 e0=0.0935 e1=-1.1984 e2=-0.1752 e3=-0.0594 e4=-0.0874 e5=-0.0034 e6=-0.0869 e7=-0.0667 N=1.0 Q=0.333 imagStrength=1.2206 [通常の子]
Depth=9 Norm=0.5831 e0=0.4394 e1=0.3730 e2=-0.0408 e3=-0.0458 e4=-0.0253 e5=0.0062 e6=-0.0150 e7=-0.0565 N=3.0 Q=1.000 imagStrength=0.3834 [通常の子]
Depth=12 Norm=0.4607 e0=0.0209 e1=-0.4407 e2=-0.0587 e3=0.0841 e4=-0.0052 e5=0.0298 e6=0.0778 e7=0.0112 N=3.0 Q=1.000 imagStrength=0.4602 [通常の子]
Depth=13 Norm=1.2358 e0=-1.1215 e1=-0.4109 e2=-0.1735 e3=-0.0475 e4=-0.0860 e5=0.0344 e6=0.0183 e7=-0.2437 N=0.0 Q=0.000 imagStrength=0.5191 [共役の子]
Depth=13 Norm=1.2543 e0=1.1080 e1=0.5409 e2=-0.1241 e3=-0.0453 e4=-0.0963 e5=-0.0071 e6=-0.0510 e7=-0.1541 N=0.0 Q=0.000 imagStrength=0.5880 [共役の子]
Depth=11 Norm=0.4990 e0=-0.1280 e1=-0.4702 e2=0.0246 e3=0.0742 e4=0.0300 e5=0.0101 e6=-0.0154 e7=0.0647 N=3.0 Q=1.000 imagStrength=0.4823 [共役の子]
Depth=13 Norm=1.2479 e0=-0.3572 e1=-1.1634 e2=-0.2199 e3=-0.0456 e4=-0.0916 e5=-0.0152 e6=-0.0123 e7=-0.1296 N=1.0 Q=0.333 imagStrength=1.1957 [通常の子]
Depth=13 Norm=1.3183 e0=0.5757 e1=1.1615 e2=-0.1010 e3=-0.0471 e4=-0.0847 e5=0.0134 e6=0.0351 e7=-0.1909 N=1.0 Q=0.333 imagStrength=1.1860 [通常の子]
Depth=12 Norm=0.7812 e0=0.6352 e1=-0.4383 e2=-0.0549 e3=0.0766 e4=-0.0660 e5=-0.0103 e6=0.0145 e7=0.0340 N=3.0 Q=1.000 imagStrength=0.4548 [共役の子]
Depth=10 Norm=0.7016 e0=-0.5454 e1=0.4225 e2=0.0607 e3=-0.0934 e4=0.0556 e5=0.0120 e6=-0.0250 e7=-0.0016 N=3.0 Q=1.000 imagStrength=0.4413 [共役の子]
Depth=13 Norm=1.1436 e0=1.1194 e1=-0.0476 e2=-0.1532 e3=-0.0429 e4=-0.0166 e5=-0.1316 e6=0.0546 e7=-0.0809 N=0.0 Q=0.000 imagStrength=0.2339 [通常の子]
Depth=13 Norm=1.1644 e0=-1.0956 e1=0.3217 e2=-0.1278 e3=-0.0418 e4=-0.0190 e5=-0.1076 e6=0.0112 e7=-0.1474 N=0.0 Q=0.000 imagStrength=0.3942 [共役の子]
Depth=13 Norm=1.2209 e0=1.1826 e1=-0.1851 e2=-0.1535 e3=-0.0389 e4=-0.0318 e5=-0.1579 e6=-0.0735 e7=-0.0378 N=0.0 Q=0.000 imagStrength=0.3036 [共役の子]
Depth=12 Norm=0.6783 e0=0.4874 e1=-0.4539 e2=-0.0541 e3=0.0887 e4=-0.0620 e5=-0.0081 e6=0.0364 e7=-0.0215 N=3.0 Q=1.000 imagStrength=0.4717 [通常の子]
Depth=12 Norm=0.4460 e0=-0.2184 e1=-0.3691 e2=-0.0517 e3=0.0694 e4=-0.0642 e5=-0.0103 e6=0.0198 e7=0.0542 N=3.0 Q=1.000 imagStrength=0.3889 [通常の子]
Depth=12 Norm=0.5192 e0=0.3971 e1=0.3149 e2=-0.0174 e3=0.0694 e4=-0.0642 e5=-0.0103 e6=0.0198 e7=0.0542 N=3.0 Q=1.000 imagStrength=0.3344 [共役の子]
Depth=13 Norm=1.2690 e0=1.1154 e1=0.5636 e2=-0.1271 e3=-0.0386 e4=-0.0282 e5=-0.1727 e6=-0.0125 e7=-0.0091 N=0.0 Q=0.000 imagStrength=0.6051 [共役の子]
Depth=11 Norm=0.7451 e0=-0.7325 e1=-0.0871 e2=0.0436 e3=0.0640 e4=-0.0109 e5=0.0566 e6=0.0126 e7=0.0409 N=3.0 Q=1.000 imagStrength=0.1369 [通常の子]
Depth=13 Norm=1.2093 e0=1.1752 e1=-0.1713 e2=-0.1475 e3=-0.0407 e4=-0.0315 e5=-0.1577 e6=-0.0311 e7=-0.0412 N=0.0 Q=0.000 imagStrength=0.2851 [共役の子]
Depth=13 Norm=1.2735 e0=1.1166 e1=0.5661 e2=-0.1202 e3=-0.0397 e4=-0.0202 e5=-0.1081 e6=0.0199 e7=-0.1614 N=0.0 Q=0.000 imagStrength=0.6124 [通常の子]
Depth=6 Norm=1.0311 e0=1.0290 e1=-0.0560 e2=-0.0183 e3=-0.0021 e4=-0.0073 e5=0.0047 e6=-0.0054 e7=-0.0284 N=3.0 Q=1.000 imagStrength=0.0662 [通常の子]
Depth=13 Norm=1.2372 e0=1.0135 e1=0.6343 e2=0.0343 e3=0.0533 e4=-0.0416 e5=0.1897 e6=-0.0672 e7=-0.2344 N=1.0 Q=0.333 imagStrength=0.7096 [通常の子]
Depth=11 Norm=0.6862 e0=-0.6643 e1=-0.1292 e2=-0.0016 e3=-0.0374 e4=0.0390 e5=-0.0597 e6=0.0548 e7=0.0580 N=3.0 Q=1.000 imagStrength=0.1719 [通常の子]
Depth=13 Norm=1.1714 e0=1.1489 e1=-0.0557 e2=0.0140 e3=0.0504 e4=-0.0518 e5=0.1422 e6=-0.1000 e7=-0.1155 N=0.0 Q=0.000 imagStrength=0.2282 [共役の子]
Depth=12 Norm=0.6522 e0=0.4092 e1=-0.5021 e2=-0.0054 e3=0.0102 e4=0.0543 e5=0.0296 e6=0.0418 e7=-0.0102 N=3.0 Q=1.000 imagStrength=0.5078 [共役の子]
Depth=10 Norm=0.5626 e0=-0.2704 e1=0.4854 e2=-0.0028 e3=-0.0080 e4=-0.0535 e5=-0.0290 e6=-0.0532 e7=0.0345 N=3.0 Q=1.000 imagStrength=0.4934 [共役の子]
Depth=13 Norm=1.1855 e0=1.0909 e1=0.3967 e2=0.0318 e3=0.0461 e4=-0.0359 e5=0.1691 e6=0.0400 e7=-0.1529 N=0.0 Q=0.000 imagStrength=0.4641 [通常の子]
Depth=13 Norm=1.2490 e0=1.0109 e1=-0.6531 e2=-0.0478 e3=0.0601 e4=-0.0450 e5=0.1781 e6=-0.1654 e7=-0.2115 N=1.0 Q=0.333 imagStrength=0.7336 [通常の子]
Depth=13 Norm=1.2494 e0=-0.8523 e1=0.8587 e2=0.0294 e3=0.0618 e4=-0.0526 e5=0.1475 e6=-0.2161 e7=-0.1460 N=1.0 Q=0.333 imagStrength=0.9135 [通常の子]
Depth=11 Norm=0.8855 e0=0.8032 e1=-0.3543 e2=-0.0122 e3=-0.0380 e4=0.0382 e5=-0.0580 e6=0.0706 e7=0.0447 N=3.0 Q=1.000 imagStrength=0.3727 [共役の子]
Depth=12 Norm=0.7729 e0=0.6101 e1=-0.4670 e2=-0.0033 e3=0.0182 e4=0.0517 e5=0.0300 e6=0.0337 e7=-0.0438 N=3.0 Q=1.000 imagStrength=0.4744 [通常の子]
Depth=12 Norm=0.6707 e0=-0.4524 e1=0.4860 e2=0.0445 e3=0.0182 e4=0.0517 e5=0.0300 e6=0.0337 e7=-0.0438 N=3.0 Q=1.000 imagStrength=0.4951 [共役の子]
Depth=13 Norm=1.2941 e0=1.0869 e1=-0.6844 e2=-0.0170 e3=0.0470 e4=-0.0477 e5=0.1205 e6=-0.0699 e7=-0.0287 N=0.0 Q=0.000 imagStrength=0.7024 [共役の子]
Depth=9 Norm=0.5360 e0=-0.1396 e1=0.5136 e2=0.0320 e3=0.0467 e4=0.0046 e5=0.0034 e6=-0.0058 e7=-0.0278 N=3.0 Q=1.000 imagStrength=0.5175 [通常の子]
Depth=12 Norm=0.5398 e0=-0.4795 e1=-0.2305 e2=0.0131 e3=-0.0158 e4=0.0158 e5=-0.0066 e6=0.0496 e7=0.0714 N=3.0 Q=1.000 imagStrength=0.2478 [通常の子]
Depth=13 Norm=1.2471 e0=-0.6700 e1=-1.0359 e2=-0.0684 e3=0.0665 e4=0.0168 e5=0.0269 e6=0.0475 e7=-0.1447 N=1.0 Q=0.333 imagStrength=1.0518 [共役の子]
Depth=13 Norm=1.2200 e0=0.5604 e1=1.0738 e2=0.0401 e3=0.0674 e4=0.0137 e5=0.0145 e6=0.0270 e7=-0.1183 N=1.0 Q=0.333 imagStrength=1.0837 [共役の子]
Depth=11 Norm=0.6719 e0=0.4124 e1=-0.5237 e2=-0.0235 e3=-0.0459 e4=-0.0041 e5=-0.0104 e6=-0.0379 e7=0.0533 N=3.0 Q=1.000 imagStrength=0.5304 [共役の子]
Depth=13 Norm=1.2646 e0=0.4136 e1=-1.1830 e2=-0.0787 e3=0.0677 e4=0.0152 e5=0.0175 e6=0.0358 e7=-0.1269 N=1.0 Q=0.333 imagStrength=1.1951 [通常の子]
Depth=13 Norm=1.3101 e0=-0.1812 e1=1.2880 e2=0.0482 e3=0.0677 e4=0.0151 e5=0.0172 e6=0.0353 e7=-0.1263 N=1.0 Q=0.333 imagStrength=1.2975 [通常の子]
Depth=13 Norm=1.2150 e0=-1.0649 e1=0.5584 e2=0.0222 e3=0.0657 e4=0.0103 e5=-0.0108 e6=-0.1593 e7=0.0060 N=0.0 Q=0.000 imagStrength=0.5850 [通常の子]
Depth=11 Norm=0.8895 e0=0.8166 e1=-0.3475 e2=-0.0128 e3=-0.0452 e4=-0.0052 e5=-0.0046 e6=0.0374 e7=-0.0031 N=3.0 Q=1.000 imagStrength=0.3527 [通常の子]
Depth=13 Norm=1.2329 e0=-0.6312 e1=1.0537 e2=0.0763 e3=0.0532 e4=0.0225 e5=0.0260 e6=-0.0065 e7=-0.0396 N=1.0 Q=0.333 imagStrength=1.0591 [共役の子]
Depth=12 Norm=0.8823 e0=-0.8488 e1=0.2147 e2=0.0375 e3=0.0271 e4=0.0018 e5=-0.0038 e6=0.0154 e7=-0.0977 N=3.0 Q=1.000 imagStrength=0.2409 [共役の子]
Depth=10 Norm=0.9745 e0=0.9459 e1=-0.2250 e2=-0.0368 e3=-0.0045 e4=-0.0019 e5=0.0057 e6=-0.0076 e7=0.0530 N=3.0 Q=1.000 imagStrength=0.2343 [共役の子]
Depth=13 Norm=1.3117 e0=-0.9374 e1=0.9092 e2=0.0772 e3=0.0546 e4=0.0133 e5=0.0080 e6=-0.0773 e7=-0.0087 N=0.0 Q=0.000 imagStrength=0.9175 [通常の子]
Depth=11 Norm=0.8535 e0=0.8422 e1=-0.0910 e2=0.0255 e3=0.0764 e4=-0.0133 e5=0.0630 e6=-0.0179 e7=-0.0069 N=3.0 Q=1.000 imagStrength=0.1389 [通常の子]
Depth=13 Norm=1.1668 e0=-1.0220 e1=0.5311 e2=-0.0743 e3=-0.0730 e4=-0.0155 e5=-0.1268 e6=0.0854 e7=-0.0171 N=0.0 Q=0.000 imagStrength=0.5629 [共役の子]
Depth=13 Norm=1.1164 e0=-1.0888 e1=-0.0791 e2=-0.1103 e3=-0.0686 e4=-0.0280 e5=-0.1743 e6=-0.0091 e7=0.0814 N=0.0 Q=0.000 imagStrength=0.2470 [通常の子]
Depth=10 Norm=0.4719 e0=0.0137 e1=-0.4640 e2=0.0217 e3=-0.0614 e4=0.0539 e5=0.0078 e6=-0.0019 e7=-0.0009 N=3.0 Q=1.000 imagStrength=0.4717 [通常の子]
Depth=13 Norm=1.1589 e0=-0.9164 e1=-0.6652 e2=-0.1453 e3=-0.0636 e4=-0.0329 e5=-0.1544 e6=-0.1038 e7=0.0040 N=1.0 Q=0.333 imagStrength=0.7095 [通常の子]
Depth=12 Norm=0.4660 e0=-0.0828 e1=0.4513 e2=-0.0162 e3=0.0513 e4=-0.0585 e5=-0.0059 e6=0.0119 e7=-0.0121 N=3.0 Q=1.000 imagStrength=0.4586 [共役の子]
Depth=8 Norm=0.4868 e0=-0.1662 e1=-0.4436 e2=-0.0419 e3=0.0976 e4=-0.0035 e5=0.0211 e6=0.0289 e7=0.0073 N=3.0 Q=1.000 imagStrength=0.4576 [共役の子]
Depth=11 Norm=0.4954 e0=-0.1421 e1=-0.4617 e2=0.0058 e3=0.0766 e4=-0.0119 e5=0.0600 e6=-0.0454 e7=0.0174 N=3.0 Q=1.000 imagStrength=0.4745 [共役の子]
Depth=13 Norm=1.2367 e0=-0.3656 e1=-1.1541 e2=-0.1801 e3=-0.0646 e4=-0.0284 e5=-0.1607 e6=0.0206 e7=-0.0004 N=1.0 Q=0.333 imagStrength=1.1814 [通常の子]
Depth=13 Norm=1.3076 e0=0.5957 e1=1.1491 e2=-0.0626 e3=-0.0662 e4=-0.0215 e5=-0.1322 e6=0.0679 e7=-0.0616 N=1.0 Q=0.333 imagStrength=1.1641 [通常の子]
Depth=13 Norm=1.1752 e0=-1.0721 e1=-0.4208 e2=-0.1118 e3=-0.0740 e4=-0.0197 e5=-0.1117 e6=0.1281 e7=-0.0857 N=0.0 Q=0.000 imagStrength=0.4813 [共役の子]
Depth=12 Norm=0.4651 e0=0.1126 e1=0.4416 e2=-0.0159 e3=0.0621 e4=-0.0595 e5=-0.0062 e6=0.0298 e7=0.0026 N=3.0 Q=1.000 imagStrength=0.4512 [通常の子]
Depth=12 Norm=0.4475 e0=-0.1882 e1=-0.3914 e2=-0.0577 e3=0.0621 e4=-0.0595 e5=-0.0062 e6=0.0298 e7=0.0026 N=3.0 Q=1.000 imagStrength=0.4060 [共役の子]
Depth=13 Norm=1.2495 e0=0.3939 e1=-1.1462 e2=-0.1813 e3=-0.0658 e4=-0.0794 e5=-0.0557 e6=-0.2131 e7=-0.0177 N=1.0 Q=0.333 imagStrength=1.1858 [共役の子]
Depth=13 Norm=1.1798 e0=-0.5313 e1=1.0297 e2=-0.0700 e3=-0.0672 e4=-0.0727 e5=-0.0280 e6=-0.1673 e7=-0.0770 N=1.0 Q=0.333 imagStrength=1.0534 [共役の子]
Depth=12 Norm=0.8660 e0=-0.8340 e1=0.2238 e2=-0.0316 e3=0.0419 e4=-0.0257 e5=0.0221 e6=-0.0035 e7=-0.0197 N=3.0 Q=1.000 imagStrength=0.2332 [通常の子]
Depth=13 Norm=1.2685 e0=0.4260 e1=-1.1472 e2=-0.1899 e3=-0.0637 e4=-0.0770 e5=-0.0357 e6=-0.2405 e7=-0.0788 N=1.0 Q=0.333 imagStrength=1.1948 [通常の子]
Depth=13 Norm=1.3125 e0=-0.1777 e1=1.2692 e2=-0.0657 e3=-0.0637 e4=-0.0771 e5=-0.0365 e6=-0.2417 e7=-0.0773 N=1.0 Q=0.333 imagStrength=1.3004 [通常の子]
Depth=11 Norm=0.6804 e0=0.4219 e1=-0.5226 e2=0.0052 e3=0.0808 e4=0.0213 e5=0.0232 e6=0.0654 e7=-0.0002 N=3.0 Q=1.000 imagStrength=0.5338 [共役の子]
Depth=11 Norm=0.5387 e0=-0.3753 e1=-0.3718 e2=0.0106 e3=0.0804 e4=0.0220 e5=0.0188 e6=-0.0225 e7=0.0562 N=3.0 Q=1.000 imagStrength=0.3864 [通常の子]
Depth=13 Norm=1.2230 e0=1.0665 e1=0.5694 e2=-0.0499 e3=-0.0818 e4=-0.0744 e5=-0.0439 e6=0.1210 e7=-0.0520 N=0.0 Q=0.000 imagStrength=0.5985 [共役の子]
Depth=13 Norm=1.2908 e0=0.5935 e1=1.1271 e2=-0.0615 e3=-0.0697 e4=-0.0707 e5=-0.0134 e6=0.0479 e7=-0.1657 N=1.0 Q=0.333 imagStrength=1.1463 [通常の子]
Depth=10 Norm=0.8467 e0=0.8325 e1=0.1152 e2=0.0485 e3=-0.0619 e4=0.0125 e5=-0.0192 e6=-0.0487 e7=-0.0396 N=3.0 Q=1.000 imagStrength=0.1547 [通常の子]
Depth=13 Norm=1.3100 e0=-0.2085 e1=1.2686 e2=-0.0040 e3=-0.0887 e4=-0.0651 e5=-0.0327 e6=0.2176 e7=-0.0535 N=1.0 Q=0.333 imagStrength=1.2933 [通常の子]
Depth=12 Norm=0.6908 e0=-0.6709 e1=-0.1231 e2=-0.0476 e3=0.0784 e4=-0.0248 e5=0.0203 e6=0.0492 e7=0.0044 N=3.0 Q=1.000 imagStrength=0.1644 [共役の子]
Depth=4 Norm=1.0580 e0=1.0491 e1=-0.1348 e2=-0.0070 e3=-0.0198 e4=0.0016 e5=0.0001 e6=-0.0032 e7=-0.0038 N=3.0 Q=1.000 imagStrength=0.1366 [共役の子]
Depth=13 Norm=1.1487 e0=-0.5512 e1=0.9692 e2=0.1661 e3=0.0571 e4=0.0551 e5=0.0825 e6=0.1834 e7=-0.0440 N=1.0 Q=0.333 imagStrength=1.0078 [共役の子]
Depth=13 Norm=1.2220 e0=0.7632 e1=-0.9389 e2=0.0687 e3=0.0591 e4=0.0465 e5=0.0478 e6=0.1255 e7=0.0309 N=1.0 Q=0.333 imagStrength=0.9544 [共役の子]
Depth=12 Norm=0.8538 e0=0.8119 e1=-0.2556 e2=0.0251 e3=-0.0440 e4=0.0332 e5=-0.0110 e6=0.0213 e7=0.0120 N=3.0 Q=1.000 imagStrength=0.2640 [通常の子]
Depth=13 Norm=1.1328 e0=-0.5846 e1=0.9280 e2=0.1708 e3=0.0556 e4=0.0511 e5=0.0513 e6=0.2020 e7=0.0438 N=1.0 Q=0.333 imagStrength=0.9703 [通常の子]
Depth=13 Norm=1.1048 e0=0.4678 e1=-0.9684 e2=0.0731 e3=0.0552 e4=0.0536 e5=0.0622 e6=0.2197 e7=0.0208 N=1.0 Q=0.333 imagStrength=1.0009 [通常の子]
Depth=11 Norm=0.6243 e0=-0.4472 e1=0.4246 e2=-0.0102 e3=-0.0721 e4=-0.0093 e5=-0.0289 e6=-0.0557 e7=0.0145 N=3.0 Q=1.000 imagStrength=0.4357 [共役の子]
Depth=11 Norm=0.4829 e0=0.1722 e1=0.4422 e2=-0.0075 e3=-0.0721 e4=-0.0094 e5=-0.0260 e6=0.0301 e7=-0.0315 N=3.0 Q=1.000 imagStrength=0.4511 [通常の子]
Depth=13 Norm=1.1996 e0=-0.8050 e1=-0.8707 e2=0.0289 e3=0.0740 e4=0.0470 e5=0.0630 e6=-0.1436 e7=0.0003 N=1.0 Q=0.333 imagStrength=0.8895 [共役の子]
Depth=13 Norm=1.1419 e0=-0.1209 e1=-1.1265 e2=0.0623 e3=0.0589 e4=0.0477 e5=0.0488 e6=-0.0226 e7=0.0883 N=1.0 Q=0.333 imagStrength=1.1355 [通常の子]
Depth=10 Norm=0.7980 e0=-0.7924 e1=0.0310 e2=-0.0374 e3=0.0609 e4=-0.0202 e5=0.0086 e6=0.0264 e7=0.0396 N=3.0 Q=1.000 imagStrength=0.0939 [通常の子]
Depth=13 Norm=1.1041 e0=0.4727 e1=-0.9771 e2=0.0221 e3=0.0760 e4=0.0434 e5=0.0571 e6=-0.1714 e7=0.0073 N=1.0 Q=0.333 imagStrength=0.9978 [通常の子]
Depth=12 Norm=0.7653 e0=0.7580 e1=-0.0484 e2=0.0343 e3=-0.0749 e4=0.0305 e5=-0.0099 e6=-0.0293 e7=-0.0043 N=2.0 Q=0.667 imagStrength=0.1051 [共役の子]
Depth=7 Norm=0.4686 e0=-0.0839 e1=-0.4588 e2=-0.0324 e3=0.0252 e4=0.0017 e5=0.0027 e6=0.0039 e7=-0.0187 N=3.0 Q=1.000 imagStrength=0.4610 [共役の子]
Depth=13 Norm=1.1756 e0=-1.1459 e1=0.1020 e2=0.1087 e3=0.0588 e4=0.0249 e5=0.1580 e6=0.0572 e7=-0.1203 N=0.0 Q=0.000 imagStrength=0.2627 [共役の子]
Depth=12 Norm=0.5879 e0=-0.2599 e1=0.5170 e2=0.0614 e3=-0.0520 e4=0.0581 e5=0.0070 e6=0.0280 e7=-0.0094 N=3.0 Q=1.000 imagStrength=0.5273 [通常の子]
Depth=12 Norm=0.5466 e0=0.1875 e1=-0.5065 e2=0.0100 e3=-0.0520 e4=0.0581 e5=0.0070 e6=0.0280 e7=-0.0094 N=3.0 Q=1.000 imagStrength=0.5135 [共役の子]
Depth=13 Norm=1.1905 e0=-0.8048 e1=-0.8587 e2=0.0723 e3=0.0541 e4=0.0191 e5=0.0941 e6=0.1041 e7=0.0633 N=1.0 Q=0.333 imagStrength=0.8772 [通常の子]
Depth=11 Norm=0.6998 e0=0.6440 e1=0.2576 e2=-0.0179 e3=-0.0676 e4=0.0089 e5=-0.0484 e6=-0.0354 e7=0.0089 N=3.0 Q=1.000 imagStrength=0.2739 [通常の子]
Depth=13 Norm=1.2603 e0=-1.2095 e1=-0.2909 e2=0.0745 e3=0.0611 e4=0.0271 e5=0.1367 e6=0.0912 e7=-0.0611 N=0.0 Q=0.000 imagStrength=0.3541 [共役の子]
Depth=13 Norm=1.1893 e0=-0.5228 e1=-1.0413 e2=0.0173 e3=0.0739 e4=0.0157 e5=0.1264 e6=-0.1813 e7=-0.0429 N=1.0 Q=0.333 imagStrength=1.0682 [共役の子]
Depth=13 Norm=1.1552 e0=0.3988 e1=1.0497 e2=0.1242 e3=0.0745 e4=0.0136 e5=0.1192 e6=-0.1935 e7=-0.0270 N=1.0 Q=0.333 imagStrength=1.0841 [共役の子]
Depth=12 Norm=0.5682 e0=-0.5345 e1=-0.1676 e2=0.0269 e3=-0.0702 e4=0.0550 e5=0.0070 e6=-0.0112 e7=-0.0137 N=3.0 Q=1.000 imagStrength=0.1927 [通常の子]
Depth=13 Norm=1.2054 e0=-0.4929 e1=-1.0799 e2=0.0229 e3=0.0699 e4=0.0139 e5=0.0995 e6=-0.1643 e7=0.0338 N=1.0 Q=0.333 imagStrength=1.1000 [通常の子]
Depth=13 Norm=1.2782 e0=0.7121 e1=1.0361 e2=0.1317 e3=0.0678 e4=0.0224 e5=0.1322 e6=-0.1092 e7=-0.0375 N=1.0 Q=0.333 imagStrength=1.0614 [通常の子]
Depth=11 Norm=0.4914 e0=-0.2350 e1=-0.4189 e2=-0.0503 e3=-0.0683 e4=0.0091 e5=-0.0477 e6=0.0297 e7=-0.0195 N=3.0 Q=1.000 imagStrength=0.4316 [共役の子]
Depth=9 Norm=0.7881 e0=-0.6496 e1=0.4410 e2=0.0410 e3=-0.0071 e4=0.0190 e5=-0.0367 e6=0.0159 e7=0.0333 N=3.0 Q=1.000 imagStrength=0.4464 [通常の子]
Depth=12 Norm=0.7740 e0=-0.7581 e1=0.0823 e2=0.0062 e3=-0.0589 e4=-0.0228 e5=-0.0280 e6=-0.0156 e7=0.1116 N=2.0 Q=0.667 imagStrength=0.1559 [通常の子]
Depth=13 Norm=1.2206 e0=0.0530 e1=-1.2101 e2=-0.0429 e3=0.0026 e4=0.0487 e5=-0.0971 e6=0.0794 e7=0.0530 N=1.0 Q=0.333 imagStrength=1.2195 [共役の子]
Depth=13 Norm=1.1583 e0=-0.1932 e1=1.1304 e2=0.0766 e3=0.0017 e4=0.0521 e5=-0.0840 e6=0.1017 e7=0.0242 N=1.0 Q=0.333 imagStrength=1.1421 [共役の子]
Depth=11 Norm=0.8746 e0=0.7915 e1=-0.3640 e2=-0.0363 e3=-0.0098 e4=-0.0289 e5=0.0253 e6=-0.0569 e7=0.0027 N=3.0 Q=1.000 imagStrength=0.3723 [共役の子]
Depth=13 Norm=1.2359 e0=1.0079 e1=-0.7041 e2=-0.0152 e3=0.0030 e4=0.0526 e5=-0.0681 e6=0.0886 e7=-0.0189 N=0.0 Q=0.000 imagStrength=0.7153 [通常の子]
Depth=13 Norm=1.2392 e0=-0.8339 e1=0.9061 e2=0.0682 e3=0.0047 e4=0.0459 e5=-0.0944 e6=0.0443 e7=0.0384 N=1.0 Q=0.333 imagStrength=0.9166 [通常の子]
Depth=13 Norm=1.2096 e0=-1.1750 e1=-0.1731 e2=0.0276 e3=-0.0011 e4=0.0462 e5=-0.1288 e6=0.0028 e7=0.1822 N=0.0 Q=0.000 imagStrength=0.2874 [通常の子]
Depth=11 Norm=0.9104 e0=0.9050 e1=-0.0625 e2=-0.0198 e3=-0.0091 e4=-0.0321 e5=0.0338 e6=-0.0349 e7=-0.0438 N=3.0 Q=1.000 imagStrength=0.0984 [通常の子]
Depth=13 Norm=1.2631 e0=-1.1503 e1=0.4943 e2=0.0634 e3=-0.0048 e4=0.0600 e5=-0.0746 e6=0.1004 e7=0.0672 N=0.0 Q=0.000 imagStrength=0.5217 [共役の子]
Depth=12 Norm=0.8276 e0=-0.6922 e1=0.4489 e2=0.0276 e3=-0.0238 e4=-0.0295 e5=-0.0252 e6=-0.0239 e7=-0.0271 N=3.0 Q=1.000 imagStrength=0.4535 [共役の子]
Depth=10 Norm=0.8347 e0=0.6953 e1=-0.4569 e2=-0.0230 e3=0.0331 e4=0.0314 e5=0.0248 e6=0.0357 e7=-0.0114 N=3.0 Q=1.000 imagStrength=0.4619 [共役の子]
Depth=13 Norm=1.2918 e0=-1.2608 e1=0.2167 e2=0.0593 e3=-0.0016 e4=0.0431 e5=-0.1062 e6=-0.0428 e7=0.1173 N=0.0 Q=0.000 imagStrength=0.2814 [通常の子]
Depth=12 Norm=0.5401 e0=0.4551 e1=0.2780 e2=0.0133 e3=-0.0051 e4=0.0351 e5=0.0236 e6=0.0037 e7=-0.0729 N=3.0 Q=1.000 imagStrength=0.2909 [通常の子]
Depth=12 Norm=0.5543 e0=-0.5061 e1=-0.2095 e2=-0.0111 e3=-0.0051 e4=0.0351 e5=0.0236 e6=0.0037 e7=-0.0729 N=3.0 Q=1.000 imagStrength=0.2261 [共役の子]
Depth=13 Norm=1.1786 e0=-0.7757 e1=-0.8786 e2=0.0121 e3=-0.0179 e4=-0.0286 e5=0.1159 e6=-0.0112 e7=-0.0259 N=0.0 Q=0.000 imagStrength=0.8874 [共役の子]
Depth=11 Norm=0.6874 e0=0.6349 e1=0.2596 e2=-0.0023 e3=0.0025 e4=0.0240 e5=-0.0319 e6=0.0139 e7=-0.0151 N=3.0 Q=1.000 imagStrength=0.2634 [通常の子]
Depth=13 Norm=1.2426 e0=-1.2017 e1=-0.2886 e2=0.0130 e3=-0.0114 e4=-0.0261 e5=0.1124 e6=-0.0392 e7=-0.0389 N=0.0 Q=0.000 imagStrength=0.3161 [共役の子]
Depth=13 Norm=1.1725 e0=-0.7825 e1=-0.8652 e2=0.0096 e3=-0.0182 e4=-0.0336 e5=0.0714 e6=-0.0261 e7=0.0810 N=0.0 Q=0.000 imagStrength=0.8732 [通常の子]
Depth=9 Norm=0.9322 e0=0.9307 e1=0.0206 e2=0.0172 e3=-0.0011 e4=-0.0156 e5=0.0407 e6=0.0060 e7=-0.0094 N=3.0 Q=1.000 imagStrength=0.0524 [通常の子]
Depth=12 Norm=0.8035 e0=0.6390 e1=-0.4824 e2=-0.0259 e3=-0.0200 e4=0.0416 e5=0.0233 e6=0.0241 e7=-0.0259 N=3.0 Q=1.000 imagStrength=0.4872 [通常の子]
Depth=13 Norm=1.2666 e0=-1.1396 e1=0.5159 e2=0.0721 e3=-0.0157 e4=-0.0263 e5=0.1366 e6=0.0315 e7=-0.1171 N=0.0 Q=0.000 imagStrength=0.5529 [共役の子]
Depth=13 Norm=1.3303 e0=1.2666 e1=-0.3906 e2=0.0264 e3=-0.0128 e4=-0.0400 e5=0.0817 e6=-0.0603 e7=0.0017 N=0.0 Q=0.000 imagStrength=0.4066 [共役の子]
Depth=11 Norm=0.7250 e0=-0.6996 e1=-0.1824 e2=-0.0254 e3=0.0032 e4=0.0236 e5=-0.0322 e6=-0.0256 e7=0.0014 N=3.0 Q=1.000 imagStrength=0.1902 [共役の子]
Depth=13 Norm=1.2670 e0=-1.1038 e1=-0.6142 e2=0.0065 e3=-0.0139 e4=-0.0357 e5=0.0617 e6=0.0021 e7=0.0663 N=0.0 Q=0.000 imagStrength=0.6221 [通常の子]
Depth=13 Norm=1.3335 e0=1.2315 e1=0.4826 e2=0.0622 e3=-0.0168 e4=-0.0224 e5=0.1150 e6=0.0913 e7=-0.0490 N=0.0 Q=0.000 imagStrength=0.5114 [通常の子]
Depth=13 Norm=1.1701 e0=-1.0303 e1=-0.4773 e2=-0.1472 e3=-0.0917 e4=-0.0320 e5=-0.1815 e6=-0.0456 e7=0.1172 N=0.0 Q=0.000 imagStrength=0.5546 [通常の子]
Depth=13 Norm=1.2333 e0=1.1573 e1=0.3780 e2=-0.1036 e3=-0.0945 e4=-0.0193 e5=-0.1315 e6=0.0382 e7=0.0087 N=0.0 Q=0.000 imagStrength=0.4264 [通常の子]
Depth=11 Norm=0.6870 e0=-0.6613 e1=-0.1389 e2=0.0259 e3=0.0975 e4=-0.0135 e5=0.0659 e6=-0.0115 e7=-0.0243 N=3.0 Q=1.000 imagStrength=0.1863 [共役の子]
Depth=12 Norm=0.4425 e0=0.1447 e1=0.4036 e2=-0.0296 e3=0.0711 e4=-0.0651 e5=-0.0053 e6=-0.0049 e7=-0.0424 N=3.0 Q=1.000 imagStrength=0.4182 [通常の子]
Depth=12 Norm=0.4311 e0=-0.2152 e1=-0.3519 e2=-0.0675 e3=0.0711 e4=-0.0651 e5=-0.0053 e6=-0.0049 e7=-0.0424 N=3.0 Q=1.000 imagStrength=0.3735 [共役の子]
Depth=13 Norm=1.1151 e0=-0.9938 e1=-0.4624 e2=-0.1302 e3=-0.0978 e4=-0.0226 e5=-0.1206 e6=0.0026 e7=-0.0231 N=0.0 Q=0.000 imagStrength=0.5059 [共役の子]
Depth=10 Norm=0.8124 e0=0.7960 e1=0.1100 e2=0.0621 e3=-0.0650 e4=0.0511 e5=0.0079 e6=-0.0130 e7=-0.0579 N=3.0 Q=1.000 imagStrength=0.1624 [通常の子]
Depth=13 Norm=1.2618 e0=-0.1963 e1=1.2107 e2=-0.0215 e3=-0.1094 e4=-0.0202 e5=-0.1447 e6=0.2301 e7=0.0338 N=1.0 Q=0.333 imagStrength=1.2464 [通常の子]
Depth=12 Norm=0.6644 e0=-0.6432 e1=-0.1167 e2=-0.0566 e3=0.0761 e4=-0.0654 e5=-0.0073 e6=0.0137 e7=0.0237 N=3.0 Q=1.000 imagStrength=0.1664 [共役の子]
Depth=9 Norm=0.4905 e0=0.1703 e1=0.4474 e2=-0.0261 e3=-0.0886 e4=0.0005 e5=-0.0522 e6=0.0063 e7=0.0093 N=3.0 Q=1.000 imagStrength=0.4600 [共役の子]
Depth=12 Norm=0.4269 e0=-0.2146 e1=-0.3480 e2=-0.0686 e3=0.0427 e4=-0.0567 e5=-0.0066 e6=0.0174 e7=0.0709 N=3.0 Q=1.000 imagStrength=0.3690 [通常の子]
Depth=13 Norm=1.2059 e0=-0.9383 e1=-0.7142 e2=-0.1702 e3=-0.0898 e4=-0.0256 e5=-0.1263 e6=0.0678 e7=-0.0742 N=1.0 Q=0.333 imagStrength=0.7575 [共役の子]
Depth=13 Norm=1.2031 e0=0.8640 e1=0.8120 e2=-0.0912 e3=-0.0883 e4=-0.0322 e5=-0.1538 e6=0.0220 e7=-0.0150 N=1.0 Q=0.333 imagStrength=0.8372 [共役の子]
Depth=13 Norm=1.2131 e0=-1.0299 e1=0.5884 e2=-0.1013 e3=-0.0903 e4=-0.0574 e5=-0.1242 e6=-0.1513 e7=0.0683 N=1.0 Q=0.333 imagStrength=0.6410 [通常の子]
Depth=11 Norm=0.8783 e0=0.7950 e1=-0.3544 e2=0.0156 e3=0.1002 e4=0.0029 e5=0.0482 e6=0.0234 e7=-0.0248 N=3.0 Q=1.000 imagStrength=0.3733 [通常の子]
Depth=13 Norm=1.2287 e0=-0.5981 e1=1.0625 e2=-0.0450 e3=-0.1040 e4=-0.0442 e5=-0.0872 e6=0.0105 e7=0.0236 N=1.0 Q=0.333 imagStrength=1.0733 [共役の子]
Depth=12 Norm=0.8766 e0=-0.8412 e1=0.2051 e2=-0.0409 e3=0.0841 e4=-0.0513 e5=0.0090 e6=-0.0067 e7=-0.0852 N=3.0 Q=1.000 imagStrength=0.2466 [共役の子]
Depth=10 Norm=0.9693 e0=0.9397 e1=-0.2145 e2=0.0449 e3=-0.0706 e4=0.0395 e5=-0.0081 e6=0.0143 e7=0.0384 N=3.0 Q=1.000 imagStrength=0.2373 [共役の子]
Depth=13 Norm=1.3084 e0=-0.9035 e1=0.9288 e2=-0.0438 e3=-0.1040 e4=-0.0528 e5=-0.1032 e6=-0.0621 e7=0.0534 N=1.0 Q=0.333 imagStrength=0.9463 [通常の子]
Depth=13 Norm=1.2430 e0=0.1573 e1=1.2035 e2=-0.0264 e3=-0.1093 e4=-0.0437 e5=-0.0807 e6=0.2228 e7=-0.0348 N=1.0 Q=0.333 imagStrength=1.2330 [通常の子]
Depth=13 Norm=1.1786 e0=-0.3050 e1=-1.1020 e2=-0.1450 e3=-0.1080 e4=-0.0486 e5=-0.0989 e6=0.1919 e7=0.0051 N=1.0 Q=0.333 imagStrength=1.1384 [通常の子]
Depth=11 Norm=0.4993 e0=0.0584 e1=0.4770 e2=0.0555 e3=0.1001 e4=0.0050 e5=0.0402 e6=-0.0482 e7=0.0352 N=3.0 Q=1.000 imagStrength=0.4959 [共役の子]
Depth=12 Norm=0.8040 e0=-0.7925 e1=0.0522 e2=-0.0511 e3=0.0370 e4=-0.0366 e5=0.0062 e6=0.0254 e7=0.0980 N=2.0 Q=0.667 imagStrength=0.1354 [通常の子]
Depth=12 Norm=0.9055 e0=0.8871 e1=-0.1286 e2=-0.0602 e3=0.0370 e4=-0.0366 e5=0.0062 e6=0.0254 e7=0.0980 N=3.0 Q=1.000 imagStrength=0.1821 [共役の子]
Depth=13 Norm=1.2582 e0=0.2342 e1=1.2229 e2=-0.0774 e3=-0.0918 e4=-0.0501 e5=-0.0938 e6=0.0509 e7=-0.0663 N=1.0 Q=0.333 imagStrength=1.2362 [共役の子]
Depth=8 Norm=0.5334 e0=-0.1609 e1=0.5067 e2=0.0404 e3=0.0027 e4=-0.0003 e5=-0.0053 e6=0.0142 e7=0.0042 N=3.0 Q=1.000 imagStrength=0.5086 [通常の子]
Depth=11 Norm=0.5814 e0=0.4698 e1=0.3308 e2=0.0268 e3=-0.0070 e4=0.0324 e5=-0.0451 e6=0.0540 e7=0.0334 N=3.0 Q=1.000 imagStrength=0.3425 [共役の子]
Depth=13 Norm=1.2021 e0=0.7052 e1=0.9500 e2=0.0457 e3=0.0121 e4=-0.0380 e5=0.1466 e6=-0.0248 e7=-0.1399 N=1.0 Q=0.333 imagStrength=0.9736 [通常の子]
Depth=13 Norm=1.1291 e0=-0.8053 e1=-0.7740 e2=-0.0420 e3=0.0142 e4=-0.0474 e5=0.1089 e6=-0.0878 e7=-0.0583 N=0.0 Q=0.000 imagStrength=0.7913 [通常の子]
Depth=13 Norm=1.2682 e0=1.2613 e1=0.0251 e2=-0.0172 e3=0.0164 e4=-0.0468 e5=0.0850 e6=-0.0820 e7=-0.0013 N=0.0 Q=0.000 imagStrength=0.1317 [共役の子]
Depth=12 Norm=0.5056 e0=0.1598 e1=-0.4761 e2=-0.0207 e3=0.0172 e4=0.0404 e5=0.0253 e6=0.0187 e7=-0.0080 N=3.0 Q=1.000 imagStrength=0.4797 [通常の子]
Depth=12 Norm=0.4537 e0=0.0276 e1=0.4488 e2=0.0257 e3=0.0172 e4=0.0404 e5=0.0253 e6=0.0187 e7=-0.0080 N=3.0 Q=1.000 imagStrength=0.4528 [共役の子]
Depth=12 Norm=0.8110 e0=-0.6682 e1=0.4468 e2=0.0274 e3=0.0353 e4=0.0438 e5=0.0276 e6=0.0460 e7=-0.0683 N=3.0 Q=1.000 imagStrength=0.4595 [共役の子]
Depth=10 Norm=0.8219 e0=0.6778 e1=-0.4584 e2=-0.0332 e3=-0.0193 e4=-0.0421 e5=-0.0251 e6=-0.0341 e7=0.0302 N=3.0 Q=1.000 imagStrength=0.4648 [共役の子]
Depth=13 Norm=1.2869 e0=-1.2605 e1=0.2039 e2=0.0071 e3=0.0146 e4=-0.0494 e5=0.1052 e6=-0.0919 e7=-0.0586 N=0.0 Q=0.000 imagStrength=0.2592 [通常の子]
Depth=13 Norm=1.2629 e0=1.2077 e1=-0.3525 e2=-0.0309 e3=0.0137 e4=-0.0458 e5=0.0840 e6=-0.0421 e7=0.0047 N=0.0 Q=0.000 imagStrength=0.3693 [共役の子]
Depth=13 Norm=1.2072 e0=-1.1889 e1=0.1037 e2=-0.0081 e3=0.0109 e4=-0.0330 e5=0.1354 e6=0.0440 e7=-0.1067 N=0.0 Q=0.000 imagStrength=0.2090 [共役の子]
Depth=12 Norm=0.7204 e0=-0.4850 e1=0.5290 e2=0.0297 e3=0.0202 e4=0.0400 e5=0.0251 e6=0.0218 e7=-0.0049 N=3.0 Q=1.000 imagStrength=0.5327 [通常の子]
Depth=11 Norm=0.5343 e0=0.1649 e1=-0.5035 e2=-0.0179 e3=-0.0152 e4=-0.0194 e5=0.0142 e6=-0.0525 e7=0.0306 N=3.0 Q=1.000 imagStrength=0.5082 [通常の子]
Depth=13 Norm=1.2034 e0=0.4865 e1=1.0741 e2=0.0688 e3=0.0135 e4=0.0370 e5=-0.0498 e6=0.2211 e7=0.0023 N=1.0 Q=0.333 imagStrength=1.1007 [共役の子]
Depth=13 Norm=1.2482 e0=-0.1710 e1=1.2316 e2=0.0242 e3=0.0317 e4=0.0317 e5=-0.0500 e6=0.0563 e7=-0.0617 N=1.0 Q=0.333 imagStrength=1.2365 [通常の子]
Depth=10 Norm=0.9659 e0=0.9414 e1=-0.2047 e2=-0.0175 e3=-0.0106 e4=0.0135 e5=0.0204 e6=-0.0255 e7=-0.0557 N=3.0 Q=1.000 imagStrength=0.2160 [通常の子]
Depth=13 Norm=1.2986 e0=-0.9009 e1=0.9125 e2=0.0578 e3=0.0158 e4=0.0336 e5=-0.0562 e6=0.1850 e7=0.0096 N=1.0 Q=0.333 imagStrength=0.9353 [通常の子]
Depth=12 Norm=0.8754 e0=-0.8508 e1=0.1984 e2=0.0202 e3=0.0308 e4=-0.0171 e5=-0.0186 e6=0.0322 e7=0.0114 N=2.0 Q=0.667 imagStrength=0.2062 [共役の子]
Depth=8 Norm=1.0018 e0=0.9603 e1=-0.2847 e2=-0.0052 e3=0.0027 e4=-0.0003 e5=-0.0053 e6=0.0142 e7=0.0042 N=3.0 Q=1.000 imagStrength=0.2852 [共役の子]
Depth=11 Norm=0.8790 e0=-0.8647 e1=0.1519 e2=0.0169 e3=-0.0157 e4=-0.0209 e5=0.0204 e6=0.0052 e7=-0.0200 N=3.0 Q=1.000 imagStrength=0.1577 [共役の子]
Depth=13 Norm=1.2754 e0=-1.2540 e1=0.1811 e2=0.0004 e3=0.0239 e4=0.0284 e5=-0.0846 e6=-0.0382 e7=0.1058 N=0.0 Q=0.000 imagStrength=0.2324 [通常の子]
Depth=13 Norm=1.3090 e0=1.2670 e1=-0.3199 e2=-0.0259 e3=0.0212 e4=0.0403 e5=-0.0366 e6=0.0421 e7=0.0019 N=0.0 Q=0.000 imagStrength=0.3289 [通常の子]
Depth=13 Norm=1.2460 e0=-0.5795 e1=1.0907 e2=0.0169 e3=0.0351 e4=0.0312 e5=-0.0287 e6=-0.1345 e7=-0.0750 N=1.0 Q=0.333 imagStrength=1.1031 [共役の子]
Depth=12 Norm=0.9267 e0=-0.8494 e1=0.3683 e2=0.0279 e3=-0.0002 e4=-0.0151 e5=-0.0166 e6=-0.0041 e7=-0.0133 N=3.0 Q=1.000 imagStrength=0.3703 [通常の子]
Depth=12 Norm=0.9537 e0=0.8510 e1=-0.4295 e2=-0.0121 e3=-0.0002 e4=-0.0151 e5=-0.0166 e6=-0.0041 e7=-0.0133 N=3.0 Q=1.000 imagStrength=0.4305 [共役の子]
1/10間引きDump( MaxDepth=13, Observe=3(e4) )
Observe方向 = e4 (dir=3)
Depth=0 Norm=1.0091 e0=1.0091 e1=0.0000 e2=0.0000 e3=0.0000 e4=0.0000 e5=0.0000 e6=0.0000 e7=0.0000 N=3.0 Q=1.000 imagStrength=0.0000 [通常の子]
Depth=10 Norm=0.6633 e0=0.6197 e1=0.1798 e2=0.0612 e3=0.0245 e4=0.0741 e5=0.0325 e6=0.0723 e7=-0.0866 N=3.0 Q=1.000 imagStrength=0.2366 [通常の子]
Depth=13 Norm=1.1446 e0=0.0368 e1=1.0666 e2=0.1035 e3=-0.1344 e4=0.0712 e5=-0.1388 e6=0.2503 e7=0.2356 N=1.0 Q=0.333 imagStrength=1.1441 [通常の子]
Depth=12 Norm=0.5338 e0=-0.4783 e1=-0.1840 e2=-0.0556 e3=-0.0180 e4=-0.0900 e5=-0.0375 e6=-0.0741 e7=0.0619 N=3.0 Q=1.000 imagStrength=0.2369 [共役の子]
Depth=9 Norm=0.4837 e0=0.3069 e1=0.3473 e2=0.0295 e3=-0.0549 e4=0.0535 e5=-0.0507 e6=0.0264 e7=0.0955 N=3.0 Q=1.000 imagStrength=0.3739 [共役の子]
Depth=12 Norm=0.3962 e0=-0.0370 e1=-0.3619 e2=-0.0646 e3=-0.0316 e4=-0.0758 e5=-0.0367 e6=-0.0665 e7=0.0891 N=3.0 Q=1.000 imagStrength=0.3945 [通常の子]
Depth=13 Norm=1.0939 e0=-0.9585 e1=-0.4648 e2=-0.0156 e3=-0.1183 e4=0.0671 e5=-0.1196 e6=0.1068 e7=0.1316 N=0.0 Q=0.000 imagStrength=0.5271 [共役の子]
Depth=13 Norm=1.1060 e0=0.9100 e1=0.5566 e2=0.0374 e3=-0.1165 e4=0.0590 e5=-0.1522 e6=0.0522 e7=0.2023 N=1.0 Q=0.333 imagStrength=0.6285 [共役の子]
Depth=13 Norm=1.1054 e0=1.0125 e1=-0.2176 e2=0.0081 e3=-0.1211 e4=0.0613 e5=-0.1780 e6=0.0358 e7=0.3131 N=0.0 Q=0.000 imagStrength=0.4437 [共役の子]
Depth=12 Norm=0.5292 e0=0.3017 e1=-0.3996 e2=-0.0664 e3=-0.0261 e4=-0.0940 e5=-0.0379 e6=-0.1023 e7=0.0602 N=3.0 Q=1.000 imagStrength=0.4349 [通常の子]
Depth=12 Norm=0.4567 e0=-0.1540 e1=0.3989 e2=-0.0264 e3=-0.0261 e4=-0.0940 e5=-0.0379 e6=-0.1023 e7=0.0602 N=3.0 Q=1.000 imagStrength=0.4299 [共役の子]
Depth=13 Norm=1.0984 e0=0.8748 e1=0.6204 e2=0.0428 e3=-0.1175 e4=0.0673 e5=-0.1171 e6=0.0092 e7=0.1494 N=0.0 Q=0.000 imagStrength=0.6642 [通常の子]
Depth=11 Norm=0.5875 e0=-0.5559 e1=-0.1337 e2=-0.0318 e3=0.0437 e4=-0.0777 e5=0.0457 e6=-0.0291 e7=-0.0798 N=3.0 Q=1.000 imagStrength=0.1901 [通常の子]
Depth=13 Norm=1.0321 e0=0.9791 e1=-0.0026 e2=0.0259 e3=-0.1207 e4=0.0589 e5=-0.1565 e6=-0.0092 e7=0.2515 N=0.0 Q=0.000 imagStrength=0.3264 [共役の子]
Depth=13 Norm=1.1131 e0=0.8016 e1=-0.7470 e2=-0.0376 e3=-0.1239 e4=-0.0112 e5=0.0428 e6=-0.1074 e7=0.0895 N=0.0 Q=0.000 imagStrength=0.7722 [通常の子]
Depth=13 Norm=1.1274 e0=-0.6083 e1=0.9204 e2=0.0481 e3=-0.1228 e4=-0.0155 e5=0.0248 e6=-0.1377 e7=0.1288 N=1.0 Q=0.333 imagStrength=0.9492 [通常の子]
Depth=11 Norm=0.7534 e0=0.6487 e1=-0.3719 e2=-0.0424 e3=0.0496 e4=0.0148 e5=-0.0120 e6=0.0063 e7=-0.0610 N=3.0 Q=1.000 imagStrength=0.3830 [共役の子]
Depth=12 Norm=0.7357 e0=0.6283 e1=-0.3684 e2=-0.0706 e3=-0.0157 e4=0.0154 e5=0.0075 e6=-0.0724 e7=-0.0002 N=3.0 Q=1.000 imagStrength=0.3828 [通常の子]
Depth=12 Norm=0.6538 e0=-0.5066 e1=0.4050 e2=-0.0318 e3=-0.0157 e4=0.0154 e5=0.0075 e6=-0.0724 e7=-0.0002 N=3.0 Q=1.000 imagStrength=0.4133 [共役の子]
Depth=13 Norm=1.1510 e0=0.8279 e1=-0.7529 e2=-0.0050 e3=-0.1366 e4=-0.0125 e5=-0.0001 e6=-0.0068 e7=0.2317 N=0.0 Q=0.000 imagStrength=0.7997 [共役の子]
Depth=10 Norm=0.4480 e0=0.1130 e1=-0.4266 e2=0.0272 e3=0.0205 e4=-0.0335 e5=-0.0115 e6=0.0506 e7=-0.0303 N=3.0 Q=1.000 imagStrength=0.4335 [通常の子]
Depth=13 Norm=1.0423 e0=-0.8947 e1=-0.4962 e2=-0.0053 e3=-0.1295 e4=-0.0158 e5=0.0154 e6=-0.0388 e7=0.1450 N=0.0 Q=0.000 imagStrength=0.5348 [通常の子]
Depth=12 Norm=0.4544 e0=-0.1678 e1=0.4170 e2=-0.0307 e3=-0.0203 e4=0.0317 e5=0.0080 e6=-0.0418 e7=0.0147 N=3.0 Q=1.000 imagStrength=0.4223 [共役の子]
Depth=9 Norm=0.7707 e0=-0.7661 e1=0.0208 e2=0.0109 e3=-0.0521 e4=-0.0040 e5=0.0193 e6=0.0175 e7=0.0568 N=3.0 Q=1.000 imagStrength=0.0848 [共役の子]
Depth=12 Norm=0.6513 e0=-0.4977 e1=0.4095 e2=-0.0322 e3=-0.0226 e4=0.0234 e5=0.0059 e6=-0.0610 e7=0.0546 N=3.0 Q=1.000 imagStrength=0.4201 [通常の子]
Depth=13 Norm=1.0490 e0=0.8906 e1=-0.4964 e2=-0.0050 e3=-0.1331 e4=-0.0115 e5=-0.0011 e6=0.0324 e7=0.2046 N=0.0 Q=0.000 imagStrength=0.5543 [共役の子]
Depth=13 Norm=0.9848 e0=-0.9154 e1=0.2949 e2=0.0350 e3=-0.1353 e4=-0.0015 e5=0.0389 e6=0.0992 e7=0.1182 N=0.0 Q=0.000 imagStrength=0.3630 [共役の子]
Depth=12 Norm=0.4454 e0=0.2588 e1=0.3455 e2=0.0054 e3=-0.0445 e4=0.0384 e5=-0.0216 e6=-0.0398 e7=0.0806 N=3.0 Q=1.000 imagStrength=0.3625 [共役の子]
Depth=10 Norm=0.5112 e0=-0.3527 e1=-0.3554 e2=-0.0076 e3=0.0411 e4=-0.0274 e5=0.0181 e6=0.0454 e7=-0.0752 N=3.0 Q=1.000 imagStrength=0.3700 [共役の子]
Depth=13 Norm=1.1488 e0=-0.5191 e1=-1.0122 e2=0.0172 e3=-0.0461 e4=0.0591 e5=-0.0007 e6=0.0441 e7=0.1333 N=1.0 Q=0.333 imagStrength=1.0248 [通常の子]
Depth=13 Norm=1.1934 e0=0.6619 e1=0.9267 e2=0.1589 e3=-0.0631 e4=0.0680 e5=-0.0001 e6=0.2332 e7=0.1975 N=1.0 Q=0.333 imagStrength=0.9930 [共役の子]
Depth=13 Norm=1.2205 e0=-0.4538 e1=-1.0853 e2=0.0554 e3=-0.0635 e4=0.0709 e5=0.0123 e6=0.2528 e7=0.1722 N=1.0 Q=0.333 imagStrength=1.1330 [共役の子]
Depth=12 Norm=0.5725 e0=0.5045 e1=0.2585 e2=0.0018 e3=-0.0291 e4=0.0228 e5=-0.0223 e6=-0.0469 e7=0.0481 N=3.0 Q=1.000 imagStrength=0.2706 [通常の子]
Depth=12 Norm=0.8187 e0=0.7937 e1=-0.1717 e2=-0.0196 e3=-0.0284 e4=0.0113 e5=-0.0201 e6=-0.0867 e7=-0.0404 N=3.0 Q=1.000 imagStrength=0.2009 [通常の子]
Depth=12 Norm=0.7851 e0=-0.7409 e1=0.2385 e2=0.0010 e3=-0.0284 e4=0.0113 e5=-0.0201 e6=-0.0867 e7=-0.0404 N=3.0 Q=1.000 imagStrength=0.2595 [共役の子]
Depth=13 Norm=1.1910 e0=0.2599 e1=-1.1329 e2=0.0467 e3=-0.0581 e4=0.0635 e5=-0.0042 e6=-0.0135 e7=0.2400 N=1.0 Q=0.333 imagStrength=1.1623 [共役の子]
Depth=11 Norm=0.5134 e0=-0.1088 e1=0.4922 e2=-0.0142 e3=0.0086 e4=-0.0402 e5=-0.0095 e6=0.0096 e7=-0.0858 N=3.0 Q=1.000 imagStrength=0.5017 [通常の子]
Depth=13 Norm=1.2247 e0=-0.4874 e1=-1.0992 e2=-0.0001 e3=-0.0409 e4=0.0594 e5=0.0094 e6=-0.1611 e7=0.1508 N=1.0 Q=0.333 imagStrength=1.1235 [共役の子]
Depth=13 Norm=1.1837 e0=0.2789 e1=-1.1258 e2=0.0505 e3=-0.0587 e4=0.0647 e5=0.0099 e6=0.0004 e7=0.2136 N=1.0 Q=0.333 imagStrength=1.1504 [通常の子]
Depth=8 Norm=0.8022 e0=-0.7198 e1=0.3436 e2=-0.0114 e3=-0.0258 e4=-0.0188 e5=-0.0178 e6=-0.0771 e7=-0.0057 N=3.0 Q=1.000 imagStrength=0.3543 [通常の子]
Depth=11 Norm=0.7840 e0=0.7800 e1=-0.0359 e2=-0.0417 e3=0.0096 e4=-0.0087 e5=-0.0344 e6=-0.0264 e7=-0.0336 N=3.0 Q=1.000 imagStrength=0.0788 [共役の子]
Depth=13 Norm=1.0900 e0=1.0733 e1=0.0998 e2=0.0879 e3=-0.0542 e4=0.0440 e5=0.0921 e6=0.0575 e7=0.0430 N=0.0 Q=0.000 imagStrength=0.1903 [通常の子]
Depth=13 Norm=1.0452 e0=-1.0230 e1=0.1167 e2=0.0894 e3=-0.0519 e4=0.0336 e5=0.0505 e6=-0.0120 e7=0.1330 N=0.0 Q=0.000 imagStrength=0.2140 [通常の子]
Depth=13 Norm=1.1343 e0=0.8081 e1=-0.7543 e2=0.0602 e3=-0.0606 e4=0.0397 e5=0.0360 e6=0.1073 e7=0.2071 N=1.0 Q=0.333 imagStrength=0.7960 [共役の子]
Depth=12 Norm=0.7351 e0=0.6333 e1=-0.3596 e2=-0.0311 e3=-0.0334 e4=0.0574 e5=-0.0081 e6=-0.0530 e7=0.0418 N=3.0 Q=1.000 imagStrength=0.3732 [通常の子]
Depth=12 Norm=0.6524 e0=-0.5116 e1=0.3935 e2=0.0066 e3=-0.0334 e4=0.0574 e5=-0.0081 e6=-0.0530 e7=0.0418 N=3.0 Q=1.000 imagStrength=0.4049 [共役の子]
Depth=12 Norm=0.7722 e0=-0.7547 e1=0.1271 e2=-0.0051 e3=-0.0251 e4=0.0525 e5=-0.0053 e6=-0.0643 e7=-0.0543 N=3.0 Q=1.000 imagStrength=0.1634 [共役の子]
Depth=10 Norm=0.8717 e0=0.8558 e1=-0.1348 e2=0.0028 e3=0.0385 e4=-0.0524 e5=0.0016 e6=0.0695 e7=0.0151 N=3.0 Q=1.000 imagStrength=0.1657 [共役の子]
Depth=13 Norm=1.1844 e0=-0.7062 e1=0.9148 e2=0.1535 e3=-0.0592 e4=0.0385 e5=0.0581 e6=-0.0197 e7=0.1871 N=1.0 Q=0.333 imagStrength=0.9509 [通常の子]
Depth=13 Norm=1.1288 e0=0.5217 e1=-0.9734 e2=0.0188 e3=-0.0482 e4=0.0350 e5=0.0413 e6=-0.1178 e7=0.1869 N=1.0 Q=0.333 imagStrength=1.0010 [共役の子]
Depth=13 Norm=1.0563 e0=-0.6339 e1=0.8203 e2=0.1106 e3=-0.0500 e4=0.0424 e5=0.0711 e6=-0.0678 e7=0.1222 N=1.0 Q=0.333 imagStrength=0.8450 [共役の子]
Depth=12 Norm=0.7871 e0=-0.7306 e1=0.2718 e2=-0.0002 e3=-0.0432 e4=0.0589 e5=-0.0068 e6=-0.0780 e7=0.0209 N=3.0 Q=1.000 imagStrength=0.2929 [通常の子]
Depth=9 Norm=0.8479 e0=-0.7733 e1=0.3140 e2=0.0158 e3=-0.0648 e4=0.0569 e5=-0.0654 e6=0.0265 e7=0.0987 N=3.0 Q=1.000 imagStrength=0.3479 [通常の子]
Depth=12 Norm=0.7943 e0=-0.7341 e1=0.2275 e2=-0.0463 e3=-0.0290 e4=-0.1122 e5=-0.0418 e6=-0.0861 e7=0.1248 N=3.0 Q=1.000 imagStrength=0.3034 [通常の子]
Depth=13 Norm=1.1782 e0=0.3975 e1=-1.0458 e2=-0.0764 e3=-0.1355 e4=0.0597 e5=-0.2029 e6=0.0815 e7=0.2467 N=1.0 Q=0.333 imagStrength=1.1091 [共役の子]
Depth=13 Norm=1.1093 e0=-0.5260 e1=0.9210 e2=0.0238 e3=-0.1371 e4=0.0666 e5=-0.1751 e6=0.1281 e7=0.1863 N=1.0 Q=0.333 imagStrength=0.9767 [共役の子]
Depth=11 Norm=0.8715 e0=0.8318 e1=-0.2109 e2=-0.0283 e3=0.0543 e4=-0.0861 e5=0.0608 e6=-0.0680 e7=-0.0607 N=3.0 Q=1.000 imagStrength=0.2601 [共役の子]
Depth=13 Norm=1.1898 e0=1.1148 e1=-0.3148 e2=-0.0356 e3=-0.1352 e4=0.0652 e5=-0.1554 e6=0.0970 e7=0.1275 N=0.0 Q=0.000 imagStrength=0.4156 [通常の子]
Depth=13 Norm=1.1698 e0=-0.9828 e1=0.5453 e2=0.0092 e3=-0.1331 e4=0.0554 e5=-0.1950 e6=0.0308 e7=0.2132 N=1.0 Q=0.333 imagStrength=0.6345 [通常の子]
Depth=13 Norm=1.1836 e0=-0.9728 e1=-0.5094 e2=-0.0275 e3=-0.1414 e4=0.0609 e5=-0.2233 e6=0.0842 e7=0.3372 N=1.0 Q=0.333 imagStrength=0.6742 [通常の子]
Depth=11 Norm=0.7966 e0=0.7698 e1=0.1007 e2=-0.0118 e3=0.0547 e4=-0.0944 e5=0.0691 e6=-0.0770 e7=-0.0955 N=3.0 Q=1.000 imagStrength=0.2049 [通常の子]
Depth=13 Norm=1.2450 e0=-1.1946 e1=0.0940 e2=-0.0105 e3=-0.1391 e4=0.0726 e5=-0.1698 e6=0.1325 e7=0.2073 N=0.0 Q=0.000 imagStrength=0.3507 [共役の子]
Depth=12 Norm=0.6909 e0=-0.4713 e1=0.4822 e2=-0.0307 e3=-0.0142 e4=-0.1154 e5=-0.0398 e6=-0.0788 e7=0.0199 N=3.0 Q=1.000 imagStrength=0.5052 [共役の子]
Depth=10 Norm=0.6706 e0=0.4317 e1=-0.4880 e2=0.0391 e3=0.0144 e4=0.1058 e5=0.0361 e6=0.0913 e7=-0.0520 N=3.0 Q=1.000 imagStrength=0.5132 [共役の子]
Depth=13 Norm=1.2428 e0=-1.1760 e1=-0.1755 e2=-0.0156 e3=-0.1356 e4=0.0544 e5=-0.2032 e6=-0.0212 e7=0.2596 N=0.0 Q=0.000 imagStrength=0.4019 [通常の子]
Depth=12 Norm=0.6621 e0=0.6412 e1=0.1269 e2=-0.0554 e3=0.0007 e4=-0.0032 e5=0.0110 e6=-0.0663 e7=-0.0591 N=2.0 Q=0.667 imagStrength=0.1649 [通常の子]
Depth=12 Norm=0.6742 e0=-0.6636 e1=-0.0457 e2=-0.0640 e3=0.0007 e4=-0.0032 e5=0.0110 e6=-0.0663 e7=-0.0591 N=2.0 Q=0.667 imagStrength=0.1192 [共役の子]
Depth=13 Norm=1.1844 e0=-0.4487 e1=-1.0709 e2=-0.0386 e3=-0.1588 e4=-0.0182 e5=0.0159 e6=-0.0088 e7=0.1648 N=1.0 Q=0.333 imagStrength=1.0961 [共役の子]
Depth=11 Norm=0.5573 e0=0.3943 e1=0.3808 e2=0.0040 e3=0.0620 e4=0.0126 e5=0.0027 e6=0.0027 e7=-0.0780 N=3.0 Q=1.000 imagStrength=0.3938 [通常の子]
Depth=13 Norm=1.2425 e0=-1.0401 e1=-0.6430 e2=-0.0594 e3=-0.1462 e4=-0.0192 e5=0.0161 e6=-0.0954 e7=0.1176 N=0.0 Q=0.000 imagStrength=0.6796 [共役の子]
Depth=13 Norm=1.1776 e0=-0.4313 e1=-1.0591 e2=-0.0398 e3=-0.1589 e4=-0.0217 e5=-0.0123 e6=-0.0165 e7=0.2266 N=1.0 Q=0.333 imagStrength=1.0957 [通常の子]
Depth=9 Norm=0.7927 e0=0.7674 e1=0.1788 e2=0.0071 e3=-0.0618 e4=-0.0071 e5=0.0121 e6=0.0167 e7=0.0557 N=3.0 Q=1.000 imagStrength=0.1985 [通常の子]
Depth=12 Norm=0.6468 e0=0.4046 e1=-0.4950 e2=-0.0875 e3=-0.0116 e4=0.0148 e5=0.0092 e6=-0.0322 e7=0.0240 N=3.0 Q=1.000 imagStrength=0.5047 [通常の子]
Depth=13 Norm=1.2389 e0=-1.2198 e1=0.1286 e2=-0.0017 e3=-0.1524 e4=-0.0149 e5=0.0426 e6=0.0663 e7=0.0267 N=0.0 Q=0.000 imagStrength=0.2165 [共役の子]
Depth=13 Norm=1.2875 e0=1.2706 e1=0.0121 e2=-0.0070 e3=-0.1496 e4=-0.0281 e5=-0.0095 e6=-0.0208 e7=0.1393 N=0.0 Q=0.000 imagStrength=0.2080 [共役の子]
Depth=11 Norm=0.5910 e0=-0.4853 e1=-0.3195 e2=-0.0325 e3=0.0624 e4=0.0098 e5=0.0019 e6=-0.0650 e7=-0.0486 N=3.0 Q=1.000 imagStrength=0.3373 [共役の子]
Depth=13 Norm=1.2449 e0=-0.8189 e1=-0.9019 e2=-0.0629 e3=-0.1502 e4=-0.0233 e5=-0.0250 e6=0.0352 e7=0.1914 N=1.0 Q=0.333 imagStrength=0.9376 [通常の子]
Depth=13 Norm=1.3174 e0=1.0095 e1=0.8191 e2=0.0249 e3=-0.1527 e4=-0.0120 e5=0.0204 e6=0.1113 e7=0.0930 N=1.0 Q=0.333 imagStrength=0.8465 [通常の子]
Depth=13 Norm=1.1241 e0=-0.8675 e1=0.6815 e2=0.1242 e3=-0.0492 e4=0.0582 e5=0.0738 e6=0.1318 e7=0.0524 N=1.0 Q=0.333 imagStrength=0.7150 [共役の子]
Depth=13 Norm=1.1948 e0=1.0165 e1=-0.6001 e2=0.0592 e3=-0.0469 e4=0.0470 e5=0.0288 e6=0.0570 e7=0.1490 N=0.0 Q=0.000 imagStrength=0.6280 [共役の子]
Depth=12 Norm=0.7902 e0=0.6928 e1=-0.3718 e2=-0.0272 e3=-0.0301 e4=0.0547 e5=-0.0132 e6=-0.0306 e7=0.0217 N=3.0 Q=1.000 imagStrength=0.3801 [通常の子]
Depth=13 Norm=1.1131 e0=-0.8712 e1=0.6276 e2=0.1318 e3=-0.0529 e4=0.0535 e5=0.0250 e6=0.1605 e7=0.1918 N=1.0 Q=0.333 imagStrength=0.6929 [通常の子]
Depth=13 Norm=1.1124 e0=0.8101 e1=-0.7127 e2=0.0624 e3=-0.0541 e4=0.0601 e5=0.0518 e6=0.2046 e7=0.1348 N=1.0 Q=0.333 imagStrength=0.7623 [通常の子]
Depth=11 Norm=0.7147 e0=-0.6323 e1=0.3208 e2=-0.0212 e3=0.0068 e4=-0.0264 e5=-0.0229 e6=-0.0690 e7=-0.0413 N=3.0 Q=1.000 imagStrength=0.3333 [共役の子]
Depth=11 Norm=0.5109 e0=-0.1312 e1=0.4866 e2=-0.0114 e3=0.0062 e4=-0.0234 e5=-0.0227 e6=0.0157 e7=-0.0745 N=3.0 Q=1.000 imagStrength=0.4938 [通常の子]
Depth=13 Norm=1.2045 e0=-0.4464 e1=-1.0970 e2=-0.0041 e3=-0.0330 e4=0.0474 e5=0.0457 e6=-0.1659 e7=0.1227 N=1.0 Q=0.333 imagStrength=1.1187 [共役の子]
Depth=13 Norm=1.1649 e0=0.3091 e1=-1.1040 e2=0.0461 e3=-0.0504 e4=0.0529 e5=0.0474 e6=-0.0057 e7=0.1817 N=1.0 Q=0.333 imagStrength=1.1232 [通常の子]
Depth=10 Norm=0.8276 e0=-0.7975 e1=0.1998 e2=0.0174 e3=0.0360 e4=-0.0384 e5=0.0083 e6=0.0736 e7=0.0221 N=3.0 Q=1.000 imagStrength=0.2213 [通常の子]
Depth=13 Norm=1.1104 e0=0.8156 e1=-0.7284 e2=0.0201 e3=-0.0368 e4=0.0513 e5=0.0490 e6=-0.1222 e7=0.1244 N=0.0 Q=0.000 imagStrength=0.7535 [通常の子]
Depth=12 Norm=0.8358 e0=0.8004 e1=-0.2157 e2=-0.0208 e3=-0.0428 e4=0.0477 e5=-0.0128 e6=-0.0799 e7=0.0156 N=3.0 Q=1.000 imagStrength=0.2405 [共役の子]
Depth=7 Norm=0.5463 e0=0.2586 e1=-0.4732 e2=0.0123 e3=0.0355 e4=0.0158 e5=0.0191 e6=0.0413 e7=-0.0634 N=3.0 Q=1.000 imagStrength=0.4813 [共役の子]
Depth=13 Norm=1.1620 e0=-1.1077 e1=-0.2898 e2=0.0745 e3=-0.0494 e4=0.0600 e5=0.0715 e6=0.1416 e7=0.0489 N=0.0 Q=0.000 imagStrength=0.3509 [共役の子]
Depth=12 Norm=0.4730 e0=0.0215 e1=0.4666 e2=0.0149 e3=-0.0300 e4=0.0532 e5=-0.0142 e6=-0.0286 e7=0.0243 N=3.0 Q=1.000 imagStrength=0.4725 [通常の子]
Depth=12 Norm=0.4451 e0=-0.0998 e1=-0.4265 e2=-0.0299 e3=-0.0300 e4=0.0532 e5=-0.0142 e6=-0.0286 e7=0.0243 N=3.0 Q=1.000 imagStrength=0.4338 [共役の子]
Depth=13 Norm=1.1919 e0=-0.4510 e1=-1.0650 e2=0.0490 e3=-0.0547 e4=0.0562 e5=0.0221 e6=0.1882 e7=0.1963 N=1.0 Q=0.333 imagStrength=1.1033 [通常の子]
Depth=11 Norm=0.5627 e0=0.3979 e1=0.3866 e2=-0.0179 e3=0.0069 e4=-0.0285 e5=-0.0217 e6=-0.0743 e7=-0.0401 N=3.0 Q=1.000 imagStrength=0.3978 [通常の子]
Depth=13 Norm=1.2573 e0=-1.0508 e1=-0.6703 e2=0.0271 e3=-0.0415 e4=0.0589 e5=0.0515 e6=0.1070 e7=0.0841 N=0.0 Q=0.000 imagStrength=0.6903 [共役の子]
Depth=13 Norm=1.1878 e0=-0.1456 e1=-1.1548 e2=-0.0065 e3=-0.0331 e4=0.0481 e5=0.0360 e6=-0.1764 e7=0.1416 N=1.0 Q=0.333 imagStrength=1.1788 [共役の子]
Depth=13 Norm=1.1335 e0=-0.0051 e1=1.1062 e2=0.1097 e3=-0.0336 e4=0.0497 e5=0.0422 e6=-0.1656 e7=0.1276 N=1.0 Q=0.333 imagStrength=1.1335 [共役の子]
Depth=12 Norm=0.7046 e0=-0.6968 e1=-0.0004 e2=-0.0097 e3=-0.0442 e4=0.0475 e5=-0.0132 e6=-0.0797 e7=0.0121 N=2.0 Q=0.667 imagStrength=0.1047 [通常の子]
Depth=13 Norm=1.2063 e0=-0.0865 e1=-1.1775 e2=-0.0072 e3=-0.0336 e4=0.0475 e5=0.0284 e6=-0.1778 e7=0.1596 N=1.0 Q=0.333 imagStrength=1.2032 [通常の子]
Depth=13 Norm=1.2707 e0=0.3408 e1=1.2011 e2=0.1148 e3=-0.0347 e4=0.0519 e5=0.0457 e6=-0.1484 e7=0.1215 N=1.0 Q=0.333 imagStrength=1.2242 [通常の子]
Depth=11 Norm=0.5008 e0=0.0526 e1=-0.4866 e2=-0.0601 e3=0.0065 e4=-0.0267 e5=-0.0204 e6=0.0132 e7=-0.0794 N=3.0 Q=1.000 imagStrength=0.4981 [共役の子]
Depth=7 Norm=0.4839 e0=-0.0137 e1=0.4741 e2=0.0885 e3=0.0110 e4=0.0158 e5=0.0112 e6=0.0184 e7=-0.0225 N=3.0 Q=1.000 imagStrength=0.4837 [通常の子]
Depth=13 Norm=1.2134 e0=1.1445 e1=0.0304 e2=-0.1453 e3=-0.2015 e4=-0.0337 e5=-0.2195 e6=-0.0526 e7=0.2187 N=0.0 Q=0.000 imagStrength=0.4032 [共役の子]
Depth=12 Norm=0.5005 e0=0.1487 e1=-0.4299 e2=-0.1198 e3=0.0266 e4=-0.1503 e5=-0.0110 e6=-0.0689 e7=0.0325 N=3.0 Q=1.000 imagStrength=0.4779 [通常の子]
Depth=12 Norm=0.4564 e0=0.0182 e1=0.4156 e2=-0.0774 e3=0.0266 e4=-0.1503 e5=-0.0110 e6=-0.0689 e7=0.0325 N=3.0 Q=1.000 imagStrength=0.4560 [共役の子]
Depth=13 Norm=1.1963 e0=0.7601 e1=0.8755 e2=-0.1112 e3=-0.1986 e4=-0.0268 e5=-0.1579 e6=-0.0828 e7=0.0505 N=1.0 Q=0.333 imagStrength=0.9237 [通常の子]
Depth=11 Norm=0.5561 e0=-0.4757 e1=-0.2530 e2=0.0153 e3=0.0995 e4=-0.0296 e5=0.0733 e6=0.0107 e7=-0.0497 N=3.0 Q=1.000 imagStrength=0.2881 [通常の子]
Depth=13 Norm=1.1280 e0=1.0313 e1=0.2905 e2=-0.1134 e3=-0.2063 e4=-0.0331 e5=-0.1947 e6=-0.0578 e7=0.1627 N=0.0 Q=0.000 imagStrength=0.4568 [共役の子]
Depth=13 Norm=1.2089 e0=0.4562 e1=1.0457 e2=-0.0527 e3=-0.2203 e4=-0.0227 e5=-0.1837 e6=0.2315 e7=0.1433 N=1.0 Q=0.333 imagStrength=1.1195 [共役の子]
Depth=13 Norm=1.2480 e0=-0.2380 e1=-1.1477 e2=-0.1647 e3=-0.2207 e4=-0.0214 e5=-0.1805 e6=0.2372 e7=0.1361 N=1.0 Q=0.333 imagStrength=1.2251 [共役の子]
Depth=12 Norm=0.6643 e0=0.6155 e1=0.1733 e2=-0.0895 e3=0.0390 e4=-0.1439 e5=-0.0103 e6=-0.0264 e7=0.0371 N=3.0 Q=1.000 imagStrength=0.2499 [通常の子]
Depth=13 Norm=1.1911 e0=0.4475 e1=1.0468 e2=-0.0638 e3=-0.2144 e4=-0.0227 e5=-0.1627 e6=0.2012 e7=0.0729 N=1.0 Q=0.333 imagStrength=1.1039 [通常の子]
Depth=13 Norm=1.1224 e0=-0.5520 e1=-0.8964 e2=-0.1639 e3=-0.2126 e4=-0.0306 e5=-0.1919 e6=0.1520 e7=0.1365 N=1.0 Q=0.333 imagStrength=0.9773 [通常の子]
Depth=11 Norm=0.4982 e0=0.2687 e1=0.3924 e2=0.0461 e3=0.0998 e4=-0.0286 e5=0.0722 e6=-0.0598 e7=-0.0163 N=3.0 Q=1.000 imagStrength=0.4195 [共役の子]
Depth=10 Norm=0.8152 e0=-0.6967 e1=0.3872 e2=0.1243 e3=-0.0370 e4=0.0925 e5=-0.0059 e6=0.0568 e7=0.0235 N=3.0 Q=1.000 imagStrength=0.4232 [通常の子]
Depth=13 Norm=1.2232 e0=1.1449 e1=-0.2893 e2=-0.1696 e3=-0.2030 e4=-0.0459 e5=-0.1288 e6=-0.0728 e7=0.0874 N=0.0 Q=0.000 imagStrength=0.4305 [通常の子]
Depth=12 Norm=0.8801 e0=0.7600 e1=-0.4030 e2=-0.1203 e3=0.0240 e4=-0.1210 e5=0.0022 e6=-0.0676 e7=0.0154 N=3.0 Q=1.000 imagStrength=0.4438 [共役の子]
Depth=9 Norm=0.8681 e0=0.7638 e1=-0.3889 e2=-0.0807 e3=-0.0948 e4=-0.0057 e5=-0.0412 e6=0.0076 e7=0.0417 N=3.0 Q=1.000 imagStrength=0.4127 [共役の子]
Depth=12 Norm=0.8876 e0=0.8570 e1=-0.1330 e2=-0.1052 e3=0.0429 e4=-0.1238 e5=0.0040 e6=-0.0490 e7=-0.0713 N=3.0 Q=1.000 imagStrength=0.2311 [通常の子]
Depth=13 Norm=1.2587 e0=-0.2659 e1=1.1982 e2=-0.0531 e3=-0.2162 e4=-0.0447 e5=-0.1230 e6=-0.0181 e7=0.1055 N=1.0 Q=0.333 imagStrength=1.2303 [共役の子]
Depth=13 Norm=1.3265 e0=0.4834 e1=-1.1814 e2=-0.1755 e3=-0.2145 e4=-0.0516 e5=-0.1478 e6=-0.0601 e7=0.1596 N=1.0 Q=0.333 imagStrength=1.2353 [共役の子]
Depth=13 Norm=1.2130 e0=-0.5688 e1=-0.9983 e2=-0.1623 e3=-0.2207 e4=-0.0420 e5=-0.1248 e6=0.2316 e7=0.0733 N=1.0 Q=0.333 imagStrength=1.0714 [共役の子]
Depth=12 Norm=0.6408 e0=0.5937 e1=0.1870 e2=-0.0897 e3=0.0406 e4=-0.1112 e5=0.0020 e6=-0.0084 e7=0.0313 N=3.0 Q=1.000 imagStrength=0.2410 [通常の子]
Depth=12 Norm=0.6542 e0=-0.6257 e1=-0.1023 e2=-0.1043 e3=0.0406 e4=-0.1112 e5=0.0020 e6=-0.0084 e7=0.0313 N=3.0 Q=1.000 imagStrength=0.1908 [共役の子]
Depth=13 Norm=1.2561 e0=0.4496 e1=-1.1008 e2=-0.1631 e3=-0.2230 e4=-0.0414 e5=-0.1291 e6=0.2459 e7=0.0929 N=1.0 Q=0.333 imagStrength=1.1729 [通常の子]
Depth=11 Norm=0.5805 e0=-0.2386 e1=0.5085 e2=0.0523 e3=0.1022 e4=-0.0048 e5=0.0570 e6=-0.0706 e7=-0.0079 N=3.0 Q=1.000 imagStrength=0.5292 [通常の子]
Depth=13 Norm=1.2887 e0=-0.3310 e1=-1.1975 e2=-0.2237 e3=-0.2033 e4=-0.0480 e5=-0.1358 e6=0.0597 e7=0.0387 N=1.0 Q=0.333 imagStrength=1.2454 [共役の子]
Depth=12 Norm=0.4573 e0=0.2242 e1=0.3885 e2=-0.0225 e3=0.0184 e4=0.0504 e5=0.0223 e6=-0.0027 e7=-0.0633 N=3.0 Q=1.000 imagStrength=0.3986 [通常の子]
Depth=12 Norm=0.4538 e0=-0.2928 e1=-0.3307 e2=-0.0586 e3=0.0184 e4=0.0504 e5=0.0223 e6=-0.0027 e7=-0.0633 N=3.0 Q=1.000 imagStrength=0.3467 [共役の子]
Depth=13 Norm=1.1492 e0=-0.9783 e1=-0.5805 e2=-0.0563 e3=-0.0985 e4=-0.0346 e5=0.1054 e6=-0.0211 e7=-0.0298 N=0.0 Q=0.000 imagStrength=0.6029 [共役の子]
Depth=11 Norm=0.7834 e0=0.7716 e1=0.1166 e2=0.0112 e3=0.0443 e4=0.0391 e5=-0.0233 e6=0.0036 e7=-0.0243 N=3.0 Q=1.000 imagStrength=0.1355 [通常の子]
Depth=13 Norm=1.2119 e0=-1.2012 e1=0.0697 e2=-0.0405 e3=-0.0966 e4=-0.0314 e5=0.0952 e6=0.0013 e7=-0.0070 N=0.0 Q=0.000 imagStrength=0.1610 [共役の子]
Depth=13 Norm=1.1456 e0=-0.9804 e1=-0.5659 e2=-0.0599 e3=-0.0984 e4=-0.0419 e5=0.0475 e6=-0.0386 e7=0.1108 N=0.0 Q=0.000 imagStrength=0.5927 [通常の子]
Depth=9 Norm=0.9770 e0=0.9672 e1=-0.1238 e2=-0.0227 e3=-0.0355 e4=-0.0208 e5=0.0391 e6=-0.0029 e7=0.0029 N=3.0 Q=1.000 imagStrength=0.1382 [通常の子]
Depth=12 Norm=0.8854 e0=0.7790 e1=-0.4087 e2=-0.0627 e3=0.0164 e4=0.0541 e5=0.0220 e6=0.0041 e7=-0.0509 N=3.0 Q=1.000 imagStrength=0.4210 [通常の子]
Depth=13 Norm=1.2576 e0=-0.9443 e1=0.8137 e2=0.0126 e3=-0.0981 e4=-0.0332 e5=0.1143 e6=-0.0026 e7=-0.0619 N=0.0 Q=0.000 imagStrength=0.8306 [共役の子]
Depth=13 Norm=1.3295 e0=1.1132 e1=-0.7067 e2=-0.0644 e3=-0.0954 e4=-0.0457 e5=0.0654 e6=-0.0847 e7=0.0442 N=0.0 Q=0.000 imagStrength=0.7268 [共役の子]
Depth=11 Norm=0.8050 e0=-0.8013 e1=-0.0382 e2=0.0031 e3=0.0444 e4=0.0384 e5=-0.0234 e6=-0.0096 e7=-0.0195 N=3.0 Q=1.000 imagStrength=0.0771 [共役の子]
Depth=13 Norm=1.2544 e0=-1.2121 e1=-0.2739 e2=-0.0502 e3=-0.0969 e4=-0.0428 e5=0.0422 e6=-0.0337 e7=0.1121 N=0.0 Q=0.000 imagStrength=0.3228 [通常の子]
Depth=13 Norm=1.3088 e0=1.2922 e1=0.1380 e2=-0.0299 e3=-0.0998 e4=-0.0291 e5=0.0961 e6=0.0565 e7=-0.0046 N=0.0 Q=0.000 imagStrength=0.2079 [通常の子]
Depth=12 Norm=0.7873 e0=0.7765 e1=-0.0088 e2=-0.0400 e3=-0.0085 e4=-0.0472 e5=-0.0247 e6=-0.0203 e7=0.1084 N=2.0 Q=0.667 imagStrength=0.1294 [共役の子]
Depth=10 Norm=0.8402 e0=-0.8345 e1=-0.0049 e2=0.0412 e3=-0.0045 e4=0.0453 e5=0.0232 e6=0.0170 e7=-0.0709 N=3.0 Q=1.000 imagStrength=0.0982 [共役の子]
Depth=13 Norm=1.1911 e0=0.4266 e1=-1.0957 e2=-0.1184 e3=-0.0797 e4=0.0361 e5=-0.0908 e6=0.0667 e7=0.0431 N=1.0 Q=0.333 imagStrength=1.1121 [通常の子]
Depth=13 Norm=1.2498 e0=-0.2467 e1=1.1938 e2=0.0483 e3=-0.0963 e4=0.0429 e5=-0.0760 e6=0.2295 e7=0.0639 N=1.0 Q=0.333 imagStrength=1.2252 [共役の子]
Depth=13 Norm=1.3179 e0=0.4865 e1=-1.1937 e2=-0.0744 e3=-0.0950 e4=0.0366 e5=-0.1004 e6=0.1889 e7=0.1164 N=1.0 Q=0.333 imagStrength=1.2248 [共役の子]
Depth=12 Norm=0.8958 e0=0.8822 e1=-0.1302 e2=-0.0436 e3=0.0143 e4=-0.0605 e5=-0.0241 e6=-0.0101 e7=0.0260 N=2.0 Q=0.667 imagStrength=0.1552 [通常の子]
Depth=12 Norm=0.7877 e0=0.6183 e1=-0.4735 e2=-0.0613 e3=0.0075 e4=-0.0744 e5=-0.0244 e6=-0.0630 e7=0.0007 N=3.0 Q=1.000 imagStrength=0.4880 [通常の子]
Depth=12 Norm=0.6908 e0=-0.4671 e1=0.4987 e2=-0.0126 e3=0.0075 e4=-0.0744 e5=-0.0244 e6=-0.0630 e7=0.0007 N=3.0 Q=1.000 imagStrength=0.5089 [共役の子]
Depth=13 Norm=1.3190 e0=1.0954 e1=-0.6795 e2=-0.0685 e3=-0.0860 e4=0.0319 e5=-0.1316 e6=-0.0333 e7=0.2159 N=1.0 Q=0.333 imagStrength=0.7348 [共役の子]
Depth=11 Norm=0.8232 e0=-0.7075 e1=0.4114 e2=0.0252 e3=0.0376 e4=-0.0484 e5=0.0306 e6=0.0230 e7=-0.0455 N=3.0 Q=1.000 imagStrength=0.4209 [通常の子]
Depth=13 Norm=1.3043 e0=0.4577 e1=-1.1912 e2=-0.1231 e3=-0.0738 e4=0.0280 e5=-0.1024 e6=-0.1787 e7=0.0952 N=1.0 Q=0.333 imagStrength=1.2214 [共役の子]
Depth=13 Norm=1.3139 e0=1.1159 e1=-0.6775 e2=-0.0584 e3=-0.0894 e4=0.0406 e5=-0.0685 e6=-0.0006 e7=0.0672 N=0.0 Q=0.000 imagStrength=0.6938 [通常の子]
Depth=6 Norm=0.5463 e0=0.3615 e1=0.4038 e2=0.0128 e3=-0.0531 e4=0.0102 e5=-0.0095 e6=0.0102 e7=0.0377 N=3.0 Q=1.000 imagStrength=0.4096 [通常の子]
Depth=13 Norm=1.1805 e0=1.0147 e1=-0.5616 e2=0.0689 e3=-0.0489 e4=0.0575 e5=0.0522 e6=0.1798 e7=0.0550 N=0.0 Q=0.000 imagStrength=0.6033 [通常の子]
Depth=11 Norm=0.7438 e0=-0.6481 e1=0.3587 e2=-0.0199 e3=0.0050 e4=-0.0254 e5=-0.0212 e6=-0.0518 e7=-0.0180 N=3.0 Q=1.000 imagStrength=0.3650 [通常の子]
Depth=13 Norm=1.1686 e0=0.4499 e1=-1.0729 e2=0.0109 e3=-0.0355 e4=0.0464 e5=0.0220 e6=0.0287 e7=0.0848 N=1.0 Q=0.333 imagStrength=1.0785 [共役の子]
Depth=12 Norm=0.8075 e0=0.7770 e1=-0.1799 e2=-0.0179 e3=-0.0459 e4=0.0468 e5=-0.0160 e6=-0.0354 e7=0.0994 N=3.0 Q=1.000 imagStrength=0.2199 [共役の子]
Depth=10 Norm=0.8109 e0=-0.7885 e1=0.1666 e2=0.0147 e3=0.0386 e4=-0.0380 e5=0.0122 e6=0.0292 e7=-0.0621 N=3.0 Q=1.000 imagStrength=0.1891 [共役の子]
Depth=13 Norm=1.0858 e0=0.7368 e1=-0.7858 e2=0.0220 e3=-0.0369 e4=0.0528 e5=0.0338 e6=0.0901 e7=0.0695 N=0.0 Q=0.000 imagStrength=0.7976 [通常の子]
Depth=13 Norm=1.1568 e0=-0.0876 e1=-1.1304 e2=-0.0015 e3=-0.0314 e4=0.0449 e5=0.0158 e6=-0.1727 e7=0.1404 N=1.0 Q=0.333 imagStrength=1.1535 [通常の子]
Depth=13 Norm=1.2215 e0=0.3330 e1=1.1539 e2=0.1156 e3=-0.0325 e4=0.0491 e5=0.0325 e6=-0.1444 e7=0.1039 N=1.0 Q=0.333 imagStrength=1.1752 [通常の子]
Depth=11 Norm=0.4802 e0=0.0490 e1=-0.4672 e2=-0.0597 e3=0.0052 e4=-0.0277 e5=-0.0150 e6=0.0156 e7=-0.0713 N=3.0 Q=1.000 imagStrength=0.4777 [共役の子]
Depth=12 Norm=0.7451 e0=0.7379 e1=-0.0378 e2=-0.0088 e3=-0.0247 e4=0.0240 e5=-0.0132 e6=-0.0660 e7=-0.0579 N=2.0 Q=0.667 imagStrength=0.1029 [通常の子]
Depth=12 Norm=0.7335 e0=-0.7190 e1=0.1097 e2=-0.0014 e3=-0.0247 e4=0.0240 e5=-0.0132 e6=-0.0660 e7=-0.0579 N=2.0 Q=0.667 imagStrength=0.1453 [共役の子]
Depth=13 Norm=1.1474 e0=-0.0641 e1=-1.1289 e2=0.0450 e3=-0.0473 e4=0.0508 e5=0.0262 e6=-0.0213 e7=0.1734 N=1.0 Q=0.333 imagStrength=1.1456 [共役の子]
Depth=9 Norm=0.7725 e0=0.7450 e1=0.1912 e2=0.0468 e3=-0.0119 e4=0.0118 e5=0.0349 e6=0.0098 e7=0.0371 N=3.0 Q=1.000 imagStrength=0.2042 [通常の子]
Depth=12 Norm=0.6291 e0=0.3773 e1=-0.4940 e2=-0.0340 e3=-0.0350 e4=0.0809 e5=-0.0002 e6=-0.0160 e7=0.0146 N=3.0 Q=1.000 imagStrength=0.5034 [通常の子]
Depth=13 Norm=1.2252 e0=-1.2113 e1=0.0825 e2=0.0846 e3=-0.0447 e4=0.0325 e5=0.1167 e6=0.0541 e7=-0.0180 N=0.0 Q=0.000 imagStrength=0.1841 [共役の子]
Depth=13 Norm=1.2721 e0=1.2623 e1=0.0462 e2=0.0834 e3=-0.0419 e4=0.0198 e5=0.0660 e6=-0.0307 e7=0.0918 N=0.0 Q=0.000 imagStrength=0.1580 [共役の子]
Depth=11 Norm=0.5745 e0=-0.4614 e1=-0.3302 e2=-0.0541 e3=0.0072 e4=-0.0013 e5=-0.0338 e6=-0.0538 e7=-0.0322 N=3.0 Q=1.000 imagStrength=0.3422 [共役の子]
Depth=13 Norm=1.2314 e0=-0.7910 e1=-0.9297 e2=0.0238 e3=-0.0418 e4=0.0241 e5=0.0515 e6=0.0234 e7=0.1418 N=1.0 Q=0.333 imagStrength=0.9437 [通常の子]
Depth=13 Norm=1.3048 e0=0.9790 e1=0.8409 e2=0.1143 e3=-0.0444 e4=0.0351 e5=0.0953 e6=0.0970 e7=0.0467 N=1.0 Q=0.333 imagStrength=0.8626 [通常の子]
Depth=13 Norm=1.1953 e0=0.0233 e1=1.1705 e2=0.1148 e3=-0.0323 e4=0.0233 e5=0.0863 e6=-0.1760 e7=0.0697 N=1.0 Q=0.333 imagStrength=1.1950 [通常の子]
Depth=11 Norm=0.4713 e0=0.0376 e1=-0.4604 e2=-0.0592 e3=0.0060 e4=0.0030 e5=-0.0356 e6=0.0282 e7=-0.0556 N=3.0 Q=1.000 imagStrength=0.4697 [通常の子]
Depth=13 Norm=1.1426 e0=0.6059 e1=0.9406 e2=0.1518 e3=-0.0487 e4=0.0267 e5=0.0799 e6=-0.0353 e7=0.1417 N=1.0 Q=0.333 imagStrength=0.9688 [共役の子]
Depth=12 Norm=0.5012 e0=-0.3911 e1=-0.2964 e2=-0.0237 e3=-0.0247 e4=0.0591 e5=-0.0003 e6=-0.0585 e7=-0.0477 N=3.0 Q=1.000 imagStrength=0.3134 [共役の子]
Depth=10 Norm=0.6422 e0=0.5665 e1=0.2865 e2=0.0201 e3=0.0358 e4=-0.0615 e5=-0.0040 e6=0.0548 e7=0.0308 N=3.0 Q=1.000 imagStrength=0.3025 [共役の子]
Depth=13 Norm=1.2337 e0=0.2741 e1=1.1799 e2=0.1617 e3=-0.0515 e4=0.0324 e5=0.0871 e6=0.0097 e7=0.1313 N=1.0 Q=0.333 imagStrength=1.2029 [通常の子]
Depth=11 Norm=0.6474 e0=0.4262 e1=-0.4640 e2=-0.0472 e3=0.0420 e4=-0.0714 e5=0.0452 e6=-0.0932 e7=-0.0484 N=3.0 Q=1.000 imagStrength=0.4873 [通常の子]
Depth=13 Norm=1.1724 e0=0.0576 e1=1.1027 e2=0.1049 e3=-0.1263 e4=0.0623 e5=-0.1285 e6=0.2650 e7=0.1942 N=1.0 Q=0.333 imagStrength=1.1710 [共役の子]
Depth=13 Norm=1.1950 e0=-0.5317 e1=1.0362 e2=0.0513 e3=-0.1077 e4=0.0537 e5=-0.1420 e6=0.0854 e7=0.1647 N=1.0 Q=0.333 imagStrength=1.0702 [通常の子]
Depth=10 Norm=0.8860 e0=0.8070 e1=-0.3413 e2=0.0308 e3=0.0220 e4=0.0692 e5=0.0294 e6=0.0537 e7=-0.0861 N=3.0 Q=1.000 imagStrength=0.3658 [通常の子]
Depth=13 Norm=1.2540 e0=-1.0903 e1=0.5233 e2=0.0644 e3=-0.1191 e4=0.0523 e5=-0.1473 e6=0.1568 e7=0.2061 N=1.0 Q=0.333 imagStrength=0.6194 [通常の子]
Depth=12 Norm=0.8497 e0=-0.7720 e1=0.3377 e2=-0.0253 e3=-0.0154 e4=-0.0792 e5=-0.0328 e6=-0.0442 e7=0.0425 N=3.0 Q=1.000 imagStrength=0.3550 [共役の子]
Depth=8 Norm=0.8679 e0=0.7635 e1=-0.4010 e2=-0.0722 e3=0.0129 e4=-0.0229 e5=0.0005 e6=-0.0602 e7=-0.0037 N=3.0 Q=1.000 imagStrength=0.4127 [共役の子]
Depth=11 Norm=0.8039 e0=-0.7904 e1=-0.0246 e2=-0.0235 e3=0.0411 e4=-0.0764 e5=0.0509 e6=-0.0536 e7=-0.0862 N=3.0 Q=1.000 imagStrength=0.1469 [共役の子]
Depth=13 Norm=1.2587 e0=-1.1776 e1=-0.2476 e2=0.0034 e3=-0.1114 e4=0.0513 e5=-0.1778 e6=0.0137 e7=0.2991 N=0.0 Q=0.000 imagStrength=0.4445 [通常の子]
Depth=13 Norm=1.3106 e0=1.2764 e1=0.1156 e2=0.0218 e3=-0.1142 e4=0.0656 e5=-0.1206 e6=0.1091 e7=0.1757 N=0.0 Q=0.000 imagStrength=0.2975 [通常の子]
Depth=13 Norm=1.2100 e0=-0.8905 e1=0.7959 e2=0.0434 e3=-0.1056 e4=0.0579 e5=-0.1041 e6=-0.0334 e7=0.0962 N=1.0 Q=0.333 imagStrength=0.8192 [共役の子]
Depth=12 Norm=0.8397 e0=-0.6864 e1=0.4697 e2=-0.0189 e3=-0.0266 e4=-0.0770 e5=-0.0319 e6=-0.0700 e7=0.0218 N=3.0 Q=1.000 imagStrength=0.4837 [通常の子]
Depth=12 Norm=0.8266 e0=0.6448 e1=-0.4999 e2=-0.0676 e3=-0.0266 e4=-0.0770 e5=-0.0319 e6=-0.0700 e7=0.0218 N=3.0 Q=1.000 imagStrength=0.5172 [共役の子]
Depth=13 Norm=1.2000 e0=-0.8186 e1=-0.8520 e2=-0.0489 e3=-0.1146 e4=-0.0297 e5=0.0743 e6=-0.1436 e7=0.0375 N=1.0 Q=0.333 imagStrength=0.8774 [共役の子]
Depth=13 Norm=1.1861 e0=0.7120 e1=0.9181 e2=0.0420 e3=-0.1133 e4=-0.0346 e5=0.0541 e6=-0.1776 e7=0.0815 N=1.0 Q=0.333 imagStrength=0.9486 [共役の子]
Depth=12 Norm=0.4604 e0=-0.3427 e1=-0.2915 e2=-0.0641 e3=-0.0240 e4=0.0492 e5=0.0183 e6=-0.0456 e7=-0.0008 N=2.0 Q=0.667 imagStrength=0.3074 [通常の子]
Depth=13 Norm=1.2137 e0=-0.7760 e1=-0.9016 e2=-0.0403 e3=-0.1197 e4=-0.0341 e5=0.0274 e6=-0.1160 e7=0.1636 N=1.0 Q=0.333 imagStrength=0.9333 [通常の子]
Depth=13 Norm=1.2867 e0=0.9731 e1=0.8242 e2=0.0478 e3=-0.1221 e4=-0.0233 e5=0.0709 e6=-0.0432 e7=0.0694 N=1.0 Q=0.333 imagStrength=0.8419 [通常の子]
Depth=11 Norm=0.5650 e0=-0.4525 e1=-0.3259 e2=-0.0374 e3=0.0482 e4=0.0297 e5=-0.0164 e6=-0.0006 e7=-0.0580 N=3.0 Q=1.000 imagStrength=0.3383 [共役の子]
Depth=11 Norm=0.8673 e0=-0.8552 e1=0.1269 e2=-0.0156 e3=0.0474 e4=0.0349 e5=-0.0250 e6=-0.0008 e7=-0.0201 N=3.0 Q=1.000 imagStrength=0.1444 [通常の子]
Depth=13 Norm=1.2651 e0=1.0553 e1=-0.6745 e2=-0.0185 e3=-0.1209 e4=-0.0355 e5=0.0443 e6=-0.0707 e7=0.0925 N=0.0 Q=0.000 imagStrength=0.6977 [共役の子]
Depth=13 Norm=1.3134 e0=1.2994 e1=0.0933 e2=0.0277 e3=-0.1264 e4=-0.0220 e5=0.0953 e6=0.0380 e7=-0.0100 N=0.0 Q=0.000 imagStrength=0.1912 [通常の子]
Depth=10 Norm=0.5051 e0=0.0418 e1=0.4937 e2=0.0704 e3=0.0176 e4=-0.0514 e5=-0.0203 e6=0.0307 e7=-0.0193 N=3.0 Q=1.000 imagStrength=0.5034 [通常の子]
Depth=13 Norm=1.2716 e0=0.9551 e1=0.8072 e2=0.0703 e3=-0.1326 e4=-0.0169 e5=0.0707 e6=0.1375 e7=0.0809 N=1.0 Q=0.333 imagStrength=0.8395 [通常の子]
Depth=12 Norm=0.5293 e0=0.1243 e1=-0.5044 e2=-0.0754 e3=-0.0148 e4=0.0376 e5=0.0149 e6=-0.0420 e7=0.0321 N=3.0 Q=1.000 imagStrength=0.5145 [共役の子]
Depth=3 Norm=1.0169 e0=0.9966 e1=-0.1918 e2=-0.0615 e3=0.0123 e4=-0.0037 e5=-0.0014 e6=-0.0051 e7=-0.0011 N=3.0 Q=1.000 imagStrength=0.2019 [共役の子]
Depth=13 Norm=1.1400 e0=-0.2229 e1=-1.0503 e2=-0.2508 e3=-0.1259 e4=-0.0967 e5=-0.0853 e6=-0.2260 e7=-0.0200 N=1.0 Q=0.333 imagStrength=1.1180 [通常の子]
Depth=13 Norm=1.2069 e0=0.4521 e1=1.0787 e2=-0.1420 e3=-0.1269 e4=-0.0913 e5=-0.0621 e6=-0.1879 e7=-0.0693 N=1.0 Q=0.333 imagStrength=1.1190 [通常の子]
Depth=11 Norm=0.4571 e0=-0.0438 e1=-0.4399 e2=0.0303 e3=0.0780 e4=0.0381 e5=0.0408 e6=0.0576 e7=-0.0086 N=3.0 Q=1.000 imagStrength=0.4550 [共役の子]
Depth=12 Norm=0.6931 e0=0.6730 e1=0.0184 e2=-0.0725 e3=0.0660 e4=-0.0866 e5=0.0245 e6=0.0035 e7=-0.0975 N=3.0 Q=1.000 imagStrength=0.1660 [通常の子]
Depth=12 Norm=0.6865 e0=-0.6641 e1=0.0579 e2=-0.0705 e3=0.0660 e4=-0.0866 e5=0.0245 e6=0.0035 e7=-0.0975 N=3.0 Q=1.000 imagStrength=0.1740 [共役の子]
Depth=13 Norm=1.1247 e0=-0.1815 e1=-1.0727 e2=-0.2062 e3=-0.1436 e4=-0.0870 e5=-0.0685 e6=-0.0772 e7=-0.0065 N=1.0 Q=0.333 imagStrength=1.1100 [共役の子]
Depth=10 Norm=0.8301 e0=0.7693 e1=-0.2919 e2=0.0610 e3=-0.0579 e4=0.0448 e5=-0.0206 e6=-0.0402 e7=-0.0284 N=3.0 Q=1.000 imagStrength=0.3117 [通常の子]
Depth=13 Norm=1.1599 e0=-0.9746 e1=0.5801 e2=-0.1247 e3=-0.1414 e4=-0.0923 e5=-0.0777 e6=0.0863 e7=-0.0376 N=0.0 Q=0.000 imagStrength=0.6289 [通常の子]
Depth=12 Norm=0.7770 e0=-0.7126 e1=0.2833 e2=-0.0591 e3=0.0624 e4=-0.0723 e5=0.0229 e6=0.0484 e7=-0.0109 N=3.0 Q=1.000 imagStrength=0.3096 [共役の子]
Depth=9 Norm=0.6968 e0=-0.5565 e1=0.4081 e2=-0.0537 e3=-0.0632 e4=-0.0375 e5=-0.0172 e6=-0.0109 e7=-0.0230 N=3.0 Q=1.000 imagStrength=0.4192 [共役の子]
Depth=12 Norm=0.6903 e0=-0.6749 e1=0.0616 e2=-0.0723 e3=0.0439 e4=-0.0633 e5=0.0216 e6=0.0352 e7=0.0653 N=3.0 Q=1.000 imagStrength=0.1447 [通常の子]
Depth=13 Norm=1.1138 e0=0.0119 e1=-1.0683 e2=-0.2485 e3=-0.1309 e4=-0.0897 e5=-0.0753 e6=0.0103 e7=-0.0807 N=1.0 Q=0.333 imagStrength=1.1138 [共役の子]
Depth=13 Norm=1.0547 e0=-0.1264 e1=1.0177 e2=-0.1418 e3=-0.1313 e4=-0.0873 e5=-0.0638 e6=0.0287 e7=-0.1045 N=1.0 Q=0.333 imagStrength=1.0471 [共役の子]
Depth=13 Norm=1.1545 e0=-1.0220 e1=-0.4177 e2=-0.1953 e3=-0.1297 e4=-0.0427 e5=-0.2136 e6=-0.0053 e7=0.1070 N=0.0 Q=0.000 imagStrength=0.5370 [通常の子]
Depth=11 Norm=0.8135 e0=0.8018 e1=0.0525 e2=0.0541 e3=0.0749 e4=-0.0275 e5=0.0802 e6=-0.0144 e7=-0.0145 N=3.0 Q=1.000 imagStrength=0.1375 [通常の子]
Depth=13 Norm=1.2158 e0=-1.1634 e1=0.2194 e2=-0.1715 e3=-0.1295 e4=-0.0306 e5=-0.1620 e6=0.0557 e7=-0.0129 N=0.0 Q=0.000 imagStrength=0.3532 [共役の子]
Depth=12 Norm=0.7094 e0=-0.5109 e1=0.4633 e2=-0.0467 e3=0.0557 e4=-0.1450 e5=-0.0058 e6=0.0071 e7=-0.0353 N=3.0 Q=1.000 imagStrength=0.4922 [共役の子]
Depth=10 Norm=0.6992 e0=0.4933 e1=-0.4737 e2=0.0546 e3=-0.0574 e4=0.1216 e5=0.0082 e6=0.0050 e7=0.0032 N=3.0 Q=1.000 imagStrength=0.4956 [共役の子]
Depth=13 Norm=1.2218 e0=-1.1808 e1=-0.0470 e2=-0.1764 e3=-0.1263 e4=-0.0476 e5=-0.1936 e6=-0.0894 e7=0.0369 N=0.0 Q=0.000 imagStrength=0.3136 [通常の子]
Depth=13 Norm=1.1556 e0=-0.7670 e1=0.8081 e2=-0.1097 e3=-0.1398 e4=-0.0384 e5=-0.1940 e6=0.1430 e7=0.0556 N=1.0 Q=0.333 imagStrength=0.8644 [通常の子]
Depth=13 Norm=1.1424 e0=0.6809 e1=-0.8490 e2=-0.1942 e3=-0.1413 e4=-0.0328 e5=-0.1742 e6=0.1768 e7=0.0119 N=1.0 Q=0.333 imagStrength=0.9172 [通常の子]
Depth=11 Norm=0.6922 e0=-0.5663 e1=0.3742 e2=0.0691 e3=0.0752 e4=-0.0236 e5=0.0766 e6=-0.0390 e7=0.0102 N=3.0 Q=1.000 imagStrength=0.3981 [共役の子]
Depth=12 Norm=0.8046 e0=-0.6791 e1=0.4013 e2=-0.0506 e3=0.0454 e4=-0.1369 e5=-0.0060 e6=0.0189 e7=0.0359 N=3.0 Q=1.000 imagStrength=0.4314 [通常の子]
Depth=12 Norm=0.8122 e0=0.6634 e1=-0.4342 e2=-0.0925 e3=0.0454 e4=-0.1369 e5=-0.0060 e6=0.0189 e7=0.0359 N=3.0 Q=1.000 imagStrength=0.4686 [共役の子]
Depth=13 Norm=1.1217 e0=-0.7050 e1=0.8306 e2=-0.1468 e3=-0.1243 e4=-0.0389 e5=-0.1539 e6=0.0250 e7=-0.0922 N=1.0 Q=0.333 imagStrength=0.8724 [共役の子]
Depth=8 Norm=0.6879 e0=0.6138 e1=0.2994 e2=-0.0029 e3=0.0731 e4=-0.0182 e5=0.0169 e6=0.0287 e7=-0.0007 N=3.0 Q=1.000 imagStrength=0.3106 [通常の子]
Depth=11 Norm=0.5532 e0=-0.2310 e1=0.4842 e2=0.0704 e3=0.0605 e4=0.0590 e5=0.0087 e6=0.0776 e7=0.0036 N=3.0 Q=1.000 imagStrength=0.5026 [共役の子]
Depth=13 Norm=1.2200 e0=-0.2654 e1=1.1770 e2=-0.0603 e3=-0.1093 e4=-0.0880 e5=0.0076 e6=-0.0897 e7=-0.0345 N=1.0 Q=0.333 imagStrength=1.1908 [通常の子]
Depth=13 Norm=1.1710 e0=0.1306 e1=-1.1370 e2=-0.1790 e3=-0.1090 e4=-0.0889 e5=0.0056 e6=-0.0937 e7=-0.0294 N=1.0 Q=0.333 imagStrength=1.1637 [通常の子]
Depth=13 Norm=1.2634 e0=0.8123 e1=0.9152 e2=-0.1225 e3=-0.0912 e4=-0.0983 e5=-0.0113 e6=-0.2523 e7=-0.0462 N=1.0 Q=0.333 imagStrength=0.9677 [共役の子]
Depth=12 Norm=0.5730 e0=-0.5229 e1=-0.2148 e2=-0.0691 e3=0.0390 e4=-0.0210 e5=0.0319 e6=0.0034 e7=-0.0321 N=3.0 Q=1.000 imagStrength=0.2343 [通常の子]
Depth=12 Norm=0.6939 e0=0.6738 e1=0.1444 e2=-0.0510 e3=0.0390 e4=-0.0210 e5=0.0319 e6=0.0034 e7=-0.0321 N=2.0 Q=0.667 imagStrength=0.1658 [共役の子]
Depth=12 Norm=0.4866 e0=-0.0567 e1=0.4754 e2=-0.0336 e3=0.0464 e4=-0.0071 e5=0.0312 e6=0.0557 e7=-0.0080 N=3.0 Q=1.000 imagStrength=0.4832 [共役の子]
Depth=10 Norm=0.4960 e0=-0.0192 e1=-0.4891 e2=0.0313 e3=-0.0503 e4=-0.0048 e5=-0.0284 e6=-0.0453 e7=-0.0040 N=3.0 Q=1.000 imagStrength=0.4956 [共役の子]
Depth=13 Norm=1.2373 e0=-0.9538 e1=-0.7432 e2=-0.1889 e3=-0.0973 e4=-0.0993 e5=-0.0053 e6=-0.0770 e7=-0.0892 N=1.0 Q=0.333 imagStrength=0.7882 [通常の子]
Depth=13 Norm=1.2613 e0=1.0677 e1=0.6424 e2=-0.0895 e3=-0.1114 e4=-0.0893 e5=-0.0152 e6=0.0974 e7=-0.0124 N=0.0 Q=0.000 imagStrength=0.6715 [共役の子]
Depth=13 Norm=1.2595 e0=-0.8911 e1=-0.8461 e2=-0.1664 e3=-0.1134 e4=-0.0810 e5=0.0159 e6=0.1503 e7=-0.0807 N=1.0 Q=0.333 imagStrength=0.8901 [共役の子]
Depth=12 Norm=0.4871 e0=0.1982 e1=0.4367 e2=-0.0357 e3=0.0555 e4=-0.0234 e5=0.0293 e6=0.0390 e7=-0.0056 N=3.0 Q=1.000 imagStrength=0.4450 [通常の子]
Depth=11 Norm=0.8086 e0=0.7231 e1=-0.3453 e2=0.0262 e3=0.0556 e4=-0.0411 e5=0.0713 e6=-0.0334 e7=0.0005 N=3.0 Q=1.000 imagStrength=0.3618 [通常の子]
Depth=13 Norm=1.1554 e0=-0.5118 e1=1.0036 e2=-0.0763 e3=-0.1007 e4=-0.0037 e5=-0.1615 e6=0.1540 e7=0.0104 N=1.0 Q=0.333 imagStrength=1.0359 [共役の子]
Depth=13 Norm=1.1427 e0=-0.9368 e1=0.6031 e2=-0.1284 e3=-0.0875 e4=-0.0155 e5=-0.1948 e6=-0.0010 e7=0.0465 N=0.0 Q=0.000 imagStrength=0.6544 [通常の子]
Depth=10 Norm=0.7016 e0=0.5088 e1=-0.4653 e2=0.0357 e3=-0.0472 e4=0.1121 e5=0.0174 e6=-0.0047 e7=-0.0229 N=3.0 Q=1.000 imagStrength=0.4831 [通常の子]
Depth=13 Norm=1.2048 e0=-1.1776 e1=-0.0232 e2=-0.1429 e3=-0.0896 e4=-0.0200 e5=-0.1847 e6=-0.0186 e7=0.0276 N=0.0 Q=0.000 imagStrength=0.2542 [通常の子]
Depth=12 Norm=0.7100 e0=-0.5251 e1=0.4559 e2=-0.0280 e3=0.0468 e4=-0.1304 e5=-0.0148 e6=0.0164 e7=-0.0090 N=3.0 Q=1.000 imagStrength=0.4779 [共役の子]
Depth=8 Norm=0.6297 e0=0.3870 e1=-0.4875 e2=-0.0483 e3=0.0731 e4=-0.0182 e5=0.0169 e6=0.0287 e7=-0.0007 N=3.0 Q=1.000 imagStrength=0.4967 [共役の子]
Depth=11 Norm=0.6418 e0=-0.5748 e1=-0.2640 e2=0.0307 e3=0.0554 e4=-0.0426 e5=0.0728 e6=-0.0255 e7=-0.0088 N=3.0 Q=1.000 imagStrength=0.2856 [共役の子]
Depth=13 Norm=1.2484 e0=-0.9380 e1=-0.7632 e2=-0.1963 e3=-0.0874 e4=-0.0168 e5=-0.2046 e6=-0.0224 e7=0.0852 N=1.0 Q=0.333 imagStrength=0.8238 [通常の子]
Depth=13 Norm=1.3187 e0=1.1081 e1=0.6780 e2=-0.1228 e3=-0.0901 e4=-0.0041 e5=-0.1540 e6=0.0623 e7=-0.0244 N=0.0 Q=0.000 imagStrength=0.7149 [通常の子]
Depth=13 Norm=1.1862 e0=-1.1333 e1=0.2653 e2=-0.1372 e3=-0.0886 e4=-0.0078 e5=-0.1323 e6=0.0041 e7=-0.0898 N=0.0 Q=0.000 imagStrength=0.3503 [共役の子]
Depth=12 Norm=0.6560 e0=-0.3671 e1=0.5253 e2=-0.0246 e3=0.0444 e4=-0.1285 e5=-0.0148 e6=0.0109 e7=-0.0138 N=3.0 Q=1.000 imagStrength=0.5436 [通常の子]
Depth=12 Norm=0.6153 e0=0.2943 e1=-0.5167 e2=-0.0769 e3=0.0444 e4=-0.1285 e5=-0.0148 e6=0.0109 e7=-0.0138 N=3.0 Q=1.000 imagStrength=0.5403 [共役の子]
Depth=12 Norm=0.5789 e0=-0.2785 e1=0.4969 e2=0.0243 e3=0.0006 e4=0.0848 e5=0.0212 e6=0.0357 e7=-0.0334 N=3.0 Q=1.000 imagStrength=0.5075 [通常の子]
Depth=12 Norm=0.5410 e0=0.2128 e1=-0.4866 e2=-0.0251 e3=0.0006 e4=0.0848 e5=0.0212 e6=0.0357 e7=-0.0334 N=3.0 Q=1.000 imagStrength=0.4974 [共役の子]
Depth=13 Norm=1.1157 e0=-1.0870 e1=0.1385 e2=0.0206 e3=-0.0051 e4=-0.0224 e5=0.1466 e6=-0.0050 e7=-0.1468 N=0.0 Q=0.000 imagStrength=0.2514 [共役の子]
Depth=11 Norm=0.8644 e0=0.8420 e1=-0.1857 e2=-0.0129 e3=0.0015 e4=0.0417 e5=-0.0386 e6=-0.0084 e7=0.0143 N=3.0 Q=1.000 imagStrength=0.1954 [通常の子]
Depth=13 Norm=1.1557 e0=-0.8841 e1=0.7223 e2=0.0570 e3=-0.0108 e4=-0.0177 e5=0.1257 e6=0.0923 e7=-0.0654 N=0.0 Q=0.000 imagStrength=0.7443 [共役の子]
Depth=13 Norm=1.1158 e0=-1.1014 e1=0.1529 e2=0.0157 e3=-0.0039 e4=-0.0299 e5=0.0821 e6=-0.0204 e7=0.0140 N=0.0 Q=0.000 imagStrength=0.1786 [通常の子]
Depth=9 Norm=0.8836 e0=0.7957 e1=-0.3794 e2=-0.0157 e3=0.0037 e4=-0.0223 e5=0.0460 e6=-0.0082 e7=-0.0243 N=3.0 Q=1.000 imagStrength=0.3840 [通常の子]
Depth=12 Norm=0.8904 e0=0.8672 e1=-0.1600 e2=-0.0074 e3=0.0119 e4=0.0703 e5=0.0217 e6=0.0138 e7=-0.0964 N=3.0 Q=1.000 imagStrength=0.2017 [通常の子]
Depth=13 Norm=1.2356 e0=-0.3085 e1=1.1837 e2=0.0906 e3=-0.0091 e4=-0.0232 e5=0.1294 e6=-0.0410 e7=-0.0570 N=1.0 Q=0.333 imagStrength=1.1965 [共役の子]
Depth=13 Norm=1.3060 e0=0.5455 e1=-1.1783 e2=-0.0298 e3=-0.0076 e4=-0.0296 e5=0.1038 e6=-0.0835 e7=-0.0019 N=1.0 Q=0.333 imagStrength=1.1866 [共役の子]
Depth=11 Norm=0.8345 e0=-0.7918 e1=0.2547 e2=0.0103 e3=0.0014 e4=0.0421 e5=-0.0377 e6=0.0350 e7=-0.0063 N=3.0 Q=1.000 imagStrength=0.2635 [共役の子]
Depth=13 Norm=1.2228 e0=-1.1288 e1=0.4514 e2=0.0471 e3=-0.0083 e4=-0.0293 e5=0.0844 e6=-0.0697 e7=0.0476 N=0.0 Q=0.000 imagStrength=0.4703 [通常の子]
Depth=13 Norm=1.2399 e0=1.0926 e1=-0.5716 e2=-0.0063 e3=-0.0105 e4=-0.0198 e5=0.1224 e6=-0.0062 e7=-0.0345 N=0.0 Q=0.000 imagStrength=0.5860 [通常の子]
Depth=12 Norm=0.5493 e0=0.4660 e1=0.2804 e2=0.0155 e3=-0.0124 e4=0.0306 e5=-0.0051 e6=0.0265 e7=0.0626 N=3.0 Q=1.000 imagStrength=0.2909 [共役の子]
Depth=10 Norm=0.6362 e0=-0.5609 e1=-0.2944 e2=-0.0178 e3=0.0056 e4=-0.0217 e5=0.0055 e6=-0.0231 e7=-0.0453 N=3.0 Q=1.000 imagStrength=0.3002 [共役の子]
Depth=13 Norm=1.2175 e0=-0.2939 e1=-1.1782 e2=-0.0699 e3=0.0088 e4=0.0109 e5=0.0125 e6=0.0115 e7=-0.0484 N=1.0 Q=0.333 imagStrength=1.1815 [通常の子]
Depth=13 Norm=1.2706 e0=0.4839 e1=1.1510 e2=0.0994 e3=-0.0100 e4=0.0200 e5=0.0170 e6=0.2113 e7=0.0105 N=1.0 Q=0.333 imagStrength=1.1748 [共役の子]
Depth=13 Norm=1.3127 e0=-0.2333 e1=-1.2731 e2=-0.0252 e3=-0.0100 e4=0.0206 e5=0.0196 e6=0.2153 e7=0.0053 N=1.0 Q=0.333 imagStrength=1.2918 [共役の子]
Depth=12 Norm=0.7062 e0=0.6840 e1=0.1722 e2=0.0113 e3=0.0071 e4=0.0140 e5=-0.0055 e6=0.0245 e7=0.0097 N=2.0 Q=0.667 imagStrength=0.1753 [通常の子]
Depth=12 Norm=0.9014 e0=0.8491 e1=-0.2937 e2=-0.0124 e3=0.0054 e4=0.0012 e5=-0.0039 e6=-0.0232 e7=-0.0681 N=3.0 Q=1.000 imagStrength=0.3027 [通常の子]
Depth=12 Norm=0.8435 e0=-0.7617 e1=0.3544 e2=0.0201 e3=0.0054 e4=0.0012 e5=-0.0039 e6=-0.0232 e7=-0.0681 N=3.0 Q=1.000 imagStrength=0.3623 [共役の子]
Depth=13 Norm=1.2899 e0=0.5546 e1=-1.1589 e2=-0.0302 e3=-0.0042 e4=0.0134 e5=-0.0024 e6=-0.0648 e7=0.0881 N=1.0 Q=0.333 imagStrength=1.1646 [共役の子]
Depth=11 Norm=0.6168 e0=-0.3049 e1=0.5324 e2=0.0237 e3=-0.0023 e4=-0.0061 e5=-0.0078 e6=0.0538 e7=-0.0217 N=3.0 Q=1.000 imagStrength=0.5362 [通常の子]
Depth=13 Norm=1.3116 e0=-0.2599 e1=-1.2619 e2=-0.0849 e3=0.0136 e4=0.0094 e5=0.0150 e6=-0.2286 e7=-0.0181 N=1.0 Q=0.333 imagStrength=1.2856 [共役の子]
Depth=13 Norm=1.2820 e0=0.5557 e1=-1.1535 e2=-0.0246 e3=-0.0058 e4=0.0170 e5=0.0240 e6=-0.0435 e7=0.0291 N=1.0 Q=0.333 imagStrength=1.1553 [通常の子]
Depth=7 Norm=0.6703 e0=0.5784 e1=0.3330 e2=0.0598 e3=0.0032 e4=0.0154 e5=-0.0005 e6=0.0002 e7=0.0003 N=3.0 Q=1.000 imagStrength=0.3387 [通常の子]
Depth=13 Norm=1.2425 e0=0.9851 e1=-0.6832 e2=-0.1236 e3=-0.1246 e4=-0.0094 e5=-0.2105 e6=0.0605 e7=0.1665 N=1.0 Q=0.333 imagStrength=0.7572 [共役の子]
Depth=12 Norm=0.7642 e0=0.6104 e1=-0.4264 e2=-0.0807 e3=0.0231 e4=-0.1413 e5=-0.0179 e6=-0.0349 e7=0.0323 N=3.0 Q=1.000 imagStrength=0.4598 [通常の子]
Depth=12 Norm=0.6738 e0=-0.4700 e1=0.4567 e2=-0.0364 e3=0.0231 e4=-0.1413 e5=-0.0179 e6=-0.0349 e7=0.0323 N=3.0 Q=1.000 imagStrength=0.4827 [共役の子]
Depth=13 Norm=1.2506 e0=1.1982 e1=0.2928 e2=-0.0860 e3=-0.1192 e4=-0.0026 e5=-0.1405 e6=0.0288 e7=-0.0238 N=0.0 Q=0.000 imagStrength=0.3584 [通常の子]
Depth=11 Norm=0.7899 e0=-0.7826 e1=0.0340 e2=0.0226 e3=0.0599 e4=-0.0389 e5=0.0670 e6=-0.0015 e7=-0.0131 N=3.0 Q=1.000 imagStrength=0.1069 [通常の子]
Depth=13 Norm=1.1946 e0=1.0742 e1=-0.4451 e2=-0.1234 e3=-0.1164 e4=-0.0151 e5=-0.1902 e6=-0.0545 e7=0.0836 N=0.0 Q=0.000 imagStrength=0.5227 [共役の子]
Depth=13 Norm=1.2551 e0=1.0479 e1=0.6132 e2=-0.0437 e3=-0.1300 e4=-0.0071 e5=-0.2020 e6=0.1395 e7=0.1487 N=1.0 Q=0.333 imagStrength=0.6908 [共役の子]
Depth=13 Norm=1.2521 e0=-0.8932 e1=-0.8164 e2=-0.1167 e3=-0.1319 e4=0.0014 e5=-0.1696 e6=0.1938 e7=0.0785 N=1.0 Q=0.333 imagStrength=0.8775 [共役の子]
Depth=12 Norm=0.4977 e0=0.1879 e1=0.4342 e2=-0.0374 e3=0.0264 e4=-0.1413 e5=-0.0175 e6=-0.0243 e7=0.0311 N=3.0 Q=1.000 imagStrength=0.4609 [通常の子]
Depth=13 Norm=1.2451 e0=1.0472 e1=0.6374 e2=-0.0602 e3=-0.1220 e4=-0.0026 e5=-0.1422 e6=0.0899 e7=-0.0220 N=0.0 Q=0.000 imagStrength=0.6735 [通常の子]
Depth=13 Norm=1.1797 e0=-1.0773 e1=-0.3999 e2=-0.1134 e3=-0.1192 e4=-0.0153 e5=-0.1917 e6=0.0068 e7=0.0855 N=0.0 Q=0.000 imagStrength=0.4809 [通常の子]
Depth=11 Norm=0.7530 e0=0.7240 e1=0.1794 e2=0.0294 e3=0.0598 e4=-0.0382 e5=0.0668 e6=-0.0180 e7=-0.0045 N=3.0 Q=1.000 imagStrength=0.2071 [共役の子]
Depth=10 Norm=0.9014 e0=-0.8831 e1=0.1463 e2=0.0717 e3=-0.0292 e4=0.0303 e5=-0.0247 e6=0.0208 e7=0.0575 N=3.0 Q=1.000 imagStrength=0.1807 [通常の子]
Depth=13 Norm=1.2117 e0=0.7598 e1=-0.8939 e2=-0.1686 e3=-0.1200 e4=-0.0746 e5=-0.0272 e6=-0.2058 e7=-0.0173 N=1.0 Q=0.333 imagStrength=0.9439 [通常の子]
Depth=12 Norm=0.8929 e0=0.8725 e1=-0.1652 e2=-0.0730 e3=0.0150 e4=-0.0394 e5=0.0232 e6=-0.0264 e7=-0.0157 N=3.0 Q=1.000 imagStrength=0.1894 [共役の子]
Depth=9 Norm=0.6174 e0=0.3329 e1=-0.5108 e2=-0.0698 e3=-0.0576 e4=-0.0350 e5=-0.0036 e6=-0.0015 e7=-0.0027 N=3.0 Q=1.000 imagStrength=0.5199 [共役の子]
Depth=12 Norm=0.6968 e0=0.6629 e1=0.1693 e2=-0.0543 e3=0.0386 e4=-0.0532 e5=0.0237 e6=-0.0187 e7=-0.0962 N=3.0 Q=1.000 imagStrength=0.2147 [通常の子]
Depth=13 Norm=1.2673 e0=0.4659 e1=1.1649 e2=-0.0087 e3=-0.1389 e4=-0.0701 e5=-0.0337 e6=-0.0561 e7=0.0592 N=1.0 Q=0.333 imagStrength=1.1785 [共役の子]
Depth=13 Norm=1.3100 e0=-0.2337 e1=-1.2699 e2=-0.1337 e3=-0.1392 e4=-0.0693 e5=-0.0316 e6=-0.0524 e7=0.0545 N=1.0 Q=0.333 imagStrength=1.2890 [共役の子]
Depth=13 Norm=1.2188 e0=-1.0800 e1=-0.5089 e2=-0.1073 e3=-0.1362 e4=-0.0656 e5=-0.0010 e6=0.1365 e7=-0.0842 N=0.0 Q=0.000 imagStrength=0.5649 [共役の子]
Depth=12 Norm=0.4774 e0=0.1719 e1=0.4394 e2=-0.0410 e3=0.0316 e4=-0.0331 e5=0.0220 e6=0.0315 e7=-0.0013 N=3.0 Q=1.000 imagStrength=0.4453 [通常の子]
Depth=12 Norm=0.4661 e0=-0.2488 e1=-0.3808 e2=-0.0822 e3=0.0316 e4=-0.0331 e5=0.0220 e6=0.0315 e7=-0.0013 N=3.0 Q=1.000 imagStrength=0.3942 [共役の子]
Depth=13 Norm=1.2533 e0=-0.2752 e1=-1.1906 e2=-0.1284 e3=-0.1420 e4=-0.0679 e5=-0.0432 e6=0.1804 e7=0.0420 N=1.0 Q=0.333 imagStrength=1.2227 [通常の子]
Depth=11 Norm=0.5416 e0=0.2752 e1=0.4552 e2=0.0438 e3=0.0658 e4=0.0365 e5=0.0208 e6=-0.0448 e7=0.0183 N=3.0 Q=1.000 imagStrength=0.4664 [通常の子]
Depth=13 Norm=1.3149 e0=-0.9687 e1=-0.8577 e2=-0.1620 e3=-0.1256 e4=-0.0678 e5=-0.0209 e6=0.0606 e7=-0.0648 N=1.0 Q=0.333 imagStrength=0.8891 [共役の子]
Depth=10 Norm=0.8672 e0=0.8363 e1=-0.2137 e2=-0.0114 e3=0.0334 e4=-0.0103 e5=0.0165 e6=0.0194 e7=-0.0703 N=3.0 Q=1.000 imagStrength=0.2294 [通常の子]
Depth=13 Norm=1.1726 e0=-0.8612 e1=0.7518 e2=0.1338 e3=-0.0267 e4=0.0502 e5=-0.0163 e6=0.1815 e7=0.1170 N=1.0 Q=0.333 imagStrength=0.7958 [通常の子]
Depth=12 Norm=0.7931 e0=-0.7637 e1=0.2085 e2=0.0117 e3=-0.0228 e4=0.0106 e5=-0.0184 e6=-0.0133 e7=0.0317 N=2.0 Q=0.667 imagStrength=0.2139 [共役の子]
Depth=9 Norm=0.6215 e0=-0.4254 e1=0.4463 e2=0.0560 e3=-0.0057 e4=0.0297 e5=-0.0037 e6=0.0144 e7=0.0432 N=3.0 Q=1.000 imagStrength=0.4531 [共役の子]
Depth=12 Norm=0.6248 e0=-0.6123 e1=-0.0391 e2=-0.0025 e3=-0.0423 e4=0.0207 e5=-0.0189 e6=-0.0228 e7=0.1037 N=2.0 Q=0.667 imagStrength=0.1240 [通常の子]
Depth=13 Norm=1.1201 e0=-0.2272 e1=-1.0911 e2=-0.0035 e3=-0.0124 e4=0.0483 e5=-0.0088 e6=0.0806 e7=0.0590 N=1.0 Q=0.333 imagStrength=1.0968 [共役の子]
Depth=13 Norm=1.0697 e0=0.1037 e1=1.0533 e2=0.1066 e3=-0.0127 e4=0.0490 e5=-0.0064 e6=0.0850 e7=0.0533 N=1.0 Q=0.333 imagStrength=1.0647 [共役の子]
Depth=13 Norm=1.1653 e0=0.8977 e1=0.7074 e2=0.0900 e3=-0.0110 e4=0.0439 e5=-0.0303 e6=-0.1335 e7=0.1507 N=1.0 Q=0.333 imagStrength=0.7429 [共役の子]
Depth=12 Norm=0.4556 e0=-0.3567 e1=-0.2713 e2=-0.0140 e3=-0.0390 e4=0.0053 e5=-0.0176 e6=-0.0659 e7=0.0187 N=2.0 Q=0.667 imagStrength=0.2835 [通常の子]
Depth=12 Norm=0.5573 e0=0.5105 e1=0.2081 e2=0.0101 e3=-0.0390 e4=0.0053 e5=-0.0176 e6=-0.0659 e7=0.0187 N=3.0 Q=1.000 imagStrength=0.2235 [共役の子]
Depth=13 Norm=1.1284 e0=0.0569 e1=1.1082 e2=0.1056 e3=-0.0091 e4=0.0456 e5=-0.0055 e6=-0.1471 e7=0.0833 N=1.0 Q=0.333 imagStrength=1.1269 [通常の子]
Depth=11 Norm=0.4398 e0=0.0152 e1=-0.4310 e2=-0.0521 e3=-0.0029 e4=-0.0338 e5=-0.0018 e6=0.0177 e7=-0.0572 N=3.0 Q=1.000 imagStrength=0.4396 [通常の子]
Depth=13 Norm=1.0743 e0=0.5949 e1=0.8688 e2=0.1375 e3=-0.0238 e4=0.0484 e5=-0.0125 e6=-0.0218 e7=0.1513 N=1.0 Q=0.333 imagStrength=0.8945 [共役の子]
Depth=13 Norm=1.2101 e0=1.1943 e1=0.1130 e2=0.0775 e3=-0.0233 e4=0.0092 e5=0.1263 e6=0.0144 e7=-0.0487 N=0.0 Q=0.000 imagStrength=0.1948 [通常の子]
Depth=13 Norm=1.1646 e0=-1.1495 e1=0.1230 e2=0.0785 e3=-0.0207 e4=-0.0026 e5=0.0793 e6=-0.0643 e7=0.0531 N=0.0 Q=0.000 imagStrength=0.1870 [通常の子]
Depth=11 Norm=0.8712 e0=0.8682 e1=-0.0413 e2=-0.0332 e3=-0.0004 e4=0.0236 e5=-0.0422 e6=0.0036 e7=-0.0055 N=3.0 Q=1.000 imagStrength=0.0720 [共役の子]
Depth=12 Norm=0.4900 e0=0.1129 e1=-0.4660 e2=-0.0267 e3=-0.0325 e4=0.0738 e5=0.0072 e6=-0.0277 e7=0.0459 N=3.0 Q=1.000 imagStrength=0.4768 [通常の子]
Depth=12 Norm=0.4524 e0=0.0730 e1=0.4354 e2=0.0185 e3=-0.0325 e4=0.0738 e5=0.0072 e6=-0.0277 e7=0.0459 N=3.0 Q=1.000 imagStrength=0.4465 [共役の子]
Depth=13 Norm=1.2679 e0=1.2531 e1=0.1059 e2=0.0762 e3=-0.0238 e4=0.0014 e5=0.0573 e6=0.0088 e7=0.1276 N=0.0 Q=0.000 imagStrength=0.1929 [共役の子]
Depth=10 Norm=0.6272 e0=-0.5778 e1=-0.2288 e2=-0.0140 e3=0.0299 e4=-0.0660 e5=-0.0121 e6=0.0325 e7=0.0243 N=3.0 Q=1.000 imagStrength=0.2441 [通常の子]
Depth=13 Norm=1.1179 e0=-0.1480 e1=-1.0909 e2=-0.0055 e3=-0.0128 e4=-0.0011 e5=0.0884 e6=-0.1670 e7=0.0428 N=1.0 Q=0.333 imagStrength=1.1081 [通常の子]
Depth=12 Norm=0.5526 e0=0.5012 e1=0.2131 e2=0.0084 e3=-0.0353 e4=0.0801 e5=0.0097 e6=-0.0303 e7=-0.0047 N=2.0 Q=0.667 imagStrength=0.2328 [共役の子]
Depth=9 Norm=0.5217 e0=-0.3721 e1=-0.3627 e2=0.0124 e3=-0.0037 e4=-0.0046 e5=0.0385 e6=0.0087 e7=0.0197 N=3.0 Q=1.000 imagStrength=0.3657 [共役の子]
Depth=12 Norm=0.4559 e0=0.0738 e1=0.4416 e2=0.0198 e3=-0.0224 e4=0.0645 e5=0.0084 e6=-0.0395 e7=-0.0266 N=3.0 Q=1.000 imagStrength=0.4499 [通常の子]
Depth=13 Norm=1.1681 e0=1.0611 e1=0.4467 e2=0.1111 e3=-0.0288 e4=0.0038 e5=0.0677 e6=-0.0204 e7=0.1444 N=0.0 Q=0.000 imagStrength=0.4884 [共役の子]
Depth=13 Norm=1.1560 e0=-0.9305 e1=-0.6708 e2=0.0529 e3=-0.0307 e4=0.0121 e5=0.1011 e6=0.0349 e7=0.0728 N=0.0 Q=0.000 imagStrength=0.6859 [共役の子]
Depth=12 Norm=0.7832 e0=0.7699 e1=-0.0208 e2=-0.0197 e3=-0.0382 e4=-0.0358 e5=-0.0278 e6=-0.0334 e7=0.1233 N=2.0 Q=0.667 imagStrength=0.1437 [共役の子]
Depth=10 Norm=0.8346 e0=-0.8275 e1=0.0079 e2=0.0207 e3=0.0254 e4=0.0421 e5=0.0251 e6=0.0298 e7=-0.0856 N=3.0 Q=1.000 imagStrength=0.1084 [共役の子]
Depth=13 Norm=1.1795 e0=0.4465 e1=-1.0780 e2=-0.0355 e3=-0.0488 e4=0.0515 e5=-0.0852 e6=0.0986 e7=0.0805 N=1.0 Q=0.333 imagStrength=1.0917 [通常の子]
Depth=13 Norm=1.2381 e0=-0.2745 e1=1.1633 e2=0.1276 e3=-0.0652 e4=0.0591 e5=-0.0704 e6=0.2561 e7=0.0979 N=1.0 Q=0.333 imagStrength=1.2072 [共役の子]
Depth=13 Norm=1.3065 e0=0.5089 e1=-1.1674 e2=0.0079 e3=-0.0639 e4=0.0527 e5=-0.0964 e6=0.2134 e7=0.1530 N=1.0 Q=0.333 imagStrength=1.2033 [共役の子]
Depth=12 Norm=0.8909 e0=0.8762 e1=-0.1412 e2=-0.0233 e3=-0.0157 e4=-0.0481 e5=-0.0272 e6=-0.0229 e7=0.0415 N=2.0 Q=0.667 imagStrength=0.1613 [通常の子]
Depth=12 Norm=0.7727 e0=0.6009 e1=-0.4725 e2=-0.0405 e3=-0.0224 e4=-0.0622 e5=-0.0275 e6=-0.0753 e7=0.0176 N=3.0 Q=1.000 imagStrength=0.4858 [通常の子]
Depth=12 Norm=0.6761 e0=-0.4495 e1=0.4939 e2=0.0080 e3=-0.0224 e4=-0.0622 e5=-0.0275 e6=-0.0753 e7=0.0176 N=3.0 Q=1.000 imagStrength=0.5051 [共役の子]
Depth=13 Norm=1.3084 e0=1.0971 e1=-0.6503 e2=0.0142 e3=-0.0553 e4=0.0484 e5=-0.1281 e6=-0.0034 e7=0.2519 N=0.0 Q=0.000 imagStrength=0.7130 [共役の子]
Depth=11 Norm=0.8225 e0=-0.7128 e1=0.4018 e2=-0.0035 e3=0.0145 e4=-0.0542 e5=0.0266 e6=0.0058 e7=-0.0561 N=3.0 Q=1.000 imagStrength=0.4105 [通常の子]
Depth=13 Norm=1.2925 e0=0.4775 e1=-1.1788 e2=-0.0397 e3=-0.0433 e4=0.0441 e5=-0.0977 e6=-0.1435 e7=0.1324 N=1.0 Q=0.333 imagStrength=1.2010 [共役の子]
Depth=13 Norm=1.3037 e0=1.1214 e1=-0.6481 e2=0.0237 e3=-0.0583 e4=0.0565 e5=-0.0634 e6=0.0295 e7=0.1006 N=0.0 Q=0.000 imagStrength=0.6649 [通常の子]
Depth=8 Norm=0.5072 e0=-0.1019 e1=0.4943 e2=0.0002 e3=-0.0064 e4=-0.0185 e5=-0.0025 e6=-0.0467 e7=-0.0003 N=3.0 Q=1.000 imagStrength=0.4969 [通常の子]
Depth=11 Norm=0.5515 e0=0.4219 e1=0.3496 e2=-0.0053 e3=0.0198 e4=0.0388 e5=-0.0333 e6=0.0223 e7=-0.0208 N=3.0 Q=1.000 imagStrength=0.3552 [共役の子]
Depth=13 Norm=1.1817 e0=0.6497 e1=0.9729 e2=0.1056 e3=-0.0674 e4=-0.0188 e5=0.1077 e6=0.0065 e7=0.0103 N=1.0 Q=0.333 imagStrength=0.9871 [通常の子]
Depth=13 Norm=1.1085 e0=-0.7435 e1=-0.8096 e2=0.0150 e3=-0.0655 e4=-0.0275 e5=0.0730 e6=-0.0511 e7=0.0847 N=0.0 Q=0.000 imagStrength=0.8221 [通常の子]
Depth=13 Norm=1.2477 e0=1.2312 e1=0.1020 e2=0.0430 e3=-0.0625 e4=-0.0275 e5=0.0484 e6=-0.0582 e7=0.1356 N=0.0 Q=0.000 imagStrength=0.2026 [共役の子]
Depth=12 Norm=0.4789 e0=0.1081 e1=-0.4579 e2=-0.0462 e3=-0.0230 e4=0.0579 e5=0.0169 e6=-0.0372 e7=0.0191 N=3.0 Q=1.000 imagStrength=0.4666 [通常の子]
Depth=12 Norm=0.4425 e0=0.0742 e1=0.4294 e2=-0.0016 e3=-0.0230 e4=0.0579 e5=0.0169 e6=-0.0372 e7=0.0191 N=3.0 Q=1.000 imagStrength=0.4362 [共役の子]
Depth=12 Norm=0.7883 e0=-0.6368 e1=0.4582 e2=0.0017 e3=-0.0140 e4=0.0649 e5=0.0189 e6=-0.0084 e7=-0.0339 N=3.0 Q=1.000 imagStrength=0.4647 [共役の子]
Depth=10 Norm=0.7897 e0=0.6326 e1=-0.4672 e2=-0.0066 e3=0.0209 e4=-0.0623 e5=-0.0207 e6=0.0197 e7=-0.0014 N=3.0 Q=1.000 imagStrength=0.4727 [共役の子]
Depth=13 Norm=1.2640 e0=-1.2491 e1=0.1214 e2=0.0594 e3=-0.0643 e4=-0.0298 e5=0.0674 e6=-0.0560 e7=0.0796 N=0.0 Q=0.000 imagStrength=0.1931 [通常の子]
Depth=13 Norm=1.2433 e0=1.1979 e1=-0.2859 e2=0.0316 e3=-0.0662 e4=-0.0261 e5=0.0459 e6=0.0013 e7=0.1450 N=0.0 Q=0.000 imagStrength=0.3331 [共役の子]
Depth=13 Norm=1.1898 e0=-1.1787 e1=0.0351 e2=0.0472 e3=-0.0689 e4=-0.0134 e5=0.0967 e6=0.0860 e7=0.0353 N=0.0 Q=0.000 imagStrength=0.1625 [共役の子]
Depth=12 Norm=0.6863 e0=-0.4340 e1=0.5265 e2=0.0033 e3=-0.0204 e4=0.0566 e5=0.0165 e6=-0.0318 e7=0.0239 N=3.0 Q=1.000 imagStrength=0.5317 [通常の子]
Depth=9 Norm=0.8063 e0=-0.7939 e1=-0.0623 e2=-0.0533 e3=-0.0752 e4=0.0182 e5=-0.0694 e6=0.0119 e7=0.0473 N=3.0 Q=1.000 imagStrength=0.1411 [通常の子]
Depth=12 Norm=0.6822 e0=-0.4505 e1=0.4784 e2=-0.0510 e3=0.0238 e4=-0.1577 e5=-0.0195 e6=-0.0578 e7=0.0432 N=3.0 Q=1.000 imagStrength=0.5124 [通常の子]
Depth=13 Norm=1.1766 e0=1.0616 e1=-0.3414 e2=-0.1388 e3=-0.1529 e4=-0.0128 e5=-0.2346 e6=0.0078 e7=0.2068 N=0.0 Q=0.000 imagStrength=0.5072 [共役の子]
Depth=13 Norm=1.1213 e0=-1.0724 e1=0.1310 e2=-0.1147 e3=-0.1555 e4=-0.0003 e5=-0.1857 e6=0.0899 e7=0.1005 N=0.0 Q=0.000 imagStrength=0.3274 [共役の子]
Depth=11 Norm=0.6932 e0=0.6564 e1=0.1838 e2=0.0342 e3=0.0759 e4=-0.0446 e5=0.0764 e6=0.0003 e7=-0.0348 N=3.0 Q=1.000 imagStrength=0.2231 [共役の子]
Depth=13 Norm=1.1736 e0=0.9541 e1=0.6374 e2=-0.0819 e3=-0.1548 e4=-0.0042 e5=-0.1669 e6=0.0244 e7=0.0391 N=0.0 Q=0.000 imagStrength=0.6834 [通常の子]
Depth=13 Norm=1.1079 e0=-0.9747 e1=-0.4107 e2=-0.1357 e3=-0.1522 e4=-0.0159 e5=-0.2124 e6=-0.0521 e7=0.1379 N=0.0 Q=0.000 imagStrength=0.5267 [通常の子]
Depth=13 Norm=1.2131 e0=-0.2529 e1=-1.1156 e2=-0.1446 e3=-0.1675 e4=-0.0068 e5=-0.2125 e6=0.2080 e7=0.1600 N=1.0 Q=0.333 imagStrength=1.1864 [通常の子]
Depth=11 Norm=0.5252 e0=0.2618 e1=0.4298 e2=0.0452 e3=0.0773 e4=-0.0473 e5=0.0803 e6=-0.0727 e7=-0.0248 N=3.0 Q=1.000 imagStrength=0.4553 [通常の子]
Depth=13 Norm=1.2726 e0=-0.9256 e1=-0.8128 e2=-0.1793 e3=-0.1512 e4=-0.0065 e5=-0.1900 e6=0.0904 e7=0.0539 N=1.0 Q=0.333 imagStrength=0.8734 [共役の子]
Depth=12 Norm=0.4627 e0=0.1801 e1=0.3923 e2=-0.0551 e3=0.0185 e4=-0.1393 e5=-0.0174 e6=-0.0186 e7=0.0655 N=3.0 Q=1.000 imagStrength=0.4262 [共役の子]
Depth=10 Norm=0.5116 e0=-0.2727 e1=-0.4027 e2=0.0624 e3=-0.0292 e4=0.1230 e5=0.0168 e6=0.0262 e7=-0.0656 N=3.0 Q=1.000 imagStrength=0.4328 [共役の子]
Depth=13 Norm=1.1993 e0=-0.6453 e1=-0.9568 e2=-0.1793 e3=-0.1478 e4=-0.0172 e5=-0.2104 e6=0.0101 e7=0.0883 N=1.0 Q=0.333 imagStrength=1.0109 [通常の子]
Depth=12 Norm=0.8928 e0=0.8353 e1=-0.2715 e2=-0.0912 e3=0.0372 e4=-0.1012 e5=0.0101 e6=-0.0470 e7=-0.0578 N=3.0 Q=1.000 imagStrength=0.3151 [通常の子]
Depth=12 Norm=0.8415 e0=-0.7558 e1=0.3405 e2=-0.0606 e3=0.0372 e4=-0.1012 e5=0.0101 e6=-0.0470 e7=-0.0578 N=3.0 Q=1.000 imagStrength=0.3700 [共役の子]
Depth=13 Norm=1.2889 e0=0.5069 e1=-1.1439 e2=-0.1532 e3=-0.1673 e4=-0.0572 e5=-0.1195 e6=-0.0521 e7=0.1550 N=1.0 Q=0.333 imagStrength=1.1850 [共役の子]
Depth=11 Norm=0.6053 e0=-0.2783 e1=0.5233 e2=0.0526 e3=0.0802 e4=0.0110 e5=0.0455 e6=0.0413 e7=-0.0451 N=3.0 Q=1.000 imagStrength=0.5376 [通常の子]
Depth=13 Norm=1.3117 e0=-0.2913 e1=-1.2262 e2=-0.2090 e3=-0.1502 e4=-0.0598 e5=-0.0994 e6=-0.2246 e7=0.0438 N=1.0 Q=0.333 imagStrength=1.2789 [共役の子]
Depth=13 Norm=1.2813 e0=0.5223 e1=-1.1388 e2=-0.1469 e3=-0.1708 e4=-0.0518 e5=-0.0913 e6=-0.0314 e7=0.0956 N=1.0 Q=0.333 imagStrength=1.1700 [通常の子]
Depth=9 Norm=0.5005 e0=0.1349 e1=0.4739 e2=-0.0254 e3=-0.0734 e4=-0.0167 e5=-0.0283 e6=0.0068 e7=0.0233 N=3.0 Q=1.000 imagStrength=0.4820 [通常の子]
Depth=12 Norm=0.4549 e0=-0.2587 e1=-0.3449 e2=-0.0962 e3=0.0190 e4=-0.0695 e5=0.0086 e6=0.0056 e7=0.0801 N=3.0 Q=1.000 imagStrength=0.3741 [通常の子]
Depth=13 Norm=1.2554 e0=-0.9415 e1=-0.7863 e2=-0.1763 e3=-0.1559 e4=-0.0531 e5=-0.0777 e6=0.0725 e7=-0.0432 N=1.0 Q=0.333 imagStrength=0.8304 [共役の子]
Depth=13 Norm=1.2493 e0=0.8555 e1=0.8840 e2=-0.0900 e3=-0.1544 e4=-0.0595 e5=-0.1044 e6=0.0282 e7=0.0142 N=1.0 Q=0.333 imagStrength=0.9104 [共役の子]
Depth=11 Norm=0.5634 e0=0.1718 e1=-0.5245 e2=-0.0018 e3=0.0806 e4=0.0095 e5=0.0432 e6=-0.0654 e7=0.0046 N=3.0 Q=1.000 imagStrength=0.5365 [共役の子]
Depth=13 Norm=1.2715 e0=0.0739 e1=-1.2363 e2=-0.2042 e3=-0.1554 e4=-0.0554 e5=-0.1038 e6=0.0507 e7=0.0189 N=1.0 Q=0.333 imagStrength=1.2693 [通常の子]
Depth=13 Norm=1.3306 e0=0.1748 e1=1.3014 e2=-0.0744 e3=-0.1560 e4=-0.0529 e5=-0.0914 e6=0.0708 e7=-0.0071 N=1.0 Q=0.333 imagStrength=1.3190 [通常の子]
Depth=13 Norm=1.1878 e0=-1.1565 e1=-0.2007 e2=-0.0264 e3=-0.0309 e4=-0.0234 e5=0.1273 e6=-0.0537 e7=-0.1081 N=0.0 Q=0.000 imagStrength=0.2706 [共役の子]
Depth=13 Norm=1.2193 e0=1.1639 e1=0.3269 e2=0.0013 e3=-0.0285 e4=-0.0344 e5=0.0832 e6=-0.1275 e7=-0.0126 N=0.0 Q=0.000 imagStrength=0.3636 [共役の子]
Depth=12 Norm=0.4987 e0=0.1669 e1=-0.4616 e2=-0.0380 e3=0.0010 e4=0.0729 e5=0.0194 e6=0.0139 e7=-0.0220 N=3.0 Q=1.000 imagStrength=0.4700 [通常の子]
Depth=13 Norm=1.1915 e0=-1.1566 e1=-0.2637 e2=-0.0177 e3=-0.0364 e4=-0.0298 e5=0.0603 e6=-0.0244 e7=0.0754 N=0.0 Q=0.000 imagStrength=0.2863 [通常の子]
Depth=13 Norm=1.2463 e0=1.2317 e1=0.1329 e2=0.0018 e3=-0.0391 e4=-0.0174 e5=0.1101 e6=0.0590 e7=-0.0325 N=0.0 Q=0.000 imagStrength=0.1901 [通常の子]
Depth=11 Norm=0.7643 e0=-0.7617 e1=-0.0369 e2=-0.0019 e3=0.0160 e4=0.0359 e5=-0.0312 e6=-0.0077 e7=-0.0063 N=3.0 Q=1.000 imagStrength=0.0631 [共役の子]
Depth=11 Norm=0.8213 e0=-0.7173 e1=0.3930 e2=0.0202 e3=0.0147 e4=0.0420 e5=-0.0371 e6=0.0428 e7=0.0015 N=3.0 Q=1.000 imagStrength=0.4000 [通常の子]
Depth=13 Norm=1.2841 e0=0.5063 e1=-1.1585 e2=-0.0871 e3=-0.0243 e4=-0.0341 e5=0.0875 e6=-0.1813 e7=-0.0241 N=1.0 Q=0.333 imagStrength=1.1800 [共役の子]
Depth=13 Norm=1.2960 e0=1.1218 e1=-0.6327 e2=-0.0247 e3=-0.0389 e4=-0.0218 e5=0.1217 e6=-0.0128 e7=-0.0568 N=0.0 Q=0.000 imagStrength=0.6489 [通常の子]
Depth=10 Norm=0.6941 e0=-0.4830 e1=0.4916 e2=0.0357 e3=-0.0021 e4=-0.0652 e5=-0.0196 e6=0.0020 e7=0.0302 N=3.0 Q=1.000 imagStrength=0.4985 [通常の子]
Depth=13 Norm=1.2353 e0=1.2223 e1=0.1317 e2=-0.0052 e3=-0.0363 e4=-0.0190 e5=0.1091 e6=-0.0010 e7=-0.0307 N=0.0 Q=0.000 imagStrength=0.1786 [通常の子]
Depth=12 Norm=0.7877 e0=0.5973 e1=-0.5078 e2=-0.0417 e3=0.0004 e4=0.0602 e5=0.0177 e6=-0.0139 e7=0.0006 N=3.0 Q=1.000 imagStrength=0.5135 [共役の子]
Depth=7 Norm=0.9697 e0=0.9105 e1=-0.3317 e2=0.0219 e3=0.0055 e4=0.0191 e5=0.0104 e6=0.0101 e7=-0.0163 N=3.0 Q=1.000 imagStrength=0.3337 [共役の子]
Depth=13 Norm=1.2330 e0=-0.5540 e1=-1.0741 e2=-0.0359 e3=-0.0381 e4=0.0409 e5=-0.0333 e6=0.2305 e7=0.0334 N=1.0 Q=0.333 imagStrength=1.1016 [共役の子]
Depth=12 Norm=0.6672 e0=0.6434 e1=0.1717 e2=-0.0018 e3=0.0087 e4=-0.0251 e5=-0.0186 e6=0.0071 e7=0.0246 N=2.0 Q=0.667 imagStrength=0.1766 [通常の子]
Depth=12 Norm=0.6809 e0=-0.6732 e1=-0.0917 e2=-0.0150 e3=0.0087 e4=-0.0251 e5=-0.0186 e6=0.0071 e7=0.0246 N=2.0 Q=0.667 imagStrength=0.1017 [共役の子]
Depth=13 Norm=1.2769 e0=0.5027 e1=-1.1450 e2=-0.0361 e3=-0.0395 e4=0.0410 e5=-0.0364 e6=0.2425 e7=0.0463 N=1.0 Q=0.333 imagStrength=1.1738 [通常の子]
Depth=11 Norm=0.6048 e0=-0.2777 e1=0.5315 e2=0.0245 e3=0.0113 e4=-0.0357 e5=0.0113 e6=-0.0626 e7=0.0085 N=3.0 Q=1.000 imagStrength=0.5372 [通常の子]
Depth=13 Norm=1.3086 e0=-0.3025 e1=-1.2668 e2=-0.0974 e3=-0.0197 e4=0.0337 e5=-0.0442 e6=0.0570 e7=-0.0044 N=1.0 Q=0.333 imagStrength=1.2732 [共役の子]
Depth=13 Norm=1.2645 e0=0.7977 e1=-0.9567 e2=-0.0719 e3=-0.0207 e4=0.0286 e5=-0.0757 e6=-0.1323 e7=0.1329 N=1.0 Q=0.333 imagStrength=0.9811 [共役の子]
Depth=13 Norm=1.1915 e0=-0.9045 e1=0.7697 e2=0.0161 e3=-0.0230 e4=0.0390 e5=-0.0340 e6=-0.0625 e7=0.0426 N=0.0 Q=0.000 imagStrength=0.7756 [共役の子]
Depth=12 Norm=0.8842 e0=-0.7930 e1=0.3859 e2=0.0076 e3=-0.0072 e4=-0.0327 e5=-0.0180 e6=-0.0501 e7=0.0092 N=3.0 Q=1.000 imagStrength=0.3912 [通常の子]
Depth=13 Norm=1.2798 e0=0.8423 e1=-0.9424 e2=-0.0838 e3=-0.0161 e4=0.0318 e5=-0.0333 e6=-0.1753 e7=0.0085 N=1.0 Q=0.333 imagStrength=0.9635 [通常の子]
Depth=13 Norm=1.3002 e0=-0.6171 e1=1.1234 e2=0.0227 e3=-0.0151 e4=0.0276 e5=-0.0506 e6=-0.2040 e7=0.0456 N=1.0 Q=0.333 imagStrength=1.1445 [通常の子]
Depth=11 Norm=0.8362 e0=0.6948 e1=-0.4601 e2=-0.0232 e3=0.0108 e4=-0.0346 e5=0.0132 e6=0.0358 e7=-0.0367 N=3.0 Q=1.000 imagStrength=0.4652 [共役の子]
Depth=5 Norm=0.4938 e0=0.2312 e1=0.4331 e2=0.0462 e3=0.0214 e4=-0.0040 e5=0.0031 e6=0.0140 e7=0.0040 N=3.0 Q=1.000 imagStrength=0.4363 [通常の子]
Depth=12 Norm=0.7028 e0=-0.6832 e1=0.0525 e2=-0.0261 e3=0.0669 e4=-0.0081 e5=0.0387 e6=0.0461 e7=-0.1244 N=3.0 Q=1.000 imagStrength=0.1645 [共役の子]
Depth=10 Norm=0.8248 e0=0.8133 e1=-0.0655 e2=0.0247 e3=-0.0570 e4=-0.0108 e5=-0.0355 e6=-0.0417 e7=0.0869 N=3.0 Q=1.000 imagStrength=0.1372 [共役の子]
Depth=13 Norm=1.1605 e0=-0.5498 e1=1.0016 e2=-0.0670 e3=-0.0410 e4=-0.0990 e5=0.0382 e6=-0.1142 e7=-0.1048 N=1.0 Q=0.333 imagStrength=1.0221 [通常の子]
Depth=13 Norm=1.1030 e0=0.3797 e1=-0.9737 e2=-0.2090 e3=-0.0271 e4=-0.1054 e5=0.0246 e6=-0.2346 e7=-0.1147 N=1.0 Q=0.333 imagStrength=1.0356 [共役の子]
Depth=13 Norm=1.0345 e0=-0.4814 e1=0.8639 e2=-0.1149 e3=-0.0285 e4=-0.0993 e5=0.0500 e6=-0.1926 e7=-0.1690 N=1.0 Q=0.333 imagStrength=0.9156 [共役の子]
Depth=12 Norm=0.7570 e0=-0.7224 e1=0.2085 e2=-0.0203 e3=0.0473 e4=0.0004 e5=0.0381 e6=0.0347 e7=-0.0497 N=3.0 Q=1.000 imagStrength=0.2264 [通常の子]
Depth=12 Norm=0.6553 e0=-0.4852 e1=0.4271 e2=-0.0088 e3=0.0525 e4=0.0138 e5=0.0378 e6=0.0792 e7=-0.0304 N=3.0 Q=1.000 imagStrength=0.4405 [通常の子]
Depth=12 Norm=0.6450 e0=0.4547 e1=-0.4417 e2=-0.0523 e3=0.0525 e4=0.0138 e5=0.0378 e6=0.0792 e7=-0.0304 N=3.0 Q=1.000 imagStrength=0.4576 [共役の子]
Depth=13 Norm=1.0196 e0=-0.8349 e1=0.4982 e2=-0.1206 e3=-0.0336 e4=-0.0960 e5=0.0742 e6=-0.0335 e7=-0.2506 N=0.0 Q=0.000 imagStrength=0.5852 [共役の子]
Depth=11 Norm=0.7375 e0=0.6641 e1=-0.3026 e2=0.0361 e3=0.0346 e4=0.0711 e5=-0.0033 e6=0.0128 e7=0.0609 N=3.0 Q=1.000 imagStrength=0.3209 [通常の子]
Depth=13 Norm=1.0363 e0=-0.4751 e1=0.8923 e2=-0.0791 e3=-0.0442 e4=-0.0909 e5=0.0523 e6=0.0856 e7=-0.1598 N=1.0 Q=0.333 imagStrength=0.9210 [共役の子]
Depth=13 Norm=1.0215 e0=-0.8578 e1=0.5121 e2=-0.1245 e3=-0.0330 e4=-0.1014 e5=0.0228 e6=-0.0476 e7=-0.1253 N=0.0 Q=0.000 imagStrength=0.5546 [通常の子]
Depth=8 Norm=0.4737 e0=0.1205 e1=-0.4491 e2=-0.0201 e3=0.0600 e4=0.0033 e5=0.0161 e6=0.0618 e7=-0.0025 N=3.0 Q=1.000 imagStrength=0.4581 [通常の子]
Depth=11 Norm=0.5044 e0=-0.3567 e1=-0.3480 e2=0.0331 e3=0.0294 e4=-0.0183 e5=0.0540 e6=-0.0086 e7=0.0280 N=3.0 Q=1.000 imagStrength=0.3566 [共役の子]
Depth=13 Norm=1.1518 e0=-0.6508 e1=-0.9148 e2=-0.2023 e3=-0.0218 e4=-0.0306 e5=-0.1464 e6=-0.0372 e7=-0.0307 N=1.0 Q=0.333 imagStrength=0.9503 [通常の子]
Depth=13 Norm=1.2255 e0=0.8391 e1=0.8713 e2=-0.1112 e3=-0.0239 e4=-0.0213 e5=-0.1087 e6=0.0258 e7=-0.1123 N=1.0 Q=0.333 imagStrength=0.8931 [通常の子]
Depth=13 Norm=1.0879 e0=-1.0607 e1=-0.0646 e2=-0.1423 e3=-0.0265 e4=-0.0223 e5=-0.0883 e6=0.0222 e7=-0.1561 N=0.0 Q=0.000 imagStrength=0.2414 [共役の子]
Depth=12 Norm=0.5018 e0=-0.1346 e1=0.4673 e2=-0.0009 e3=0.0522 e4=-0.0988 e5=-0.0047 e6=0.0454 e7=-0.0277 N=3.0 Q=1.000 imagStrength=0.4834 [通常の子]
Depth=12 Norm=0.4662 e0=0.0668 e1=-0.4421 e2=-0.0465 e3=0.0522 e4=-0.0988 e5=-0.0047 e6=0.0454 e7=-0.0277 N=3.0 Q=1.000 imagStrength=0.4614 [共役の子]
Depth=12 Norm=0.7359 e0=0.5955 e1=-0.4133 e2=-0.0466 e3=0.0451 e4=-0.1053 e5=-0.0068 e6=0.0197 e7=0.0178 N=3.0 Q=1.000 imagStrength=0.4323 [共役の子]
Depth=10 Norm=0.6543 e0=-0.5061 e1=0.3970 e2=0.0515 e3=-0.0531 e4=0.0882 e5=0.0091 e6=-0.0293 e7=0.0119 N=3.0 Q=1.000 imagStrength=0.4147 [共役の子]
Depth=13 Norm=1.0705 e0=1.0484 e1=-0.0328 e2=-0.1518 e3=-0.0257 e4=-0.0200 e5=-0.1089 e6=0.0241 e7=-0.0954 N=0.0 Q=0.000 imagStrength=0.2162 [通常の子]
Depth=13 Norm=1.0908 e0=-1.0250 e1=0.2984 e2=-0.1288 e3=-0.0246 e4=-0.0224 e5=-0.0867 e6=-0.0167 e7=-0.1573 N=0.0 Q=0.000 imagStrength=0.3732 [共役の子]
Depth=13 Norm=1.1471 e0=1.1095 e1=-0.1733 e2=-0.1528 e3=-0.0220 e4=-0.0341 e5=-0.1330 e6=-0.0947 e7=-0.0563 N=0.0 Q=0.000 imagStrength=0.2913 [共役の子]
Depth=12 Norm=0.6347 e0=0.4537 e1=-0.4242 e2=-0.0458 e3=0.0510 e4=-0.0985 e5=-0.0047 e6=0.0398 e7=-0.0330 N=3.0 Q=1.000 imagStrength=0.4439 [通常の子]
Depth=10 Norm=0.8560 e0=-0.8082 e1=0.2448 e2=0.0647 e3=-0.0669 e4=0.0471 e5=-0.0289 e6=-0.0258 e7=0.0848 N=3.0 Q=1.000 imagStrength=0.2820 [通常の子]
Depth=13 Norm=1.1702 e0=0.9130 e1=-0.6344 e2=-0.2309 e3=-0.0680 e4=-0.1040 e5=-0.0339 e6=-0.2112 e7=-0.1369 N=1.0 Q=0.333 imagStrength=0.7319 [通常の子]
Depth=12 Norm=0.8856 e0=0.8363 e1=-0.2658 e2=-0.0647 e3=0.0528 e4=-0.0638 e5=0.0311 e6=0.0185 e7=-0.0432 N=3.0 Q=1.000 imagStrength=0.2913 [共役の子]
Depth=9 Norm=0.6977 e0=0.5065 e1=-0.4610 e2=-0.1019 e3=-0.0384 e4=-0.0500 e5=-0.0092 e6=-0.0228 e7=-0.0530 N=3.0 Q=1.000 imagStrength=0.4798 [共役の子]
Depth=12 Norm=0.7555 e0=0.7330 e1=0.0479 e2=-0.0471 e3=0.0751 e4=-0.0736 e5=0.0318 e6=0.0304 e7=-0.1268 N=3.0 Q=1.000 imagStrength=0.1833 [通常の子]
Depth=13 Norm=1.2194 e0=0.1839 e1=1.1876 e2=-0.0889 e3=-0.0853 e4=-0.0998 e5=-0.0385 e6=-0.0980 e7=-0.0810 N=1.0 Q=0.333 imagStrength=1.2055 [共役の子]
Depth=13 Norm=1.2741 e0=0.0529 e1=-1.2405 e2=-0.2136 e3=-0.0845 e4=-0.1021 e5=-0.0455 e6=-0.1107 e7=-0.0646 N=1.0 Q=0.333 imagStrength=1.2730 [共役の子]
Depth=13 Norm=1.1706 e0=-0.8665 e1=-0.7189 e2=-0.1934 e3=-0.0846 e4=-0.0968 e5=-0.0174 e6=0.1233 e7=-0.1826 N=1.0 Q=0.333 imagStrength=0.7871 [共役の子]
Depth=12 Norm=0.4954 e0=0.3421 e1=0.3340 e2=-0.0330 e3=0.0698 e4=-0.0561 e5=0.0302 e6=0.0780 e7=-0.0262 N=3.0 Q=1.000 imagStrength=0.3583 [通常の子]
Depth=12 Norm=0.4991 e0=-0.3970 e1=-0.2680 e2=-0.0632 e3=0.0698 e4=-0.0561 e5=0.0302 e6=0.0780 e7=-0.0262 N=3.0 Q=1.000 imagStrength=0.3026 [共役の子]
Depth=13 Norm=1.2089 e0=0.0087 e1=-1.1683 e2=-0.2063 e3=-0.0893 e4=-0.0973 e5=-0.0453 e6=0.1562 e7=-0.1000 N=1.0 Q=0.333 imagStrength=1.2089 [通常の子]
Depth=11 Norm=0.5010 e0=0.0735 e1=0.4769 e2=0.0831 e3=0.0554 e4=0.0538 e5=0.0275 e6=-0.0126 e7=0.0665 N=3.0 Q=1.000 imagStrength=0.4956 [通常の子]
Depth=13 Norm=1.2616 e0=-0.7113 e1=-0.9856 e2=-0.2511 e3=-0.0708 e4=-0.1006 e5=-0.0340 e6=0.0064 e7=-0.1866 N=1.0 Q=0.333 imagStrength=1.0419 [共役の子]
Depth=13 Norm=1.1291 e0=-1.0939 e1=-0.0587 e2=-0.1802 e3=-0.0716 e4=-0.0577 e5=-0.1786 e6=-0.0338 e7=0.0262 N=0.0 Q=0.000 imagStrength=0.2795 [通常の子]
Depth=13 Norm=1.1746 e0=1.1459 e1=-0.0411 e2=-0.1793 e3=-0.0744 e4=-0.0458 e5=-0.1326 e6=0.0440 e7=-0.0744 N=0.0 Q=0.000 imagStrength=0.2579 [通常の子]
Depth=11 Norm=0.7404 e0=-0.7317 e1=0.0344 e2=0.0618 e3=0.0526 e4=-0.0079 e5=0.0692 e6=0.0065 e7=0.0129 N=3.0 Q=1.000 imagStrength=0.1133 [共役の子]
Depth=12 Norm=0.5046 e0=-0.1446 e1=0.4580 e2=-0.0242 e3=0.0625 e4=-0.1261 e5=0.0028 e6=0.0345 e7=-0.0482 N=3.0 Q=1.000 imagStrength=0.4834 [通常の子]
Depth=12 Norm=0.4703 e0=0.0783 e1=-0.4324 e2=-0.0688 e3=0.0625 e4=-0.1261 e5=0.0028 e6=0.0345 e7=-0.0482 N=3.0 Q=1.000 imagStrength=0.4637 [共役の子]
Depth=13 Norm=1.0724 e0=-1.0360 e1=-0.0492 e2=-0.1807 e3=-0.0708 e4=-0.0503 e5=-0.1137 e6=-0.0351 e7=-0.1416 N=0.0 Q=0.000 imagStrength=0.2772 [共役の子]
Depth=10 Norm=0.6563 e0=0.5838 e1=0.2621 e2=0.0678 e3=-0.0636 e4=0.1041 e5=0.0015 e6=-0.0389 e7=-0.0145 N=3.0 Q=1.000 imagStrength=0.2999 [通常の子]
Depth=13 Norm=1.2264 e0=0.2143 e1=1.1803 e2=-0.0920 e3=-0.0832 e4=-0.0477 e5=-0.1432 e6=0.1537 e7=-0.0580 N=1.0 Q=0.333 imagStrength=1.2075 [通常の子]
Depth=12 Norm=0.5193 e0=-0.4098 e1=-0.2722 e2=-0.0614 e3=0.0664 e4=-0.1351 e5=0.0011 e6=0.0358 e7=-0.0047 N=3.0 Q=1.000 imagStrength=0.3191 [共役の子]
Depth=9 Norm=0.5763 e0=0.4586 e1=0.3355 e2=-0.0590 e3=-0.0406 e4=-0.0137 e5=-0.0532 e6=-0.0169 e7=-0.0277 N=3.0 Q=1.000 imagStrength=0.3490 [共役の子]
Depth=12 Norm=0.4598 e0=0.0632 e1=-0.4280 e2=-0.0690 e3=0.0544 e4=-0.1189 e5=0.0026 e6=0.0472 e7=0.0116 N=3.0 Q=1.000 imagStrength=0.4555 [通常の子]
Depth=13 Norm=1.1795 e0=-1.0918 e1=-0.3257 e2=-0.2074 e3=-0.0665 e4=-0.0532 e5=-0.1168 e6=0.0071 e7=-0.1712 N=0.0 Q=0.000 imagStrength=0.4465 [共役の子]
Depth=13 Norm=1.2019 e0=1.0786 e1=0.4580 e2=-0.1666 e3=-0.0643 e4=-0.0635 e5=-0.1580 e6=-0.0618 e7=-0.0821 N=0.0 Q=0.000 imagStrength=0.5303 [共役の子]
Depth=13 Norm=1.1841 e0=-1.0430 e1=-0.4343 e2=-0.0882 e3=0.0285 e4=-0.0760 e5=0.1697 e6=-0.1512 e7=-0.2445 N=1.0 Q=0.333 imagStrength=0.5607 [共役の子]
Depth=13 Norm=1.1996 e0=1.0218 e1=0.5438 e2=-0.0379 e3=0.0305 e4=-0.0856 e5=0.1308 e6=-0.2158 e7=-0.1610 N=1.0 Q=0.333 imagStrength=0.6285 [共役の子]
Depth=12 Norm=0.4315 e0=-0.0233 e1=-0.4092 e2=-0.0181 e3=0.0237 e4=0.0905 e5=0.0414 e6=0.0627 e7=-0.0591 N=3.0 Q=1.000 imagStrength=0.4309 [通常の子]
Depth=13 Norm=1.1913 e0=-1.0632 e1=-0.4961 e2=-0.0773 e3=0.0222 e4=-0.0818 e5=0.1056 e6=-0.1177 e7=-0.0661 N=0.0 Q=0.000 imagStrength=0.5373 [通常の子]
Depth=13 Norm=1.2550 e0=1.1687 e1=0.3808 e2=-0.0328 e3=0.0194 e4=-0.0688 e5=0.1579 e6=-0.0303 e7=-0.1792 N=0.0 Q=0.000 imagStrength=0.4573 [通常の子]
Depth=11 Norm=0.6964 e0=-0.6723 e1=-0.1449 e2=0.0176 e3=0.0003 e4=0.0814 e5=-0.0420 e6=0.0419 e7=0.0391 N=3.0 Q=1.000 imagStrength=0.1816 [共役の子]
Depth=11 Norm=0.8469 e0=-0.7781 e1=0.3008 e2=0.0400 e3=-0.0008 e4=0.0879 e5=-0.0495 e6=0.0775 e7=0.0595 N=3.0 Q=1.000 imagStrength=0.3344 [通常の子]
Depth=13 Norm=1.2713 e0=0.7249 e1=-0.9900 e2=-0.1160 e3=0.0301 e4=-0.0862 e5=0.1309 e6=-0.2117 e7=-0.1640 N=1.0 Q=0.333 imagStrength=1.0444 [共役の子]
Depth=13 Norm=1.2968 e0=1.1987 e1=-0.3873 e2=-0.0580 e3=0.0180 e4=-0.0722 e5=0.1751 e6=-0.0538 e7=-0.2287 N=0.0 Q=0.000 imagStrength=0.4947 [通常の子]
Depth=10 Norm=0.6019 e0=-0.3012 e1=0.5056 e2=0.0169 e3=-0.0266 e4=-0.0837 e5=-0.0378 e6=-0.0570 e7=0.0570 N=3.0 Q=1.000 imagStrength=0.5211 [通常の子]
Depth=13 Norm=1.2423 e0=1.1509 e1=0.3975 e2=-0.0283 e3=0.0175 e4=-0.0681 e5=0.1569 e6=-0.0063 e7=-0.1738 N=0.0 Q=0.000 imagStrength=0.4676 [通常の子]
Depth=12 Norm=0.6955 e0=0.4445 e1=-0.5237 e2=-0.0249 e3=0.0263 e4=0.0782 e5=0.0392 e6=0.0447 e7=-0.0301 N=3.0 Q=1.000 imagStrength=0.5350 [共役の子]
Depth=7 Norm=1.0053 e0=0.9751 e1=-0.2382 e2=0.0107 e3=-0.0227 e4=0.0100 e5=-0.0104 e6=-0.0212 e7=0.0410 N=3.0 Q=1.000 imagStrength=0.2444 [共役の子]
Depth=13 Norm=1.2240 e0=-0.2879 e1=-1.1702 e2=-0.0829 e3=0.0211 e4=0.0026 e5=-0.0229 e6=0.1785 e7=-0.0772 N=1.0 Q=0.333 imagStrength=1.1896 [共役の子]
Depth=12 Norm=0.7468 e0=0.7416 e1=0.0541 e2=0.0114 e3=0.0321 e4=-0.0264 e5=-0.0045 e6=0.0535 e7=-0.0072 N=2.0 Q=0.667 imagStrength=0.0879 [通常の子]
Depth=12 Norm=0.7457 e0=-0.7421 e1=0.0242 e2=0.0099 e3=0.0321 e4=-0.0264 e5=-0.0045 e6=0.0535 e7=-0.0072 N=2.0 Q=0.667 imagStrength=0.0731 [共役の子]
Depth=13 Norm=1.2655 e0=0.7304 e1=-1.0098 e2=-0.0763 e3=0.0218 e4=0.0034 e5=-0.0125 e6=0.1767 e7=-0.1035 N=1.0 Q=0.333 imagStrength=1.0335 [通常の子]
Depth=11 Norm=0.6716 e0=-0.4410 e1=0.5007 e2=0.0475 e3=-0.0064 e4=-0.0055 e5=0.0084 e6=-0.0199 e7=0.0552 N=3.0 Q=1.000 imagStrength=0.5065 [通常の子]
Depth=13 Norm=1.2839 e0=-0.0264 e1=-1.2685 e2=-0.1392 e3=0.0402 e4=-0.0058 e5=-0.0291 e6=-0.0060 e7=-0.1289 N=1.0 Q=0.333 imagStrength=1.2836 [共役の子]
Depth=13 Norm=1.2540 e0=0.9921 e1=-0.7450 e2=-0.0979 e3=0.0367 e4=-0.0090 e5=-0.0593 e6=-0.1365 e7=0.0153 N=0.0 Q=0.000 imagStrength=0.7670 [共役の子]
Depth=13 Norm=1.1850 e0=-1.0526 e1=0.5321 e2=-0.0330 e3=0.0341 e4=0.0028 e5=-0.0121 e6=-0.0577 e7=-0.0866 N=0.0 Q=0.000 imagStrength=0.5444 [共役の子]
Depth=12 Norm=0.8393 e0=-0.7030 e1=0.4556 e2=0.0304 e3=0.0183 e4=-0.0323 e5=-0.0036 e6=0.0028 e7=-0.0186 N=3.0 Q=1.000 imagStrength=0.4585 [通常の子]
Depth=13 Norm=1.2662 e0=1.0068 e1=-0.7223 e2=-0.1115 e3=0.0424 e4=-0.0048 e5=-0.0066 e6=-0.1843 e7=-0.1401 N=1.0 Q=0.333 imagStrength=0.7678 [通常の子]
Depth=13 Norm=1.2705 e0=-0.8232 e1=0.9345 e2=-0.0258 e3=0.0438 e4=-0.0116 e5=-0.0342 e6=-0.2298 e7=-0.0813 N=1.0 Q=0.333 imagStrength=0.9678 [通常の子]
Depth=11 Norm=0.8915 e0=0.8010 e1=-0.3851 e2=0.0049 e3=-0.0068 e4=-0.0038 e5=0.0097 e6=0.0666 e7=0.0164 N=3.0 Q=1.000 imagStrength=0.3914 [共役の子]
Depth=9 Norm=0.7151 e0=-0.6883 e1=-0.1626 e2=-0.0759 e3=-0.0479 e4=-0.0212 e5=-0.0467 e6=-0.0118 e7=-0.0175 N=3.0 Q=1.000 imagStrength=0.1939 [通常の子]
Depth=12 Norm=0.5914 e0=-0.3040 e1=0.4878 e2=-0.0293 e3=0.0494 e4=-0.1263 e5=0.0062 e6=-0.0015 e7=-0.0113 N=3.0 Q=1.000 imagStrength=0.5073 [通常の子]
Depth=13 Norm=1.1517 e0=1.1173 e1=-0.0873 e2=-0.1562 e3=-0.0910 e4=-0.0658 e5=-0.1659 e6=-0.0536 e7=0.0558 N=0.0 Q=0.000 imagStrength=0.2795 [共役の子]
Depth=13 Norm=1.1077 e0=-1.0756 e1=-0.1274 e2=-0.1584 e3=-0.0937 e4=-0.0544 e5=-0.1217 e6=0.0209 e7=-0.0406 N=0.0 Q=0.000 imagStrength=0.2645 [共役の子]
Depth=11 Norm=0.5944 e0=0.5173 e1=0.2696 e2=0.0620 e3=0.0568 e4=0.0077 e5=0.0581 e6=0.0477 e7=0.0139 N=3.0 Q=1.000 imagStrength=0.2927 [共役の子]
Depth=13 Norm=1.1453 e0=0.7652 e1=0.8259 e2=-0.1030 e3=-0.0934 e4=-0.0582 e5=-0.1062 e6=-0.0370 e7=-0.0922 N=1.0 Q=0.333 imagStrength=0.8521 [通常の子]
Depth=13 Norm=1.0739 e0=-0.8285 e1=-0.6252 e2=-0.1775 e3=-0.0909 e4=-0.0683 e5=-0.1449 e6=-0.1024 e7=-0.0076 N=1.0 Q=0.333 imagStrength=0.6832 [通常の子]
Depth=13 Norm=1.1924 e0=-0.0099 e1=-1.1510 e2=-0.1823 e3=-0.1044 e4=-0.0578 e5=-0.1390 e6=0.1732 e7=-0.0150 N=1.0 Q=0.333 imagStrength=1.1924 [通常の子]
Depth=11 Norm=0.4922 e0=0.0883 e1=0.4693 e2=0.0706 e3=0.0578 e4=0.0051 e5=0.0598 e6=-0.0321 e7=0.0351 N=3.0 Q=1.000 imagStrength=0.4842 [通常の子]
Depth=13 Norm=1.2456 e0=-0.7275 e1=-0.9658 e2=-0.2255 e3=-0.0868 e4=-0.0606 e5=-0.1277 e6=0.0287 e7=-0.1008 N=1.0 Q=0.333 imagStrength=1.0111 [共役の子]
Depth=12 Norm=0.4883 e0=0.3530 e1=0.3100 e2=-0.0384 e3=0.0399 e4=-0.1052 e5=0.0071 e6=0.0403 e7=0.0436 N=3.0 Q=1.000 imagStrength=0.3374 [共役の子]
Depth=10 Norm=0.5585 e0=-0.4376 e1=-0.3242 e2=0.0423 e3=-0.0522 e4=0.0921 e5=-0.0044 e6=-0.0353 e7=-0.0328 N=3.0 Q=1.000 imagStrength=0.3471 [共役の子]
Depth=13 Norm=1.1590 e0=-0.4097 e1=-1.0428 e2=-0.2235 e3=-0.0842 e4=-0.0684 e5=-0.1415 e6=-0.0231 e7=-0.0761 N=1.0 Q=0.333 imagStrength=1.0842 [通常の子]
Depth=12 Norm=0.8657 e0=0.7734 e1=-0.3582 e2=-0.0727 e3=0.0563 e4=-0.0946 e5=0.0234 e6=0.0033 e7=-0.0715 N=3.0 Q=1.000 imagStrength=0.3891 [通常の子]
Depth=12 Norm=0.7916 e0=-0.6624 e1=0.4110 e2=-0.0341 e3=0.0563 e4=-0.0946 e5=0.0234 e6=0.0033 e7=-0.0715 N=3.0 Q=1.000 imagStrength=0.4334 [共役の子]
Depth=13 Norm=1.2831 e0=0.7497 e1=-1.0052 e2=-0.1870 e3=-0.0980 e4=-0.0930 e5=-0.1022 e6=-0.0962 e7=0.0331 N=1.0 Q=0.333 imagStrength=1.0414 [共役の子]
Depth=11 Norm=0.6745 e0=-0.4414 e1=0.4924 e2=0.0737 e3=0.0585 e4=0.0400 e5=0.0401 e6=0.0748 e7=0.0072 N=3.0 Q=1.000 imagStrength=0.5100 [通常の子]
Depth=13 Norm=1.2922 e0=-0.0152 e1=-1.2293 e2=-0.2437 e3=-0.0823 e4=-0.0959 e5=-0.0792 e6=-0.2633 e7=-0.0855 N=1.0 Q=0.333 imagStrength=1.2921 [共役の子]
Depth=13 Norm=1.2754 e0=0.7486 e1=-1.0019 e2=-0.1794 e3=-0.1019 e4=-0.0860 e5=-0.0619 e6=-0.0698 e7=-0.0601 N=1.0 Q=0.333 imagStrength=1.0326 [通常の子]
Depth=9 Norm=0.5102 e0=-0.0760 e1=0.4973 e2=-0.0406 e3=-0.0466 e4=-0.0416 e5=-0.0222 e6=-0.0150 e7=-0.0317 N=3.0 Q=1.000 imagStrength=0.5045 [通常の子]
Depth=12 Norm=0.5092 e0=-0.4248 e1=-0.2481 e2=-0.0685 e3=0.0386 e4=-0.0638 e5=0.0222 e6=0.0541 e7=0.0603 N=3.0 Q=1.000 imagStrength=0.2809 [通常の子]
Depth=13 Norm=1.2286 e0=-0.7155 e1=-0.9498 e2=-0.2234 e3=-0.0879 e4=-0.0886 e5=-0.0618 e6=0.0228 e7=-0.1597 N=1.0 Q=0.333 imagStrength=0.9987 [共役の子]
Depth=13 Norm=1.2064 e0=0.6140 e1=1.0126 e2=-0.1222 e3=-0.0872 e4=-0.0923 e5=-0.0782 e6=-0.0038 e7=-0.1253 N=1.0 Q=0.333 imagStrength=1.0384 [共役の子]
Depth=11 Norm=0.6337 e0=0.3523 e1=-0.5165 e2=0.0214 e3=0.0590 e4=0.0387 e5=0.0376 e6=-0.0281 e7=0.0546 N=3.0 Q=1.000 imagStrength=0.5267 [共役の子]
Depth=13 Norm=1.2459 e0=0.3283 e1=-1.1616 e2=-0.2374 e3=-0.0880 e4=-0.0891 e5=-0.0751 e6=0.0085 e7=-0.1316 N=1.0 Q=0.333 imagStrength=1.2018 [通常の子]
Depth=13 Norm=1.2943 e0=-0.0956 e1=1.2703 e2=-0.1128 e3=-0.0879 e4=-0.0887 e5=-0.0722 e6=0.0126 e7=-0.1369 N=1.0 Q=0.333 imagStrength=1.2907 [通常の子]
Depth=12 Norm=0.7809 e0=-0.6501 e1=0.4200 e2=0.0535 e3=-0.0209 e4=0.0792 e5=0.0012 e6=0.0302 e7=0.0204 N=3.0 Q=1.000 imagStrength=0.4328 [通常の子]
Depth=12 Norm=0.7840 e0=0.6297 e1=-0.4584 e2=0.0094 e3=-0.0209 e4=0.0792 e5=0.0012 e6=0.0302 e7=0.0204 N=3.0 Q=1.000 imagStrength=0.4671 [共役の子]
Depth=13 Norm=1.1037 e0=-0.7673 e1=0.7664 e2=0.0912 e3=0.0666 e4=0.0240 e5=0.1115 e6=0.0277 e7=-0.1239 N=1.0 Q=0.333 imagStrength=0.7933 [共役の子]
Depth=11 Norm=0.7235 e0=0.6009 e1=-0.3966 e2=-0.0368 e3=-0.0335 e4=0.0058 e5=-0.0346 e6=-0.0319 e7=0.0195 N=3.0 Q=1.000 imagStrength=0.4030 [通常の子]
Depth=13 Norm=1.1063 e0=-0.2627 e1=1.0464 e2=0.1373 e3=0.0543 e4=0.0279 e5=0.0907 e6=0.1689 e7=-0.0237 N=1.0 Q=0.333 imagStrength=1.0747 [共役の子]
Depth=13 Norm=1.1088 e0=-0.7768 e1=0.7800 e2=0.0869 e3=0.0687 e4=0.0182 e5=0.0674 e6=0.0143 e7=-0.0170 N=0.0 Q=0.000 imagStrength=0.7912 [通常の子]
Depth=9 Norm=0.6015 e0=0.3566 e1=-0.4823 e2=0.0018 e3=0.0314 e4=0.0040 e5=0.0295 e6=-0.0055 e7=-0.0108 N=3.0 Q=1.000 imagStrength=0.4844 [通常の子]
Depth=12 Norm=0.6785 e0=0.6553 e1=0.1323 e2=0.0406 e3=-0.0039 e4=0.0529 e5=0.0021 e6=-0.0102 e7=-0.0942 N=3.0 Q=1.000 imagStrength=0.1759 [通常の子]
Depth=13 Norm=1.1881 e0=0.3868 e1=1.1080 e2=0.1423 e3=0.0580 e4=0.0214 e5=0.0822 e6=-0.0525 e7=0.0297 N=1.0 Q=0.333 imagStrength=1.1234 [共役の子]
Depth=13 Norm=1.2340 e0=-0.1575 e1=-1.2178 e2=0.0229 e3=0.0580 e4=0.0214 e5=0.0822 e6=-0.0524 e7=0.0297 N=1.0 Q=0.333 imagStrength=1.2239 [共役の子]
Depth=11 Norm=0.6549 e0=-0.4866 e1=0.4323 e2=0.0065 e3=-0.0338 e4=0.0063 e5=-0.0329 e6=0.0507 e7=-0.0196 N=3.0 Q=1.000 imagStrength=0.4383 [共役の子]
Depth=13 Norm=1.1706 e0=-0.6430 e1=0.9611 e2=0.1325 e3=0.0583 e4=0.0205 e5=0.0738 e6=-0.0639 e7=0.0473 N=1.0 Q=0.333 imagStrength=0.9782 [通常の子]
Depth=13 Norm=1.1443 e0=0.5357 e1=-1.0040 e2=0.0312 e3=0.0576 e4=0.0233 e5=0.0860 e6=-0.0439 e7=0.0214 N=1.0 Q=0.333 imagStrength=1.0112 [通常の子]
Depth=12 Norm=0.4738 e0=-0.0040 e1=0.4607 e2=0.0552 e3=-0.0191 e4=0.0870 e5=0.0046 e6=0.0340 e7=0.0083 N=3.0 Q=1.000 imagStrength=0.4738 [共役の子]
Depth=10 Norm=0.4901 e0=-0.0795 e1=-0.4735 e2=-0.0604 e3=0.0196 e4=-0.0691 e5=-0.0033 e6=-0.0242 e7=-0.0178 N=3.0 Q=1.000 imagStrength=0.4836 [共役の子]
Depth=13 Norm=1.2267 e0=-0.9010 e1=-0.8229 e2=0.0135 e3=0.0670 e4=0.0083 e5=0.0841 e6=-0.0463 e7=-0.0428 N=0.0 Q=0.000 imagStrength=0.8324 [通常の子]
Depth=13 Norm=1.2546 e0=1.0232 e1=0.6967 e2=0.1214 e3=0.0538 e4=0.0171 e5=0.0758 e6=0.1300 e7=0.0334 N=0.0 Q=0.000 imagStrength=0.7260 [共役の子]
Depth=13 Norm=1.2575 e0=-0.8356 e1=-0.9142 e2=0.0381 e3=0.0523 e4=0.0239 e5=0.1038 e6=0.1767 e7=-0.0270 N=1.0 Q=0.333 imagStrength=0.9398 [共役の子]
Depth=12 Norm=0.4948 e0=0.2589 e1=0.4117 e2=0.0530 e3=-0.0089 e4=0.0705 e5=0.0029 e6=0.0189 e7=0.0055 N=3.0 Q=1.000 imagStrength=0.4217 [通常の子]
Depth=12 Norm=0.7765 e0=0.7670 e1=-0.0121 e2=0.0332 e3=-0.0034 e4=0.0608 e5=0.0053 e6=-0.0081 e7=-0.0982 N=2.0 Q=0.667 imagStrength=0.1212 [通常の子]
Depth=12 Norm=0.7695 e0=-0.7549 e1=0.0853 e2=0.0380 e3=-0.0034 e4=0.0608 e5=0.0053 e6=-0.0081 e7=-0.0982 N=2.0 Q=0.667 imagStrength=0.1488 [共役の子]
Depth=13 Norm=1.2195 e0=-0.1432 e1=-1.2038 e2=0.0230 e3=0.0579 e4=0.0161 e5=0.0942 e6=-0.0618 e7=0.0229 N=1.0 Q=0.333 imagStrength=1.2110 [共役の子]
Depth=11 Norm=0.5086 e0=0.1935 e1=0.4640 e2=0.0082 e3=-0.0334 e4=0.0126 e5=-0.0368 e6=0.0530 e7=-0.0188 N=3.0 Q=1.000 imagStrength=0.4703 [通常の子]
Depth=13 Norm=1.2689 e0=-0.8616 e1=-0.9021 e2=-0.0105 e3=0.0730 e4=0.0151 e5=0.1016 e6=-0.1891 e7=-0.0485 N=1.0 Q=0.333 imagStrength=0.9316 [共役の子]
Depth=13 Norm=1.2105 e0=-0.1486 e1=-1.1941 e2=0.0240 e3=0.0568 e4=0.0157 e5=0.0855 e6=-0.0605 e7=0.0466 N=1.0 Q=0.333 imagStrength=1.2013 [通常の子]
Depth=7 Norm=0.9539 e0=0.9511 e1=0.0705 e2=0.0151 e3=0.0030 e4=0.0089 e5=0.0002 e6=0.0029 e7=-0.0016 N=3.0 Q=1.000 imagStrength=0.0728 [通常の子]
Depth=13 Norm=1.2443 e0=0.4546 e1=-1.1291 e2=-0.0507 e3=-0.0365 e4=0.0322 e5=-0.1386 e6=0.1690 e7=0.1179 N=1.0 Q=0.333 imagStrength=1.1583 [共役の子]
Depth=12 Norm=0.8759 e0=0.8339 e1=-0.2479 e2=-0.0244 e3=0.0067 e4=-0.0894 e5=-0.0244 e6=-0.0146 e7=0.0294 N=3.0 Q=1.000 imagStrength=0.2679 [通常の子]
Depth=12 Norm=0.8244 e0=-0.7566 e1=0.3122 e2=0.0037 e3=0.0067 e4=-0.0894 e5=-0.0244 e6=-0.0146 e7=0.0294 N=3.0 Q=1.000 imagStrength=0.3275 [共役の子]
Depth=13 Norm=1.2738 e0=1.1952 e1=-0.4039 e2=-0.0260 e3=-0.0308 e4=0.0364 e5=-0.0917 e6=0.1390 e7=-0.0146 N=0.0 Q=0.000 imagStrength=0.4404 [通常の子]
Depth=11 Norm=0.8397 e0=-0.7751 e1=0.3146 e2=0.0170 e3=0.0114 e4=-0.0482 e5=0.0409 e6=-0.0298 e7=0.0011 N=3.0 Q=1.000 imagStrength=0.3229 [通常の子]
Depth=13 Norm=1.2492 e0=0.6859 e1=-1.0310 e2=-0.0830 e3=-0.0194 e4=0.0237 e5=-0.1315 e6=-0.0093 e7=0.0411 N=1.0 Q=0.333 imagStrength=1.0440 [共役の子]
Depth=13 Norm=1.2692 e0=1.2456 e1=-0.0546 e2=-0.0166 e3=-0.0271 e4=0.0272 e5=-0.1600 e6=0.0246 e7=0.1684 N=0.0 Q=0.000 imagStrength=0.2435 [共役の子]
Depth=13 Norm=1.2266 e0=-1.1986 e1=-0.1935 e2=-0.0240 e3=-0.0299 e4=0.0399 e5=-0.1095 e6=0.1091 e7=0.0591 N=0.0 Q=0.000 imagStrength=0.2605 [共役の子]
Depth=12 Norm=0.6264 e0=-0.2994 e1=0.5394 e2=0.0152 e3=0.0012 e4=-0.0930 e5=-0.0246 e6=-0.0388 e7=0.0282 N=3.0 Q=1.000 imagStrength=0.5502 [通常の子]
Depth=13 Norm=1.2696 e0=1.2648 e1=-0.0241 e2=-0.0286 e3=-0.0213 e4=0.0334 e5=-0.0880 e6=-0.0193 e7=-0.0328 N=0.0 Q=0.000 imagStrength=0.1103 [通常の子]
Depth=13 Norm=1.2311 e0=-1.1839 e1=0.2816 e2=-0.0122 e3=-0.0187 e4=0.0214 e5=-0.1362 e6=-0.0999 e7=0.0715 N=0.0 Q=0.000 imagStrength=0.3375 [通常の子]
Depth=11 Norm=0.9340 e0=0.9253 e1=-0.1080 e2=-0.0031 e3=0.0111 e4=-0.0478 e5=0.0412 e6=0.0100 e7=-0.0156 N=3.0 Q=1.000 imagStrength=0.1270 [共役の子]
Depth=10 Norm=0.7528 e0=-0.7357 e1=-0.1420 e2=0.0071 e3=-0.0067 e4=-0.0352 e5=-0.0270 e6=0.0058 e7=0.0557 N=3.0 Q=1.000 imagStrength=0.1593 [通常の子]
Depth=13 Norm=1.1850 e0=0.1069 e1=-1.1492 e2=-0.1042 e3=-0.0244 e4=-0.0573 e5=0.0617 e6=-0.2277 e7=-0.0412 N=1.0 Q=0.333 imagStrength=1.1801 [通常の子]
Depth=12 Norm=0.6830 e0=0.6692 e1=0.1238 e2=-0.0115 e3=-0.0029 e4=0.0415 e5=0.0266 e6=-0.0058 e7=-0.0261 N=2.0 Q=0.667 imagStrength=0.1364 [共役の子]
Depth=9 Norm=0.4940 e0=-0.2038 e1=-0.4461 e2=-0.0322 e3=-0.0133 e4=-0.0356 e5=0.0289 e6=-0.0051 e7=-0.0148 N=3.0 Q=1.000 imagStrength=0.4500 [共役の子]
Depth=12 Norm=0.4854 e0=0.2503 e1=0.4082 e2=0.0033 e3=0.0145 e4=0.0246 e5=0.0259 e6=-0.0106 e7=-0.0687 N=3.0 Q=1.000 imagStrength=0.4159 [通常の子]
Depth=13 Norm=1.2399 e0=1.0057 e1=0.7141 e2=0.0391 e3=-0.0427 e4=-0.0530 e5=0.0444 e6=-0.0624 e7=0.0626 N=0.0 Q=0.000 imagStrength=0.7252 [共役の子]
Depth=13 Norm=1.2437 e0=-0.8326 e1=-0.9176 e2=-0.0455 e3=-0.0443 e4=-0.0464 e5=0.0705 e6=-0.0188 e7=0.0062 N=0.0 Q=0.000 imagStrength=0.9239 [共役の子]
Depth=13 Norm=1.2126 e0=-1.1869 e1=0.1693 e2=-0.0056 e3=-0.0381 e4=-0.0465 e5=0.1026 e6=0.0216 e7=-0.1358 N=0.0 Q=0.000 imagStrength=0.2485 [共役の子]
Depth=12 Norm=0.6280 e0=-0.3122 e1=0.5408 e2=0.0098 e3=0.0068 e4=0.0464 e5=0.0261 e6=0.0320 e7=-0.0212 N=3.0 Q=1.000 imagStrength=0.5449 [通常の子]
Depth=12 Norm=0.5842 e0=0.2356 e1=-0.5287 e2=-0.0439 e3=0.0068 e4=0.0464 e5=0.0261 e6=0.0320 e7=-0.0212 N=3.0 Q=1.000 imagStrength=0.5346 [共役の子]
Depth=13 Norm=1.2256 e0=-0.8780 e1=-0.8461 e2=-0.0440 e3=-0.0440 e4=-0.0521 e5=0.0356 e6=0.0672 e7=0.0540 N=0.0 Q=0.000 imagStrength=0.8551 [通常の子]
Depth=11 Norm=0.7418 e0=0.6983 e1=0.2427 e2=0.0148 e3=0.0186 e4=0.0471 e5=-0.0169 e6=-0.0219 e7=0.0105 N=3.0 Q=1.000 imagStrength=0.2501 [通常の子]
Depth=13 Norm=1.2957 e0=-1.2670 e1=-0.2293 e2=-0.0378 e3=-0.0377 e4=-0.0435 e5=0.0808 e6=0.0649 e7=-0.0726 N=0.0 Q=0.000 imagStrength=0.2708 [共役の子]
Depth=11 Norm=0.6846 e0=0.6464 e1=0.1958 e2=0.0602 e3=0.0641 e4=0.0032 e5=0.0627 e6=0.0224 e7=-0.0165 N=3.0 Q=1.000 imagStrength=0.2254 [通常の子]
Depth=13 Norm=1.1750 e0=-1.1386 e1=-0.1418 e2=-0.1820 e3=-0.1023 e4=-0.0570 e5=-0.1132 e6=-0.0555 e7=-0.0355 N=0.0 Q=0.000 imagStrength=0.2900 [共役の子]
Depth=13 Norm=1.1069 e0=-0.7938 e1=-0.7134 e2=-0.1887 e3=-0.1079 e4=-0.0650 e5=-0.1564 e6=-0.0598 e7=0.0811 N=1.0 Q=0.333 imagStrength=0.7714 [通常の子]
Depth=10 Norm=0.5617 e0=-0.4656 e1=-0.2871 e2=0.0510 e3=-0.0563 e4=0.0953 e5=-0.0067 e6=0.0055 e7=0.0374 N=3.0 Q=1.000 imagStrength=0.3142 [通常の子]
Depth=13 Norm=1.1129 e0=-0.3130 e1=-1.0058 e2=-0.2345 e3=-0.0962 e4=-0.0688 e5=-0.1348 e6=-0.2035 e7=-0.0216 N=1.0 Q=0.333 imagStrength=1.0680 [通常の子]
Depth=12 Norm=0.4942 e0=0.3928 e1=0.2705 e2=-0.0471 e3=0.0440 e4=-0.1092 e5=0.0086 e6=-0.0011 e7=-0.0246 N=3.0 Q=1.000 imagStrength=0.2999 [共役の子]
Depth=8 Norm=0.6945 e0=-0.6456 e1=-0.2346 e2=-0.0357 e3=0.0835 e4=-0.0288 e5=0.0260 e6=0.0270 e7=-0.0007 N=3.0 Q=1.000 imagStrength=0.2560 [共役の子]
Depth=11 Norm=0.6117 e0=0.3466 e1=-0.4935 e2=0.0242 e3=0.0647 e4=0.0066 e5=0.0553 e6=-0.0382 e7=0.0332 N=3.0 Q=1.000 imagStrength=0.5040 [共役の子]
Depth=13 Norm=1.1949 e0=0.3294 e1=-1.1066 e2=-0.2418 e3=-0.1011 e4=-0.0613 e5=-0.1277 e6=0.0205 e7=-0.0744 N=1.0 Q=0.333 imagStrength=1.1486 [通常の子]
Depth=13 Norm=1.2427 e0=-0.1002 e1=1.2177 e2=-0.1228 e3=-0.1011 e4=-0.0611 e5=-0.1255 e6=0.0237 e7=-0.0785 N=1.0 Q=0.333 imagStrength=1.2386 [通常の子]
Depth=13 Norm=1.1564 e0=-0.6019 e1=-0.9359 e2=-0.1852 e3=-0.1166 e4=-0.0557 e5=-0.1135 e6=0.1804 e7=-0.0498 N=1.0 Q=0.333 imagStrength=0.9874 [共役の子]
Depth=12 Norm=0.5925 e0=0.5377 e1=0.2052 e2=-0.0495 e3=0.0593 e4=-0.1117 e5=0.0071 e6=0.0362 e7=0.0032 N=3.0 Q=1.000 imagStrength=0.2489 [通常の子]
Depth=12 Norm=0.6028 e0=-0.5701 e1=-0.1287 e2=-0.0663 e3=0.0593 e4=-0.1117 e5=0.0071 e6=0.0362 e7=0.0032 N=3.0 Q=1.000 imagStrength=0.1958 [共役の子]
Depth=13 Norm=1.2461 e0=0.9483 e1=-0.7385 e2=-0.2110 e3=-0.0996 e4=-0.0674 e5=-0.1649 e6=-0.1282 e7=0.0744 N=1.0 Q=0.333 imagStrength=0.8084 [共役の子]
Depth=13 Norm=1.1779 e0=-1.0190 e1=0.5456 e2=-0.1455 e3=-0.1023 e4=-0.0553 e5=-0.1169 e6=-0.0478 e7=-0.0296 N=0.0 Q=0.000 imagStrength=0.5909 [共役の子]
Depth=12 Norm=0.8361 e0=-0.6956 e1=0.4428 e2=-0.0384 e3=0.0458 e4=-0.1233 e5=0.0063 e6=-0.0185 e7=-0.0037 N=3.0 Q=1.000 imagStrength=0.4639 [通常の子]
Depth=13 Norm=1.2583 e0=0.9778 e1=-0.7171 e2=-0.2233 e3=-0.0956 e4=-0.0621 e5=-0.1110 e6=-0.1762 e7=-0.0833 N=1.0 Q=0.333 imagStrength=0.7920 [通常の子]
Depth=13 Norm=1.2638 e0=-0.7855 e1=0.9375 e2=-0.1377 e3=-0.0943 e4=-0.0686 e5=-0.1385 e6=-0.2216 e7=-0.0247 N=1.0 Q=0.333 imagStrength=0.9901 [通常の子]
Depth=11 Norm=0.8742 e0=0.7777 e1=-0.3849 e2=0.0312 e3=0.0635 e4=0.0065 e5=0.0576 e6=0.0539 e7=-0.0039 N=3.0 Q=1.000 imagStrength=0.3993 [共役の子]
Depth=11 Norm=0.5066 e0=0.1109 e1=-0.4832 e2=0.0246 e3=0.0645 e4=0.0051 e5=0.0564 e6=-0.0405 e7=0.0344 N=3.0 Q=1.000 imagStrength=0.4943 [通常の子]
Depth=13 Norm=1.1804 e0=0.5330 e1=1.0158 e2=-0.0803 e3=-0.1188 e4=-0.0557 e5=-0.1306 e6=0.1914 e7=-0.0093 N=1.0 Q=0.333 imagStrength=1.0532 [共役の子]
Depth=13 Norm=1.2277 e0=-0.0906 e1=1.2027 e2=-0.1229 e3=-0.1009 e4=-0.0599 e5=-0.1283 e6=0.0314 e7=-0.0792 N=1.0 Q=0.333 imagStrength=1.2243 [通常の子]
Depth=10 Norm=0.9394 e0=0.9141 e1=-0.1735 e2=0.0563 e3=-0.0543 e4=0.0861 e5=-0.0040 e6=-0.0306 e7=-0.0472 N=3.0 Q=1.000 imagStrength=0.2163 [通常の子]
Depth=13 Norm=1.2752 e0=-0.8173 e1=0.9419 e2=-0.0855 e3=-0.1165 e4=-0.0594 e5=-0.1361 e6=0.1671 e7=-0.0023 N=1.0 Q=0.333 imagStrength=0.9788 [通常の子]
Depth=12 Norm=0.8448 e0=-0.8155 e1=0.1666 e2=-0.0513 e3=0.0604 e4=-0.1148 e5=0.0063 e6=0.0368 e7=0.0021 N=3.0 Q=1.000 imagStrength=0.2205 [共役の子]
Depth=6 Norm=0.9690 e0=0.9132 e1=-0.3203 e2=-0.0440 e3=-0.0105 e4=-0.0048 e5=-0.0032 e6=-0.0072 e7=-0.0119 N=3.0 Q=1.000 imagStrength=0.3239 [共役の子]
Depth=13 Norm=1.2452 e0=0.5081 e1=1.0961 e2=-0.0442 e3=-0.0000 e4=-0.0715 e5=0.1154 e6=-0.1984 e7=-0.1762 N=1.0 Q=0.333 imagStrength=1.1368 [通常の子]
Depth=11 Norm=0.4993 e0=-0.3061 e1=-0.3775 e2=0.0123 e3=0.0147 e4=0.0702 e5=-0.0311 e6=0.0770 e7=0.0301 N=3.0 Q=1.000 imagStrength=0.3945 [通常の子]
Depth=13 Norm=1.1784 e0=0.9819 e1=0.6262 e2=-0.0267 e3=-0.0131 e4=-0.0738 e5=0.0883 e6=-0.1156 e7=-0.0699 N=0.0 Q=0.000 imagStrength=0.6516 [共役の子]
Depth=12 Norm=0.4622 e0=-0.0534 e1=-0.4482 e2=-0.0357 e3=0.0386 e4=0.0413 e5=0.0331 e6=0.0229 e7=-0.0618 N=3.0 Q=1.000 imagStrength=0.4591 [共役の子]
Depth=10 Norm=0.5055 e0=0.2381 e1=0.4330 e2=0.0307 e3=-0.0337 e4=-0.0547 e5=-0.0318 e6=-0.0314 e7=0.0653 N=3.0 Q=1.000 imagStrength=0.4459 [共役の子]
Depth=13 Norm=1.2455 e0=0.7314 e1=0.9954 e2=-0.0132 e3=-0.0170 e4=-0.0632 e5=0.1065 e6=-0.0199 e7=-0.0959 N=1.0 Q=0.333 imagStrength=1.0081 [通常の子]
Depth=13 Norm=1.2692 e0=1.2358 e1=0.0048 e2=-0.0822 e3=-0.0082 e4=-0.0666 e5=0.1362 e6=-0.0683 e7=-0.2220 N=0.0 Q=0.000 imagStrength=0.2894 [通常の子]
Depth=13 Norm=1.2296 e0=-1.1810 e1=0.2508 e2=-0.0690 e3=-0.0056 e4=-0.0793 e5=0.0853 e6=-0.1534 e7=-0.1119 N=0.0 Q=0.000 imagStrength=0.3425 [通常の子]
Depth=11 Norm=0.9264 e0=0.9139 e1=-0.0996 e2=0.0252 e3=0.0153 e4=0.0719 e5=-0.0343 e6=0.0557 e7=0.0521 N=3.0 Q=1.000 imagStrength=0.1515 [共役の子]
Depth=12 Norm=0.5487 e0=0.2035 e1=-0.5026 e2=-0.0396 e3=0.0303 e4=0.0501 e5=0.0318 e6=0.0331 e7=-0.0000 N=3.0 Q=1.000 imagStrength=0.5096 [通常の子]
Depth=12 Norm=0.4852 e0=-0.0098 e1=0.4792 e2=0.0097 e3=0.0303 e4=0.0501 e5=0.0318 e6=0.0331 e7=-0.0000 N=3.0 Q=1.000 imagStrength=0.4851 [共役の子]
Depth=13 Norm=1.3265 e0=1.3190 e1=-0.0232 e2=-0.0788 e3=-0.0112 e4=-0.0743 e5=0.0607 e6=-0.0577 e7=-0.0230 N=0.0 Q=0.000 imagStrength=0.1412 [共役の子]
Depth=9 Norm=0.7701 e0=-0.6160 e1=0.4601 e2=-0.0072 e3=-0.0049 e4=0.0204 e5=-0.0367 e6=-0.0090 e7=-0.0074 N=3.0 Q=1.000 imagStrength=0.4623 [通常の子]
Depth=12 Norm=0.7665 e0=-0.7574 e1=0.0550 e2=-0.0058 e3=0.0149 e4=-0.0606 e5=-0.0176 e6=0.0202 e7=0.0786 N=2.0 Q=0.667 imagStrength=0.1177 [通常の子]
Depth=13 Norm=1.2274 e0=-0.0103 e1=-1.2114 e2=-0.1605 e3=0.0063 e4=0.0120 e5=-0.1009 e6=0.0183 e7=-0.0491 N=1.0 Q=0.333 imagStrength=1.2274 [共役の子]
Depth=13 Norm=1.1675 e0=-0.1288 e1=1.1532 e2=-0.0397 e3=0.0057 e4=0.0147 e5=-0.0895 e6=0.0369 e7=-0.0731 N=1.0 Q=0.333 imagStrength=1.1603 [共役の子]
Depth=11 Norm=0.8677 e0=0.7720 e1=-0.3911 e2=0.0087 e3=0.0089 e4=-0.0325 e5=0.0319 e6=-0.0226 e7=0.0343 N=3.0 Q=1.000 imagStrength=0.3961 [共役の子]
Depth=13 Norm=1.2435 e0=0.9671 e1=-0.7571 e2=-0.1360 e3=0.0072 e4=0.0144 e5=-0.0737 e6=0.0265 e7=-0.1133 N=0.0 Q=0.000 imagStrength=0.7816 [通常の子]
Depth=13 Norm=1.2509 e0=-0.7876 e1=0.9636 e2=-0.0469 e3=0.0087 e4=0.0083 e5=-0.0986 e6=-0.0146 e7=-0.0602 N=1.0 Q=0.333 imagStrength=0.9718 [通常の子]
Depth=13 Norm=1.2137 e0=-1.1938 e1=-0.1109 e2=-0.0869 e3=0.0035 e4=0.0084 e5=-0.1288 e6=-0.0641 e7=0.0849 N=0.0 Q=0.000 imagStrength=0.2187 [通常の子]
Depth=11 Norm=0.9251 e0=0.9183 e1=-0.0925 e2=0.0251 e3=0.0093 e4=-0.0381 e5=0.0403 e6=0.0034 e7=-0.0132 N=3.0 Q=1.000 imagStrength=0.1119 [通常の子]
Depth=13 Norm=1.2654 e0=-1.1254 e1=0.5693 e2=-0.0480 e3=-0.0010 e4=0.0219 e5=-0.0765 e6=0.0374 e7=-0.0242 N=0.0 Q=0.000 imagStrength=0.5786 [共役の子]
Depth=12 Norm=0.8426 e0=-0.7138 e1=0.4349 e2=0.0162 e3=0.0347 e4=-0.0738 e5=-0.0146 e6=0.0098 e7=-0.0640 N=3.0 Q=1.000 imagStrength=0.4478 [共役の子]
Depth=10 Norm=0.8590 e0=0.7302 e1=-0.4452 e2=-0.0111 e3=-0.0297 e4=0.0670 e5=0.0177 e6=0.0021 e7=0.0241 N=3.0 Q=1.000 imagStrength=0.4523 [共役の子]
Depth=13 Norm=1.2990 e0=-1.2546 e1=0.2973 e2=-0.0518 e3=0.0016 e4=0.0058 e5=-0.1075 e6=-0.1000 e7=0.0240 N=0.0 Q=0.000 imagStrength=0.3365 [通常の子]
Depth=8 Norm=0.7112 e0=-0.6849 e1=-0.1794 e2=-0.0305 e3=-0.0236 e4=-0.0096 e5=-0.0106 e6=-0.0530 e7=-0.0062 N=3.0 Q=1.000 imagStrength=0.1916 [通常の子]
Depth=11 Norm=0.6251 e0=0.4129 e1=-0.4565 e2=-0.0557 e3=0.0001 e4=-0.0492 e5=0.0053 e6=-0.0752 e7=-0.0259 N=3.0 Q=1.000 imagStrength=0.4693 [共役の子]
Depth=13 Norm=1.1294 e0=0.4420 e1=-1.0308 e2=-0.0034 e3=-0.0192 e4=0.0607 e5=-0.0331 e6=0.0769 e7=0.0812 N=1.0 Q=0.333 imagStrength=1.0393 [通常の子]
Depth=13 Norm=1.1712 e0=-0.2209 e1=1.1372 e2=0.1081 e3=-0.0189 e4=0.0600 e5=-0.0353 e6=0.0728 e7=0.0866 N=1.0 Q=0.333 imagStrength=1.1502 [通常の子]
Depth=13 Norm=1.0968 e0=-0.4677 e1=-0.9545 e2=0.0456 e3=-0.0352 e4=0.0667 e5=-0.0269 e6=0.2245 e7=0.1198 N=1.0 Q=0.333 imagStrength=0.9921 [共役の子]
Depth=12 Norm=0.5988 e0=0.5776 e1=0.1456 e2=0.0056 e3=-0.0239 e4=-0.0090 e5=-0.0253 e6=-0.0293 e7=0.0398 N=2.0 Q=0.667 imagStrength=0.1580 [通常の子]
Depth=12 Norm=0.6055 e0=-0.5976 e1=-0.0755 e2=-0.0055 e3=-0.0239 e4=-0.0090 e5=-0.0253 e6=-0.0293 e7=0.0398 N=2.0 Q=0.667 imagStrength=0.0973 [共役の子]
Depth=12 Norm=0.4087 e0=-0.1205 e1=-0.3801 e2=-0.0212 e3=-0.0271 e4=-0.0224 e5=-0.0248 e6=-0.0756 e7=-0.0073 N=3.0 Q=1.000 imagStrength=0.3905 [共役の子]
Depth=10 Norm=0.4730 e0=0.2821 e1=0.3702 e2=0.0228 e3=0.0321 e4=0.0193 e5=0.0208 e6=0.0690 e7=0.0053 N=3.0 Q=1.000 imagStrength=0.3797 [共役の子]
Depth=13 Norm=1.1252 e0=0.5881 e1=0.9321 e2=0.1304 e3=-0.0309 e4=0.0676 e5=-0.0311 e6=0.0452 e7=0.1610 N=1.0 Q=0.333 imagStrength=0.9593 [通常の子]
Depth=13 Norm=1.0865 e0=-0.7553 e1=-0.7640 e2=0.0111 e3=-0.0172 e4=0.0596 e5=-0.0251 e6=-0.1121 e7=0.0954 N=0.0 Q=0.000 imagStrength=0.7810 [共役の子]
Depth=13 Norm=1.0738 e0=0.6587 e1=0.8164 e2=0.0926 e3=-0.0160 e4=0.0549 e5=-0.0435 e6=-0.1432 e7=0.1357 N=1.0 Q=0.333 imagStrength=0.8480 [共役の子]
Depth=12 Norm=0.4091 e0=-0.2965 e1=-0.2693 e2=-0.0160 e3=-0.0390 e4=-0.0080 e5=-0.0235 e6=-0.0664 e7=0.0107 N=2.0 Q=0.667 imagStrength=0.2818 [通常の子]
Depth=11 Norm=0.8228 e0=-0.7826 e1=0.2466 e2=-0.0186 e3=0.0035 e4=0.0281 e5=-0.0442 e6=0.0127 e7=-0.0201 N=3.0 Q=1.000 imagStrength=0.2540 [通常の子]
Depth=13 Norm=1.2036 e0=0.7933 e1=-0.8909 e2=0.0167 e3=-0.0267 e4=-0.0068 e5=0.0906 e6=-0.1096 e7=0.0647 N=1.0 Q=0.333 imagStrength=0.9051 [共役の子]
Depth=13 Norm=1.2368 e0=1.2039 e1=-0.2368 e2=0.0690 e3=-0.0359 e4=0.0058 e5=0.1329 e6=0.0205 e7=-0.0059 N=0.0 Q=0.000 imagStrength=0.2833 [通常の子]
Depth=10 Norm=0.5334 e0=-0.1953 e1=0.4879 e2=0.0259 e3=0.0304 e4=-0.0757 e5=-0.0144 e6=0.0280 e7=-0.0014 N=3.0 Q=1.000 imagStrength=0.4963 [通常の子]
Depth=13 Norm=1.1841 e0=1.0633 e1=0.4876 e2=0.1006 e3=-0.0379 e4=0.0096 e5=0.1137 e6=0.0786 e7=0.0543 N=0.0 Q=0.000 imagStrength=0.5210 [通常の子]
Depth=12 Norm=0.6105 e0=0.3354 e1=-0.5006 e2=-0.0321 e3=-0.0286 e4=0.0750 e5=0.0102 e6=-0.0393 e7=0.0219 N=3.0 Q=1.000 imagStrength=0.5101 [共役の子]
Depth=8 Norm=0.4769 e0=-0.0827 e1=0.4658 e2=0.0067 e3=-0.0236 e4=-0.0096 e5=-0.0106 e6=-0.0530 e7=-0.0062 N=3.0 Q=1.000 imagStrength=0.4697 [共役の子]
Depth=11 Norm=0.5177 e0=0.3899 e1=0.3345 e2=-0.0138 e3=0.0034 e4=0.0274 e5=-0.0428 e6=0.0208 e7=-0.0294 N=3.0 Q=1.000 imagStrength=0.3406 [共役の子]
Depth=13 Norm=1.1186 e0=0.6005 e1=0.9250 e2=0.1320 e3=-0.0363 e4=0.0044 e5=0.1237 e6=0.0001 e7=0.0321 N=1.0 Q=0.333 imagStrength=0.9438 [通常の子]
Depth=13 Norm=1.0456 e0=-0.6866 e1=-0.7728 e2=0.0457 e3=-0.0345 e4=-0.0035 e5=0.0916 e6=-0.0531 e7=0.1009 N=0.0 Q=0.000 imagStrength=0.7886 [通常の子]
Depth=13 Norm=1.1843 e0=1.1633 e1=0.1115 e2=0.0731 e3=-0.0316 e4=-0.0036 e5=0.0687 e6=-0.0623 e7=0.1478 N=0.0 Q=0.000 imagStrength=0.2219 [共役の子]
Depth=12 Norm=0.4508 e0=0.0906 e1=-0.4301 e2=-0.0287 e3=-0.0313 e4=0.0765 e5=0.0106 e6=-0.0448 e7=0.0171 N=3.0 Q=1.000 imagStrength=0.4416 [通常の子]
Depth=12 Norm=0.4207 e0=0.0842 e1=0.4006 e2=0.0130 e3=-0.0313 e4=0.0765 e5=0.0106 e6=-0.0448 e7=0.0171 N=3.0 Q=1.000 imagStrength=0.4122 [共役の子]
Depth=13 Norm=1.2151 e0=0.0507 e1=1.1689 e2=0.1615 e3=-0.0316 e4=0.0696 e5=-0.0211 e6=0.2483 e7=0.1169 N=1.0 Q=0.333 imagStrength=1.2141 [通常の子]
Depth=13 Norm=1.1546 e0=-0.1890 e1=-1.1029 e2=0.0449 e3=-0.0310 e4=0.0663 e5=-0.0353 e6=0.2254 e7=0.1465 N=1.0 Q=0.333 imagStrength=1.1390 [通常の子]
Depth=11 Norm=0.4910 e0=-0.0215 e1=0.4812 e2=-0.0096 e3=-0.0024 e4=-0.0493 e5=0.0025 e6=-0.0783 e7=-0.0214 N=3.0 Q=1.000 imagStrength=0.4906 [共役の子]
Depth=12 Norm=0.8132 e0=-0.7964 e1=0.0979 e2=0.0038 e3=-0.0459 e4=0.0090 e5=-0.0261 e6=-0.0325 e7=0.1161 N=2.0 Q=0.667 imagStrength=0.1643 [通常の子]
Depth=12 Norm=0.9026 e0=0.8754 e1=-0.1757 e2=-0.0099 e3=-0.0459 e4=0.0090 e5=-0.0261 e6=-0.0325 e7=0.1161 N=3.0 Q=1.000 imagStrength=0.2199 [共役の子]
Depth=13 Norm=1.2243 e0=0.1122 e1=1.2069 e2=0.1127 e3=-0.0135 e4=0.0628 e5=-0.0276 e6=0.0826 e7=0.0724 N=1.0 Q=0.333 imagStrength=1.2191 [共役の子]
Depth=10 Norm=0.7968 e0=-0.6740 e1=0.4161 e2=0.0226 e3=0.0331 e4=0.0166 e5=0.0209 e6=0.0710 e7=0.0115 N=3.0 Q=1.000 imagStrength=0.4250 [通常の子]
Depth=13 Norm=1.2124 e0=1.1777 e1=-0.2419 e2=0.0481 e3=-0.0174 e4=0.0686 e5=-0.0225 e6=-0.0354 e7=0.1245 N=0.0 Q=0.000 imagStrength=0.2883 [通常の子]
Depth=12 Norm=0.8641 e0=0.7423 e1=-0.4308 e2=-0.0222 e3=-0.0390 e4=-0.0123 e5=-0.0253 e6=-0.0816 e7=0.0253 N=3.0 Q=1.000 imagStrength=0.4424 [共役の子]
Depth=9 Norm=0.8931 e0=0.8053 e1=-0.3790 e2=0.0130 e3=-0.0073 e4=0.0401 e5=-0.0132 e6=0.0135 e7=0.0576 N=3.0 Q=1.000 imagStrength=0.3862 [共役の子]
Depth=12 Norm=0.8995 e0=0.8787 e1=-0.1689 e2=-0.0071 e3=-0.0220 e4=-0.0155 e5=-0.0234 e6=-0.0630 e7=-0.0557 N=3.0 Q=1.000 imagStrength=0.1922 [通常の子]
Depth=13 Norm=1.2467 e0=-0.3409 e1=1.1789 e2=0.1561 e3=-0.0267 e4=0.0669 e5=-0.0157 e6=0.0064 e7=0.1350 N=1.0 Q=0.333 imagStrength=1.1992 [共役の子]
Depth=13 Norm=1.3172 e0=0.5602 e1=-1.1726 e2=0.0357 e3=-0.0252 e4=0.0602 e5=-0.0431 e6=-0.0386 e7=0.1932 N=1.0 Q=0.333 imagStrength=1.1922 [共役の子]
Depth=13 Norm=1.2096 e0=0.9574 e1=0.7165 e2=0.1042 e3=-0.0247 e4=0.0040 e5=0.1394 e6=-0.0405 e7=-0.0252 N=0.0 Q=0.000 imagStrength=0.7393 [通常の子]
Depth=11 Norm=0.6475 e0=-0.6218 e1=-0.1653 e2=-0.0402 e3=0.0011 e4=0.0298 e5=-0.0474 e6=0.0139 e7=-0.0197 N=3.0 Q=1.000 imagStrength=0.1807 [通常の子]
Depth=13 Norm=1.1413 e0=1.1281 e1=0.0336 e2=0.0871 e3=-0.0285 e4=-0.0048 e5=0.0966 e6=-0.0580 e7=0.0871 N=0.0 Q=0.000 imagStrength=0.1727 [共役の子]
Depth=12 Norm=0.6025 e0=0.3322 e1=-0.4923 e2=-0.0294 e3=-0.0296 e4=0.0814 e5=0.0110 e6=-0.0382 e7=0.0196 N=3.0 Q=1.000 imagStrength=0.5027 [共役の子]
Depth=10 Norm=0.5258 e0=-0.1938 e1=0.4794 e2=0.0228 e3=0.0315 e4=-0.0812 e5=-0.0151 e6=0.0271 e7=0.0006 N=3.0 Q=1.000 imagStrength=0.4888 [共役の子]
Depth=13 Norm=1.1643 e0=1.0457 e1=0.4766 e2=0.1042 e3=-0.0331 e4=0.0099 e5=0.1218 e6=0.0731 e7=0.0514 N=0.0 Q=0.000 imagStrength=0.5119 [通常の子]
Depth=13 Norm=1.2227 e0=1.0681 e1=-0.5697 e2=0.0283 e3=-0.0209 e4=0.0019 e5=0.1338 e6=-0.1013 e7=-0.0133 N=0.0 Q=0.000 imagStrength=0.5951 [通常の子]
Depth=13 Norm=1.2173 e0=-0.9088 e1=0.7801 e2=0.0976 e3=-0.0189 e4=-0.0061 e5=0.1021 e6=-0.1546 e7=0.0557 N=1.0 Q=0.333 imagStrength=0.8099 [通常の子]
Depth=11 Norm=0.8897 e0=0.8276 e1=-0.3163 e2=-0.0474 e3=0.0011 e4=0.0294 e5=-0.0466 e6=0.0237 e7=-0.0273 N=3.0 Q=1.000 imagStrength=0.3265 [共役の子]
Depth=12 Norm=0.7331 e0=0.5536 e1=-0.4703 e2=-0.0282 e3=-0.0272 e4=0.0787 e5=0.0112 e6=-0.0434 e7=0.0010 N=3.0 Q=1.000 imagStrength=0.4806 [通常の子]
Depth=12 Norm=0.6339 e0=-0.3957 e1=0.4857 e2=0.0197 e3=-0.0272 e4=0.0787 e5=0.0112 e6=-0.0434 e7=0.0010 N=3.0 Q=1.000 imagStrength=0.4952 [共役の子]
Depth=13 Norm=1.2712 e0=1.1128 e1=-0.5827 e2=0.0543 e3=-0.0319 e4=-0.0018 e5=0.0733 e6=-0.0243 e7=0.1677 N=0.0 Q=0.000 imagStrength=0.6145 [共役の子]
Depth=7 Norm=0.6516 e0=0.5506 e1=0.3426 e2=0.0525 e3=0.0110 e4=0.0093 e5=0.0103 e6=0.0207 e7=-0.0240 N=3.0 Q=1.000 imagStrength=0.3485 [通常の子]
Depth=13 Norm=1.2380 e0=0.9905 e1=-0.6423 e2=-0.0990 e3=-0.1255 e4=0.0212 e5=-0.2232 e6=0.0673 e7=0.2420 N=1.0 Q=0.333 imagStrength=0.7426 [共役の子]
Depth=12 Norm=0.7478 e0=0.5862 e1=-0.4265 e2=-0.0782 e3=0.0128 e4=-0.1426 e5=-0.0295 e6=-0.0654 e7=0.0445 N=3.0 Q=1.000 imagStrength=0.4643 [通常の子]
Depth=12 Norm=0.6590 e0=-0.4464 e1=0.4542 e2=-0.0340 e3=0.0128 e4=-0.1426 e5=-0.0295 e6=-0.0654 e7=0.0445 N=3.0 Q=1.000 imagStrength=0.4848 [共役の子]
Depth=13 Norm=1.2453 e0=1.1820 e1=0.3281 e2=-0.0615 e3=-0.1201 e4=0.0280 e5=-0.1522 e6=0.0355 e7=0.0489 N=0.0 Q=0.000 imagStrength=0.3917 [通常の子]
Depth=11 Norm=0.7791 e0=-0.7700 e1=0.0188 e2=0.0123 e3=0.0567 e4=-0.0624 e5=0.0678 e6=-0.0145 e7=-0.0418 N=3.0 Q=1.000 imagStrength=0.1190 [通常の子]
Depth=13 Norm=1.1882 e0=1.0735 e1=-0.4092 e2=-0.0978 e3=-0.1178 e4=0.0155 e5=-0.2023 e6=-0.0446 e7=0.1591 N=0.0 Q=0.000 imagStrength=0.5093 [共役の子]
Depth=13 Norm=1.2502 e0=1.0108 e1=0.6351 e2=-0.0177 e3=-0.1321 e4=0.0240 e5=-0.2128 e6=0.1599 e7=0.2206 N=1.0 Q=0.333 imagStrength=0.7357 [共役の子]
Depth=13 Norm=1.2494 e0=-0.8582 e1=-0.8340 e2=-0.0926 e3=-0.1339 e4=0.0322 e5=-0.1815 e6=0.2122 e7=0.1530 N=1.0 Q=0.333 imagStrength=0.9080 [共役の子]
Depth=12 Norm=0.4990 e0=0.2142 e1=0.4193 e2=-0.0357 e3=0.0166 e4=-0.1422 e5=-0.0292 e6=-0.0528 e7=0.0434 N=3.0 Q=1.000 imagStrength=0.4507 [通常の子]
Depth=13 Norm=1.2395 e0=1.0229 e1=0.6591 e2=-0.0348 e3=-0.1239 e4=0.0282 e5=-0.1540 e6=0.1094 e7=0.0518 N=0.0 Q=0.000 imagStrength=0.7001 [通常の子]
Depth=13 Norm=1.1738 e0=-1.0512 e1=-0.4268 e2=-0.0905 e3=-0.1211 e4=0.0156 e5=-0.2037 e6=0.0261 e7=0.1595 N=0.0 Q=0.000 imagStrength=0.5223 [通常の子]
Depth=11 Norm=0.7374 e0=0.7019 e1=0.1922 e2=0.0204 e3=0.0567 e4=-0.0616 e5=0.0676 e6=-0.0343 e7=-0.0316 N=3.0 Q=1.000 imagStrength=0.2261 [共役の子]
Depth=10 Norm=0.9003 e0=-0.8798 e1=0.1585 e2=0.0710 e3=-0.0189 e4=0.0340 e5=-0.0136 e6=0.0509 e7=0.0448 N=3.0 Q=1.000 imagStrength=0.1910 [通常の子]
Depth=13 Norm=1.2088 e0=0.7838 e1=-0.8764 e2=-0.1442 e3=-0.1228 e4=-0.0427 e5=-0.0401 e6=-0.1899 e7=0.0580 N=1.0 Q=0.333 imagStrength=0.9203 [通常の子]
Depth=12 Norm=0.8930 e0=0.8695 e1=-0.1763 e2=-0.0716 e3=0.0051 e4=-0.0419 e5=0.0110 e6=-0.0568 e7=-0.0030 N=3.0 Q=1.000 imagStrength=0.2033 [共役の子]
Depth=9 Norm=0.6269 e0=0.3550 e1=-0.5090 e2=-0.0589 e3=-0.0579 e4=-0.0140 e5=-0.0091 e6=0.0044 e7=0.0289 N=3.0 Q=1.000 imagStrength=0.5168 [共役の子]
Depth=12 Norm=0.7071 e0=0.6780 e1=0.1553 e2=-0.0531 e3=0.0286 e4=-0.0551 e5=0.0116 e6=-0.0487 e7=-0.0841 N=3.0 Q=1.000 imagStrength=0.2009 [通常の子]
Depth=13 Norm=1.2641 e0=0.4299 e1=1.1705 e2=0.0150 e3=-0.1413 e4=-0.0383 e5=-0.0455 e6=-0.0432 e7=0.1322 N=1.0 Q=0.333 imagStrength=1.1888 [共役の子]
Depth=13 Norm=1.3083 e0=-0.2017 e1=-1.2715 e2=-0.1104 e3=-0.1414 e4=-0.0379 e5=-0.0445 e6=-0.0415 e7=0.1300 N=1.0 Q=0.333 imagStrength=1.2927 [共役の子]
Depth=13 Norm=1.2148 e0=-1.0681 e1=-0.5325 e2=-0.0854 e3=-0.1386 e4=-0.0337 e5=-0.0154 e6=0.1529 e7=-0.0064 N=0.0 Q=0.000 imagStrength=0.5787 [共役の子]
Depth=12 Norm=0.4761 e0=0.1929 e1=0.4313 e2=-0.0394 e3=0.0218 e4=-0.0352 e5=0.0099 e6=0.0015 e7=0.0128 N=3.0 Q=1.000 imagStrength=0.4353 [通常の子]
Depth=12 Norm=0.4683 e0=-0.2704 e1=-0.3713 e2=-0.0797 e3=0.0218 e4=-0.0352 e5=0.0099 e6=0.0015 e7=0.0128 N=3.0 Q=1.000 imagStrength=0.3824 [共役の子]
Depth=13 Norm=1.2506 e0=-0.2391 e1=-1.1912 e2=-0.1051 e3=-0.1444 e4=-0.0360 e5=-0.0550 e6=0.1968 e7=0.1140 N=1.0 Q=0.333 imagStrength=1.2276 [通常の子]
Depth=11 Norm=0.5337 e0=0.2505 e1=0.4610 e2=0.0346 e3=0.0631 e4=0.0122 e5=0.0220 e6=-0.0601 e7=-0.0094 N=3.0 Q=1.000 imagStrength=0.4713 [通常の子]
Depth=13 Norm=1.3111 e0=-0.9460 e1=-0.8831 e2=-0.1403 e3=-0.1279 e4=-0.0362 e5=-0.0344 e6=0.0731 e7=0.0102 N=1.0 Q=0.333 imagStrength=0.9077 [共役の子]
Depth=12 Norm=0.5652 e0=-0.2529 e1=0.4961 e2=0.0283 e3=-0.0097 e4=0.0882 e5=0.0103 e6=0.0064 e7=-0.0238 N=3.0 Q=1.000 imagStrength=0.5054 [通常の子]
Depth=12 Norm=0.5259 e0=0.1841 e1=-0.4834 e2=-0.0209 e3=-0.0097 e4=0.0882 e5=0.0103 e6=0.0064 e7=-0.0238 N=3.0 Q=1.000 imagStrength=0.4927 [共役の子]
Depth=13 Norm=1.1131 e0=-1.0961 e1=0.1015 e2=0.0455 e3=-0.0035 e4=0.0084 e5=0.1407 e6=0.0049 e7=-0.0728 N=0.0 Q=0.000 imagStrength=0.1938 [共役の子]
Depth=11 Norm=0.8621 e0=0.8433 e1=-0.1700 e2=-0.0224 e3=-0.0033 e4=0.0199 e5=-0.0403 e6=-0.0209 e7=-0.0135 N=3.0 Q=1.000 imagStrength=0.1790 [通常の子]
Depth=13 Norm=1.1553 e0=-0.9106 e1=0.6887 e2=0.0811 e3=-0.0089 e4=0.0132 e5=0.1212 e6=0.0991 e7=0.0041 N=0.0 Q=0.000 imagStrength=0.7111 [共役の子]
Depth=13 Norm=1.1136 e0=-1.1007 e1=0.1157 e2=0.0410 e3=-0.0024 e4=0.0009 e5=0.0767 e6=-0.0110 e7=0.0869 N=0.0 Q=0.000 imagStrength=0.1693 [通常の子]
Depth=9 Norm=0.8932 e0=0.8121 e1=-0.3692 e2=-0.0030 e3=0.0053 e4=-0.0023 e5=0.0438 e6=-0.0028 e7=0.0056 N=3.0 Q=1.000 imagStrength=0.3719 [通常の子]
Depth=12 Norm=0.8966 e0=0.8718 e1=-0.1765 e2=-0.0046 e3=0.0010 e4=0.0752 e5=0.0107 e6=-0.0135 e7=-0.0822 N=3.0 Q=1.000 imagStrength=0.2095 [通常の子]
Depth=13 Norm=1.2340 e0=-0.3517 e1=1.1699 e2=0.1160 e3=-0.0078 e4=0.0080 e5=0.1260 e6=-0.0249 e7=0.0094 N=1.0 Q=0.333 imagStrength=1.1828 [共役の子]
Depth=13 Norm=1.3052 e0=0.5819 e1=-1.1600 e2=-0.0028 e3=-0.0063 e4=0.0013 e5=0.0989 e6=-0.0701 e7=0.0678 N=1.0 Q=0.333 imagStrength=1.1683 [共役の子]
Depth=11 Norm=0.8361 e0=-0.7984 e1=0.2413 e2=-0.0007 e3=-0.0031 e4=0.0200 e5=-0.0396 e6=0.0184 e7=-0.0325 N=3.0 Q=1.000 imagStrength=0.2482 [共役の子]
Depth=13 Norm=1.2216 e0=-1.1376 e1=0.4121 e2=0.0709 e3=-0.0071 e4=0.0019 e5=0.0788 e6=-0.0541 e7=0.1191 N=0.0 Q=0.000 imagStrength=0.4452 [通常の子]
Depth=13 Norm=1.2410 e0=1.1121 e1=-0.5360 e2=0.0214 e3=-0.0093 e4=0.0117 e5=0.1183 e6=0.0118 e7=0.0338 N=0.0 Q=0.000 imagStrength=0.5507 [通常の子]
Depth=12 Norm=0.5562 e0=0.4785 e1=0.2687 e2=0.0184 e3=-0.0232 e4=0.0307 e5=-0.0178 e6=-0.0032 e7=0.0777 N=3.0 Q=1.000 imagStrength=0.2835 [共役の子]
Depth=10 Norm=0.6440 e0=-0.5750 e1=-0.2815 e2=-0.0202 e3=0.0167 e4=-0.0200 e5=0.0173 e6=0.0063 e7=-0.0595 N=3.0 Q=1.000 imagStrength=0.2902 [共役の子]
Depth=13 Norm=1.2134 e0=-0.2603 e1=-1.1828 e2=-0.0449 e3=0.0098 e4=0.0448 e5=0.0022 e6=0.0291 e7=0.0247 N=1.0 Q=0.333 imagStrength=1.1851 [通常の子]
Depth=13 Norm=1.2672 e0=0.4463 e1=1.1528 e2=0.1254 e3=-0.0092 e4=0.0537 e5=0.0072 e6=0.2284 e7=0.0826 N=1.0 Q=0.333 imagStrength=1.1860 [共役の子]
Depth=13 Norm=1.3106 e0=-0.1997 e1=-1.2709 e2=0.0010 e3=-0.0092 e4=0.0540 e5=0.0086 e6=0.2306 e7=0.0798 N=1.0 Q=0.333 imagStrength=1.2953 [共役の子]
Depth=12 Norm=0.7159 e0=0.6974 e1=0.1575 e2=0.0141 e3=-0.0035 e4=0.0141 e5=-0.0181 e6=-0.0047 e7=0.0232 N=2.0 Q=0.667 imagStrength=0.1616 [通常の子]
Depth=12 Norm=0.8972 e0=0.8412 e1=-0.3022 e2=-0.0093 e3=-0.0053 e4=0.0010 e5=-0.0166 e6=-0.0535 e7=-0.0541 N=3.0 Q=1.000 imagStrength=0.3122 [通常の子]
Depth=12 Norm=0.8388 e0=-0.7526 e1=0.3611 e2=0.0240 e3=-0.0053 e4=0.0010 e5=-0.0166 e6=-0.0535 e7=-0.0541 N=3.0 Q=1.000 imagStrength=0.3702 [共役の子]
Depth=13 Norm=1.2884 e0=0.5771 e1=-1.1378 e2=-0.0037 e3=-0.0032 e4=0.0471 e5=-0.0145 e6=-0.0517 e7=0.1653 N=1.0 Q=0.333 imagStrength=1.1520 [共役の子]
Depth=11 Norm=0.6258 e0=-0.3265 e1=0.5289 e2=0.0134 e3=-0.0066 e4=-0.0312 e5=-0.0075 e6=0.0392 e7=-0.0496 N=3.0 Q=1.000 imagStrength=0.5339 [通常の子]
Depth=13 Norm=1.3087 e0=-0.2284 e1=-1.2667 e2=-0.0594 e3=0.0149 e4=0.0427 e5=0.0042 e6=-0.2172 e7=0.0565 N=1.0 Q=0.333 imagStrength=1.2886 [共役の子]
Depth=13 Norm=1.2811 e0=0.5868 e1=-1.1326 e2=0.0025 e3=-0.0048 e4=0.0507 e5=0.0143 e6=-0.0293 e7=0.1012 N=1.0 Q=0.333 imagStrength=1.1388 [通常の子]
Depth=5 Norm=0.9397 e0=0.9284 e1=0.1405 e2=0.0058 e3=0.0313 e4=-0.0091 e5=0.0007 e6=-0.0054 e7=-0.0091 N=3.0 Q=1.000 imagStrength=0.1448 [通常の子]
Depth=12 Norm=0.4531 e0=-0.2683 e1=-0.3267 e2=-0.0898 e3=0.0572 e4=-0.1036 e5=0.0149 e6=-0.0191 e7=-0.0628 N=3.0 Q=1.000 imagStrength=0.3651 [共役の子]
Depth=10 Norm=0.5621 e0=0.4443 e1=0.3142 e2=0.0934 e3=-0.0551 e4=0.0713 e5=-0.0150 e6=0.0143 e7=0.0514 N=3.0 Q=1.000 imagStrength=0.3444 [共役の子]
Depth=13 Norm=1.1817 e0=0.4002 e1=1.0924 e2=-0.0906 e3=-0.1448 e4=-0.0669 e5=-0.0890 e6=-0.0299 e7=0.0245 N=1.0 Q=0.333 imagStrength=1.1119 [通常の子]
Depth=13 Norm=1.1351 e0=-0.5824 e1=-0.9046 e2=-0.2359 e3=-0.1287 e4=-0.0745 e5=-0.0852 e6=-0.2104 e7=-0.0420 N=1.0 Q=0.333 imagStrength=0.9743 [共役の子]
Depth=13 Norm=1.1081 e0=0.4661 e1=0.9521 e2=-0.1400 e3=-0.1283 e4=-0.0769 e5=-0.0970 e6=-0.2292 e7=-0.0177 N=1.0 Q=0.333 imagStrength=1.0053 [共役の子]
Depth=12 Norm=0.5079 e0=-0.4522 e1=-0.1901 e2=-0.0841 e3=0.0413 e4=-0.0863 e5=0.0156 e6=-0.0136 e7=-0.0261 N=3.0 Q=1.000 imagStrength=0.2312 [通常の子]
Depth=12 Norm=0.8099 e0=-0.7778 e1=0.1852 e2=-0.0656 e3=0.0390 e4=-0.0741 e5=0.0137 e6=0.0262 e7=0.0668 N=3.0 Q=1.000 imagStrength=0.2257 [通常の子]
Depth=12 Norm=0.8799 e0=0.8327 e1=-0.2467 e2=-0.0872 e3=0.0390 e4=-0.0741 e5=0.0137 e6=0.0262 e7=0.0668 N=3.0 Q=1.000 imagStrength=0.2842 [共役の子]
Depth=13 Norm=1.1450 e0=-0.1126 e1=1.1155 e2=-0.1293 e3=-0.1322 e4=-0.0710 e5=-0.0834 e6=0.0186 e7=-0.0866 N=1.0 Q=0.333 imagStrength=1.1395 [共役の子]
Depth=11 Norm=0.4833 e0=0.1263 e1=-0.4547 e2=0.0237 e3=0.0778 e4=0.0211 e5=0.0425 e6=-0.0351 e7=0.0284 N=3.0 Q=1.000 imagStrength=0.4665 [通常の子]
Depth=13 Norm=1.1074 e0=0.4730 e1=0.9647 e2=-0.0881 e3=-0.1499 e4=-0.0664 e5=-0.0915 e6=0.1703 e7=-0.0038 N=1.0 Q=0.333 imagStrength=1.0013 [共役の子]
Depth=13 Norm=1.1534 e0=-0.1104 e1=1.1251 e2=-0.1283 e3=-0.1333 e4=-0.0705 e5=-0.0904 e6=0.0211 e7=-0.0661 N=1.0 Q=0.333 imagStrength=1.1481 [通常の子]
Depth=8 Norm=0.8863 e0=0.8020 e1=-0.3604 e2=-0.0544 e3=0.0889 e4=-0.0258 e5=0.0234 e6=0.0170 e7=-0.0049 N=3.0 Q=1.000 imagStrength=0.3772 [通常の子]
Depth=11 Norm=0.8055 e0=-0.7962 e1=0.0175 e2=0.0484 e3=0.0754 e4=-0.0193 e5=0.0727 e6=-0.0020 e7=-0.0292 N=3.0 Q=1.000 imagStrength=0.1218 [共役の子]
Depth=13 Norm=1.2356 e0=-1.1850 e1=-0.1185 e2=-0.1718 e3=-0.1328 e4=-0.0481 e5=-0.1950 e6=-0.0532 e7=0.1347 N=0.0 Q=0.000 imagStrength=0.3500 [通常の子]
Depth=13 Norm=1.2832 e0=1.2561 e1=0.0041 e2=-0.1656 e3=-0.1358 e4=-0.0344 e5=-0.1418 e6=0.0364 e7=0.0189 N=0.0 Q=0.000 imagStrength=0.2624 [通常の子]
Depth=13 Norm=1.1927 e0=-0.7886 e1=0.8546 e2=-0.1397 e3=-0.1265 e4=-0.0420 e5=-0.1282 e6=-0.1135 e7=-0.0608 N=1.0 Q=0.333 imagStrength=0.8948 [共役の子]
Depth=12 Norm=0.8524 e0=-0.7189 e1=0.4350 e2=-0.0499 e3=0.0434 e4=-0.1254 e5=-0.0017 e6=-0.0096 e7=-0.0183 N=3.0 Q=1.000 imagStrength=0.4580 [通常の子]
Depth=12 Norm=0.8520 e0=0.6920 e1=-0.4689 e2=-0.0952 e3=0.0434 e4=-0.1254 e5=-0.0017 e6=-0.0096 e7=-0.0183 N=3.0 Q=1.000 imagStrength=0.4970 [共役の子]
Depth=12 Norm=0.8292 e0=0.8032 e1=-0.1162 e2=-0.0796 e3=0.0354 e4=-0.1188 e5=-0.0037 e6=0.0046 e7=0.0847 N=3.0 Q=1.000 imagStrength=0.2060 [共役の子]
Depth=10 Norm=0.8476 e0=-0.8284 e1=0.1011 e2=0.0833 e3=-0.0520 e4=0.1005 e5=0.0041 e6=-0.0096 e7=-0.0455 N=3.0 Q=1.000 imagStrength=0.1793 [共役の子]
Depth=13 Norm=1.1528 e0=0.6359 e1=-0.9087 e2=-0.2329 e3=-0.1308 e4=-0.0414 e5=-0.1526 e6=0.0389 e7=-0.0307 N=1.0 Q=0.333 imagStrength=0.9615 [通常の子]
Depth=13 Norm=1.2077 e0=-0.4780 e1=1.0744 e2=-0.0888 e3=-0.1431 e4=-0.0373 e5=-0.1341 e6=0.1645 e7=-0.0305 N=1.0 Q=0.333 imagStrength=1.1090 [共役の子]
Depth=13 Norm=1.2794 e0=0.6943 e1=-1.0260 e2=-0.1969 e3=-0.1410 e4=-0.0461 e5=-0.1671 e6=0.1086 e7=0.0418 N=1.0 Q=0.333 imagStrength=1.0746 [共役の子]
Depth=12 Norm=0.8879 e0=0.8440 e1=-0.2213 e2=-0.0822 e3=0.0559 e4=-0.1292 e5=-0.0024 e6=0.0184 e7=0.0022 N=3.0 Q=1.000 imagStrength=0.2755 [通常の子]
Depth=10 Norm=0.7365 e0=-0.7135 e1=-0.1538 e2=0.0287 e3=-0.0390 e4=-0.0314 e5=-0.0307 e6=-0.0091 e7=0.0722 N=3.0 Q=1.000 imagStrength=0.1823 [通常の子]
Depth=13 Norm=1.1818 e0=0.0743 e1=-1.1255 e2=-0.1903 e3=-0.0567 e4=-0.0792 e5=0.0562 e6=-0.2619 e7=-0.0834 N=1.0 Q=0.333 imagStrength=1.1795 [通常の子]
Depth=12 Norm=0.6686 e0=0.6505 e1=0.1345 e2=-0.0331 e3=0.0292 e4=0.0284 e5=0.0318 e6=0.0096 e7=-0.0435 N=2.0 Q=0.667 imagStrength=0.1544 [共役の子]
Depth=9 Norm=0.4971 e0=-0.2245 e1=-0.4330 e2=-0.0679 e3=-0.0280 e4=-0.0395 e5=0.0304 e6=-0.0176 e7=-0.0327 N=3.0 Q=1.000 imagStrength=0.4435 [共役の子]
Depth=12 Norm=0.4807 e0=0.2226 e1=0.4134 e2=-0.0186 e3=0.0463 e4=0.0107 e5=0.0311 e6=0.0039 e7=-0.0839 N=3.0 Q=1.000 imagStrength=0.4261 [通常の子]
Depth=13 Norm=1.2354 e0=1.0144 e1=0.6872 e2=-0.0498 e3=-0.0749 e4=-0.0755 e5=0.0380 e6=-0.0948 e7=0.0230 N=0.0 Q=0.000 imagStrength=0.7050 [共役の子]
Depth=13 Norm=1.2374 e0=-0.8453 e1=-0.8837 e2=-0.1312 e3=-0.0767 e4=-0.0683 e5=0.0652 e6=-0.0485 e7=-0.0368 N=1.0 Q=0.333 imagStrength=0.9037 [共役の子]
Depth=13 Norm=1.2097 e0=-1.1680 e1=0.1953 e2=-0.0925 e3=-0.0701 e4=-0.0682 e5=0.1006 e6=-0.0107 e7=-0.1805 N=0.0 Q=0.000 imagStrength=0.3148 [共役の子]
Depth=12 Norm=0.6351 e0=-0.3290 e1=0.5364 e2=-0.0126 e3=0.0387 e4=0.0340 e5=0.0311 e6=0.0472 e7=-0.0374 N=3.0 Q=1.000 imagStrength=0.5433 [通常の子]
Depth=12 Norm=0.5930 e0=0.2555 e1=-0.5243 e2=-0.0658 e3=0.0387 e4=0.0340 e5=0.0311 e6=0.0472 e7=-0.0374 N=3.0 Q=1.000 imagStrength=0.5352 [共役の子]
Depth=13 Norm=1.2210 e0=-0.8902 e1=-0.8171 e2=-0.1305 e3=-0.0763 e4=-0.0739 e5=0.0307 e6=0.0353 e7=0.0145 N=1.0 Q=0.333 imagStrength=0.8357 [通常の子]
Depth=11 Norm=0.7484 e0=0.7073 e1=0.2282 e2=0.0445 e3=0.0432 e4=0.0565 e5=-0.0121 e6=-0.0049 e7=0.0236 N=3.0 Q=1.000 imagStrength=0.2446 [通常の子]
Depth=13 Norm=1.2909 e0=-1.2590 e1=-0.1907 e2=-0.1230 e3=-0.0703 e4=-0.0648 e5=0.0777 e6=0.0381 e7=-0.1145 N=0.0 Q=0.000 imagStrength=0.2850 [共役の子]
Depth=13 Norm=1.2106 e0=-0.8270 e1=0.8527 e2=-0.0364 e3=-0.0682 e4=0.0132 e5=-0.1473 e6=0.1442 e7=0.0761 N=1.0 Q=0.333 imagStrength=0.8841 [通常の子]
Depth=13 Norm=1.1975 e0=0.7319 e1=-0.9099 e2=-0.1265 e3=-0.0695 e4=0.0188 e5=-0.1263 e6=0.1797 e7=0.0302 N=1.0 Q=0.333 imagStrength=0.9478 [通常の子]
Depth=11 Norm=0.7386 e0=-0.6126 e1=0.3998 e2=0.0516 e3=0.0367 e4=-0.0457 e5=0.0519 e6=-0.0410 e7=0.0021 N=3.0 Q=1.000 imagStrength=0.4127 [共役の子]
Depth=12 Norm=0.8456 e0=-0.7218 e1=0.4282 e2=-0.0121 e3=0.0257 e4=-0.0896 e5=-0.0194 e6=0.0108 e7=0.0352 N=3.0 Q=1.000 imagStrength=0.4404 [通常の子]
Depth=12 Norm=0.8500 e0=0.7006 e1=-0.4669 e2=-0.0570 e3=0.0257 e4=-0.0896 e5=-0.0194 e6=0.0108 e7=0.0352 N=3.0 Q=1.000 imagStrength=0.4813 [共役の子]
Depth=13 Norm=1.1755 e0=-0.7637 e1=0.8790 e2=-0.0744 e3=-0.0527 e4=0.0132 e5=-0.1049 e6=0.0228 e7=-0.0782 N=1.0 Q=0.333 imagStrength=0.8937 [共役の子]
Depth=10 Norm=0.5313 e0=-0.0761 e1=0.5125 e2=0.0661 e3=-0.0347 e4=0.0875 e5=0.0209 e6=0.0140 e7=0.0047 N=3.0 Q=1.000 imagStrength=0.5258 [通常の子]
Depth=13 Norm=1.2767 e0=1.0558 e1=0.6975 e2=-0.0667 e3=-0.0609 e4=0.0209 e5=-0.1179 e6=0.0767 e7=0.0200 N=0.0 Q=0.000 imagStrength=0.7178 [通常の子]
Depth=12 Norm=0.5919 e0=0.2377 e1=-0.5253 e2=-0.0600 e3=0.0330 e4=-0.1089 e5=-0.0211 e6=-0.0255 e7=0.0130 N=3.0 Q=1.000 imagStrength=0.5420 [共役の子]
Depth=9 Norm=0.9534 e0=0.9497 e1=-0.0280 e2=-0.0450 e3=-0.0313 e4=0.0255 e5=-0.0488 e6=-0.0075 e7=0.0111 N=3.0 Q=1.000 imagStrength=0.0837 [共役の子]
Depth=12 Norm=0.8377 e0=0.6883 e1=-0.4606 e2=-0.0556 e3=0.0359 e4=-0.0985 e5=-0.0186 e6=-0.0013 e7=-0.0377 N=3.0 Q=1.000 imagStrength=0.4775 [通常の子]
Depth=13 Norm=1.2679 e0=-1.0884 e1=0.6340 e2=-0.0703 e3=-0.0573 e4=0.0166 e5=-0.0941 e6=-0.0076 e7=-0.0610 N=0.0 Q=0.000 imagStrength=0.6504 [共役の子]
Depth=13 Norm=1.3347 e0=1.2165 e1=-0.4975 e2=-0.1282 e3=-0.0543 e4=0.0029 e5=-0.1478 e6=-0.0978 e7=0.0557 N=0.0 Q=0.000 imagStrength=0.5490 [共役の子]
Depth=13 Norm=1.1676 e0=-1.0351 e1=0.4999 e2=0.0822 e3=0.0187 e4=0.0113 e5=0.1456 e6=0.0412 e7=-0.1085 N=0.0 Q=0.000 imagStrength=0.5402 [共役の子]
Depth=13 Norm=1.2320 e0=1.1623 e1=-0.3925 e2=0.0369 e3=0.0214 e4=-0.0009 e5=0.0967 e6=-0.0407 e7=-0.0025 N=0.0 Q=0.000 imagStrength=0.4086 [共役の子]
Depth=12 Norm=0.7546 e0=0.6057 e1=-0.4393 e2=-0.0077 e3=-0.0117 e4=0.0918 e5=0.0097 e6=0.0237 e7=-0.0208 N=3.0 Q=1.000 imagStrength=0.4502 [通常の子]
Depth=13 Norm=1.1595 e0=-1.0611 e1=0.4410 e2=0.0890 e3=0.0154 e4=0.0054 e5=0.0863 e6=0.0713 e7=0.0571 N=0.0 Q=0.000 imagStrength=0.4674 [通常の子]
Depth=13 Norm=1.1753 e0=1.0189 e1=-0.5561 e2=0.0371 e3=0.0134 e4=0.0142 e5=0.1218 e6=0.1306 e7=-0.0196 N=0.0 Q=0.000 imagStrength=0.5859 [通常の子]
Depth=11 Norm=0.7885 e0=-0.7452 e1=0.2514 e2=-0.0039 e3=-0.0147 e4=0.0210 e5=-0.0428 e6=-0.0226 e7=0.0058 N=3.0 Q=1.000 imagStrength=0.2574 [共役の子]
Depth=11 Norm=0.6010 e0=-0.3128 e1=0.5068 e2=0.0105 e3=-0.0158 e4=0.0239 e5=-0.0441 e6=0.0574 e7=-0.0179 N=3.0 Q=1.000 imagStrength=0.5131 [通常の子]
Depth=13 Norm=1.2596 e0=-0.2119 e1=-1.2136 e2=-0.0434 e3=0.0352 e4=0.0003 e5=0.1096 e6=-0.2300 e7=-0.0279 N=1.0 Q=0.333 imagStrength=1.2417 [共役の子]
Depth=13 Norm=1.2320 e0=0.5636 e1=-1.0875 e2=0.0162 e3=0.0163 e4=0.0081 e5=0.1193 e6=-0.0492 e7=0.0147 N=1.0 Q=0.333 imagStrength=1.0955 [通常の子]
Depth=10 Norm=0.8538 e0=-0.7913 e1=0.3062 e2=-0.0028 e3=0.0160 e4=-0.0724 e5=-0.0108 e6=0.0150 e7=0.0571 N=3.0 Q=1.000 imagStrength=0.3207 [通常の子]
Depth=13 Norm=1.1719 e0=1.0171 e1=-0.5504 e2=0.0023 e3=0.0278 e4=0.0079 e5=0.1198 e6=-0.1411 e7=-0.0286 N=0.0 Q=0.000 imagStrength=0.5821 [通常の子]
Depth=12 Norm=0.8938 e0=0.8279 e1=-0.3247 e2=-0.0031 e3=-0.0213 e4=0.0824 e5=0.0091 e6=-0.0233 e7=-0.0170 N=3.0 Q=1.000 imagStrength=0.3370 [共役の子]
Depth=7 Norm=0.6857 e0=0.4850 e1=-0.4843 e2=-0.0049 e3=0.0093 e4=0.0058 e5=0.0001 e6=0.0112 e7=-0.0082 N=3.0 Q=1.000 imagStrength=0.4847 [共役の子]
Depth=13 Norm=1.2109 e0=-1.0485 e1=-0.5766 e2=0.0357 e3=0.0173 e4=0.0339 e5=0.0916 e6=0.1393 e7=-0.0638 N=0.0 Q=0.000 imagStrength=0.6058 [共役の子]
Depth=12 Norm=0.4783 e0=0.2207 e1=0.4179 e2=0.0370 e3=-0.0089 e4=0.0592 e5=-0.0036 e6=0.0225 e7=-0.0022 N=3.0 Q=1.000 imagStrength=0.4244 [通常の子]
Depth=12 Norm=0.4724 e0=-0.2947 e1=-0.3637 e2=-0.0022 e3=-0.0089 e4=0.0592 e5=-0.0036 e6=0.0225 e7=-0.0022 N=2.0 Q=0.667 imagStrength=0.3693 [共役の子]
Depth=13 Norm=1.2470 e0=-0.2104 e1=-1.2130 e2=0.0152 e3=0.0136 e4=0.0307 e5=0.0534 e6=0.1806 e7=0.0510 N=1.0 Q=0.333 imagStrength=1.2291 [通常の子]
Depth=11 Norm=0.5272 e0=0.2281 e1=0.4719 e2=0.0066 e3=-0.0163 e4=-0.0044 e5=-0.0281 e6=-0.0445 e7=0.0115 N=3.0 Q=1.000 imagStrength=0.4753 [通常の子]
Depth=13 Norm=1.3072 e0=-0.9229 e1=-0.9188 e2=-0.0199 e3=0.0298 e4=0.0302 e5=0.0716 e6=0.0551 e7=-0.0483 N=1.0 Q=0.333 imagStrength=0.9257 [共役の子]
Depth=13 Norm=1.2409 e0=0.1407 e1=-1.2095 e2=-0.0387 e3=0.0351 e4=0.0212 e5=0.0500 e6=-0.2237 e7=0.0356 N=1.0 Q=0.333 imagStrength=1.2329 [共役の子]
Depth=13 Norm=1.1764 e0=-0.2910 e1=1.1173 e2=0.0808 e3=0.0340 e4=0.0256 e5=0.0670 e6=-0.1951 e7=-0.0014 N=1.0 Q=0.333 imagStrength=1.1399 [共役の子]
Depth=12 Norm=0.8188 e0=-0.8070 e1=0.1179 e2=0.0205 e3=-0.0250 e4=0.0520 e5=-0.0030 e6=-0.0348 e7=-0.0166 N=2.0 Q=0.667 imagStrength=0.1384 [通常の子]
Depth=13 Norm=1.2602 e0=0.1814 e1=-1.2211 e2=-0.0439 e3=0.0372 e4=0.0211 e5=0.0564 e6=-0.2390 e7=0.0132 N=1.0 Q=0.333 imagStrength=1.2471 [通常の子]
Depth=13 Norm=1.3155 e0=0.0757 e1=1.2887 e2=0.0851 e3=0.0367 e4=0.0232 e5=0.0643 e6=-0.2256 e7=-0.0040 N=1.0 Q=0.333 imagStrength=1.3133 [通常の子]
Depth=11 Norm=0.5908 e0=0.2513 e1=-0.5284 e2=-0.0417 e3=-0.0168 e4=-0.0032 e5=-0.0261 e6=0.0536 e7=-0.0336 N=3.0 Q=1.000 imagStrength=0.5347 [共役の子]
Depth=9 Norm=0.9211 e0=-0.8868 e1=0.2329 e2=-0.0077 e3=-0.0436 e4=0.0290 e5=-0.0563 e6=0.0053 e7=0.0435 N=3.0 Q=1.000 imagStrength=0.2493 [通常の子]
Depth=12 Norm=0.8378 e0=-0.7524 e1=0.3395 e2=-0.0240 e3=-0.0031 e4=-0.1071 e5=-0.0255 e6=-0.0426 e7=0.0778 N=3.0 Q=1.000 imagStrength=0.3686 [通常の子]
Depth=13 Norm=1.2038 e0=0.6822 e1=-0.9543 e2=-0.1109 e3=-0.0834 e4=0.0193 e5=-0.1796 e6=0.0200 e7=0.1442 N=1.0 Q=0.333 imagStrength=0.9919 [共役の子]
Depth=13 Norm=1.1312 e0=-0.7860 e1=0.7888 e2=-0.0220 e3=-0.0855 e4=0.0286 e5=-0.1421 e6=0.0828 e7=0.0630 N=1.0 Q=0.333 imagStrength=0.8135 [共役の子]
Depth=11 Norm=0.8910 e0=0.8798 e1=-0.1097 e2=0.0005 e3=0.0396 e4=-0.0518 e5=0.0538 e6=-0.0183 e7=-0.0188 N=3.0 Q=1.000 imagStrength=0.1409 [共役の子]
Depth=13 Norm=1.2126 e0=1.2006 e1=-0.0409 e2=-0.0592 e3=-0.0837 e4=0.0261 e5=-0.1204 e6=0.0386 e7=-0.0015 N=0.0 Q=0.000 imagStrength=0.1699 [通常の子]
Depth=13 Norm=1.1756 e0=-1.1183 e1=0.2909 e2=-0.0417 e3=-0.0812 e4=0.0148 e5=-0.1657 e6=-0.0373 e7=0.0967 N=0.0 Q=0.000 imagStrength=0.3625 [通常の子]
Depth=13 Norm=1.2192 e0=-0.8805 e1=-0.7847 e2=-0.0760 e3=-0.0922 e4=0.0215 e5=-0.1867 e6=0.0827 e7=0.1974 N=1.0 Q=0.333 imagStrength=0.8433 [通常の子]
Depth=11 Norm=0.7475 e0=0.7051 e1=0.2196 e2=0.0173 e3=0.0406 e4=-0.0588 e5=0.0615 e6=-0.0488 e7=-0.0423 N=3.0 Q=1.000 imagStrength=0.2482 [通常の子]
Depth=13 Norm=1.2872 e0=-1.2574 e1=-0.1780 e2=-0.0701 e3=-0.0859 e4=0.0309 e5=-0.1382 e6=0.0871 e7=0.0651 N=0.0 Q=0.000 imagStrength=0.2754 [共役の子]
Depth=12 Norm=0.6101 e0=-0.3128 e1=0.5123 e2=-0.0133 e3=0.0066 e4=-0.1028 e5=-0.0232 e6=-0.0244 e7=0.0053 N=3.0 Q=1.000 imagStrength=0.5238 [共役の子]
Depth=10 Norm=0.5893 e0=0.2506 e1=-0.5215 e2=0.0200 e3=-0.0085 e4=0.0963 e5=0.0229 e6=0.0367 e7=-0.0295 N=3.0 Q=1.000 imagStrength=0.5334 [共役の子]
Depth=13 Norm=1.2622 e0=-1.1526 e1=-0.4543 e2=-0.0759 e3=-0.0819 e4=0.0136 e5=-0.1698 e6=-0.0568 e7=0.1157 N=0.0 Q=0.000 imagStrength=0.5143 [通常の子]
Depth=12 Norm=0.7807 e0=0.7724 e1=0.0092 e2=-0.0438 e3=0.0243 e4=-0.0060 e5=0.0237 e6=-0.0235 e7=-0.0962 N=2.0 Q=0.667 imagStrength=0.1140 [通常の子]
Depth=12 Norm=0.7792 e0=-0.7675 e1=0.0739 e2=-0.0406 e3=0.0243 e4=-0.0060 e5=0.0237 e6=-0.0235 e7=-0.0962 N=2.0 Q=0.667 imagStrength=0.1345 [共役の子]
Depth=13 Norm=1.2468 e0=-0.1929 e1=-1.2195 e2=-0.0869 e3=-0.1048 e4=-0.0528 e5=0.0246 e6=-0.0640 e7=0.0625 N=1.0 Q=0.333 imagStrength=1.2317 [共役の子]
Depth=11 Norm=0.5256 e0=0.2254 e1=0.4659 e2=0.0319 e3=0.0462 e4=0.0403 e5=0.0001 e6=0.0480 e7=-0.0353 N=3.0 Q=1.000 imagStrength=0.4748 [通常の子]
Depth=13 Norm=1.2976 e0=-0.9131 e1=-0.8871 e2=-0.1202 e3=-0.0883 e4=-0.0558 e5=0.0304 e6=-0.1915 e7=-0.0083 N=1.0 Q=0.333 imagStrength=0.9220 [共役の子]
Depth=13 Norm=1.2381 e0=-0.1897 e1=-1.2094 e2=-0.0859 e3=-0.1052 e4=-0.0547 e5=0.0115 e6=-0.0641 e7=0.0919 N=1.0 Q=0.333 imagStrength=1.2234 [通常の子]
Depth=9 Norm=0.7112 e0=0.6452 e1=0.2944 e2=-0.0056 e3=-0.0407 e4=-0.0306 e5=0.0158 e6=-0.0038 e7=0.0032 N=3.0 Q=1.000 imagStrength=0.2993 [通常の子]
Depth=12 Norm=0.5558 e0=0.2247 e1=-0.5020 e2=-0.0708 e3=0.0084 e4=0.0180 e5=0.0221 e6=0.0189 e7=0.0124 N=3.0 Q=1.000 imagStrength=0.5084 [通常の子]
Depth=13 Norm=1.2753 e0=-1.2536 e1=-0.1540 e2=-0.0632 e3=-0.0962 e4=-0.0501 e5=0.0588 e6=0.0320 e7=-0.1043 N=0.0 Q=0.000 imagStrength=0.2342 [共役の子]
Depth=13 Norm=1.3101 e0=1.2687 e1=0.2998 e2=-0.0392 e3=-0.0935 e4=-0.0623 e5=0.0100 e6=-0.0497 e7=0.0015 N=0.0 Q=0.000 imagStrength=0.3265 [共役の子]
Depth=11 Norm=0.5408 e0=-0.3310 e1=-0.4215 e2=-0.0143 e3=0.0468 e4=0.0380 e5=-0.0013 e6=-0.0374 e7=0.0030 N=3.0 Q=1.000 imagStrength=0.4277 [共役の子]
Depth=13 Norm=1.2845 e0=-0.6298 e1=-1.1068 e2=-0.1209 e3=-0.0937 e4=-0.0575 e5=-0.0014 e6=-0.0001 e7=0.0402 N=1.0 Q=0.333 imagStrength=1.1195 [通常の子]
Depth=13 Norm=1.3587 e0=0.8457 e1=1.0545 e2=-0.0104 e3=-0.0959 e4=-0.0482 e5=0.0363 e6=0.0630 e7=-0.0414 N=1.0 Q=0.333 imagStrength=1.0633 [通常の子]
Depth=9 Norm=0.7565 e0=0.6580 e1=-0.3476 e2=-0.0573 e3=0.0226 e4=-0.0589 e5=0.0431 e6=-0.0276 e7=-0.0932 N=3.0 Q=1.000 imagStrength=0.3733 [通常の子]
Depth=12 Norm=0.7687 e0=0.7424 e1=-0.1049 e2=0.0064 e3=0.0554 e4=0.0473 e5=0.0419 e6=0.0771 e7=-0.1254 N=3.0 Q=1.000 imagStrength=0.1995 [通常の子]
Depth=13 Norm=1.1079 e0=-0.1790 e1=1.0571 e2=-0.0144 e3=0.0453 e4=-0.0856 e5=0.1228 e6=-0.0870 e7=-0.2134 N=1.0 Q=0.333 imagStrength=1.0933 [共役の子]
Depth=13 Norm=1.1744 e0=0.4064 e1=-1.0652 e2=-0.1228 e3=0.0466 e4=-0.0907 e5=0.1027 e6=-0.1210 e7=-0.1694 N=1.0 Q=0.333 imagStrength=1.1018 [共役の子]
Depth=11 Norm=0.7245 e0=-0.6681 e1=0.2428 e2=0.0549 e3=-0.0067 e4=0.0827 e5=-0.0291 e6=0.0758 e7=0.0556 N=3.0 Q=1.000 imagStrength=0.2803 [共役の子]
Depth=13 Norm=1.0945 e0=-0.9633 e1=0.4702 e2=-0.0495 e3=0.0465 e4=-0.0910 e5=0.0869 e6=-0.1116 e7=-0.1266 N=0.0 Q=0.000 imagStrength=0.5196 [通常の子]
Depth=13 Norm=1.1067 e0=0.9167 e1=-0.5557 e2=-0.1027 e3=0.0446 e4=-0.0829 e5=0.1193 e6=-0.0573 e7=-0.1969 N=0.0 Q=0.000 imagStrength=0.6201 [通常の子]
Depth=13 Norm=1.1060 e0=1.0203 e1=0.2234 e2=-0.0738 e3=0.0494 e4=-0.0844 e5=0.1459 e6=-0.0404 e7=-0.3072 N=0.0 Q=0.000 imagStrength=0.4268 [通常の子]
Depth=11 Norm=0.6831 e0=-0.6644 e1=0.0355 e2=0.0435 e3=-0.0069 e4=0.0883 e5=-0.0367 e6=0.0642 e7=0.0933 N=3.0 Q=1.000 imagStrength=0.1587 [通常の子]
Depth=13 Norm=1.0527 e0=0.9276 e1=-0.3939 e2=-0.1061 e3=0.0518 e4=-0.0954 e5=0.1020 e6=-0.1154 e7=-0.2138 N=0.0 Q=0.000 imagStrength=0.4976 [共役の子]
Depth=12 Norm=0.6945 e0=0.5547 e1=-0.4018 e2=-0.0111 e3=0.0397 e4=0.0568 e5=0.0395 e6=0.0805 e7=-0.0122 N=3.0 Q=1.000 imagStrength=0.4178 [共役の子]
Depth=10 Norm=0.6109 e0=-0.4580 e1=0.3830 e2=0.0048 e3=-0.0430 e4=-0.0611 e5=-0.0357 e6=-0.0900 e7=0.0414 N=3.0 Q=1.000 imagStrength=0.4043 [共役の子]
Depth=13 Norm=1.0324 e0=0.9861 e1=0.0079 e2=-0.0913 e3=0.0486 e4=-0.0818 e5=0.1247 e6=0.0049 e7=-0.2456 N=0.0 Q=0.000 imagStrength=0.3055 [通常の子]
Depth=12 Norm=0.4713 e0=-0.3948 e1=-0.2412 e2=0.0023 e3=0.0286 e4=-0.0496 e5=-0.0052 e6=0.0557 e7=0.0403 N=2.0 Q=0.667 imagStrength=0.2573 [通常の子]
Depth=12 Norm=0.5841 e0=0.5496 e1=0.1748 e2=0.0231 e3=0.0286 e4=-0.0496 e5=-0.0052 e6=0.0557 e7=0.0403 N=3.0 Q=1.000 imagStrength=0.1978 [共役の子]
Depth=13 Norm=1.1460 e0=0.8441 e1=0.7553 e2=-0.0661 e3=0.0651 e4=-0.0162 e5=-0.0778 e6=-0.0244 e7=-0.1218 N=0.0 Q=0.000 imagStrength=0.7752 [共役の子]
Depth=11 Norm=0.5779 e0=-0.5358 e1=-0.1999 e2=0.0305 e3=-0.0130 e4=-0.0050 e5=0.0223 e6=0.0192 e7=0.0701 N=3.0 Q=1.000 imagStrength=0.2165 [通常の子]
Depth=13 Norm=1.0827 e0=1.0595 e1=0.1468 e2=-0.0705 e3=0.0592 e4=-0.0178 e5=-0.0695 e6=0.0036 e7=-0.1207 N=0.0 Q=0.000 imagStrength=0.2231 [共役の子]
Depth=13 Norm=1.1518 e0=0.8304 e1=0.7596 e2=-0.0602 e3=0.0644 e4=-0.0107 e5=-0.0316 e6=0.0027 e7=-0.2261 N=0.0 Q=0.000 imagStrength=0.7982 [通常の子]
Depth=9 Norm=0.7516 e0=-0.7474 e1=-0.0201 e2=-0.0386 e3=0.0198 e4=-0.0014 e5=-0.0270 e6=-0.0187 e7=-0.0546 N=3.0 Q=1.000 imagStrength=0.0796 [通常の子]
Depth=12 Norm=0.6341 e0=-0.4609 e1=0.4264 e2=0.0365 e3=0.0368 e4=-0.0595 e5=-0.0046 e6=0.0391 e7=-0.0078 N=3.0 Q=1.000 imagStrength=0.4355 [通常の子]
Depth=13 Norm=1.0500 e0=0.9581 e1=-0.3938 e2=-0.1109 e3=0.0613 e4=-0.0167 e5=-0.0872 e6=-0.0496 e7=-0.0560 N=0.0 Q=0.000 imagStrength=0.4296 [共役の子]
Depth=13 Norm=0.9902 e0=-0.9540 e1=0.1923 e2=-0.0816 e3=0.0591 e4=-0.0066 e5=-0.0465 e6=0.0182 e7=-0.1437 N=0.0 Q=0.000 imagStrength=0.2652 [共役の子]
Depth=11 Norm=0.6546 e0=0.6348 e1=0.1296 e2=0.0478 e3=-0.0130 e4=-0.0044 e5=0.0229 e6=0.0524 e7=0.0543 N=3.0 Q=1.000 imagStrength=0.1597 [共役の子]
Depth=13 Norm=1.0497 e0=0.8939 e1=0.5035 e2=-0.0607 e3=0.0608 e4=-0.0103 e5=-0.0298 e6=-0.0365 e7=-0.1991 N=0.0 Q=0.000 imagStrength=0.5503 [通常の子]
Depth=13 Norm=0.9852 e0=-0.9171 e1=-0.2943 e2=-0.1010 e3=0.0630 e4=-0.0203 e5=-0.0700 e6=-0.1035 e7=-0.1124 N=0.0 Q=0.000 imagStrength=0.3598 [通常の子]
Depth=13 Norm=1.1779 e0=0.6392 e1=-0.9329 e2=-0.2127 e3=-0.0120 e4=-0.0963 e5=-0.0650 e6=-0.2038 e7=-0.0908 N=1.0 Q=0.333 imagStrength=0.9894 [共役の子]
Depth=13 Norm=1.1067 e0=-0.7330 e1=0.7836 e2=-0.1251 e3=-0.0139 e4=-0.0873 e5=-0.0287 e6=-0.1431 e7=-0.1693 N=1.0 Q=0.333 imagStrength=0.8291 [共役の子]
Depth=12 Norm=0.8243 e0=-0.7551 e1=0.3157 e2=-0.0093 e3=0.0494 e4=-0.0612 e5=0.0261 e6=0.0343 e7=-0.0376 N=3.0 Q=1.000 imagStrength=0.3304 [通常の子]
Depth=13 Norm=1.1947 e0=0.6476 e1=-0.9233 e2=-0.2241 e3=-0.0085 e4=-0.0928 e5=-0.0322 e6=-0.2418 e7=-0.1929 N=1.0 Q=0.333 imagStrength=1.0040 [通常の子]
Depth=13 Norm=1.2224 e0=-0.4375 e1=1.0866 e2=-0.1205 e3=-0.0082 e4=-0.0955 e5=-0.0442 e6=-0.2609 e7=-0.1683 N=1.0 Q=0.333 imagStrength=1.1414 [通常の子]
Depth=11 Norm=0.7334 e0=0.5667 e1=-0.4500 e2=0.0345 e3=0.0284 e4=0.0485 e5=0.0266 e6=0.0872 e7=0.0398 N=3.0 Q=1.000 imagStrength=0.4656 [共役の子]
Depth=11 Norm=0.4528 e0=-0.1487 e1=-0.4127 e2=0.0346 e3=0.0285 e4=0.0485 e5=0.0236 e6=-0.0026 e7=0.0873 N=3.0 Q=1.000 imagStrength=0.4277 [通常の子]
Depth=13 Norm=1.1328 e0=0.8091 e1=0.7581 e2=-0.0865 e3=-0.0281 e4=-0.0878 e5=-0.0440 e6=0.1192 e7=-0.1477 N=1.0 Q=0.333 imagStrength=0.7928 [共役の子]
Depth=13 Norm=1.1935 e0=0.2737 e1=1.1276 e2=-0.1122 e3=-0.0137 e4=-0.0882 e5=-0.0271 e6=0.0095 e7=-0.2379 N=1.0 Q=0.333 imagStrength=1.1617 [通常の子]
Depth=10 Norm=0.8565 e0=0.8487 e1=-0.0128 e2=0.0253 e3=-0.0588 e4=0.0343 e5=-0.0204 e6=-0.0842 e7=-0.0169 N=3.0 Q=1.000 imagStrength=0.1150 [通常の子]
Depth=13 Norm=1.2265 e0=-0.4728 e1=1.1044 e2=-0.0637 e3=-0.0317 e4=-0.0836 e5=-0.0405 e6=0.1610 e7=-0.1461 N=1.0 Q=0.333 imagStrength=1.1317 [通常の子]
Depth=12 Norm=0.7239 e0=-0.7121 e1=0.0033 e2=-0.0238 e3=0.0670 e4=-0.0563 e5=0.0245 e6=0.0873 e7=-0.0209 N=2.0 Q=0.667 imagStrength=0.1300 [共役の子]
Depth=7 Norm=0.4531 e0=0.0828 e1=0.4349 e2=0.0303 e3=-0.0405 e4=-0.0004 e5=-0.0166 e6=-0.0431 e7=0.0674 N=3.0 Q=1.000 imagStrength=0.4454 [共役の子]
Depth=13 Norm=1.1507 e0=1.1207 e1=-0.1143 e2=-0.1606 e3=-0.0146 e4=-0.0681 e5=-0.1285 e6=-0.0816 e7=-0.0362 N=0.0 Q=0.000 imagStrength=0.2611 [共役の子]
Depth=12 Norm=0.5067 e0=0.2329 e1=-0.4315 e2=-0.0451 e3=0.0535 e4=-0.0998 e5=0.0097 e6=0.0328 e7=-0.0155 N=3.0 Q=1.000 imagStrength=0.4500 [通常の子]
Depth=12 Norm=0.4398 e0=-0.0646 e1=0.4183 e2=-0.0025 e3=0.0535 e4=-0.0998 e5=0.0097 e6=0.0328 e7=-0.0155 N=3.0 Q=1.000 imagStrength=0.4350 [共役の子]
Depth=13 Norm=1.1366 e0=0.8135 e1=0.7433 e2=-0.1264 e3=-0.0111 e4=-0.0623 e5=-0.0701 e6=-0.1109 e7=-0.2013 N=1.0 Q=0.333 imagStrength=0.7938 [通常の子]
Depth=11 Norm=0.5638 e0=-0.5172 e1=-0.1983 e2=0.0467 e3=0.0269 e4=0.0181 e5=0.0443 e6=0.0606 e7=0.0467 N=3.0 Q=1.000 imagStrength=0.2245 [通常の子]
Depth=13 Norm=1.0681 e0=1.0291 e1=0.1615 e2=-0.1348 e3=-0.0165 e4=-0.0694 e5=-0.1078 e6=-0.1083 e7=-0.0946 N=0.0 Q=0.000 imagStrength=0.2857 [共役の子]
Depth=13 Norm=1.1482 e0=0.5801 e1=0.9642 e2=-0.0735 e3=-0.0290 e4=-0.0592 e5=-0.1041 e6=0.1473 e7=-0.0989 N=1.0 Q=0.333 imagStrength=0.9908 [共役の子]
Depth=13 Norm=1.1810 e0=-0.3576 e1=-1.0874 e2=-0.1785 e3=-0.0297 e4=-0.0569 e5=-0.0966 e6=0.1606 e7=-0.1162 N=1.0 Q=0.333 imagStrength=1.1256 [共役の子]
Depth=12 Norm=0.5830 e0=0.5229 e1=0.2192 e2=-0.0120 e3=0.0637 e4=-0.0973 e5=0.0094 e6=0.0673 e7=-0.0128 N=3.0 Q=1.000 imagStrength=0.2579 [通常の子]
Depth=13 Norm=1.1314 e0=0.5299 e1=0.9676 e2=-0.0842 e3=-0.0236 e4=-0.0581 e5=-0.0755 e6=0.1152 e7=-0.1816 N=1.0 Q=0.333 imagStrength=0.9996 [通常の子]
Depth=13 Norm=1.0594 e0=-0.6389 e1=-0.8063 e2=-0.1753 e3=-0.0216 e4=-0.0661 e5=-0.1059 e6=0.0634 e7=-0.1145 N=1.0 Q=0.333 imagStrength=0.8451 [通常の子]
Depth=11 Norm=0.5030 e0=0.3446 e1=0.3474 e2=0.0728 e3=0.0269 e4=0.0179 e5=0.0434 e6=0.0038 e7=0.0734 N=3.0 Q=1.000 imagStrength=0.3665 [共役の子]
Depth=8 Norm=0.4791 e0=0.0645 e1=0.4632 e2=0.0649 e3=0.0084 e4=0.0295 e5=0.0026 e6=0.0753 e7=0.0029 N=3.0 Q=1.000 imagStrength=0.4747 [通常の子]
Depth=11 Norm=0.5019 e0=0.2724 e1=0.3850 e2=0.0532 e3=-0.0187 e4=0.0951 e5=-0.0505 e6=0.0975 e7=0.0721 N=3.0 Q=1.000 imagStrength=0.4215 [共役の子]
Depth=13 Norm=1.1775 e0=0.4251 e1=1.0487 e2=0.0128 e3=0.0646 e4=-0.0820 e5=0.1707 e6=-0.0850 e7=-0.2422 N=1.0 Q=0.333 imagStrength=1.0981 [通常の子]
Depth=13 Norm=1.1076 e0=-0.5508 e1=-0.9126 e2=-0.0872 e3=0.0662 e4=-0.0891 e5=0.1423 e6=-0.1328 e7=-0.1804 N=1.0 Q=0.333 imagStrength=0.9609 [通常の子]
Depth=13 Norm=1.2404 e0=1.1741 e1=0.2802 e2=-0.0524 e3=0.0729 e4=-0.0911 e5=0.1195 e6=-0.1774 e7=-0.1403 N=0.0 Q=0.000 imagStrength=0.4004 [共役の子]
Depth=12 Norm=0.4380 e0=-0.0371 e1=-0.4177 e2=-0.0012 e3=0.0304 e4=0.0836 e5=0.0435 e6=0.0639 e7=-0.0458 N=3.0 Q=1.000 imagStrength=0.4364 [通常の子]
Depth=12 Norm=0.4536 e0=0.2216 e1=0.3730 e2=0.0384 e3=0.0304 e4=0.0836 e5=0.0435 e6=0.0639 e7=-0.0458 N=3.0 Q=1.000 imagStrength=0.3958 [共役の子]
Depth=12 Norm=0.7026 e0=-0.4969 e1=0.4637 e2=0.0441 e3=0.0394 e4=0.0932 e5=0.0456 e6=0.1011 e7=-0.0848 N=3.0 Q=1.000 imagStrength=0.4967 [共役の子]
Depth=10 Norm=0.6997 e0=0.4867 e1=-0.4788 e2=-0.0519 e3=-0.0335 e4=-0.0870 e5=-0.0395 e6=-0.0883 e7=0.0527 N=3.0 Q=1.000 imagStrength=0.5028 [共役の子]
Depth=13 Norm=1.2462 e0=-1.2061 e1=-0.0676 e2=-0.0520 e3=0.0684 e4=-0.0943 e5=0.1375 e6=-0.1370 e7=-0.1995 N=0.0 Q=0.000 imagStrength=0.3136 [通常の子]
Depth=13 Norm=1.2350 e0=1.2144 e1=-0.0630 e2=-0.0520 e3=0.0644 e4=-0.0885 e5=0.1174 e6=-0.0451 e7=-0.1265 N=0.0 Q=0.000 imagStrength=0.2246 [共役の子]
Depth=13 Norm=1.1932 e0=-1.1373 e1=-0.1816 e2=-0.0586 e3=0.0618 e4=-0.0761 e5=0.1672 e6=0.0380 e7=-0.2341 N=0.0 Q=0.000 imagStrength=0.3608 [共役の子]
Depth=12 Norm=0.6135 e0=-0.2998 e1=0.5170 e2=0.0456 e3=0.0358 e4=0.0829 e5=0.0429 e6=0.0769 e7=-0.0340 N=3.0 Q=1.000 imagStrength=0.5352 [通常の子]
Depth=11 Norm=0.6000 e0=0.3498 e1=-0.4813 e2=0.0068 e3=-0.0242 e4=-0.0090 e5=0.0141 e6=-0.0164 e7=0.0691 N=3.0 Q=1.000 imagStrength=0.4875 [通常の子]
Depth=13 Norm=1.1566 e0=0.2038 e1=1.1161 e2=0.0270 e3=0.0691 e4=0.0024 e5=-0.0339 e6=0.1704 e7=-0.1222 N=1.0 Q=0.333 imagStrength=1.1386 [共役の子]
Depth=13 Norm=1.1871 e0=-0.4285 e1=1.0906 e2=-0.0234 e3=0.0866 e4=-0.0047 e5=-0.0428 e6=0.0028 e7=-0.1620 N=1.0 Q=0.333 imagStrength=1.1070 [通常の子]
Depth=10 Norm=0.9063 e0=0.8524 e1=-0.2940 e2=-0.0398 e3=-0.0288 e4=0.0273 e5=0.0098 e6=-0.0691 e7=-0.0187 N=3.0 Q=1.000 imagStrength=0.3079 [通常の子]
Depth=13 Norm=1.2449 e0=-1.0338 e1=0.6725 e2=-0.0021 e3=0.0744 e4=-0.0046 e5=-0.0437 e6=0.0923 e7=-0.1131 N=0.0 Q=0.000 imagStrength=0.6936 [通常の子]
Depth=12 Norm=0.8430 e0=-0.7866 e1=0.2848 e2=0.0424 e3=0.0375 e4=-0.0312 e5=-0.0048 e6=0.0778 e7=-0.0228 N=3.0 Q=1.000 imagStrength=0.3032 [共役の子]
Depth=8 Norm=0.9071 e0=0.8291 e1=-0.3584 e2=0.0175 e3=0.0084 e4=0.0295 e5=0.0026 e6=0.0753 e7=0.0029 N=3.0 Q=1.000 imagStrength=0.3680 [共役の子]
Depth=11 Norm=0.8232 e0=-0.8203 e1=0.0299 e2=0.0339 e3=-0.0243 e4=-0.0103 e5=0.0191 e6=0.0276 e7=0.0282 N=3.0 Q=1.000 imagStrength=0.0683 [共役の子]
Depth=13 Norm=1.2400 e0=-1.2275 e1=-0.1007 e2=-0.0604 e3=0.0808 e4=-0.0081 e5=-0.0699 e6=-0.0719 e7=-0.0217 N=0.0 Q=0.000 imagStrength=0.1758 [通常の子]
Depth=13 Norm=1.2877 e0=1.2764 e1=-0.0340 e2=-0.0578 e3=0.0780 e4=0.0048 e5=-0.0180 e6=0.0148 e7=-0.1339 N=0.0 Q=0.000 imagStrength=0.1705 [通常の子]
Depth=13 Norm=1.1993 e0=-0.7714 e1=0.8778 e2=-0.0306 e3=0.0890 e4=-0.0036 e5=-0.0054 e6=-0.1353 e7=-0.2130 N=1.0 Q=0.333 imagStrength=0.9183 [共役の子]
Depth=12 Norm=0.8603 e0=-0.7400 e1=0.4292 e2=0.0489 e3=0.0243 e4=-0.0278 e5=-0.0028 e6=0.0497 e7=-0.0442 N=3.0 Q=1.000 imagStrength=0.4387 [通常の子]
Depth=12 Norm=0.8662 e0=0.7200 e1=-0.4756 e2=0.0036 e3=0.0243 e4=-0.0278 e5=-0.0028 e6=0.0497 e7=-0.0442 N=3.0 Q=1.000 imagStrength=0.4817 [共役の子]
Depth=13 Norm=1.1266 e0=-0.8690 e1=-0.6628 e2=-0.1882 e3=-0.0223 e4=-0.0817 e5=-0.1090 e6=-0.1356 e7=-0.0426 N=1.0 Q=0.333 imagStrength=0.7169 [通常の子]
Depth=13 Norm=1.1963 e0=1.0181 e1=0.5884 e2=-0.1244 e3=-0.0248 e4=-0.0703 e5=-0.0636 e6=-0.0595 e7=-0.1411 N=0.0 Q=0.000 imagStrength=0.6283 [通常の子]
Depth=11 Norm=0.5819 e0=-0.5265 e1=-0.2319 e2=0.0417 e3=0.0310 e4=0.0263 e5=0.0449 e6=0.0401 e7=0.0252 N=3.0 Q=1.000 imagStrength=0.2479 [共役の子]
Depth=12 Norm=0.4579 e0=0.3017 e1=0.3108 e2=-0.0104 e3=0.0607 e4=-0.0867 e5=0.0185 e6=0.0468 e7=-0.0904 N=3.0 Q=1.000 imagStrength=0.3445 [通常の子]
Depth=12 Norm=0.4603 e0=-0.3526 e1=-0.2531 e2=-0.0387 e3=0.0607 e4=-0.0867 e5=0.0185 e6=0.0468 e7=-0.0904 N=3.0 Q=1.000 imagStrength=0.2958 [共役の子]
Depth=13 Norm=1.0792 e0=-0.8101 e1=-0.6682 e2=-0.1644 e3=-0.0316 e4=-0.0723 e5=-0.0590 e6=-0.0587 e7=-0.1471 N=1.0 Q=0.333 imagStrength=0.7130 [共役の子]
Depth=10 Norm=0.8384 e0=0.8304 e1=0.0017 e2=0.0302 e3=-0.0554 e4=0.0597 e5=-0.0124 e6=-0.0713 e7=-0.0232 N=3.0 Q=1.000 imagStrength=0.1154 [通常の子]
Depth=13 Norm=1.2071 e0=-0.4332 e1=1.1009 e2=-0.0591 e3=-0.0400 e4=-0.0700 e5=-0.0791 e6=0.1670 e7=-0.1153 N=1.0 Q=0.333 imagStrength=1.1267 [通常の子]
Depth=12 Norm=0.7060 e0=-0.6936 e1=-0.0107 e2=-0.0272 e3=0.0624 e4=-0.0820 e5=0.0160 e6=0.0742 e7=-0.0136 N=2.0 Q=0.667 imagStrength=0.1320 [共役の子]
Depth=9 Norm=0.4692 e0=-0.0310 e1=0.4605 e2=-0.0390 e3=-0.0193 e4=-0.0358 e5=-0.0281 e6=-0.0166 e7=-0.0535 N=3.0 Q=1.000 imagStrength=0.4681 [共役の子]
Depth=12 Norm=0.4603 e0=-0.3661 e1=-0.2495 e2=-0.0402 e3=0.0426 e4=-0.0674 e5=0.0164 e6=0.0730 e7=0.0452 N=3.0 Q=1.000 imagStrength=0.2790 [通常の子]
Depth=13 Norm=1.1496 e0=-0.7044 e1=-0.8537 e2=-0.2081 e3=-0.0218 e4=-0.0746 e5=-0.0655 e6=0.0173 e7=-0.2070 N=1.0 Q=0.333 imagStrength=0.9086 [共役の子]
Depth=13 Norm=1.1308 e0=0.6214 e1=0.9144 e2=-0.1169 e3=-0.0210 e4=-0.0786 e5=-0.0826 e6=-0.0106 e7=-0.1710 N=1.0 Q=0.333 imagStrength=0.9448 [共役の子]
Depth=13 Norm=1.1644 e0=-1.0960 e1=0.3040 e2=-0.1390 e3=-0.0219 e4=-0.0850 e5=-0.1044 e6=-0.1502 e7=-0.0414 N=0.0 Q=0.000 imagStrength=0.3932 [通常の子]
Depth=11 Norm=0.8843 e0=0.8435 e1=-0.2501 e2=0.0408 e3=0.0310 e4=0.0295 e5=0.0434 e6=0.0447 e7=0.0230 N=3.0 Q=1.000 imagStrength=0.2655 [通常の子]
Depth=13 Norm=1.1960 e0=-0.8015 e1=0.8699 e2=-0.0897 e3=-0.0319 e4=-0.0715 e5=-0.0612 e6=-0.0135 e7=-0.1141 N=1.0 Q=0.333 imagStrength=0.8877 [共役の子]
Depth=12 Norm=0.8459 e0=-0.7784 e1=0.2915 e2=-0.0113 e3=0.0629 e4=-0.0852 e5=0.0203 e6=0.0465 e7=-0.1038 N=3.0 Q=1.000 imagStrength=0.3312 [共役の子]
Depth=10 Norm=0.9102 e0=0.8504 e1=-0.3036 e2=0.0150 e3=-0.0573 e4=0.0672 e5=-0.0160 e6=-0.0370 e7=0.0594 N=3.0 Q=1.000 imagStrength=0.3246 [共役の子]
Depth=13 Norm=1.2592 e0=-1.0374 e1=0.6841 e2=-0.0902 e3=-0.0308 e4=-0.0832 e5=-0.0837 e6=-0.1118 e7=-0.0763 N=0.0 Q=0.000 imagStrength=0.7137 [通常の子]
Depth=13 Norm=1.1905 e0=-0.1298 e1=1.1557 e2=-0.0569 e3=-0.0399 e4=-0.0717 e5=-0.0670 e6=0.1771 e7=-0.1371 N=1.0 Q=0.333 imagStrength=1.1834 [通常の子]
Depth=13 Norm=1.1360 e0=-0.0196 e1=-1.0981 e2=-0.1728 e3=-0.0392 e4=-0.0738 e5=-0.0738 e6=0.1649 e7=-0.1214 N=1.0 Q=0.333 imagStrength=1.1358 [通常の子]
Depth=11 Norm=0.5071 e0=-0.1353 e1=0.4730 e2=0.0757 e3=0.0312 e4=0.0323 e5=0.0360 e6=-0.0169 e7=0.0762 N=3.0 Q=1.000 imagStrength=0.4887 [共役の子]
Depth=12 Norm=0.8289 e0=-0.8044 e1=0.1583 e2=-0.0202 e3=0.0406 e4=-0.0625 e5=0.0177 e6=0.0743 e7=0.0569 N=3.0 Q=1.000 imagStrength=0.2002 [通常の子]
Depth=12 Norm=0.9096 e0=0.8710 e1=-0.2294 e2=-0.0396 e3=0.0406 e4=-0.0625 e5=0.0177 e6=0.0743 e7=0.0569 N=3.0 Q=1.000 imagStrength=0.2623 [共役の子]
Depth=13 Norm=1.1927 e0=-0.0370 e1=1.1648 e2=-0.1080 e3=-0.0211 e4=-0.0781 e5=-0.0656 e6=0.0101 e7=-0.2040 N=1.0 Q=0.333 imagStrength=1.1921 [共役の子]
Depth=6 Norm=0.8175 e0=0.7835 e1=0.2287 e2=0.0066 e3=0.0205 e4=-0.0112 e5=0.0047 e6=-0.0107 e7=-0.0375 N=3.0 Q=1.000 imagStrength=0.2333 [通常の子]
Depth=13 Norm=1.2123 e0=1.1682 e1=-0.0429 e2=0.0790 e3=0.1298 e4=0.0121 e5=0.1823 e6=0.0488 e7=-0.2105 N=0.0 Q=0.000 imagStrength=0.3240 [通常の子]
Depth=11 Norm=0.7932 e0=-0.7673 e1=0.1629 e2=-0.0033 e3=-0.0626 e4=0.0377 e5=-0.0633 e6=0.0242 e7=0.0628 N=3.0 Q=1.000 imagStrength=0.2011 [通常の子]
Depth=13 Norm=1.1704 e0=0.8964 e1=-0.7130 e2=0.0325 e3=0.1368 e4=-0.0011 e5=0.1363 e6=-0.0653 e7=-0.1238 N=1.0 Q=0.333 imagStrength=0.7526 [共役の子]
Depth=12 Norm=0.8275 e0=0.7220 e1=-0.3814 e2=0.0418 e3=-0.0187 e4=0.1124 e5=0.0112 e6=0.0453 e7=0.0331 N=3.0 Q=1.000 imagStrength=0.4044 [共役の子]
Depth=10 Norm=0.7633 e0=-0.6594 e1=0.3643 e2=-0.0490 e3=0.0163 e4=-0.0956 e5=-0.0100 e6=-0.0550 e7=0.0039 N=3.0 Q=1.000 imagStrength=0.3843 [共役の子]
Depth=13 Norm=1.1248 e0=1.0482 e1=-0.3068 e2=0.0470 e3=0.1344 e4=0.0119 e5=0.1579 e6=0.0518 e7=-0.1558 N=0.0 Q=0.000 imagStrength=0.4080 [通常の子]
Depth=13 Norm=1.2072 e0=0.4523 e1=-1.0657 e2=-0.0133 e3=0.1478 e4=0.0015 e5=0.1464 e6=-0.2351 e7=-0.1355 N=1.0 Q=0.333 imagStrength=1.1193 [通常の子]
Depth=13 Norm=1.2477 e0=-0.2283 e1=1.1737 e2=0.1012 e3=0.1480 e4=0.0005 e5=0.1436 e6=-0.2398 e7=-0.1296 N=1.0 Q=0.333 imagStrength=1.2267 [通常の子]
Depth=11 Norm=0.6640 e0=0.4368 e1=-0.4843 e2=-0.0342 e3=-0.0634 e4=0.0333 e5=-0.0570 e6=0.0745 e7=0.0203 N=3.0 Q=1.000 imagStrength=0.5001 [共役の子]
Depth=12 Norm=0.8491 e0=0.7922 e1=-0.2713 e2=0.0489 e3=-0.0024 e4=0.0955 e5=0.0126 e6=0.0214 e7=-0.0877 N=3.0 Q=1.000 imagStrength=0.3057 [通常の子]
Depth=12 Norm=0.7901 e0=-0.7049 e1=0.3220 e2=0.0786 e3=-0.0024 e4=0.0955 e5=0.0126 e6=0.0214 e7=-0.0877 N=3.0 Q=1.000 imagStrength=0.3569 [共役の子]
Depth=13 Norm=1.2252 e0=0.5138 e1=-1.0936 e2=0.0354 e3=0.1285 e4=0.0054 e5=0.1278 e6=-0.0789 e7=-0.0252 N=1.0 Q=0.333 imagStrength=1.1122 [共役の子]
Depth=9 Norm=0.5627 e0=0.3913 e1=0.3924 e2=0.0532 e3=0.0622 e4=0.0015 e5=0.0334 e6=-0.0091 e7=-0.0399 N=3.0 Q=1.000 imagStrength=0.4044 [通常の子]
Depth=12 Norm=0.4542 e0=-0.0266 e1=-0.4355 e2=0.0410 e3=-0.0189 e4=0.0970 e5=0.0013 e6=0.0620 e7=0.0250 N=3.0 Q=1.000 imagStrength=0.4535 [通常の子]
Depth=13 Norm=1.2465 e0=-1.1043 e1=-0.5003 e2=0.0333 e3=0.1397 e4=0.0291 e5=0.1360 e6=0.0399 e7=-0.2057 N=0.0 Q=0.000 imagStrength=0.5780 [共役の子]
Depth=13 Norm=1.2605 e0=1.0816 e1=0.6046 e2=0.0901 e3=0.1420 e4=0.0190 e5=0.0972 e6=-0.0250 e7=-0.1218 N=0.0 Q=0.000 imagStrength=0.6473 [共役の子]
Depth=11 Norm=0.5014 e0=-0.0777 e1=-0.4842 e2=-0.0364 e3=-0.0638 e4=0.0090 e5=-0.0438 e6=-0.0290 e7=0.0520 N=3.0 Q=1.000 imagStrength=0.4954 [共役の子]
Depth=13 Norm=1.2589 e0=-0.2864 e1=-1.2098 e2=-0.0119 e3=0.1436 e4=0.0218 e5=0.0890 e6=0.0112 e7=-0.0999 N=1.0 Q=0.333 imagStrength=1.2259 [通常の子]
Depth=13 Norm=1.3281 e0=0.5089 e1=1.1966 e2=0.1118 e3=0.1419 e4=0.0285 e5=0.1141 e6=0.0531 e7=-0.1541 N=1.0 Q=0.333 imagStrength=1.2267 [通常の子]
Depth=13 Norm=1.2126 e0=-0.5612 e1=1.0270 e2=0.0987 e3=0.1480 e4=0.0190 e5=0.0918 e6=-0.2347 e7=-0.0714 N=1.0 Q=0.333 imagStrength=1.0749 [通常の子]
Depth=11 Norm=0.6671 e0=0.4532 e1=-0.4775 e2=-0.0342 e3=-0.0642 e4=0.0092 e5=-0.0412 e6=0.0671 e7=0.0047 N=3.0 Q=1.000 imagStrength=0.4895 [通常の子]
Depth=13 Norm=1.1902 e0=0.0573 e1=1.1642 e2=0.1545 e3=0.1301 e4=0.0271 e5=0.1062 e6=-0.0566 e7=-0.0430 N=1.0 Q=0.333 imagStrength=1.1888 [共役の子]
Depth=12 Norm=0.7095 e0=-0.6905 e1=-0.0781 e2=0.0609 e3=0.0002 e4=0.0657 e5=0.0022 e6=0.0152 e7=-0.1108 N=2.0 Q=0.667 imagStrength=0.1632 [共役の子]
Depth=10 Norm=0.8613 e0=0.8509 e1=0.0665 e2=-0.0631 e3=0.0154 e4=-0.0587 e5=-0.0006 e6=-0.0127 e7=0.0741 N=3.0 Q=1.000 imagStrength=0.1332 [共役の子]
Depth=13 Norm=1.2885 e0=-0.3179 e1=1.2248 e2=0.1601 e3=0.1304 e4=0.0255 e5=0.1026 e6=-0.0627 e7=-0.0354 N=1.0 Q=0.333 imagStrength=1.2487 [通常の子]
Depth=11 Norm=0.8250 e0=0.7437 e1=-0.3498 e2=-0.0069 e3=-0.0065 e4=-0.0424 e5=0.0440 e6=-0.0370 e7=0.0067 N=3.0 Q=1.000 imagStrength=0.3572 [通常の子]
Depth=13 Norm=1.1651 e0=-0.5312 e1=1.0169 e2=0.0450 e3=0.0153 e4=0.0274 e5=-0.1019 e6=0.1665 e7=-0.0031 N=1.0 Q=0.333 imagStrength=1.0369 [共役の子]
Depth=13 Norm=1.1515 e0=-0.9691 e1=0.6051 e2=-0.0064 e3=0.0281 e4=0.0160 e5=-0.1350 e6=0.0157 e7=0.0329 N=0.0 Q=0.000 imagStrength=0.6219 [通常の子]
Depth=10 Norm=0.7059 e0=0.5150 e1=-0.4746 e2=-0.0267 e3=-0.0096 e4=0.0764 e5=0.0203 e6=-0.0105 e7=-0.0257 N=3.0 Q=1.000 imagStrength=0.4828 [通常の子]
Depth=13 Norm=1.2146 e0=-1.2067 e1=-0.0428 e2=-0.0219 e3=0.0262 e4=0.0123 e5=-0.1255 e6=-0.0038 e7=0.0127 N=0.0 Q=0.000 imagStrength=0.1381 [通常の子]
Depth=12 Norm=0.7140 e0=-0.5345 e1=0.4653 e2=0.0322 e3=0.0111 e4=-0.0753 e5=-0.0177 e6=0.0221 e7=-0.0053 N=3.0 Q=1.000 imagStrength=0.4735 [共役の子]
Depth=8 Norm=0.6365 e0=0.3916 e1=-0.5005 e2=-0.0186 e3=0.0070 e4=0.0067 e5=0.0085 e6=0.0272 e7=0.0050 N=3.0 Q=1.000 imagStrength=0.5018 [共役の子]
Depth=11 Norm=0.6508 e0=-0.5879 e1=-0.2701 e2=-0.0025 e3=-0.0066 e4=-0.0432 e5=0.0453 e6=-0.0297 e7=-0.0020 N=3.0 Q=1.000 imagStrength=0.2790 [共役の子]
Depth=13 Norm=1.2592 e0=-0.9603 e1=-0.7944 e2=-0.0753 e3=0.0278 e4=0.0147 e5=-0.1447 e6=-0.0036 e7=0.0693 N=0.0 Q=0.000 imagStrength=0.8145 [通常の子]
Depth=13 Norm=1.3308 e0=1.1287 e1=0.6920 e2=-0.0000 e3=0.0251 e4=0.0271 e5=-0.0950 e6=0.0794 e7=-0.0381 N=0.0 Q=0.000 imagStrength=0.7050 [通常の子]
Depth=13 Norm=1.1965 e0=-1.1596 e1=0.2626 e2=-0.0150 e3=0.0269 e4=0.0234 e5=-0.0740 e6=0.0221 e7=-0.1030 N=0.0 Q=0.000 imagStrength=0.2950 [共役の子]
Depth=12 Norm=0.6561 e0=-0.3705 e1=0.5345 e2=0.0356 e3=0.0087 e4=-0.0742 e5=-0.0174 e6=0.0170 e7=-0.0098 N=3.0 Q=1.000 imagStrength=0.5415 [通常の子]
Depth=12 Norm=0.6136 e0=0.2960 e1=-0.5313 e2=-0.0179 e3=0.0087 e4=-0.0742 e5=-0.0174 e6=0.0170 e7=-0.0098 N=3.0 Q=1.000 imagStrength=0.5375 [共役の子]
Depth=13 Norm=1.2315 e0=-0.2952 e1=-1.1584 e2=-0.1130 e3=0.0273 e4=-0.0609 e5=0.0597 e6=-0.2380 e7=-0.1006 N=1.0 Q=0.333 imagStrength=1.1956 [共役の子]
Depth=13 Norm=1.1844 e0=0.1542 e1=1.1422 e2=0.0052 e3=0.0273 e4=-0.0605 e5=0.0613 e6=-0.2356 e7=-0.1037 N=1.0 Q=0.333 imagStrength=1.1743 [共役の子]
Depth=12 Norm=0.6833 e0=-0.6776 e1=-0.0673 e2=-0.0009 e3=0.0037 e4=0.0346 e5=0.0274 e6=0.0131 e7=-0.0341 N=2.0 Q=0.667 imagStrength=0.0885 [通常の子]
Depth=13 Norm=1.2494 e0=-0.2705 e1=-1.1884 e2=-0.1103 e3=0.0257 e4=-0.0628 e5=0.0453 e6=-0.2309 e7=-0.0581 N=1.0 Q=0.333 imagStrength=1.2198 [通常の子]
Depth=13 Norm=1.3182 e0=0.5111 e1=1.1913 e2=0.0118 e3=0.0244 e4=-0.0566 e5=0.0705 e6=-0.1893 e7=-0.1119 N=1.0 Q=0.333 imagStrength=1.2151 [通常の子]
Depth=11 Norm=0.4991 e0=-0.0660 e1=-0.4875 e2=-0.0112 e3=-0.0019 e4=0.0526 e5=-0.0150 e6=0.0629 e7=0.0055 N=3.0 Q=1.000 imagStrength=0.4947 [共役の子]
Depth=11 Norm=0.7537 e0=-0.7378 e1=-0.1268 e2=0.0051 e3=-0.0019 e4=0.0575 e5=-0.0229 e6=0.0151 e7=0.0589 N=3.0 Q=1.000 imagStrength=0.1537 [通常の子]
Depth=13 Norm=1.2540 e0=1.2444 e1=-0.0971 e2=-0.0199 e3=0.0139 e4=-0.0630 e5=0.0502 e6=-0.0155 e7=-0.0842 N=0.0 Q=0.000 imagStrength=0.1544 [共役の子]
Depth=13 Norm=1.3201 e0=1.1145 e1=0.6653 e2=0.0046 e3=0.0162 e4=-0.0520 e5=0.1011 e6=0.0259 e7=-0.2101 N=0.0 Q=0.000 imagStrength=0.7075 [通常の子]
Depth=10 Norm=0.6082 e0=0.4748 e1=0.3735 e2=0.0135 e3=-0.0126 e4=-0.0385 e5=-0.0243 e6=-0.0502 e7=-0.0083 N=3.0 Q=1.000 imagStrength=0.3802 [通常の子]
Depth=13 Norm=1.3044 e0=0.4824 e1=1.1924 e2=0.0588 e3=0.0039 e4=-0.0476 e5=0.0719 e6=0.1664 e7=-0.0911 N=1.0 Q=0.333 imagStrength=1.2119 [通常の子]
Depth=12 Norm=0.4834 e0=-0.2859 e1=-0.3845 e2=-0.0167 e3=0.0198 e4=0.0293 e5=0.0252 e6=0.0440 e7=-0.0011 N=3.0 Q=1.000 imagStrength=0.3898 [共役の子]
Depth=5 Norm=0.9469 e0=0.9382 e1=0.1195 e2=0.0304 e3=-0.0079 e4=0.0095 e5=0.0003 e6=0.0287 e7=0.0175 N=3.0 Q=1.000 imagStrength=0.1284 [共役の子]
Depth=12 Norm=0.4358 e0=-0.2242 e1=-0.3485 e2=-0.0455 e3=0.0603 e4=-0.0824 e5=0.0184 e6=0.0218 e7=-0.0704 N=3.0 Q=1.000 imagStrength=0.3738 [共役の子]
Depth=10 Norm=0.5371 e0=0.4032 e1=0.3344 e2=0.0485 e3=-0.0581 e4=0.0596 e5=-0.0156 e6=-0.0270 e7=0.0625 N=3.0 Q=1.000 imagStrength=0.3549 [共役の子]
Depth=13 Norm=1.1704 e0=0.4545 e1=1.0682 e2=-0.0753 e3=-0.0371 e4=-0.0683 e5=-0.0576 e6=-0.0313 e7=-0.0784 N=1.0 Q=0.333 imagStrength=1.0785 [通常の子]
Depth=13 Norm=1.1258 e0=-0.6250 e1=-0.8700 e2=-0.2155 e3=-0.0214 e4=-0.0758 e5=-0.0539 e6=-0.2074 e7=-0.1459 N=1.0 Q=0.333 imagStrength=0.9363 [共役の子]
Depth=13 Norm=1.1023 e0=0.5226 e1=0.9214 e2=-0.1231 e3=-0.0208 e4=-0.0790 e5=-0.0678 e6=-0.2298 e7=-0.1170 N=1.0 Q=0.333 imagStrength=0.9705 [共役の子]
Depth=12 Norm=0.4814 e0=-0.4188 e1=-0.2137 e2=-0.0397 e3=0.0454 e4=-0.0665 e5=0.0190 e6=0.0284 e7=-0.0387 N=3.0 Q=1.000 imagStrength=0.2375 [通常の子]
Depth=12 Norm=0.7968 e0=-0.7728 e1=0.1569 e2=-0.0215 e3=0.0425 e4=-0.0545 e5=0.0169 e6=0.0662 e7=0.0561 N=3.0 Q=1.000 imagStrength=0.1941 [通常の子]
Depth=12 Norm=0.8753 e0=0.8375 e1=-0.2247 e2=-0.0407 e3=0.0425 e4=-0.0545 e5=0.0169 e6=0.0662 e7=0.0561 N=3.0 Q=1.000 imagStrength=0.2544 [共役の子]
Depth=13 Norm=1.1427 e0=-0.0442 e1=1.1175 e2=-0.1115 e3=-0.0248 e4=-0.0728 e5=-0.0556 e6=0.0138 e7=-0.1825 N=1.0 Q=0.333 imagStrength=1.1418 [共役の子]
Depth=11 Norm=0.4682 e0=0.0851 e1=-0.4506 e2=0.0302 e3=0.0327 e4=0.0309 e5=0.0314 e6=-0.0191 e7=0.0681 N=3.0 Q=1.000 imagStrength=0.4604 [通常の子]
Depth=13 Norm=1.1017 e0=0.5303 e1=0.9381 e2=-0.0721 e3=-0.0418 e4=-0.0687 e5=-0.0634 e6=0.1608 e7=-0.1038 N=1.0 Q=0.333 imagStrength=0.9656 [共役の子]
Depth=13 Norm=1.1504 e0=-0.0549 e1=1.1268 e2=-0.1102 e3=-0.0256 e4=-0.0724 e5=-0.0601 e6=0.0179 e7=-0.1697 N=1.0 Q=0.333 imagStrength=1.1491 [通常の子]
Depth=8 Norm=0.9001 e0=0.8259 e1=-0.3461 e2=-0.0137 e3=0.0643 e4=-0.0092 e5=0.0226 e6=0.0577 e7=0.0052 N=3.0 Q=1.000 imagStrength=0.3579 [通常の子]
Depth=11 Norm=0.8136 e0=-0.8078 e1=0.0388 e2=0.0558 e3=0.0311 e4=-0.0019 e5=0.0576 e6=0.0165 e7=0.0116 N=3.0 Q=1.000 imagStrength=0.0965 [共役の子]
Depth=13 Norm=1.2272 e0=-1.2033 e1=-0.0679 e2=-0.1495 e3=-0.0273 e4=-0.0544 e5=-0.1524 e6=-0.0596 e7=0.0274 N=0.0 Q=0.000 imagStrength=0.2412 [通常の子]
Depth=13 Norm=1.2731 e0=1.2551 e1=-0.0524 e2=-0.1489 e3=-0.0303 e4=-0.0414 e5=-0.1016 e6=0.0261 e7=-0.0836 N=0.0 Q=0.000 imagStrength=0.2133 [通常の子]
Depth=13 Norm=1.1870 e0=-0.7450 e1=0.8866 e2=-0.1208 e3=-0.0201 e4=-0.0493 e5=-0.0890 e6=-0.1261 e7=-0.1634 N=1.0 Q=0.333 imagStrength=0.9242 [共役の子]
Depth=12 Norm=0.8578 e0=-0.7385 e1=0.4199 e2=-0.0059 e3=0.0470 e4=-0.0991 e5=0.0051 e6=0.0321 e7=-0.0315 N=3.0 Q=1.000 imagStrength=0.4364 [通常の子]
Depth=12 Norm=0.8646 e0=0.7196 e1=-0.4616 e2=-0.0501 e3=0.0470 e4=-0.0991 e5=0.0051 e6=0.0321 e7=-0.0315 N=3.0 Q=1.000 imagStrength=0.4793 [共役の子]
Depth=12 Norm=0.8200 e0=0.8023 e1=-0.0998 e2=-0.0337 e3=0.0398 e4=-0.0929 e5=0.0024 e6=0.0484 e7=0.0708 N=3.0 Q=1.000 imagStrength=0.1694 [共役の子]
Depth=10 Norm=0.8420 e0=-0.8288 e1=0.0833 e2=0.0364 e3=-0.0553 e4=0.0829 e5=0.0007 e6=-0.0529 e7=-0.0320 N=3.0 Q=1.000 imagStrength=0.1484 [共役の子]
Depth=13 Norm=1.1456 e0=0.5938 e1=-0.9366 e2=-0.2169 e3=-0.0241 e4=-0.0481 e5=-0.1144 e6=0.0319 e7=-0.1365 N=1.0 Q=0.333 imagStrength=0.9797 [通常の子]
Depth=13 Norm=1.2018 e0=-0.4242 e1=1.0970 e2=-0.0691 e3=-0.0371 e4=-0.0434 e5=-0.0955 e6=0.1626 e7=-0.1321 N=1.0 Q=0.333 imagStrength=1.1245 [共役の子]
Depth=13 Norm=1.2734 e0=0.6549 e1=-1.0602 e2=-0.1801 e3=-0.0351 e4=-0.0514 e5=-0.1260 e6=0.1106 e7=-0.0648 N=1.0 Q=0.333 imagStrength=1.0921 [共役の子]
Depth=12 Norm=0.8822 e0=0.8468 e1=-0.2044 e2=-0.0364 e3=0.0604 e4=-0.1030 e5=0.0038 e6=0.0613 e7=-0.0104 N=3.0 Q=1.000 imagStrength=0.2474 [通常の子]
Depth=10 Norm=0.7163 e0=-0.6861 e1=-0.1630 e2=-0.0202 e3=-0.0410 e4=-0.0508 e5=-0.0331 e6=-0.0522 e7=0.0855 N=3.0 Q=1.000 imagStrength=0.2058 [通常の子]
Depth=13 Norm=1.1722 e0=0.0347 e1=-1.1038 e2=-0.1673 e3=0.0549 e4=-0.0832 e5=0.0973 e6=-0.2670 e7=-0.1890 N=1.0 Q=0.333 imagStrength=1.1717 [通常の子]
Depth=12 Norm=0.6522 e0=0.6270 e1=0.1423 e2=0.0147 e3=0.0322 e4=0.0563 e5=0.0370 e6=0.0532 e7=-0.0572 N=3.0 Q=1.000 imagStrength=0.1793 [共役の子]
Depth=9 Norm=0.4998 e0=-0.2472 e1=-0.4174 e2=-0.0583 e3=0.0193 e4=-0.0506 e5=0.0404 e6=-0.0216 e7=-0.0773 N=3.0 Q=1.000 imagStrength=0.4344 [共役の子]
Depth=12 Norm=0.4762 e0=0.1930 e1=0.4149 e2=0.0288 e3=0.0489 e4=0.0398 e5=0.0364 e6=0.0468 e7=-0.0952 N=3.0 Q=1.000 imagStrength=0.4353 [通常の子]
Depth=13 Norm=1.2245 e0=1.0259 e1=0.6447 e2=-0.0305 e3=0.0365 e4=-0.0789 e5=0.0798 e6=-0.1000 e7=-0.0814 N=0.0 Q=0.000 imagStrength=0.6687 [共役の子]
Depth=13 Norm=1.2245 e0=-0.8534 e1=-0.8471 e2=-0.1078 e3=0.0348 e4=-0.0716 e5=0.1089 e6=-0.0509 e7=-0.1448 N=1.0 Q=0.333 imagStrength=0.8781 [共役の子]
Depth=13 Norm=1.2016 e0=-1.1303 e1=0.2231 e2=-0.0685 e3=0.0409 e4=-0.0726 e5=0.1450 e6=-0.0220 e7=-0.2889 N=0.0 Q=0.000 imagStrength=0.4079 [共役の子]
Depth=12 Norm=0.6428 e0=-0.3466 e1=0.5235 e2=0.0338 e3=0.0411 e4=0.0630 e5=0.0372 e6=0.0897 e7=-0.0521 N=3.0 Q=1.000 imagStrength=0.5413 [通常の子]
Depth=12 Norm=0.6053 e0=0.2807 e1=-0.5190 e2=-0.0185 e3=0.0411 e4=0.0630 e5=0.0372 e6=0.0897 e7=-0.0521 N=3.0 Q=1.000 imagStrength=0.5362 [共役の子]
Depth=13 Norm=1.2100 e0=-0.9074 e1=-0.7796 e2=-0.1068 e3=0.0350 e4=-0.0784 e5=0.0731 e6=0.0245 e7=-0.0904 N=1.0 Q=0.333 imagStrength=0.8005 [通常の子]
Depth=11 Norm=0.7545 e0=0.7161 e1=0.2093 e2=0.0488 e3=-0.0037 e4=0.0722 e5=-0.0281 e6=0.0125 e7=0.0641 N=3.0 Q=1.000 imagStrength=0.2376 [通常の子]
Depth=13 Norm=1.2798 e0=-1.2391 e1=-0.1482 e2=-0.0971 e3=0.0406 e4=-0.0688 e5=0.1221 e6=0.0341 e7=-0.2208 N=0.0 Q=0.000 imagStrength=0.3203 [共役の子]
Depth=13 Norm=1.2019 e0=-0.8035 e1=0.8746 e2=-0.0129 e3=0.0431 e4=0.0096 e5=-0.1036 e6=0.1409 e7=-0.0344 N=1.0 Q=0.333 imagStrength=0.8938 [通常の子]
Depth=13 Norm=1.1865 e0=0.6958 e1=-0.9315 e2=-0.1056 e3=0.0418 e4=0.0144 e5=-0.0844 e6=0.1734 e7=-0.0765 N=1.0 Q=0.333 imagStrength=0.9611 [通常の子]
Depth=11 Norm=0.7246 e0=-0.5930 e1=0.4063 e2=0.0572 e3=-0.0103 e4=-0.0307 e5=0.0357 e6=-0.0244 e7=0.0446 N=3.0 Q=1.000 imagStrength=0.4163 [共役の子]
Depth=12 Norm=0.8443 e0=-0.7303 e1=0.4126 e2=0.0346 e3=0.0283 e4=-0.0601 e5=-0.0137 e6=0.0540 e7=0.0233 N=3.0 Q=1.000 imagStrength=0.4237 [通常の子]
Depth=12 Norm=0.8553 e0=0.7166 e1=-0.4582 e2=-0.0091 e3=0.0283 e4=-0.0601 e5=-0.0137 e6=0.0540 e7=0.0233 N=3.0 Q=1.000 imagStrength=0.4670 [共役の子]
Depth=13 Norm=1.1692 e0=-0.7224 e1=0.8948 e2=-0.0520 e3=0.0590 e4=0.0092 e5=-0.0614 e6=0.0180 e7=-0.1846 N=1.0 Q=0.333 imagStrength=0.9193 [共役の子]
Depth=10 Norm=0.5333 e0=-0.1062 e1=0.5150 e2=0.0178 e3=-0.0366 e4=0.0688 e5=0.0174 e6=-0.0285 e7=0.0204 N=3.0 Q=1.000 imagStrength=0.5226 [通常の子]
Depth=13 Norm=1.2659 e0=1.0691 e1=0.6613 e2=-0.0468 e3=0.0504 e4=0.0158 e5=-0.0738 e6=0.0638 e7=-0.0874 N=0.0 Q=0.000 imagStrength=0.6778 [通常の子]
Depth=12 Norm=0.6006 e0=0.2682 e1=-0.5297 e2=-0.0129 e3=0.0354 e4=-0.0792 e5=-0.0148 e6=0.0172 e7=-0.0013 N=3.0 Q=1.000 imagStrength=0.5374 [共役の子]
Depth=9 Norm=0.9549 e0=0.9515 e1=-0.0447 e2=-0.0370 e3=0.0162 e4=0.0141 e5=-0.0384 e6=-0.0116 e7=-0.0338 N=3.0 Q=1.000 imagStrength=0.0811 [共役の子]
Depth=12 Norm=0.8409 e0=0.7013 e1=-0.4518 e2=-0.0076 e3=0.0389 e4=-0.0699 e5=-0.0122 e6=0.0414 e7=-0.0540 N=3.0 Q=1.000 imagStrength=0.4641 [通常の子]
Depth=13 Norm=1.2595 e0=-1.0527 e1=0.6652 e2=-0.0451 e3=0.0538 e4=0.0115 e5=-0.0503 e6=-0.0138 e7=-0.1666 N=0.0 Q=0.000 imagStrength=0.6914 [共役の子]
Depth=13 Norm=1.3269 e0=1.1970 e1=-0.5380 e2=-0.1062 e3=0.0567 e4=-0.0018 e5=-0.1038 e6=-0.1034 e7=-0.0508 N=0.0 Q=0.000 imagStrength=0.5727 [共役の子]
Depth=12 Norm=0.8004 e0=-0.7633 e1=0.2070 e2=0.0472 e3=-0.0460 e4=0.0565 e5=-0.0193 e6=-0.0001 e7=0.0848 N=3.0 Q=1.000 imagStrength=0.2408 [通常の子]
Depth=12 Norm=0.8638 e0=0.8104 e1=-0.2758 e2=0.0230 e3=-0.0460 e4=0.0565 e5=-0.0193 e6=-0.0001 e7=0.0848 N=3.0 Q=1.000 imagStrength=0.2991 [共役の子]
Depth=13 Norm=1.1134 e0=-0.1820 e1=1.0817 e2=0.1414 e3=0.0696 e4=0.0640 e5=0.0458 e6=0.0708 e7=-0.0196 N=1.0 Q=0.333 imagStrength=1.0985 [共役の子]
Depth=11 Norm=0.4904 e0=0.1733 e1=-0.4473 e2=-0.0581 e3=-0.0401 e4=-0.0325 e5=-0.0221 e6=-0.0623 e7=0.0041 N=3.0 Q=1.000 imagStrength=0.4588 [通常の子]
Depth=13 Norm=1.0797 e0=0.3985 e1=0.9560 e2=0.1819 e3=0.0538 e4=0.0671 e5=0.0347 e6=0.2177 e7=0.0626 N=1.0 Q=0.333 imagStrength=1.0035 [共役の子]
Depth=13 Norm=1.1224 e0=-0.1813 e1=1.0917 e2=0.1420 e3=0.0703 e4=0.0617 e5=0.0342 e6=0.0711 e7=0.0086 N=1.0 Q=0.333 imagStrength=1.1077 [通常の子]
Depth=9 Norm=0.4447 e0=-0.1574 e1=-0.4120 e2=0.0250 e3=0.0304 e4=0.0312 e5=0.0087 e6=0.0092 e7=0.0234 N=3.0 Q=1.000 imagStrength=0.4159 [通常の子]
Depth=12 Norm=0.4496 e0=0.2568 e1=0.3569 e2=0.0558 e3=-0.0282 e4=0.0291 e5=-0.0179 e6=-0.0440 e7=-0.0415 N=3.0 Q=1.000 imagStrength=0.3690 [通常の子]
Depth=13 Norm=1.1270 e0=0.8812 e1=0.6637 e2=0.1589 e3=0.0578 e4=0.0624 e5=0.0159 e6=-0.0212 e7=0.1415 N=0.0 Q=0.000 imagStrength=0.7026 [共役の子]
Depth=13 Norm=1.1333 e0=-0.7212 e1=-0.8600 e2=0.0803 e3=0.0565 e4=0.0680 e5=0.0389 e6=0.0169 e7=0.0923 N=1.0 Q=0.333 imagStrength=0.8742 [共役の子]
Depth=11 Norm=0.4505 e0=-0.0344 e1=0.4430 e2=-0.0116 e3=-0.0403 e4=-0.0314 e5=-0.0202 e6=0.0282 e7=-0.0394 N=3.0 Q=1.000 imagStrength=0.4492 [共役の子]
Depth=13 Norm=1.1112 e0=0.0166 e1=1.0886 e2=0.1829 e3=0.0579 e4=0.0642 e5=0.0408 e6=-0.0143 e7=0.0812 N=1.0 Q=0.333 imagStrength=1.1111 [通常の子]
Depth=13 Norm=1.0508 e0=-0.1325 e1=-1.0300 e2=0.0744 e3=0.0585 e4=0.0617 e5=0.0296 e6=-0.0324 e7=0.1045 N=1.0 Q=0.333 imagStrength=1.0424 [通常の子]
Depth=12 Norm=0.6644 e0=-0.4401 e1=0.4776 e2=0.0588 e3=-0.0306 e4=0.1191 e5=0.0117 e6=0.0153 e7=-0.0254 N=3.0 Q=1.000 imagStrength=0.4977 [共役の子]
Depth=10 Norm=0.6474 e0=0.4062 e1=-0.4882 e2=-0.0660 e3=0.0371 e4=-0.0999 e5=-0.0118 e6=-0.0036 e7=-0.0022 N=3.0 Q=1.000 imagStrength=0.5042 [共役の子]
Depth=13 Norm=1.2146 e0=-1.1813 e1=-0.2138 e2=0.1041 e3=0.0577 e4=0.0068 e5=0.1265 e6=-0.0605 e7=0.0159 N=0.0 Q=0.000 imagStrength=0.2826 [通常の子]
Depth=13 Norm=1.2096 e0=1.1924 e1=0.0462 e2=0.1218 e3=0.0526 e4=0.0125 e5=0.1095 e6=0.0417 e7=0.0879 N=0.0 Q=0.000 imagStrength=0.2033 [共役の子]
Depth=13 Norm=1.1729 e0=-1.1106 e1=-0.3009 e2=0.1035 e3=0.0501 e4=0.0239 e5=0.1549 e6=0.1178 e7=-0.0106 N=0.0 Q=0.000 imagStrength=0.3773 [共役の子]
Depth=12 Norm=0.5632 e0=-0.2085 e1=0.5072 e2=0.0594 e3=-0.0315 e4=0.1077 e5=0.0094 e6=-0.0067 e7=0.0149 N=3.0 Q=1.000 imagStrength=0.5232 [通常の子]
Depth=12 Norm=0.5302 e0=0.4441 e1=0.2532 e2=0.0485 e3=-0.0222 e4=0.1073 e5=0.0115 e6=-0.0051 e7=-0.0728 N=3.0 Q=1.000 imagStrength=0.2897 [通常の子]
Depth=12 Norm=0.5409 e0=-0.4876 e1=-0.1915 e2=0.0262 e3=-0.0222 e4=0.1073 e5=0.0115 e6=-0.0051 e7=-0.0728 N=3.0 Q=1.000 imagStrength=0.2341 [共役の子]
Depth=13 Norm=1.1244 e0=-0.7124 e1=-0.8494 e2=0.0814 e3=0.0530 e4=0.0182 e5=0.1589 e6=-0.0159 e7=-0.0066 N=1.0 Q=0.333 imagStrength=0.8699 [共役の子]
Depth=11 Norm=0.6473 e0=0.5897 e1=0.2553 e2=-0.0205 e3=-0.0363 e4=0.0244 e5=-0.0553 e6=0.0145 e7=-0.0226 N=3.0 Q=1.000 imagStrength=0.2670 [通常の子]
Depth=13 Norm=1.1876 e0=-1.1321 e1=-0.3023 e2=0.0807 e3=0.0593 e4=0.0212 e5=0.1559 e6=-0.0474 e7=-0.0219 N=0.0 Q=0.000 imagStrength=0.3590 [共役の子]
Depth=13 Norm=1.1181 e0=-0.7199 e1=-0.8362 e2=0.0792 e3=0.0524 e4=0.0140 e5=0.1177 e6=-0.0293 e7=0.0935 N=1.0 Q=0.333 imagStrength=0.8555 [通常の子]
Depth=7 Norm=1.0124 e0=0.9913 e1=-0.2015 e2=-0.0265 e3=0.0170 e4=-0.0055 e5=0.0029 e6=0.0131 e7=-0.0242 N=3.0 Q=1.000 imagStrength=0.2059 [通常の子]
Depth=13 Norm=1.2214 e0=-0.2018 e1=-1.1713 e2=0.0482 e3=0.0190 e4=0.0696 e5=-0.0342 e6=0.2500 e7=0.0896 N=1.0 Q=0.333 imagStrength=1.2046 [共役の子]
Depth=12 Norm=0.7680 e0=0.7656 e1=0.0174 e2=0.0227 e3=-0.0210 e4=-0.0118 e5=-0.0271 e6=-0.0081 e7=0.0379 N=2.0 Q=0.667 imagStrength=0.0603 [通常の子]
Depth=12 Norm=0.7638 e0=-0.7592 e1=0.0591 e2=0.0248 e3=-0.0210 e4=-0.0118 e5=-0.0271 e6=-0.0081 e7=0.0379 N=2.0 Q=0.667 imagStrength=0.0832 [共役の子]
Depth=13 Norm=1.2629 e0=0.8041 e1=-0.9366 e2=0.0565 e3=0.0201 e4=0.0722 e5=-0.0201 e6=0.2439 e7=0.0490 N=1.0 Q=0.333 imagStrength=0.9738 [通常の子]
Depth=11 Norm=0.6982 e0=-0.4950 e1=0.4846 e2=-0.0049 e3=-0.0236 e4=-0.0503 e5=0.0038 e6=-0.0667 e7=-0.0004 N=3.0 Q=1.000 imagStrength=0.4923 [通常の子]
Depth=13 Norm=1.2754 e0=0.0647 e1=-1.2691 e2=-0.0082 e3=0.0386 e4=0.0619 e5=-0.0387 e6=0.0611 e7=0.0337 N=1.0 Q=0.333 imagStrength=1.2737 [共役の子]
Depth=13 Norm=1.2508 e0=1.0249 e1=-0.6837 e2=0.0363 e3=0.0342 e4=0.0598 e5=-0.0734 e6=-0.0569 e7=0.1785 N=0.0 Q=0.000 imagStrength=0.7169 [共役の子]
Depth=13 Norm=1.1834 e0=-1.0828 e1=0.4544 e2=0.0940 e3=0.0315 e4=0.0721 e5=-0.0250 e6=0.0245 e7=0.0731 N=0.0 Q=0.000 imagStrength=0.4776 [共役の子]
Depth=12 Norm=0.8130 e0=-0.6578 e1=0.4691 e2=0.0446 e3=-0.0339 e4=-0.0181 e5=-0.0267 e6=-0.0571 e7=0.0263 N=3.0 Q=1.000 imagStrength=0.4777 [通常の子]
Depth=13 Norm=1.2612 e0=1.0658 e1=-0.6613 e2=0.0234 e3=0.0400 e4=0.0641 e5=-0.0161 e6=-0.1034 e7=0.0152 N=0.0 Q=0.000 imagStrength=0.6744 [通常の子]
Depth=13 Norm=1.2606 e0=-0.8845 e1=0.8713 e2=0.1027 e3=0.0418 e4=0.0564 e5=-0.0459 e6=-0.1538 e7=0.0804 N=1.0 Q=0.333 imagStrength=0.8982 [通常の子]
Depth=11 Norm=0.9059 e0=0.8298 e1=-0.3541 e2=-0.0452 e3=-0.0243 e4=-0.0487 e5=0.0052 e6=0.0171 e7=-0.0378 N=3.0 Q=1.000 imagStrength=0.3635 [共役の子]
Depth=10 Norm=0.5160 e0=-0.3499 e1=-0.3636 e2=-0.0413 e3=0.0275 e4=-0.0907 e5=-0.0207 e6=0.0053 e7=0.0219 N=3.0 Q=1.000 imagStrength=0.3793 [通常の子]
Depth=13 Norm=1.1531 e0=-0.5367 e1=-1.0004 e2=0.0119 e3=0.0299 e4=-0.0185 e5=0.1261 e6=-0.1525 e7=-0.0069 N=1.0 Q=0.333 imagStrength=1.0205 [通常の子]
Depth=12 Norm=0.4546 e0=0.2660 e1=0.3485 e2=0.0339 e3=-0.0298 e4=0.1086 e5=0.0199 e6=0.0008 e7=-0.0163 N=3.0 Q=1.000 imagStrength=0.3687 [共役の子]
Depth=9 Norm=0.6790 e0=-0.6318 e1=-0.2407 e2=0.0209 e3=0.0164 e4=-0.0200 e5=0.0527 e6=0.0035 e7=-0.0031 N=3.0 Q=1.000 imagStrength=0.2487 [共役の子]
Depth=12 Norm=0.5506 e0=-0.2003 e1=0.5014 e2=0.0410 e3=-0.0229 e4=0.0939 e5=0.0181 e6=-0.0153 e7=-0.0099 N=3.0 Q=1.000 imagStrength=0.5129 [通常の子]
Depth=13 Norm=1.1902 e0=1.1763 e1=0.0645 e2=0.0923 e3=0.0175 e4=-0.0134 e5=0.1025 e6=-0.0206 e7=0.0939 N=0.0 Q=0.000 imagStrength=0.1815 [共役の子]
Depth=13 Norm=1.1543 e0=-1.0977 e1=-0.3126 e2=0.0724 e3=0.0150 e4=-0.0025 e5=0.1463 e6=0.0527 e7=-0.0008 N=0.0 Q=0.000 imagStrength=0.3569 [共役の子]
Depth=13 Norm=1.1947 e0=-0.8934 e1=0.7592 e2=0.1079 e3=0.0253 e4=-0.0086 e5=0.1662 e6=-0.0564 e7=-0.0984 N=1.0 Q=0.333 imagStrength=0.7933 [共役の子]
Depth=12 Norm=0.8283 e0=-0.6705 e1=0.4704 e2=0.0399 e3=-0.0284 e4=0.1101 e5=0.0200 e6=0.0088 e7=-0.0154 N=3.0 Q=1.000 imagStrength=0.4863 [通常の子]
Depth=12 Norm=0.8196 e0=0.6349 e1=-0.5050 e2=-0.0090 e3=-0.0284 e4=0.1101 e5=0.0200 e6=0.0088 e7=-0.0154 N=3.0 Q=1.000 imagStrength=0.5184 [共役の子]
Depth=13 Norm=1.1839 e0=-1.1479 e1=-0.2452 e2=0.0717 e3=0.0187 e4=-0.0144 e5=0.0980 e6=-0.0122 e7=0.0914 N=0.0 Q=0.000 imagStrength=0.2897 [通常の子]
Depth=11 Norm=0.8855 e0=0.8819 e1=-0.0313 e2=-0.0287 e3=-0.0175 e4=0.0389 e5=-0.0485 e6=-0.0140 e7=-0.0118 N=3.0 Q=1.000 imagStrength=0.0795 [通常の子]
Depth=13 Norm=1.2405 e0=-1.1508 e1=0.4180 e2=0.1052 e3=0.0159 e4=-0.0014 e5=0.1500 e6=0.0742 e7=-0.0219 N=0.0 Q=0.000 imagStrength=0.4632 [共役の子]
Depth=11 Norm=0.8479 e0=0.8389 e1=-0.0744 e2=0.0159 e3=0.0364 e4=-0.0466 e5=0.0618 e6=-0.0306 e7=-0.0344 N=3.0 Q=1.000 imagStrength=0.1234 [通常の子]
Depth=13 Norm=1.1701 e0=-1.0435 e1=0.4937 e2=-0.0500 e3=-0.0699 e4=0.0154 e5=-0.1327 e6=0.0931 e7=0.0520 N=0.0 Q=0.000 imagStrength=0.5295 [共役の子]
Depth=13 Norm=1.1185 e0=-1.0813 e1=-0.1163 e2=-0.0846 e3=-0.0659 e4=0.0027 e5=-0.1815 e6=0.0007 e7=0.1544 N=0.0 Q=0.000 imagStrength=0.2860 [通常の子]
Depth=10 Norm=0.4719 e0=-0.0149 e1=-0.4593 e2=0.0179 e3=-0.0219 e4=0.0981 e5=0.0179 e6=0.0268 e7=-0.0111 N=3.0 Q=1.000 imagStrength=0.4717 [通常の子]
Depth=13 Norm=1.1589 e0=-0.8912 e1=-0.7000 e2=-0.1205 e3=-0.0606 e4=-0.0019 e5=-0.1603 e6=-0.0976 e7=0.0725 N=1.0 Q=0.333 imagStrength=0.7408 [通常の子]
Depth=12 Norm=0.4644 e0=-0.0587 e1=0.4476 e2=-0.0119 e3=0.0169 e4=-0.1042 e5=-0.0169 e6=-0.0169 e7=-0.0013 N=3.0 Q=1.000 imagStrength=0.4606 [共役の子]
Depth=8 Norm=0.4859 e0=-0.1973 e1=-0.4391 e2=-0.0448 e3=0.0425 e4=-0.0202 e5=0.0134 e6=-0.0023 e7=0.0018 N=3.0 Q=1.000 imagStrength=0.4441 [共役の子]
Depth=11 Norm=0.4930 e0=-0.1139 e1=-0.4687 e2=-0.0051 e3=0.0368 e4=-0.0438 e5=0.0583 e6=-0.0603 e7=-0.0079 N=3.0 Q=1.000 imagStrength=0.4797 [共役の子]
Depth=13 Norm=1.2379 e0=-0.3227 e1=-1.1696 e2=-0.1542 e3=-0.0624 e4=0.0031 e5=-0.1651 e6=0.0351 e7=0.0649 N=1.0 Q=0.333 imagStrength=1.1952 [通常の子]
Depth=13 Norm=1.3082 e0=0.5601 e1=1.1691 e2=-0.0349 e3=-0.0639 e4=0.0096 e5=-0.1382 e6=0.0798 e7=0.0071 N=1.0 Q=0.333 imagStrength=1.1823 [通常の子]
Depth=13 Norm=1.1768 e0=-1.0628 e1=-0.4548 e2=-0.0857 e3=-0.0722 e4=0.0117 e5=-0.1182 e6=0.1464 e7=-0.0139 N=0.0 Q=0.000 imagStrength=0.5051 [共役の子]
Depth=12 Norm=0.4692 e0=0.1400 e1=0.4338 e2=-0.0121 e3=0.0234 e4=-0.1056 e5=-0.0174 e6=0.0023 e7=0.0156 N=3.0 Q=1.000 imagStrength=0.4478 [通常の子]
Depth=12 Norm=0.4557 e0=-0.2165 e1=-0.3817 e2=-0.0530 e3=0.0234 e4=-0.1056 e5=-0.0174 e6=0.0023 e7=0.0156 N=3.0 Q=1.000 imagStrength=0.4009 [共役の子]
Depth=13 Norm=1.2528 e0=0.4204 e1=-1.1474 e2=-0.1548 e3=-0.0641 e4=-0.0451 e5=-0.0679 e6=-0.1954 e7=0.0574 N=1.0 Q=0.333 imagStrength=1.1801 [共役の子]
Depth=13 Norm=1.1822 e0=-0.5625 e1=1.0247 e2=-0.0438 e3=-0.0657 e4=-0.0381 e5=-0.0393 e6=-0.1478 e7=-0.0041 N=1.0 Q=0.333 imagStrength=1.0398 [共役の子]
Depth=12 Norm=0.8729 e0=-0.8377 e1=0.2362 e2=-0.0269 e3=0.0123 e4=-0.0477 e5=0.0092 e6=-0.0326 e7=-0.0061 N=3.0 Q=1.000 imagStrength=0.2452 [通常の子]
Depth=13 Norm=1.2717 e0=0.4641 e1=-1.1475 e2=-0.1635 e3=-0.0619 e4=-0.0428 e5=-0.0462 e6=-0.2242 e7=-0.0082 N=1.0 Q=0.333 imagStrength=1.1839 [通常の子]
Depth=13 Norm=1.3144 e0=-0.2113 e1=1.2734 e2=-0.0390 e3=-0.0620 e4=-0.0431 e5=-0.0483 e6=-0.2273 e7=-0.0042 N=1.0 Q=0.333 imagStrength=1.2973 [通常の子]
Depth=11 Norm=0.6911 e0=0.4456 e1=-0.5229 e2=-0.0052 e3=0.0394 e4=0.0135 e5=0.0237 e6=0.0499 e7=-0.0272 N=3.0 Q=1.000 imagStrength=0.5282 [共役の子]
Depth=11 Norm=0.5288 e0=-0.3595 e1=-0.3823 e2=-0.0002 e3=0.0391 e4=0.0145 e5=0.0193 e6=-0.0375 e7=0.0278 N=3.0 Q=1.000 imagStrength=0.3879 [通常の子]
Depth=13 Norm=1.2240 e0=1.0548 e1=0.5960 e2=-0.0223 e3=-0.0801 e4=-0.0396 e5=-0.0549 e6=0.1362 e7=0.0211 N=0.0 Q=0.000 imagStrength=0.6211 [共役の子]
Depth=13 Norm=1.2919 e0=0.5723 e1=1.1499 e2=-0.0343 e3=-0.0678 e4=-0.0364 e5=-0.0260 e6=0.0591 e7=-0.0894 N=1.0 Q=0.333 imagStrength=1.1582 [通常の子]
Depth=10 Norm=0.8586 e0=0.8488 e1=0.1030 e2=0.0444 e3=-0.0224 e4=0.0255 e5=-0.0073 e6=-0.0191 e7=-0.0519 N=3.0 Q=1.000 imagStrength=0.1297 [通常の子]
Depth=13 Norm=1.3126 e0=-0.2400 e1=1.2659 e2=0.0222 e3=-0.0866 e4=-0.0312 e5=-0.0440 e6=0.2270 e7=0.0201 N=1.0 Q=0.333 imagStrength=1.2904 [通常の子]
Depth=12 Norm=0.7041 e0=-0.6914 e1=-0.1098 e2=-0.0429 e3=0.0320 e4=-0.0455 e5=0.0075 e6=0.0199 e7=0.0160 N=2.0 Q=0.667 imagStrength=0.1330 [共役の子]
Depth=6 Norm=1.0401 e0=1.0377 e1=-0.0699 e2=-0.0074 e3=0.0000 e4=0.0059 e5=-0.0010 e6=0.0011 e7=0.0023 N=3.0 Q=1.000 imagStrength=0.0706 [共役の子]
Depth=13 Norm=1.2415 e0=1.0090 e1=0.6757 e2=0.0593 e3=0.0530 e4=-0.0111 e5=0.1761 e6=-0.0603 e7=-0.1596 N=1.0 Q=0.333 imagStrength=0.7233 [通常の子]
Depth=11 Norm=0.6826 e0=-0.6601 e1=-0.1453 e2=-0.0121 e3=-0.0240 e4=0.0479 e5=-0.0585 e6=0.0412 e7=0.0296 N=3.0 Q=1.000 imagStrength=0.1735 [通常の子]
Depth=13 Norm=1.1743 e0=1.1609 e1=-0.0222 e2=0.0398 e3=0.0498 e4=-0.0209 e5=0.1301 e6=-0.0873 e7=-0.0422 N=0.0 Q=0.000 imagStrength=0.1770 [共役の子]
Depth=12 Norm=0.6461 e0=0.3873 e1=-0.5073 e2=-0.0028 e3=-0.0043 e4=0.0977 e5=0.0181 e6=0.0123 e7=-0.0006 N=3.0 Q=1.000 imagStrength=0.5171 [共役の子]
Depth=10 Norm=0.5600 e0=-0.2469 e1=0.4920 e2=-0.0046 e3=0.0062 e4=-0.0948 e5=-0.0185 e6=-0.0236 e7=0.0235 N=3.0 Q=1.000 imagStrength=0.5026 [共役の子]
Depth=13 Norm=1.1917 e0=1.0929 e1=0.4329 e2=0.0577 e3=0.0454 e4=-0.0055 e5=0.1563 e6=0.0494 e7=-0.0787 N=0.0 Q=0.000 imagStrength=0.4753 [通常の子]
Depth=13 Norm=1.2537 e0=1.0487 e1=-0.6320 e2=-0.0217 e3=0.0587 e4=-0.0140 e5=0.1665 e6=-0.1445 e7=-0.1406 N=1.0 Q=0.333 imagStrength=0.6870 [通常の子]
Depth=13 Norm=1.2519 e0=-0.8881 e1=0.8421 e2=0.0537 e3=0.0605 e4=-0.0219 e5=0.1353 e6=-0.1966 e7=-0.0733 N=1.0 Q=0.333 imagStrength=0.8823 [通常の子]
Depth=11 Norm=0.8998 e0=0.8248 e1=-0.3457 e2=-0.0216 e3=-0.0241 e4=0.0468 e5=-0.0571 e6=0.0546 e7=0.0184 N=3.0 Q=1.000 imagStrength=0.3596 [共役の子]
Depth=12 Norm=0.7717 e0=0.5987 e1=-0.4766 e2=-0.0011 e3=-0.0007 e4=0.0938 e5=0.0183 e6=0.0054 e7=-0.0285 N=3.0 Q=1.000 imagStrength=0.4869 [通常の子]
Depth=12 Norm=0.6697 e0=-0.4392 e1=0.4933 e2=0.0476 e3=-0.0007 e4=0.0938 e5=0.0183 e6=0.0054 e7=-0.0285 N=3.0 Q=1.000 imagStrength=0.5056 [共役の子]
Depth=13 Norm=1.3000 e0=1.1132 e1=-0.6572 e2=0.0073 e3=0.0465 e4=-0.0171 e5=0.1084 e6=-0.0550 e7=0.0415 N=0.0 Q=0.000 imagStrength=0.6715 [共役の子]
Depth=9 Norm=0.5446 e0=-0.1642 e1=0.5160 e2=0.0429 e3=0.0254 e4=0.0292 e5=-0.0025 e6=-0.0000 e7=0.0032 N=3.0 Q=1.000 imagStrength=0.5193 [通常の子]
Depth=12 Norm=0.5517 e0=-0.4964 e1=-0.2204 e2=0.0157 e3=-0.0189 e4=0.0260 e5=-0.0188 e6=0.0197 e7=0.0851 N=3.0 Q=1.000 imagStrength=0.2405 [通常の子]
Depth=13 Norm=1.2501 e0=-0.6510 e1=-1.0591 e2=-0.0463 e3=0.0649 e4=0.0481 e5=0.0121 e6=0.0594 e7=-0.0691 N=1.0 Q=0.333 imagStrength=1.0672 [共役の子]
Depth=13 Norm=1.2212 e0=0.5332 e1=1.0921 e2=0.0644 e3=0.0658 e4=0.0452 e5=0.0010 e6=0.0408 e7=-0.0451 N=1.0 Q=0.333 imagStrength=1.0986 [共役の子]
Depth=11 Norm=0.6842 e0=0.4348 e1=-0.5223 e2=-0.0331 e3=-0.0279 e4=-0.0319 e5=-0.0086 e6=-0.0522 e7=0.0255 N=3.0 Q=1.000 imagStrength=0.5283 [共役の子]
Depth=13 Norm=1.2676 e0=0.4500 e1=-1.1787 e2=-0.0547 e3=0.0660 e4=0.0466 e5=0.0047 e6=0.0487 e7=-0.0551 N=1.0 Q=0.333 imagStrength=1.1851 [通常の子]
Depth=13 Norm=1.3117 e0=-0.2136 e1=1.2878 e2=0.0720 e3=0.0661 e4=0.0462 e5=0.0033 e6=0.0464 e7=-0.0521 N=1.0 Q=0.333 imagStrength=1.2942 [通常の子]
Depth=13 Norm=1.2187 e0=-1.0786 e1=0.5353 e2=0.0446 e3=0.0639 e4=0.0417 e5=-0.0260 e6=-0.1417 e7=0.0821 N=0.0 Q=0.000 imagStrength=0.5673 [通常の子]
Depth=11 Norm=0.8964 e0=0.8276 e1=-0.3387 e2=-0.0219 e3=-0.0276 e4=-0.0342 e5=-0.0027 e6=0.0207 e7=-0.0307 N=3.0 Q=1.000 imagStrength=0.3443 [通常の子]
Depth=13 Norm=1.2381 e0=-0.6622 e1=1.0381 e2=0.0986 e3=0.0516 e4=0.0544 e5=0.0125 e6=0.0123 e7=0.0324 N=1.0 Q=0.333 imagStrength=1.0461 [共役の子]
Depth=12 Norm=0.8905 e0=-0.8553 e1=0.2285 e2=0.0404 e3=0.0046 e4=0.0008 e5=-0.0159 e6=-0.0133 e7=-0.0842 N=3.0 Q=1.000 imagStrength=0.2478 [共役の子]
Depth=10 Norm=0.9775 e0=0.9461 e1=-0.2377 e2=-0.0391 e3=0.0080 e4=0.0008 e5=0.0169 e6=0.0213 e7=0.0388 N=3.0 Q=1.000 imagStrength=0.2456 [共役の子]
Depth=13 Norm=1.3153 e0=-0.9614 e1=0.8848 e2=0.0993 e3=0.0531 e4=0.0445 e5=-0.0064 e6=-0.0637 e7=0.0651 N=1.0 Q=0.333 imagStrength=0.8977 [通常の子]
Depth=9 Norm=0.4543 e0=0.0188 e1=-0.4417 e2=-0.0837 e3=-0.0269 e4=-0.0356 e5=-0.0050 e6=-0.0155 e7=-0.0415 N=3.0 Q=1.000 imagStrength=0.4539 [通常の子]
Depth=12 Norm=0.5057 e0=0.3929 e1=0.2912 e2=-0.0217 e3=0.0591 e4=-0.0550 e5=0.0230 e6=0.0161 e7=-0.0933 N=3.0 Q=1.000 imagStrength=0.3183 [通常の子]
Depth=13 Norm=1.1388 e0=0.7370 e1=0.8544 e2=-0.0728 e3=-0.0603 e4=-0.0748 e5=-0.0388 e6=-0.0857 e7=-0.0198 N=1.0 Q=0.333 imagStrength=0.8682 [共役の子]
Depth=13 Norm=1.1601 e0=-0.5461 e1=-1.0018 e2=-0.1682 e3=-0.0615 e4=-0.0708 e5=-0.0245 e6=-0.0610 e7=-0.0518 N=1.0 Q=0.333 imagStrength=1.0236 [共役の子]
Depth=11 Norm=0.5006 e0=-0.1946 e1=0.4453 e2=0.0712 e3=0.0405 e4=0.0405 e5=0.0199 e6=0.0742 e7=0.0117 N=3.0 Q=1.000 imagStrength=0.4612 [共役の子]
Depth=13 Norm=1.1224 e0=-0.2224 e1=1.0895 e2=-0.0604 e3=-0.0611 e4=-0.0718 e5=-0.0252 e6=-0.0846 e7=-0.0540 N=1.0 Q=0.333 imagStrength=1.1001 [通常の子]
Depth=13 Norm=1.0723 e0=0.1015 e1=-1.0443 e2=-0.1699 e3=-0.0607 e4=-0.0728 e5=-0.0276 e6=-0.0893 e7=-0.0479 N=1.0 Q=0.333 imagStrength=1.0675 [通常の子]
Depth=13 Norm=1.1672 e0=0.8918 e1=-0.7037 e2=-0.1543 e3=-0.0620 e4=-0.0681 e5=-0.0038 e6=0.1343 e7=-0.1472 N=1.0 Q=0.333 imagStrength=0.7531 [通常の子]
Depth=11 Norm=0.6940 e0=-0.5591 e1=0.3963 e2=0.0668 e3=0.0403 e4=0.0420 e5=0.0157 e6=-0.0041 e7=0.0624 N=3.0 Q=1.000 imagStrength=0.4111 [通常の子]
Depth=13 Norm=1.1667 e0=0.2812 e1=-1.0991 e2=-0.2124 e3=-0.0472 e4=-0.0783 e5=-0.0297 e6=-0.0272 e7=-0.1374 N=1.0 Q=0.333 imagStrength=1.1323 [共役の子]
Depth=12 Norm=0.7803 e0=0.7657 e1=-0.1095 e2=-0.0436 e3=0.0388 e4=-0.0287 e5=0.0206 e6=0.0528 e7=0.0561 N=3.0 Q=1.000 imagStrength=0.1502 [共役の子]
Depth=10 Norm=0.7944 e0=-0.7834 e1=0.0926 e2=0.0423 e3=-0.0510 e4=0.0190 e5=-0.0183 e6=-0.0573 e7=-0.0197 N=3.0 Q=1.000 imagStrength=0.1317 [共役の子]
Depth=13 Norm=1.0770 e0=0.5885 e1=-0.8614 e2=-0.2028 e3=-0.0491 e4=-0.0722 e5=-0.0213 e6=0.0185 e7=-0.1486 N=1.0 Q=0.333 imagStrength=0.9021 [通常の子]
Depth=12 Norm=0.5612 e0=0.2535 e1=-0.4816 e2=-0.0587 e3=0.0447 e4=-0.1143 e5=-0.0066 e6=0.0014 e7=0.0127 N=3.0 Q=1.000 imagStrength=0.5007 [通常の子]
Depth=12 Norm=0.4892 e0=-0.0734 e1=0.4674 e2=-0.0111 e3=0.0447 e4=-0.1143 e5=-0.0066 e6=0.0014 e7=0.0127 N=3.0 Q=1.000 imagStrength=0.4836 [共役の子]
Depth=13 Norm=1.2703 e0=1.2427 e1=-0.1093 e2=-0.1504 e3=-0.0462 e4=-0.0326 e5=-0.1643 e6=-0.0419 e7=0.0545 N=0.0 Q=0.000 imagStrength=0.2636 [共役の子]
Depth=11 Norm=0.8402 e0=-0.8110 e1=0.1970 e2=0.0577 e3=0.0371 e4=-0.0138 e5=0.0515 e6=0.0381 e7=0.0215 N=3.0 Q=1.000 imagStrength=0.2197 [通常の子]
Depth=13 Norm=1.2294 e0=0.8983 e1=-0.7901 e2=-0.1913 e3=-0.0409 e4=-0.0370 e5=-0.1408 e6=-0.1393 e7=-0.0351 N=1.0 Q=0.333 imagStrength=0.8393 [共役の子]
Depth=13 Norm=1.2692 e0=1.2461 e1=-0.1075 e2=-0.1421 e3=-0.0488 e4=-0.0234 e5=-0.0930 e6=-0.0130 e7=-0.1208 N=0.0 Q=0.000 imagStrength=0.2410 [通常の子]
Depth=9 Norm=0.8147 e0=-0.7257 e1=0.3632 e2=-0.0402 e3=-0.0290 e4=-0.0003 e5=-0.0479 e6=-0.0098 e7=-0.0171 N=3.0 Q=1.000 imagStrength=0.3702 [通常の子]
Depth=12 Norm=0.7843 e0=-0.7530 e1=0.1759 e2=-0.0267 e3=0.0356 e4=-0.1017 e5=-0.0065 e6=0.0237 e7=0.0648 N=3.0 Q=1.000 imagStrength=0.2193 [通常の子]
Depth=13 Norm=1.1569 e0=0.2869 e1=-1.0887 e2=-0.2127 e3=-0.0442 e4=-0.0307 e5=-0.1446 e6=0.0041 e7=-0.0426 N=1.0 Q=0.333 imagStrength=1.1208 [共役の子]
Depth=13 Norm=1.0888 e0=-0.4048 e1=0.9914 e2=-0.1066 e3=-0.0454 e4=-0.0255 e5=-0.1228 e6=0.0400 e7=-0.0890 N=1.0 Q=0.333 imagStrength=1.0107 [共役の子]
Depth=11 Norm=0.8598 e0=0.8114 e1=-0.2718 e2=0.0331 e3=0.0371 e4=-0.0136 e5=0.0515 e6=-0.0050 e7=0.0398 N=3.0 Q=1.000 imagStrength=0.2843 [共役の子]
Depth=13 Norm=1.1708 e0=1.0529 e1=-0.4447 e2=-0.1769 e3=-0.0435 e4=-0.0269 e5=-0.1042 e6=0.0172 e7=-0.1395 N=0.0 Q=0.000 imagStrength=0.5121 [通常の子]
Depth=13 Norm=1.1592 e0=-0.9201 e1=0.6745 e2=-0.1188 e3=-0.0416 e4=-0.0352 e5=-0.1378 e6=-0.0388 e7=-0.0670 N=0.0 Q=0.000 imagStrength=0.7050 [通常の子]
Depth=13 Norm=1.2205 e0=-0.3105 e1=-1.1205 e2=-0.1928 e3=-0.0042 e4=-0.0801 e5=0.0555 e6=-0.2672 e7=-0.1401 N=1.0 Q=0.333 imagStrength=1.1804 [共役の子]
Depth=13 Norm=1.1753 e0=0.1752 e1=1.1154 e2=-0.0780 e3=-0.0042 e4=-0.0800 e5=0.0562 e6=-0.2661 e7=-0.1414 N=1.0 Q=0.333 imagStrength=1.1621 [共役の子]
Depth=12 Norm=0.6664 e0=-0.6574 e1=-0.0746 e2=-0.0225 e3=0.0335 e4=0.0226 e5=0.0320 e6=0.0266 e7=-0.0491 N=2.0 Q=0.667 imagStrength=0.1088 [通常の子]
Depth=13 Norm=1.2382 e0=-0.2944 e1=-1.1516 e2=-0.1897 e3=-0.0058 e4=-0.0831 e5=0.0395 e6=-0.2591 e7=-0.0926 N=1.0 Q=0.333 imagStrength=1.2027 [通常の子]
Depth=13 Norm=1.3069 e0=0.5290 e1=1.1594 e2=-0.0713 e3=-0.0072 e4=-0.0767 e5=0.0661 e6=-0.2152 e7=-0.1494 N=1.0 Q=0.333 imagStrength=1.1951 [通常の子]
Depth=11 Norm=0.4942 e0=-0.0829 e1=-0.4757 e2=0.0175 e3=0.0216 e4=0.0613 e5=-0.0105 e6=0.0784 e7=0.0171 N=3.0 Q=1.000 imagStrength=0.4872 [共役の子]
Depth=11 Norm=0.7502 e0=-0.7327 e1=-0.1165 e2=0.0338 e3=0.0215 e4=0.0660 e5=-0.0185 e6=0.0316 e7=0.0707 N=3.0 Q=1.000 imagStrength=0.1608 [通常の子]
Depth=13 Norm=1.2443 e0=1.2244 e1=-0.1118 e2=-0.1027 e3=-0.0173 e4=-0.0833 e5=0.0463 e6=-0.0464 e7=-0.1205 N=0.0 Q=0.000 imagStrength=0.2216 [共役の子]
Depth=13 Norm=1.3095 e0=1.1090 e1=0.6345 e2=-0.0787 e3=-0.0152 e4=-0.0720 e5=0.0977 e6=-0.0021 e7=-0.2475 N=0.0 Q=0.000 imagStrength=0.6964 [通常の子]
Depth=10 Norm=0.5942 e0=0.4520 e1=0.3738 e2=0.0349 e3=-0.0426 e4=-0.0353 e5=-0.0274 e6=-0.0632 e7=0.0070 N=3.0 Q=1.000 imagStrength=0.3858 [通常の子]
Depth=13 Norm=1.2929 e0=0.4970 e1=1.1742 e2=-0.0243 e3=-0.0278 e4=-0.0669 e5=0.0674 e6=0.1378 e7=-0.1285 N=1.0 Q=0.333 imagStrength=1.1935 [通常の子]
Depth=12 Norm=0.4756 e0=-0.2622 e1=-0.3859 e2=-0.0381 e3=0.0494 e4=0.0169 e5=0.0296 e6=0.0568 e7=-0.0151 N=3.0 Q=1.000 imagStrength=0.3968 [共役の子]
Depth=7 Norm=0.8385 e0=0.8156 e1=0.1841 e2=0.0282 e3=-0.0285 e4=-0.0013 e5=-0.0078 e6=-0.0237 e7=0.0417 N=3.0 Q=1.000 imagStrength=0.1946 [共役の子]
Depth=13 Norm=1.2286 e0=0.7069 e1=-0.9803 e2=-0.1390 e3=-0.0138 e4=0.0017 e5=-0.1420 e6=0.0900 e7=0.0320 N=1.0 Q=0.333 imagStrength=1.0049 [共役の子]
Depth=12 Norm=0.8442 e0=0.7648 e1=-0.3379 e2=-0.0301 e3=0.0426 e4=-0.1006 e5=-0.0162 e6=0.0178 e7=0.0060 N=3.0 Q=1.000 imagStrength=0.3572 [通常の子]
Depth=12 Norm=0.7702 e0=-0.6562 e1=0.3873 e2=0.0063 e3=0.0426 e4=-0.1006 e5=-0.0162 e6=0.0178 e7=0.0060 N=3.0 Q=1.000 imagStrength=0.4033 [共役の子]
Depth=13 Norm=1.2499 e0=1.2286 e1=-0.1199 e2=-0.1076 e3=-0.0080 e4=0.0070 e5=-0.0834 e6=0.0586 e7=-0.1284 N=0.0 Q=0.000 imagStrength=0.2300 [通常の子]
Depth=11 Norm=0.8310 e0=-0.8020 e1=0.2016 e2=0.0492 e3=0.0154 e4=-0.0304 e5=0.0433 e6=0.0104 e7=0.0340 N=3.0 Q=1.000 imagStrength=0.2176 [通常の子]
Depth=13 Norm=1.2108 e0=0.8807 e1=-0.8016 e2=-0.1567 e3=-0.0002 e4=-0.0062 e5=-0.1295 e6=-0.0650 e7=-0.0465 N=1.0 Q=0.333 imagStrength=0.8309 [共役の子]
Depth=13 Norm=1.2489 e0=1.2113 e1=0.2422 e2=-0.0837 e3=-0.0103 e4=-0.0001 e5=-0.1500 e6=0.0360 e7=0.0548 N=0.0 Q=0.000 imagStrength=0.3042 [共役の子]
Depth=13 Norm=1.2221 e0=-1.1086 e1=-0.4743 e2=-0.1205 e3=-0.0129 e4=0.0108 e5=-0.1070 e6=0.1085 e7=-0.0390 N=0.0 Q=0.000 imagStrength=0.5143 [共役の子]
Depth=12 Norm=0.5336 e0=-0.1015 e1=0.5117 e2=0.0125 e3=0.0406 e4=-0.1020 e5=-0.0163 e6=0.0076 e7=0.0052 N=3.0 Q=1.000 imagStrength=0.5238 [通常の子]
Depth=13 Norm=1.2455 e0=1.2012 e1=0.2706 e2=-0.0973 e3=-0.0038 e4=0.0058 e5=-0.0804 e6=-0.0080 e7=-0.1383 N=0.0 Q=0.000 imagStrength=0.3292 [通常の子]
Depth=13 Norm=1.1932 e0=-1.1765 e1=-0.0124 e2=-0.1113 e3=-0.0010 e4=-0.0070 e5=-0.1316 e6=-0.0938 e7=-0.0273 N=0.0 Q=0.000 imagStrength=0.1986 [通常の子]
Depth=11 Norm=0.8680 e0=0.8644 e1=0.0130 e2=0.0402 e3=0.0153 e4=-0.0301 e5=0.0431 e6=0.0273 e7=0.0275 N=3.0 Q=1.000 imagStrength=0.0793 [共役の子]
Depth=8 Norm=0.7899 e0=-0.6591 e1=0.4284 e2=0.0538 e3=-0.0372 e4=0.0314 e5=-0.0155 e6=0.0217 e7=-0.0018 N=3.0 Q=1.000 imagStrength=0.4354 [通常の子]
Depth=11 Norm=0.7931 e0=0.7829 e1=0.0536 e2=-0.0059 e3=-0.0395 e4=0.0537 e5=-0.0675 e6=0.0400 e7=0.0508 N=3.0 Q=1.000 imagStrength=0.1268 [共役の子]
Depth=13 Norm=1.1747 e0=1.0851 e1=0.3334 e2=0.0725 e3=0.0817 e4=-0.0085 e5=0.1988 e6=-0.0120 e7=-0.1993 N=0.0 Q=0.000 imagStrength=0.4500 [通常の子]
Depth=13 Norm=1.1191 e0=-1.0907 e1=-0.1122 e2=0.0498 e3=0.0843 e4=-0.0207 e5=0.1506 e6=-0.0928 e7=-0.0949 N=0.0 Q=0.000 imagStrength=0.2508 [通常の子]
Depth=13 Norm=1.2271 e0=1.0260 e1=-0.6542 e2=0.0296 e3=0.0785 e4=-0.0152 e5=0.1316 e6=0.0154 e7=-0.0166 N=0.0 Q=0.000 imagStrength=0.6731 [共役の子]
Depth=12 Norm=0.7424 e0=0.5863 e1=-0.4391 e2=0.0164 e3=-0.0053 e4=0.1129 e5=0.0197 e6=0.0342 e7=-0.0082 N=3.0 Q=1.000 imagStrength=0.4555 [通常の子]
Depth=12 Norm=0.6438 e0=-0.4340 e1=0.4561 e2=0.0613 e3=-0.0053 e4=0.1129 e5=0.0197 e6=0.0342 e7=-0.0082 N=3.0 Q=1.000 imagStrength=0.4756 [共役の子]
Depth=12 Norm=0.8518 e0=-0.8063 e1=0.2177 e2=0.0515 e3=0.0062 e4=0.1093 e5=0.0219 e6=0.0316 e7=-0.1096 N=3.0 Q=1.000 imagStrength=0.2748 [共役の子]
Depth=10 Norm=0.9381 e0=0.8992 e1=-0.2292 e2=-0.0574 e3=0.0099 e4=-0.1015 e5=-0.0201 e6=-0.0237 e7=0.0652 N=3.0 Q=1.000 imagStrength=0.2673 [共役の子]
Depth=13 Norm=1.2719 e0=-0.9254 e1=0.8406 e2=0.1158 e3=0.0795 e4=-0.0152 e5=0.1545 e6=-0.0927 e7=-0.0482 N=1.0 Q=0.333 imagStrength=0.8725 [通常の子]
Depth=13 Norm=1.2215 e0=0.7711 e1=-0.9175 e2=-0.0087 e3=0.0884 e4=-0.0177 e5=0.1351 e6=-0.1680 e7=-0.0304 N=1.0 Q=0.333 imagStrength=0.9473 [共役の子]
Depth=13 Norm=1.1497 e0=-0.8524 e1=0.7259 e2=0.0758 e3=0.0861 e4=-0.0073 e5=0.1758 e6=-0.1000 e7=-0.1183 N=1.0 Q=0.333 imagStrength=0.7714 [共役の子]
Depth=12 Norm=0.8526 e0=-0.7584 e1=0.3662 e2=0.0563 e3=-0.0124 e4=0.1141 e5=0.0203 e6=0.0133 e7=-0.0264 N=3.0 Q=1.000 imagStrength=0.3895 [通常の子]
Depth=11 Norm=0.5203 e0=-0.3348 e1=-0.3895 e2=-0.0294 e3=-0.0428 e4=-0.0021 e5=-0.0340 e6=-0.0242 e7=0.0497 N=3.0 Q=1.000 imagStrength=0.3982 [通常の子]
Depth=13 Norm=1.2232 e0=1.0367 e1=0.6174 e2=0.1051 e3=0.0818 e4=0.0304 e5=0.0592 e6=0.1287 e7=-0.0410 N=0.0 Q=0.000 imagStrength=0.6493 [共役の子]
Depth=13 Norm=1.2901 e0=0.5330 e1=1.1532 e2=0.0901 e3=0.0950 e4=0.0327 e5=0.0875 e6=0.0453 e7=-0.1506 N=1.0 Q=0.333 imagStrength=1.1749 [通常の子]
Depth=10 Norm=0.8677 e0=0.8582 e1=0.0931 e2=-0.0396 e3=0.0140 e4=-0.0519 e5=0.0075 e6=-0.0416 e7=-0.0371 N=3.0 Q=1.000 imagStrength=0.1276 [通常の子]
Depth=13 Norm=1.3124 e0=-0.2743 e1=1.2514 e2=0.1457 e3=0.0780 e4=0.0360 e5=0.0684 e6=0.2148 e7=-0.0412 N=1.0 Q=0.333 imagStrength=1.2834 [通常の子]
Depth=12 Norm=0.7132 e0=-0.7017 e1=-0.1008 e2=0.0380 e3=0.0009 e4=0.0523 e5=-0.0062 e6=0.0428 e7=0.0014 N=2.0 Q=0.667 imagStrength=0.1273 [共役の子]
Depth=8 Norm=0.9675 e0=0.9655 e1=0.0023 e2=0.0293 e3=-0.0372 e4=0.0314 e5=-0.0155 e6=0.0217 e7=-0.0018 N=3.0 Q=1.000 imagStrength=0.0628 [共役の子]
Depth=11 Norm=0.7911 e0=-0.6833 e1=0.3918 e2=0.0115 e3=-0.0424 e4=-0.0055 e5=-0.0264 e6=0.0514 e7=-0.0122 N=3.0 Q=1.000 imagStrength=0.3987 [共役の子]
Depth=13 Norm=1.2548 e0=-0.9375 e1=0.8155 e2=0.1132 e3=0.0837 e4=0.0290 e5=0.0473 e6=-0.0761 e7=0.0428 N=1.0 Q=0.333 imagStrength=0.8340 [通常の子]
Depth=13 Norm=1.2473 e0=0.8491 e1=-0.9054 e2=0.0243 e3=0.0822 e4=0.0351 e5=0.0723 e6=-0.0344 e7=-0.0112 N=0.0 Q=0.000 imagStrength=0.9137 [通常の子]
Depth=13 Norm=1.2630 e0=0.1231 e1=1.2229 e2=0.0827 e3=0.1025 e4=0.0251 e5=0.0666 e6=-0.2390 e7=-0.0710 N=1.0 Q=0.333 imagStrength=1.2570 [共役の子]
Depth=12 Norm=0.8478 e0=-0.8391 e1=0.0912 e2=0.0462 e3=-0.0208 e4=0.0560 e5=-0.0039 e6=-0.0038 e7=-0.0274 N=2.0 Q=0.667 imagStrength=0.1217 [通常の子]
Depth=12 Norm=0.9403 e0=0.9203 e1=-0.1781 e2=0.0327 e3=-0.0208 e4=0.0560 e5=-0.0039 e6=-0.0038 e7=-0.0274 N=2.0 Q=0.667 imagStrength=0.1927 [共役の子]
Depth=13 Norm=1.1902 e0=-1.1493 e1=0.2253 e2=-0.0362 e3=-0.0394 e4=0.0046 e5=-0.1601 e6=0.0535 e7=0.1156 N=0.0 Q=0.000 imagStrength=0.3090 [通常の子]
Depth=13 Norm=1.2202 e0=1.1553 e1=-0.3434 e2=-0.0653 e3=-0.0419 e4=0.0157 e5=-0.1162 e6=0.1271 e7=0.0204 N=0.0 Q=0.000 imagStrength=0.3927 [通常の子]
Depth=11 Norm=0.8166 e0=-0.7958 e1=0.1638 e2=0.0243 e3=0.0217 e4=-0.0407 e5=0.0535 e6=-0.0314 e7=-0.0134 N=3.0 Q=1.000 imagStrength=0.1832 [共役の子]
Depth=12 Norm=0.6260 e0=-0.3523 e1=0.5090 e2=0.0061 e3=0.0154 e4=-0.0899 e5=-0.0152 e6=0.0042 e7=-0.0063 N=3.0 Q=1.000 imagStrength=0.5175 [通常の子]
Depth=12 Norm=0.5868 e0=0.2833 e1=-0.5034 e2=-0.0447 e3=0.0154 e4=-0.0899 e5=-0.0152 e6=0.0042 e7=-0.0063 N=3.0 Q=1.000 imagStrength=0.5138 [共役の子]
Depth=13 Norm=1.1346 e0=-1.0986 e1=0.2515 e2=-0.0474 e3=-0.0340 e4=0.0107 e5=-0.0942 e6=0.0181 e7=-0.0665 N=0.0 Q=0.000 imagStrength=0.2836 [共役の子]
Depth=10 Norm=0.5881 e0=0.4360 e1=0.3808 e2=0.0454 e3=-0.0169 e4=0.0849 e5=0.0170 e6=0.0006 e7=-0.0297 N=3.0 Q=1.000 imagStrength=0.3947 [通常の子]
Depth=13 Norm=1.2856 e0=0.5241 e1=1.1527 e2=0.0230 e3=-0.0459 e4=0.0152 e5=-0.1205 e6=0.1764 e7=0.0309 N=1.0 Q=0.333 imagStrength=1.1739 [通常の子]
Depth=12 Norm=0.4795 e0=-0.2540 e1=-0.3900 e2=-0.0397 e3=0.0201 e4=-0.1026 e5=-0.0173 e6=-0.0069 e7=0.0211 N=3.0 Q=1.000 imagStrength=0.4067 [共役の子]
Depth=9 Norm=0.7291 e0=0.6800 e1=0.2563 e2=-0.0104 e3=-0.0219 e4=0.0151 e5=-0.0495 e6=0.0013 e7=0.0111 N=3.0 Q=1.000 imagStrength=0.2629 [共役の子]
Depth=12 Norm=0.5802 e0=0.2792 e1=-0.4984 e2=-0.0446 e3=0.0126 e4=-0.0869 e5=-0.0154 e6=0.0100 e7=0.0155 N=3.0 Q=1.000 imagStrength=0.5086 [通常の子]
Depth=13 Norm=1.2478 e0=-1.2372 e1=-0.0601 e2=-0.0677 e3=-0.0326 e4=0.0105 e5=-0.0928 e6=0.0399 e7=-0.0829 N=0.0 Q=0.000 imagStrength=0.1626 [共役の子]
Depth=13 Norm=1.2871 e0=1.2600 e1=0.2065 e2=-0.0534 e3=-0.0299 e4=-0.0018 e5=-0.1421 e6=-0.0427 e7=0.0240 N=0.0 Q=0.000 imagStrength=0.2627 [共役の子]
Depth=13 Norm=1.2346 e0=-0.5326 e1=1.0848 e2=-0.0270 e3=-0.0328 e4=-0.0628 e5=0.0053 e6=-0.2388 e7=-0.0319 N=1.0 Q=0.333 imagStrength=1.1138 [通常の子]
Depth=11 Norm=0.6647 e0=0.4347 e1=-0.4965 e2=-0.0067 e3=0.0255 e4=0.0411 e5=0.0027 e6=0.0622 e7=-0.0112 N=3.0 Q=1.000 imagStrength=0.5029 [通常の子]
Depth=13 Norm=1.2092 e0=0.1044 e1=1.2004 e2=0.0291 e3=-0.0514 e4=-0.0542 e5=0.0177 e6=-0.0605 e7=0.0012 N=1.0 Q=0.333 imagStrength=1.2047 [共役の子]
Depth=12 Norm=0.7095 e0=-0.6937 e1=-0.0936 e2=-0.0279 e3=0.0321 e4=-0.0157 e5=0.0231 e6=-0.0011 e7=-0.1041 N=2.0 Q=0.667 imagStrength=0.1489 [共役の子]
Depth=10 Norm=0.8673 e0=0.8597 e1=0.0827 e2=0.0276 e3=-0.0213 e4=0.0017 e5=-0.0229 e6=0.0031 e7=0.0672 N=3.0 Q=1.000 imagStrength=0.1145 [共役の子]
Depth=13 Norm=1.3089 e0=-0.2803 e1=1.2742 e2=0.0350 e3=-0.0518 e4=-0.0547 e5=0.0158 e6=-0.0627 e7=0.0070 N=1.0 Q=0.333 imagStrength=1.2785 [通常の子]
Depth=13 Norm=1.2654 e0=0.8150 e1=0.9474 e2=0.0072 e3=-0.0497 e4=-0.0507 e5=0.0470 e6=0.1231 e7=-0.1303 N=1.0 Q=0.333 imagStrength=0.9680 [通常の子]
Depth=13 Norm=1.1927 e0=-0.9176 e1=-0.7510 e2=-0.0793 e3=-0.0473 e4=-0.0614 e5=0.0049 e6=0.0524 e7=-0.0389 N=0.0 Q=0.000 imagStrength=0.7619 [通常の子]
Depth=11 Norm=0.6388 e0=0.5446 e1=0.3249 e2=0.0324 e3=0.0253 e4=0.0442 e5=-0.0041 e6=-0.0076 e7=0.0468 N=3.0 Q=1.000 imagStrength=0.3339 [共役の子]
Depth=12 Norm=0.5719 e0=-0.5088 e1=-0.2449 e2=-0.0380 e3=0.0072 e4=0.0091 e5=0.0201 e6=0.0299 e7=0.0729 N=3.0 Q=1.000 imagStrength=0.2611 [通常の子]
Depth=12 Norm=0.6984 e0=0.6722 e1=0.1701 e2=-0.0172 e3=0.0072 e4=0.0091 e5=0.0201 e6=0.0299 e7=0.0729 N=2.0 Q=0.667 imagStrength=0.1897 [共役の子]
Depth=13 Norm=1.3087 e0=0.8993 e1=0.9464 e2=-0.0284 e3=-0.0376 e4=-0.0595 e5=-0.0002 e6=0.0078 e7=-0.0522 N=0.0 Q=0.000 imagStrength=0.9509 [共役の子]
Depth=4 Norm=0.8144 e0=0.7708 e1=0.2596 e2=0.0383 e3=-0.0108 e4=0.0030 e5=0.0001 e6=-0.0032 e7=-0.0038 N=3.0 Q=1.000 imagStrength=0.2627 [通常の子]
Depth=13 Norm=1.1202 e0=0.3861 e1=0.9863 e2=0.1533 e3=-0.0494 e4=0.0785 e5=-0.0735 e6=0.2543 e7=0.1754 N=1.0 Q=0.333 imagStrength=1.0516 [共役の子]
Depth=13 Norm=1.1623 e0=-0.1735 e1=-1.0997 e2=0.0463 e3=-0.0494 e4=0.0788 e5=-0.0720 e6=0.2564 e7=0.1727 N=1.0 Q=0.333 imagStrength=1.1493 [共役の子]
Depth=12 Norm=0.6308 e0=0.6084 e1=0.1414 e2=0.0006 e3=-0.0275 e4=-0.0352 e5=-0.0337 e6=-0.0418 e7=0.0538 N=3.0 Q=1.000 imagStrength=0.1666 [通常の子]
Depth=13 Norm=1.1017 e0=0.3807 e1=0.9848 e2=0.1442 e3=-0.0459 e4=0.0801 e5=-0.0567 e6=0.2285 e7=0.1188 N=1.0 Q=0.333 imagStrength=1.0338 [通常の子]
Depth=13 Norm=1.0326 e0=-0.4815 e1=-0.8678 e2=0.0492 e3=-0.0446 e4=0.0740 e5=-0.0819 e6=0.1871 e7=0.1723 N=1.0 Q=0.333 imagStrength=0.9134 [通常の子]
Depth=11 Norm=0.4558 e0=0.2235 e1=0.3818 e2=-0.0169 e3=0.0039 e4=-0.0659 e5=0.0171 e6=-0.0786 e7=-0.0307 N=3.0 Q=1.000 imagStrength=0.3973 [共役の子]
Depth=11 Norm=0.6911 e0=0.6719 e1=0.1098 e2=-0.0291 e3=0.0040 e4=-0.0706 e5=0.0242 e6=-0.0422 e7=-0.0761 N=3.0 Q=1.000 imagStrength=0.1615 [通常の子]
Depth=13 Norm=1.0824 e0=-1.0621 e1=0.0328 e2=0.0686 e3=-0.0371 e4=0.0808 e5=-0.0638 e6=0.0612 e7=0.1483 N=0.0 Q=0.000 imagStrength=0.2085 [共役の子]
Depth=13 Norm=1.0180 e0=-0.8375 e1=-0.4986 e2=0.0544 e3=-0.0392 e4=0.0717 e5=-0.1061 e6=0.0286 e7=0.2542 N=0.0 Q=0.000 imagStrength=0.5788 [通常の子]
Depth=10 Norm=0.4569 e0=-0.3064 e1=-0.3250 e2=-0.0070 e3=0.0358 e4=0.0402 e5=0.0288 e6=0.0714 e7=-0.0208 N=3.0 Q=1.000 imagStrength=0.3390 [通常の子]
Depth=13 Norm=1.0346 e0=-0.4763 e1=-0.8924 e2=0.0136 e3=-0.0293 e4=0.0670 e5=-0.0841 e6=-0.0888 e7=0.1635 N=1.0 Q=0.333 imagStrength=0.9185 [通常の子]
Depth=12 Norm=0.3992 e0=0.2293 e1=0.3133 e2=0.0093 e3=-0.0408 e4=-0.0306 e5=-0.0318 e6=-0.0658 e7=0.0243 N=3.0 Q=1.000 imagStrength=0.3268 [共役の子]
Depth=7 Norm=0.7666 e0=-0.7466 e1=-0.1588 e2=-0.0033 e3=0.0331 e4=0.0020 e5=0.0129 e6=0.0288 e7=-0.0543 N=3.0 Q=1.000 imagStrength=0.1740 [共役の子]
Depth=13 Norm=1.1064 e0=-0.6156 e1=0.9034 e2=0.1048 e3=-0.0397 e4=0.0039 e5=0.1089 e6=-0.0674 e7=0.0085 N=1.0 Q=0.333 imagStrength=0.9193 [共役の子]
Depth=12 Norm=0.8158 e0=-0.7218 e1=0.3687 e2=0.0072 e3=-0.0362 e4=0.0785 e5=0.0101 e6=-0.0304 e7=0.0068 N=3.0 Q=1.000 imagStrength=0.3802 [通常の子]
Depth=12 Norm=0.8334 e0=0.7163 e1=-0.4145 e2=-0.0321 e3=-0.0362 e4=0.0785 e5=0.0101 e6=-0.0304 e7=0.0068 N=3.0 Q=1.000 imagStrength=0.4259 [共役の子]
Depth=13 Norm=1.0859 e0=-1.0664 e1=0.0670 e2=0.0763 e3=-0.0463 e4=-0.0004 e5=0.0541 e6=-0.0256 e7=0.1616 N=0.0 Q=0.000 imagStrength=0.2053 [通常の子]
Depth=11 Norm=0.8384 e0=0.8222 e1=-0.1456 e2=-0.0412 e3=0.0095 e4=0.0167 e5=-0.0318 e6=-0.0239 e7=-0.0450 N=3.0 Q=1.000 imagStrength=0.1640 [通常の子]
Depth=13 Norm=1.1293 e0=-0.9176 e1=0.6289 e2=0.1141 e3=-0.0522 e4=0.0119 e5=0.0989 e6=0.0795 e7=0.0763 N=0.0 Q=0.000 imagStrength=0.6582 [共役の子]
Depth=13 Norm=1.0841 e0=-1.0493 e1=-0.2371 e2=0.0547 e3=-0.0432 e4=0.0058 e5=0.1138 e6=-0.0138 e7=-0.0017 N=0.0 Q=0.000 imagStrength=0.2724 [共役の子]
Depth=13 Norm=1.1129 e0=1.0473 e1=0.3384 e2=0.0846 e3=-0.0410 e4=-0.0037 e5=0.0757 e6=-0.0775 e7=0.0808 N=0.0 Q=0.000 imagStrength=0.3763 [共役の子]
Depth=12 Norm=0.4427 e0=0.1255 e1=-0.4139 e2=-0.0319 e3=-0.0337 e4=0.0781 e5=0.0100 e6=-0.0236 e7=0.0058 N=3.0 Q=1.000 imagStrength=0.4246 [通常の子]
Depth=13 Norm=1.0890 e0=-1.0311 e1=-0.2949 e2=0.0625 e3=-0.0482 e4=0.0000 e5=0.0529 e6=0.0125 e7=0.1628 N=0.0 Q=0.000 imagStrength=0.3503 [通常の子]
Depth=13 Norm=1.1455 e0=1.1177 e1=0.1760 e2=0.0860 e3=-0.0507 e4=0.0116 e5=0.0992 e6=0.0898 e7=0.0629 N=0.0 Q=0.000 imagStrength=0.2508 [通常の子]
Depth=11 Norm=0.6817 e0=-0.6755 e1=-0.0531 e2=-0.0369 e3=0.0095 e4=0.0167 e5=-0.0321 e6=-0.0345 e7=-0.0392 N=3.0 Q=1.000 imagStrength=0.0912 [共役の子]
Depth=9 Norm=0.4800 e0=0.0569 e1=0.4652 e2=0.0742 e3=0.0059 e4=0.0433 e5=0.0020 e6=0.0213 e7=0.0537 N=3.0 Q=1.000 imagStrength=0.4767 [通常の子]
Depth=12 Norm=0.4481 e0=-0.3011 e1=-0.3063 e2=-0.0018 e3=-0.0530 e4=0.0445 e5=-0.0261 e6=-0.0245 e7=0.1013 N=3.0 Q=1.000 imagStrength=0.3319 [通常の子]
Depth=13 Norm=1.2021 e0=-0.8436 e1=-0.8431 e2=0.0472 e3=0.0099 e4=0.0784 e5=0.0272 e6=0.1098 e7=0.0376 N=0.0 Q=0.000 imagStrength=0.8564 [共役の子]
Depth=13 Norm=1.1901 e0=0.7531 e1=0.9014 e2=0.1371 e3=0.0115 e4=0.0729 e5=0.0062 e6=0.0740 e7=0.0839 N=1.0 Q=0.333 imagStrength=0.9215 [共役の子]
Depth=11 Norm=0.5683 e0=0.2320 e1=-0.5035 e2=-0.0698 e3=-0.0173 e4=-0.0476 e5=-0.0144 e6=-0.0869 e7=-0.0207 N=3.0 Q=1.000 imagStrength=0.5188 [共役の子]
Depth=13 Norm=1.2184 e0=0.1694 e1=-1.1974 e2=0.0249 e3=0.0123 e4=0.0741 e5=0.0070 e6=0.0918 e7=0.0851 N=1.0 Q=0.333 imagStrength=1.2066 [通常の子]
Depth=13 Norm=1.2743 e0=0.0711 e1=1.2547 e2=0.1507 e3=0.0115 e4=0.0763 e5=0.0144 e6=0.1049 e7=0.0680 N=1.0 Q=0.333 imagStrength=1.2723 [通常の子]
Depth=13 Norm=1.1690 e0=-0.8641 e1=0.7411 e2=0.1298 e3=0.0121 e4=0.0705 e5=-0.0130 e6=-0.1252 e7=0.1816 N=1.0 Q=0.333 imagStrength=0.7874 [通常の子]
Depth=11 Norm=0.7875 e0=0.6734 e1=-0.3929 e2=-0.0622 e3=-0.0171 e4=-0.0495 e5=-0.0097 e6=-0.0033 e7=-0.0745 N=3.0 Q=1.000 imagStrength=0.4082 [通常の子]
Depth=13 Norm=1.1715 e0=-0.3778 e1=1.0775 e2=0.1839 e3=-0.0027 e4=0.0818 e5=0.0158 e6=0.0386 e7=0.1631 N=1.0 Q=0.333 imagStrength=1.1090 [共役の子]
Depth=12 Norm=0.8140 e0=-0.8005 e1=0.1107 e2=0.0210 e3=-0.0315 e4=0.0171 e5=-0.0236 e6=-0.0639 e7=-0.0566 N=2.0 Q=0.667 imagStrength=0.1477 [共役の子]
Depth=10 Norm=0.9232 e0=0.9112 e1=-0.1180 e2=-0.0205 e3=0.0451 e4=-0.0131 e5=0.0207 e6=0.0693 e7=0.0142 N=3.0 Q=1.000 imagStrength=0.1483 [共役の子]
Depth=13 Norm=1.2606 e0=-0.7040 e1=1.0089 e2=0.1870 e3=-0.0017 e4=0.0747 e5=0.0037 e6=-0.0088 e7=0.1869 N=1.0 Q=0.333 imagStrength=1.0457 [通常の子]
Depth=12 Norm=0.5295 e0=-0.2106 e1=0.4719 e2=0.0357 e3=-0.0395 e4=0.1014 e5=0.0025 e6=-0.0148 e7=-0.0028 N=3.0 Q=1.000 imagStrength=0.4858 [通常の子]
Depth=12 Norm=0.4928 e0=0.1454 e1=-0.4577 e2=-0.0109 e3=-0.0395 e4=0.1014 e5=0.0025 e6=-0.0148 e7=-0.0028 N=3.0 Q=1.000 imagStrength=0.4708 [共役の子]
Depth=13 Norm=1.0676 e0=-1.0483 e1=0.0541 e2=0.1196 e3=-0.0022 e4=0.0351 e5=0.1419 e6=0.0454 e7=-0.0106 N=0.0 Q=0.000 imagStrength=0.2019 [共役の子]
Depth=11 Norm=0.8221 e0=0.8048 e1=-0.1427 e2=-0.0507 e3=-0.0143 e4=0.0052 e5=-0.0455 e6=-0.0440 e7=-0.0322 N=3.0 Q=1.000 imagStrength=0.1680 [通常の子]
Depth=13 Norm=1.1119 e0=-0.8954 e1=0.6102 e2=0.1524 e3=-0.0070 e4=0.0401 e5=0.1238 e6=0.1352 e7=0.0609 N=0.0 Q=0.000 imagStrength=0.6592 [共役の子]
Depth=13 Norm=1.0687 e0=-1.0464 e1=0.0687 e2=0.1154 e3=-0.0010 e4=0.0279 e5=0.0798 e6=0.0309 e7=0.1450 N=0.0 Q=0.000 imagStrength=0.2172 [通常の子]
Depth=9 Norm=0.8667 e0=0.7935 e1=-0.3425 e2=0.0308 e3=0.0080 e4=0.0088 e5=0.0443 e6=0.0156 e7=0.0299 N=3.0 Q=1.000 imagStrength=0.3485 [通常の子]
Depth=12 Norm=0.8697 e0=0.8419 e1=-0.1851 e2=0.0037 e3=-0.0300 e4=0.0904 e5=0.0028 e6=-0.0331 e7=-0.0557 N=3.0 Q=1.000 imagStrength=0.2180 [通常の子]
Depth=13 Norm=1.1884 e0=-0.3795 e1=1.1002 e2=0.1874 e3=-0.0058 e4=0.0352 e5=0.1309 e6=0.0183 e7=0.0631 N=1.0 Q=0.333 imagStrength=1.1262 [共役の子]
Depth=13 Norm=1.2600 e0=0.5976 e1=-1.0942 e2=0.0755 e3=-0.0043 e4=0.0283 e5=0.1028 e6=-0.0283 e7=0.1232 N=1.0 Q=0.333 imagStrength=1.1092 [共役の子]
Depth=11 Norm=0.8026 e0=-0.7688 e1=0.2179 e2=-0.0316 e3=-0.0142 e4=0.0051 e5=-0.0450 e6=-0.0078 e7=-0.0495 N=3.0 Q=1.000 imagStrength=0.2307 [共役の子]
Depth=13 Norm=1.1767 e0=-1.0973 e1=0.3490 e2=0.1429 e3=-0.0052 e4=0.0294 e5=0.0823 e6=-0.0109 e7=0.1744 N=0.0 Q=0.000 imagStrength=0.4247 [通常の子]
Depth=13 Norm=1.1983 e0=1.0831 e1=-0.4748 e2=0.1000 e3=-0.0074 e4=0.0393 e5=0.1223 e6=0.0558 e7=0.0881 N=0.0 Q=0.000 imagStrength=0.5127 [通常の子]
Depth=13 Norm=1.1855 e0=-1.0282 e1=0.4577 e2=0.0263 e3=-0.1002 e4=0.0546 e5=-0.2005 e6=0.1510 e7=0.2490 N=1.0 Q=0.333 imagStrength=0.5901 [通常の子]
Depth=13 Norm=1.1994 e0=1.0060 e1=-0.5578 e2=-0.0255 e3=-0.1022 e4=0.0643 e5=-0.1622 e6=0.2146 e7=0.1668 N=1.0 Q=0.333 imagStrength=0.6531 [通常の子]
Depth=11 Norm=0.7926 e0=-0.7347 e1=0.2578 e2=0.0038 e3=0.0379 e4=-0.0835 e5=0.0636 e6=-0.0789 e7=-0.0576 N=3.0 Q=1.000 imagStrength=0.2974 [共役の子]
Depth=12 Norm=0.7095 e0=-0.4971 e1=0.4893 e2=-0.0130 e3=-0.0116 e4=-0.1051 e5=-0.0363 e6=-0.0461 e7=0.0463 N=3.0 Q=1.000 imagStrength=0.5063 [通常の子]
Depth=12 Norm=0.6806 e0=0.4404 e1=-0.4986 e2=-0.0626 e3=-0.0116 e4=-0.1051 e5=-0.0363 e6=-0.0461 e7=0.0463 N=3.0 Q=1.000 imagStrength=0.5189 [共役の子]
Depth=13 Norm=1.1354 e0=-0.9985 e1=0.5006 e2=0.0045 e3=-0.0901 e4=0.0587 e5=-0.1389 e6=0.0799 e7=0.0653 N=0.0 Q=0.000 imagStrength=0.5405 [共役の子]
Depth=10 Norm=0.5226 e0=0.2437 e1=0.4368 e2=0.0682 e3=0.0075 e4=0.1018 e5=0.0343 e6=0.0593 e7=-0.0558 N=3.0 Q=1.000 imagStrength=0.4623 [通常の子]
Depth=13 Norm=1.2714 e0=0.7398 e1=0.9772 e2=0.0514 e3=-0.1012 e4=0.0651 e5=-0.1622 e6=0.2052 e7=0.1692 N=1.0 Q=0.333 imagStrength=1.0340 [通常の子]
Depth=12 Norm=0.4803 e0=-0.0756 e1=-0.4441 e2=-0.0603 e3=-0.0062 e4=-0.1210 e5=-0.0385 e6=-0.0685 e7=0.0573 N=3.0 Q=1.000 imagStrength=0.4743 [共役の子]
Depth=9 Norm=0.8173 e0=0.7947 e1=0.1491 e2=0.0037 e3=-0.0457 e4=0.0496 e5=-0.0636 e6=0.0237 e7=0.0711 N=3.0 Q=1.000 imagStrength=0.1910 [共役の子]
Depth=12 Norm=0.6809 e0=0.4478 e1=-0.4932 e2=-0.0620 e3=-0.0094 e4=-0.1066 e5=-0.0361 e6=-0.0474 e7=0.0326 N=3.0 Q=1.000 imagStrength=0.5130 [通常の子]
Depth=13 Norm=1.2442 e0=-1.2112 e1=0.2024 e2=-0.0080 e3=-0.0908 e4=0.0598 e5=-0.1343 e6=0.0804 e7=0.0611 N=0.0 Q=0.000 imagStrength=0.2848 [共役の子]
Depth=13 Norm=1.2957 e0=1.2637 e1=-0.0596 e2=-0.0212 e3=-0.0879 e4=0.0460 e5=-0.1891 e6=-0.0111 e7=0.1795 N=0.0 Q=0.000 imagStrength=0.2863 [共役の子]
Depth=13 Norm=1.2246 e0=-0.2629 e1=1.1744 e2=0.0194 e3=-0.0934 e4=-0.0251 e5=-0.0020 e6=-0.1884 e7=0.0774 N=1.0 Q=0.333 imagStrength=1.1960 [通常の子]
Depth=11 Norm=0.5586 e0=0.2419 e1=-0.4967 e2=-0.0313 e3=0.0434 e4=0.0139 e5=0.0030 e6=0.0281 e7=-0.0541 N=3.0 Q=1.000 imagStrength=0.5035 [通常の子]
Depth=13 Norm=1.1846 e0=0.3685 e1=1.1100 e2=0.0681 e3=-0.1116 e4=-0.0189 e5=0.0018 e6=-0.0205 e7=0.1325 N=1.0 Q=0.333 imagStrength=1.1259 [共役の子]
Depth=12 Norm=0.6087 e0=-0.5668 e1=-0.1991 e2=-0.0533 e3=0.0071 e4=-0.0148 e5=0.0091 e6=-0.0519 e7=-0.0610 N=3.0 Q=1.000 imagStrength=0.2219 [共役の子]
Depth=10 Norm=0.7674 e0=0.7391 e1=0.1898 e2=0.0530 e3=0.0026 e4=0.0001 e5=-0.0121 e6=0.0511 e7=0.0324 N=3.0 Q=1.000 imagStrength=0.2066 [共役の子]
Depth=13 Norm=1.2828 e0=-0.0025 e1=1.2687 e2=0.0764 e3=-0.1127 e4=-0.0169 e5=0.0029 e6=-0.0001 e7=0.1310 N=1.0 Q=0.333 imagStrength=1.2828 [通常の子]
Depth=13 Norm=1.2538 e0=1.0046 e1=0.7296 e2=0.0328 e3=-0.1083 e4=-0.0142 e5=0.0332 e6=0.1278 e7=-0.0131 N=0.0 Q=0.000 imagStrength=0.7503 [通常の子]
Depth=13 Norm=1.1854 e0=-1.0601 e1=-0.5081 e2=-0.0301 e3=-0.1057 e4=-0.0262 e5=-0.0140 e6=0.0489 e7=0.0889 N=0.0 Q=0.000 imagStrength=0.5305 [通常の子]
Depth=11 Norm=0.7265 e0=0.6884 e1=0.2254 e2=0.0032 e3=0.0432 e4=0.0154 e5=-0.0025 e6=-0.0316 e7=-0.0028 N=3.0 Q=1.000 imagStrength=0.2322 [共役の子]
Depth=12 Norm=0.4851 e0=-0.3336 e1=-0.3324 e2=-0.0621 e3=-0.0144 e4=0.0064 e5=0.0061 e6=-0.0252 e7=0.0937 N=3.0 Q=1.000 imagStrength=0.3522 [通常の子]
Depth=12 Norm=0.5856 e0=0.5090 e1=0.2705 e2=-0.0319 e3=-0.0144 e4=0.0064 e5=0.0061 e6=-0.0252 e7=0.0937 N=3.0 Q=1.000 imagStrength=0.2896 [共役の子]
Depth=13 Norm=1.3037 e0=1.0658 e1=0.7348 e2=0.0082 e3=-0.1000 e4=-0.0231 e5=-0.0231 e6=0.0459 e7=0.1038 N=0.0 Q=0.000 imagStrength=0.7509 [共役の子]
Depth=8 Norm=0.8568 e0=-0.7765 e1=0.3563 e2=0.0180 e3=-0.0400 e4=-0.0017 e5=-0.0221 e6=-0.0430 e7=-0.0002 N=3.0 Q=1.000 imagStrength=0.3622 [通常の子]
Depth=11 Norm=0.8312 e0=0.8272 e1=-0.0508 e2=-0.0346 e3=-0.0196 e4=0.0017 e5=-0.0487 e6=-0.0114 e7=0.0001 N=3.0 Q=1.000 imagStrength=0.0817 [共役の子]
Depth=13 Norm=1.1490 e0=1.1324 e1=0.0765 e2=0.0899 e3=0.0185 e4=0.0432 e5=0.1305 e6=0.0489 e7=-0.0477 N=0.0 Q=0.000 imagStrength=0.1946 [通常の子]
Depth=13 Norm=1.1051 e0=-1.0858 e1=0.1475 e2=0.0938 e3=0.0211 e4=0.0324 e5=0.0875 e6=-0.0234 e7=0.0458 N=0.0 Q=0.000 imagStrength=0.2058 [通常の子]
Depth=13 Norm=1.1922 e0=0.8381 e1=-0.8258 e2=0.0612 e3=0.0122 e4=0.0387 e5=0.0722 e6=0.1047 e7=0.1240 N=1.0 Q=0.333 imagStrength=0.8479 [共役の子]
Depth=12 Norm=0.7861 e0=0.6830 e1=-0.3779 e2=-0.0019 e3=-0.0264 e4=0.0813 e5=-0.0048 e6=-0.0186 e7=0.0289 N=3.0 Q=1.000 imagStrength=0.3890 [通常の子]
Depth=12 Norm=0.7003 e0=-0.5571 e1=0.4125 e2=0.0377 e3=-0.0264 e4=0.0813 e5=-0.0048 e6=-0.0186 e7=0.0289 N=3.0 Q=1.000 imagStrength=0.4243 [共役の子]
Depth=12 Norm=0.8082 e0=-0.7913 e1=0.1188 e2=0.0246 e3=-0.0174 e4=0.0751 e5=-0.0023 e6=-0.0319 e7=-0.0731 N=3.0 Q=1.000 imagStrength=0.1644 [共役の子]
Depth=10 Norm=0.9165 e0=0.9024 e1=-0.1275 e2=-0.0277 e3=0.0327 e4=-0.0710 e5=0.0006 e6=0.0373 e7=0.0320 N=3.0 Q=1.000 imagStrength=0.1598 [共役の子]
Depth=13 Norm=1.2433 e0=-0.7212 e1=0.9885 e2=0.1614 e3=0.0137 e4=0.0381 e5=0.0939 e6=-0.0306 e7=0.1053 N=1.0 Q=0.333 imagStrength=1.0128 [通常の子]
Depth=13 Norm=1.1867 e0=0.5300 e1=-1.0435 e2=0.0165 e3=0.0256 e4=0.0341 e5=0.0770 e6=-0.1411 e7=0.1029 N=1.0 Q=0.333 imagStrength=1.0618 [共役の子]
Depth=13 Norm=1.1142 e0=-0.6466 e1=0.8870 e2=0.1156 e3=0.0236 e4=0.0420 e5=0.1078 e6=-0.0893 e7=0.0357 N=1.0 Q=0.333 imagStrength=0.9073 [共役の子]
Depth=12 Norm=0.8336 e0=-0.7799 e1=0.2746 e2=0.0300 e3=-0.0371 e4=0.0831 e5=-0.0037 e6=-0.0459 e7=0.0069 N=3.0 Q=1.000 imagStrength=0.2945 [通常の子]
Depth=11 Norm=0.5895 e0=-0.5006 e1=-0.3000 e2=-0.0475 e3=-0.0209 e4=-0.0297 e5=-0.0296 e6=-0.0494 e7=0.0010 N=3.0 Q=1.000 imagStrength=0.3113 [通常の子]
Depth=13 Norm=1.2131 e0=1.1406 e1=0.3560 e2=0.1220 e3=0.0157 e4=0.0616 e5=0.0326 e6=0.1256 e7=0.0896 N=0.0 Q=0.000 imagStrength=0.4130 [共役の子]
Depth=13 Norm=1.2828 e0=0.7724 e1=1.0073 e2=0.1233 e3=0.0249 e4=0.0675 e5=0.0702 e6=0.0897 e7=-0.0275 N=1.0 Q=0.333 imagStrength=1.0241 [通常の子]
Depth=10 Norm=0.7693 e0=0.7375 e1=0.1998 e2=-0.0102 e3=0.0356 e4=-0.0469 e5=0.0174 e6=0.0115 e7=-0.0627 N=3.0 Q=1.000 imagStrength=0.2187 [通常の子]
Depth=13 Norm=1.2912 e0=0.0029 e1=1.2475 e2=0.1794 e3=0.0092 e4=0.0710 e5=0.0483 e6=0.2520 e7=0.0882 N=1.0 Q=0.333 imagStrength=1.2912 [通常の子]
Depth=12 Norm=0.6128 e0=-0.5732 e1=-0.2059 e2=0.0087 e3=-0.0220 e4=0.0465 e5=-0.0195 e6=-0.0130 e7=0.0353 N=3.0 Q=1.000 imagStrength=0.2166 [共役の子]
Depth=8 Norm=0.8770 e0=0.8675 e1=0.1118 e2=0.0039 e3=-0.0400 e4=-0.0017 e5=-0.0221 e6=-0.0430 e7=-0.0002 N=3.0 Q=1.000 imagStrength=0.1283 [共役の子]
Depth=11 Norm=0.7024 e0=-0.5376 e1=0.4455 e2=-0.0085 e3=-0.0207 e4=-0.0329 e5=-0.0222 e6=0.0218 e7=-0.0581 N=3.0 Q=1.000 imagStrength=0.4521 [共役の子]
Depth=13 Norm=1.2263 e0=-0.7067 e1=0.9735 e2=0.1596 e3=0.0147 e4=0.0635 e5=0.0319 e6=-0.0256 e7=0.1592 N=1.0 Q=0.333 imagStrength=1.0022 [通常の子]
Depth=13 Norm=1.2028 e0=0.6031 e1=-1.0279 e2=0.0565 e3=0.0139 e4=0.0670 e5=0.0468 e6=-0.0011 e7=0.1277 N=1.0 Q=0.333 imagStrength=1.0406 [通常の子]
Depth=13 Norm=1.2477 e0=0.3817 e1=1.1608 e2=0.1168 e3=0.0338 e4=0.0577 e5=0.0383 e6=-0.1945 e7=0.0789 N=1.0 Q=0.333 imagStrength=1.1879 [共役の子]
Depth=12 Norm=0.7541 e0=-0.7484 e1=-0.0203 e2=0.0168 e3=-0.0426 e4=0.0502 e5=-0.0172 e6=-0.0569 e7=0.0072 N=2.0 Q=0.667 imagStrength=0.0928 [通常の子]
Depth=12 Norm=0.8616 e0=0.8545 e1=-0.0643 e2=0.0146 e3=-0.0426 e4=0.0502 e5=-0.0172 e6=-0.0569 e7=0.0072 N=2.0 Q=0.667 imagStrength=0.1107 [共役の子]
Depth=11 Norm=0.6689 e0=0.6245 e1=0.2143 e2=0.0442 e3=0.0718 e4=-0.0079 e5=0.0567 e6=0.0066 e7=-0.0339 N=3.0 Q=1.000 imagStrength=0.2398 [通常の子]
Depth=13 Norm=1.1747 e0=-1.1348 e1=-0.1923 e2=-0.1519 e3=-0.1334 e4=-0.0376 e5=-0.1064 e6=-0.0365 e7=0.0149 N=0.0 Q=0.000 imagStrength=0.3035 [共役の子]
Depth=13 Norm=1.1065 e0=-0.7625 e1=-0.7462 e2=-0.1562 e3=-0.1395 e4=-0.0452 e5=-0.1481 e6=-0.0335 e7=0.1308 N=1.0 Q=0.333 imagStrength=0.8018 [通常の子]
Depth=10 Norm=0.5745 e0=-0.4924 e1=-0.2727 e2=0.0599 e3=-0.0396 e4=0.0830 e5=-0.0027 e6=0.0245 e7=0.0227 N=3.0 Q=1.000 imagStrength=0.2959 [通常の子]
Depth=13 Norm=1.1096 e0=-0.2696 e1=-1.0249 e2=-0.2025 e3=-0.1273 e4=-0.0488 e5=-0.1263 e6=-0.1781 e7=0.0282 N=1.0 Q=0.333 imagStrength=1.0763 [通常の子]
Depth=12 Norm=0.5039 e0=0.4173 e1=0.2571 e2=-0.0568 e3=0.0278 e4=-0.0957 e5=0.0027 e6=-0.0207 e7=-0.0085 N=3.0 Q=1.000 imagStrength=0.2824 [共役の子]
Depth=8 Norm=0.7110 e0=-0.6695 e1=-0.2189 e2=-0.0506 e3=0.0748 e4=-0.0275 e5=0.0199 e6=0.0010 e7=0.0033 N=3.0 Q=1.000 imagStrength=0.2393 [共役の子]
Depth=11 Norm=0.6243 e0=0.3742 e1=-0.4886 e2=0.0075 e3=0.0723 e4=-0.0040 e5=0.0492 e6=-0.0551 e7=0.0164 N=3.0 Q=1.000 imagStrength=0.4997 [共役の子]
Depth=13 Norm=1.1907 e0=0.3733 e1=-1.0952 e2=-0.2077 e3=-0.1318 e4=-0.0417 e5=-0.1174 e6=0.0488 e7=-0.0261 N=1.0 Q=0.333 imagStrength=1.1307 [通常の子]
Depth=13 Norm=1.2365 e0=-0.1442 e1=1.2100 e2=-0.0894 e3=-0.1318 e4=-0.0417 e5=-0.1170 e6=0.0494 e7=-0.0269 N=1.0 Q=0.333 imagStrength=1.2280 [通常の子]
Depth=13 Norm=1.1540 e0=-0.5664 e1=-0.9539 e2=-0.1525 e3=-0.1479 e4=-0.0360 e5=-0.1061 e6=0.2082 e7=0.0043 N=1.0 Q=0.333 imagStrength=1.0054 [共役の子]
Depth=12 Norm=0.6038 e0=0.5595 e1=0.1893 e2=-0.0593 e3=0.0435 e4=-0.0978 e5=0.0012 e6=0.0172 e7=0.0196 N=3.0 Q=1.000 imagStrength=0.2269 [通常の子]
Depth=12 Norm=0.6140 e0=-0.5891 e1=-0.1110 e2=-0.0743 e3=0.0435 e4=-0.0978 e5=0.0012 e6=0.0172 e7=0.0196 N=3.0 Q=1.000 imagStrength=0.1732 [共役の子]
Depth=13 Norm=1.2445 e0=0.9668 e1=-0.7151 e2=-0.1758 e3=-0.1310 e4=-0.0441 e5=-0.1648 e6=-0.0932 e7=0.1293 N=1.0 Q=0.333 imagStrength=0.7836 [共役の子]
Depth=13 Norm=1.1766 e0=-1.0352 e1=0.5164 e2=-0.1131 e3=-0.1336 e4=-0.0320 e5=-0.1167 e6=-0.0125 e7=0.0249 N=0.0 Q=0.000 imagStrength=0.5593 [共役の子]
Depth=12 Norm=0.8264 e0=-0.6795 e1=0.4509 e2=-0.0467 e3=0.0301 e4=-0.1144 e5=-0.0017 e6=-0.0380 e7=0.0139 N=3.0 Q=1.000 imagStrength=0.4702 [通常の子]
Depth=13 Norm=1.2559 e0=1.0052 e1=-0.6937 e2=-0.1881 e3=-0.1267 e4=-0.0388 e5=-0.1091 e6=-0.1413 e7=-0.0310 N=1.0 Q=0.333 imagStrength=0.7529 [通常の子]
Depth=13 Norm=1.2594 e0=-0.8148 e1=0.9155 e2=-0.1048 e3=-0.1252 e4=-0.0456 e5=-0.1376 e6=-0.1885 e7=0.0302 N=1.0 Q=0.333 imagStrength=0.9604 [通常の子]
Depth=11 Norm=0.8817 e0=0.7924 e1=-0.3737 e2=0.0148 e3=0.0709 e4=-0.0084 e5=0.0540 e6=0.0342 e7=-0.0213 N=3.0 Q=1.000 imagStrength=0.3866 [共役の子]
Depth=11 Norm=0.5133 e0=0.1354 e1=-0.4831 e2=0.0076 e3=0.0720 e4=-0.0094 e5=0.0528 e6=-0.0589 e7=0.0153 N=3.0 Q=1.000 imagStrength=0.4952 [通常の子]
Depth=13 Norm=1.1767 e0=0.4960 e1=1.0229 e2=-0.0465 e3=-0.1496 e4=-0.0328 e5=-0.1280 e6=0.2199 e7=0.0446 N=1.0 Q=0.333 imagStrength=1.0671 [共役の子]
Depth=13 Norm=1.2225 e0=-0.1259 e1=1.1966 e2=-0.0895 e3=-0.1317 e4=-0.0372 e5=-0.1270 e6=0.0587 e7=-0.0218 N=1.0 Q=0.333 imagStrength=1.2160 [通常の子]
Depth=10 Norm=0.9370 e0=0.9093 e1=-0.1884 e2=0.0639 e3=-0.0374 e4=0.0782 e5=0.0018 e6=-0.0102 e7=-0.0635 N=3.0 Q=1.000 imagStrength=0.2263 [通常の子]
Depth=13 Norm=1.2710 e0=-0.8427 e1=0.9069 e2=-0.0547 e3=-0.1468 e4=-0.0370 e5=-0.1352 e6=0.1892 e7=0.0520 N=1.0 Q=0.333 imagStrength=0.9514 [通常の子]
Depth=12 Norm=0.8484 e0=-0.8181 e1=0.1826 e2=-0.0592 e3=0.0441 e4=-0.1052 e5=-0.0014 e6=0.0166 e7=0.0185 N=3.0 Q=1.000 imagStrength=0.2247 [共役の子]
Depth=6 Norm=0.9586 e0=0.8981 e1=-0.3327 e2=-0.0308 e3=-0.0221 e4=0.0043 e5=-0.0012 e6=0.0064 e7=0.0114 N=3.0 Q=1.000 imagStrength=0.3352 [共役の子]
Depth=13 Norm=1.2443 e0=0.4767 e1=1.1233 e2=-0.0137 e3=-0.0349 e4=-0.0512 e5=0.1093 e6=-0.1727 e7=-0.1162 N=1.0 Q=0.333 imagStrength=1.1494 [通常の子]
Depth=11 Norm=0.4913 e0=-0.2845 e1=-0.3901 e2=-0.0043 e3=0.0244 e4=0.0555 e5=-0.0320 e6=0.0581 e7=0.0102 N=3.0 Q=1.000 imagStrength=0.4005 [通常の子]
Depth=13 Norm=1.1778 e0=0.9661 e1=0.6589 e2=0.0046 e3=-0.0481 e4=-0.0530 e5=0.0842 e6=-0.0850 e7=-0.0135 N=0.0 Q=0.000 imagStrength=0.6736 [共役の子]
Depth=12 Norm=0.4574 e0=-0.0860 e1=-0.4407 e2=-0.0462 e3=0.0237 e4=0.0453 e5=0.0257 e6=0.0022 e7=-0.0471 N=3.0 Q=1.000 imagStrength=0.4492 [共役の子]
Depth=10 Norm=0.5135 e0=0.2698 e1=0.4270 e2=0.0412 e3=-0.0180 e4=-0.0586 e5=-0.0264 e6=-0.0104 e7=0.0488 N=3.0 Q=1.000 imagStrength=0.4370 [共役の子]
Depth=13 Norm=1.2476 e0=0.7042 e1=1.0218 e2=0.0177 e3=-0.0520 e4=-0.0429 e5=0.1008 e6=0.0048 e7=-0.0379 N=1.0 Q=0.333 imagStrength=1.0299 [通常の子]
Depth=13 Norm=1.2688 e0=1.2478 e1=0.0381 e2=-0.0501 e3=-0.0435 e4=-0.0456 e5=0.1299 e6=-0.0334 e7=-0.1638 N=0.0 Q=0.000 imagStrength=0.2297 [通常の子]
Depth=13 Norm=1.2273 e0=-1.1955 e1=0.2171 e2=-0.0402 e3=-0.0408 e4=-0.0582 e5=0.0796 e6=-0.1176 e7=-0.0549 N=0.0 Q=0.000 imagStrength=0.2774 [通常の子]
Depth=11 Norm=0.9248 e0=0.9169 e1=-0.0835 e2=0.0100 e3=0.0248 e4=0.0568 e5=-0.0352 e6=0.0351 e7=0.0335 N=3.0 Q=1.000 imagStrength=0.1205 [共役の子]
Depth=12 Norm=0.5378 e0=0.1798 e1=-0.5002 e2=-0.0502 e3=0.0148 e4=0.0545 e5=0.0241 e6=0.0131 e7=0.0187 N=3.0 Q=1.000 imagStrength=0.5069 [通常の子]
Depth=12 Norm=0.4803 e0=0.0140 e1=0.4756 e2=-0.0013 e3=0.0148 e4=0.0545 e5=0.0241 e6=0.0131 e7=0.0187 N=3.0 Q=1.000 imagStrength=0.4801 [共役の子]
Depth=13 Norm=1.3266 e0=1.3219 e1=0.0174 e2=-0.0480 e3=-0.0459 e4=-0.0535 e5=0.0559 e6=-0.0277 e7=0.0292 N=0.0 Q=0.000 imagStrength=0.1110 [共役の子]
Depth=9 Norm=0.7825 e0=-0.6367 e1=0.4516 e2=0.0055 e3=-0.0184 e4=0.0328 e5=-0.0360 e6=0.0035 e7=0.0158 N=3.0 Q=1.000 imagStrength=0.4549 [通常の子]
Depth=12 Norm=0.7729 e0=-0.7611 e1=0.0712 e2=-0.0162 e3=-0.0003 e4=-0.0549 e5=-0.0242 e6=-0.0007 e7=0.0957 N=2.0 Q=0.667 imagStrength=0.1345 [通常の子]
Depth=13 Norm=1.2256 e0=0.0249 e1=-1.2123 e2=-0.1307 e3=-0.0291 e4=0.0306 e5=-0.1031 e6=0.0469 e7=0.0089 N=1.0 Q=0.333 imagStrength=1.2254 [共役の子]
Depth=13 Norm=1.1643 e0=-0.1656 e1=1.1458 e2=-0.0103 e3=-0.0299 e4=0.0336 e5=-0.0906 e6=0.0676 e7=-0.0178 N=1.0 Q=0.333 imagStrength=1.1524 [共役の子]
Depth=11 Norm=0.8745 e0=0.7853 e1=-0.3778 e2=-0.0067 e3=0.0189 e4=-0.0455 e5=0.0301 e6=-0.0404 e7=0.0156 N=3.0 Q=1.000 imagStrength=0.3847 [共役の子]
Depth=13 Norm=1.2412 e0=0.9930 e1=-0.7278 e2=-0.1043 e3=-0.0286 e4=0.0334 e5=-0.0752 e6=0.0557 e7=-0.0591 N=0.0 Q=0.000 imagStrength=0.7448 [通常の子]
Depth=13 Norm=1.2464 e0=-0.8157 e1=0.9359 e2=-0.0183 e3=-0.0270 e4=0.0271 e5=-0.1009 e6=0.0129 e7=-0.0036 N=0.0 Q=0.000 imagStrength=0.9424 [通常の子]
Depth=13 Norm=1.2135 e0=-1.1865 e1=-0.1449 e2=-0.0588 e3=-0.0324 e4=0.0274 e5=-0.1328 e6=-0.0309 e7=0.1409 N=0.0 Q=0.000 imagStrength=0.2544 [通常の子]
Depth=11 Norm=0.9199 e0=0.9135 e1=-0.0764 e2=0.0099 e3=0.0192 e4=-0.0517 e5=0.0386 e6=-0.0167 e7=-0.0312 N=3.0 Q=1.000 imagStrength=0.1082 [通常の子]
Depth=13 Norm=1.2662 e0=-1.1426 e1=0.5314 e2=-0.0213 e3=-0.0364 e4=0.0411 e5=-0.0795 e6=0.0683 e7=0.0287 N=0.0 Q=0.000 imagStrength=0.5456 [共役の子]
Depth=12 Norm=0.8368 e0=-0.7034 e1=0.4449 e2=0.0055 e3=0.0192 e4=-0.0677 e5=-0.0214 e6=-0.0099 e7=-0.0446 N=3.0 Q=1.000 imagStrength=0.4533 [共役の子]
Depth=10 Norm=0.8478 e0=0.7126 e1=-0.4539 e2=-0.0007 e3=-0.0140 e4=0.0613 e5=0.0226 e6=0.0217 e7=0.0055 N=3.0 Q=1.000 imagStrength=0.4593 [共役の子]
Depth=13 Norm=1.2970 e0=-1.2614 e1=0.2551 e2=-0.0254 e3=-0.0337 e4=0.0247 e5=-0.1107 e6=-0.0716 e7=0.0778 N=0.0 Q=0.000 imagStrength=0.3015 [通常の子]
Depth=10 Norm=0.7501 e0=0.6149 e1=-0.4172 e2=-0.0491 e3=0.0367 e4=-0.0738 e5=0.0038 e6=-0.0034 e7=-0.0368 N=3.0 Q=1.000 imagStrength=0.4297 [通常の子]
Depth=13 Norm=1.1733 e0=-1.1510 e1=0.1599 e2=0.1166 e3=0.0297 e4=0.0356 e5=0.0780 e6=0.0516 e7=0.0399 N=0.0 Q=0.000 imagStrength=0.2273 [通常の子]
Depth=12 Norm=0.7431 e0=-0.6118 e1=0.4092 e2=0.0448 e3=-0.0275 e4=0.0864 e5=-0.0045 e6=0.0136 e7=0.0035 N=3.0 Q=1.000 imagStrength=0.4217 [共役の子]
Depth=9 Norm=0.8459 e0=-0.7848 e1=0.3068 e2=0.0592 e3=0.0203 e4=0.0158 e5=0.0339 e6=0.0067 e7=0.0107 N=3.0 Q=1.000 imagStrength=0.3156 [共役の子]
Depth=12 Norm=0.7907 e0=-0.7437 e1=0.2368 e2=0.0347 e3=-0.0412 e4=0.0870 e5=-0.0062 e6=-0.0048 e7=0.0748 N=3.0 Q=1.000 imagStrength=0.2687 [通常の子]
Depth=13 Norm=1.1427 e0=0.4446 e1=-1.0468 e2=0.0273 e3=0.0376 e4=0.0374 e5=0.0742 e6=0.0407 e7=0.0384 N=1.0 Q=0.333 imagStrength=1.0526 [共役の子]
Depth=13 Norm=1.0706 e0=-0.5467 e1=0.9002 e2=0.1273 e3=0.0357 e4=0.0442 e5=0.1001 e6=0.0846 e7=-0.0184 N=1.0 Q=0.333 imagStrength=0.9205 [共役の子]
Depth=13 Norm=1.1968 e0=0.3774 e1=1.1065 e2=0.1237 e3=0.0457 e4=0.0342 e5=0.0865 e6=-0.1971 e7=0.0264 N=1.0 Q=0.333 imagStrength=1.1358 [共役の子]
Depth=12 Norm=0.7220 e0=-0.7146 e1=-0.0225 e2=0.0223 e3=-0.0424 e4=0.0812 e5=-0.0039 e6=-0.0348 e7=-0.0041 N=2.0 Q=0.667 imagStrength=0.1032 [通常の子]
Depth=12 Norm=0.8288 e0=0.8206 e1=-0.0593 e2=0.0204 e3=-0.0424 e4=0.0812 e5=-0.0039 e6=-0.0348 e7=-0.0041 N=2.0 Q=0.667 imagStrength=0.1165 [共役の子]
Depth=13 Norm=1.1538 e0=-0.5985 e1=0.9558 e2=0.1211 e3=0.0430 e4=0.0345 e5=0.0785 e6=-0.1810 e7=0.0528 N=1.0 Q=0.333 imagStrength=0.9864 [通常の子]
Depth=11 Norm=0.6641 e0=0.4807 e1=-0.4498 e2=-0.0548 e3=-0.0261 e4=-0.0046 e5=-0.0386 e6=0.0324 e7=-0.0373 N=3.0 Q=1.000 imagStrength=0.4582 [通常の子]
Depth=13 Norm=1.1354 e0=-0.0243 e1=1.1142 e2=0.1735 e3=0.0266 e4=0.0430 e5=0.0950 e6=-0.0141 e7=0.0721 N=1.0 Q=0.333 imagStrength=1.1351 [共役の子]
Depth=13 Norm=1.2449 e0=0.9693 e1=0.7424 e2=0.1445 e3=0.0272 e4=0.0445 e5=0.1302 e6=0.1177 e7=-0.0688 N=1.0 Q=0.333 imagStrength=0.7812 [通常の子]
Depth=13 Norm=1.1759 e0=-1.0366 e1=-0.5389 e2=0.0792 e3=0.0298 e4=0.0328 e5=0.0833 e6=0.0390 e7=0.0330 N=0.0 Q=0.000 imagStrength=0.5552 [通常の子]
Depth=11 Norm=0.7090 e0=0.6652 e1=0.2368 e2=-0.0219 e3=-0.0260 e4=0.0024 e5=-0.0482 e6=-0.0186 e7=0.0165 N=3.0 Q=1.000 imagStrength=0.2453 [共役の子]
Depth=12 Norm=0.4939 e0=-0.3500 e1=-0.3238 e2=0.0061 e3=-0.0421 e4=0.0910 e5=-0.0050 e6=-0.0050 e7=0.0805 N=3.0 Q=1.000 imagStrength=0.3485 [通常の子]
Depth=12 Norm=0.5987 e0=0.5254 e1=0.2542 e2=0.0351 e3=-0.0421 e4=0.0910 e5=-0.0050 e6=-0.0050 e7=0.0805 N=3.0 Q=1.000 imagStrength=0.2871 [共役の子]
Depth=13 Norm=1.2940 e0=1.0442 e1=0.7477 e2=0.1175 e3=0.0376 e4=0.0345 e5=0.0745 e6=0.0321 e7=0.0453 N=0.0 Q=0.000 imagStrength=0.7642 [共役の子]
Depth=10 Norm=0.8543 e0=-0.8478 e1=0.0424 e2=-0.0251 e3=0.0346 e4=-0.0658 e5=0.0004 e6=0.0314 e7=0.0463 N=3.0 Q=1.000 imagStrength=0.1053 [通常の子]
Depth=13 Norm=1.1774 e0=0.5255 e1=-1.0297 e2=0.0146 e3=0.0448 e4=0.0337 e5=0.0971 e6=-0.1922 e7=0.0135 N=1.0 Q=0.333 imagStrength=1.0536 [通常の子]
Depth=12 Norm=0.8195 e0=0.8108 e1=-0.0602 e2=0.0203 e3=-0.0419 e4=0.0843 e5=-0.0025 e6=-0.0349 e7=-0.0076 N=2.0 Q=0.667 imagStrength=0.1191 [共役の子]
Depth=9 Norm=0.5207 e0=0.1338 e1=-0.5009 e2=0.0158 e3=0.0204 e4=0.0141 e5=0.0361 e6=0.0064 e7=0.0095 N=3.0 Q=1.000 imagStrength=0.5032 [共役の子]
Depth=12 Norm=0.5961 e0=0.5233 e1=0.2612 e2=0.0377 e3=-0.0203 e4=0.0692 e5=-0.0026 e6=-0.0318 e7=-0.0750 N=3.0 Q=1.000 imagStrength=0.2854 [通常の子]
Depth=13 Norm=1.2355 e0=0.6832 e1=1.0048 e2=0.1710 e3=0.0261 e4=0.0382 e5=0.0882 e6=-0.0321 e7=0.1000 N=1.0 Q=0.333 imagStrength=1.0295 [共役の子]
Depth=13 Norm=1.2648 e0=-0.4681 e1=-1.1657 e2=0.0590 e3=0.0256 e4=0.0407 e5=0.0994 e6=-0.0141 e7=0.0767 N=1.0 Q=0.333 imagStrength=1.1750 [共役の子]
Depth=12 Norm=0.8856 e0=0.8237 e1=-0.2900 e2=-0.0387 e3=-0.0269 e4=-0.0733 e5=-0.0318 e6=-0.0407 e7=0.1070 N=3.0 Q=1.000 imagStrength=0.3253 [共役の子]
Depth=10 Norm=0.8643 e0=-0.8105 e1=0.2771 e2=0.0422 e3=0.0147 e4=0.0716 e5=0.0287 e6=0.0321 e7=-0.0655 N=3.0 Q=1.000 imagStrength=0.3000 [共役の子]
Depth=13 Norm=1.1789 e0=0.9696 e1=-0.6411 e2=-0.0380 e3=-0.0581 e4=0.0538 e5=-0.1177 e6=0.1099 e7=0.0728 N=0.0 Q=0.000 imagStrength=0.6707 [通常の子]
Depth=13 Norm=1.2242 e0=-0.8639 e1=0.8382 e2=0.0670 e3=-0.0656 e4=0.0561 e5=-0.0948 e6=0.1653 e7=0.0374 N=1.0 Q=0.333 imagStrength=0.8673 [共役の子]
Depth=13 Norm=1.2966 e0=1.0335 e1=-0.7482 e2=-0.0144 e3=-0.0631 e4=0.0442 e5=-0.1422 e6=0.0863 e7=0.1395 N=1.0 Q=0.333 imagStrength=0.7830 [共役の子]
Depth=12 Norm=0.8807 e0=0.7910 e1=-0.3746 e2=-0.0405 e3=-0.0103 e4=-0.0757 e5=-0.0301 e6=-0.0211 e7=0.0275 N=3.0 Q=1.000 imagStrength=0.3872 [通常の子]
Depth=12 Norm=0.5485 e0=0.1934 e1=-0.4950 e2=-0.0478 e3=-0.0190 e4=-0.0858 e5=-0.0321 e6=-0.0604 e7=0.0617 N=3.0 Q=1.000 imagStrength=0.5133 [通常の子]
Depth=12 Norm=0.4893 e0=-0.0086 e1=0.4724 e2=0.0007 e3=-0.0190 e4=-0.0858 e5=-0.0321 e6=-0.0604 e7=0.0617 N=3.0 Q=1.000 imagStrength=0.4892 [共役の子]
Depth=13 Norm=1.3262 e0=1.2951 e1=0.0026 e2=0.0057 e3=-0.0583 e4=0.0455 e5=-0.1675 e6=0.0212 e7=0.2179 N=0.0 Q=0.000 imagStrength=0.2855 [共役の子]
Depth=11 Norm=0.8844 e0=-0.8647 e1=0.1650 e2=-0.0057 e3=0.0206 e4=-0.0621 e5=0.0398 e6=-0.0095 e7=-0.0337 N=3.0 Q=1.000 imagStrength=0.1854 [通常の子]
Depth=13 Norm=1.2815 e0=1.0111 e1=-0.7572 e2=-0.0350 e3=-0.0537 e4=0.0412 e5=-0.1410 e6=-0.0683 e7=0.1278 N=1.0 Q=0.333 imagStrength=0.7874 [共役の子]
Depth=13 Norm=1.3266 e0=1.3196 e1=0.0040 e2=0.0139 e3=-0.0603 e4=0.0551 e5=-0.0898 e6=0.0517 e7=0.0291 N=0.0 Q=0.000 imagStrength=0.1359 [通常の子]
Depth=8 Norm=0.5882 e0=0.4388 e1=0.3904 e2=-0.0055 e3=0.0063 e4=-0.0074 e5=0.0017 e6=-0.0293 e7=0.0026 N=3.0 Q=1.000 imagStrength=0.3917 [通常の子]
Depth=11 Norm=0.4988 e0=-0.0434 e1=0.4915 e2=0.0127 e3=0.0270 e4=0.0387 e5=-0.0211 e6=0.0405 e7=-0.0283 N=3.0 Q=1.000 imagStrength=0.4969 [共役の子]
Depth=13 Norm=1.2264 e0=0.0133 e1=1.2162 e2=0.0971 e3=-0.0779 e4=-0.0305 e5=0.0716 e6=-0.0244 e7=0.0507 N=1.0 Q=0.333 imagStrength=1.2263 [通常の子]
Depth=13 Norm=1.1655 e0=-0.1508 e1=-1.1474 e2=-0.0237 e3=-0.0771 e4=-0.0336 e5=0.0594 e6=-0.0444 e7=0.0765 N=1.0 Q=0.333 imagStrength=1.1557 [通常の子]
Depth=13 Norm=1.2798 e0=1.0218 e1=0.7428 e2=0.0310 e3=-0.0640 e4=-0.0392 e5=0.0383 e6=-0.1665 e7=0.0792 N=0.0 Q=0.000 imagStrength=0.7706 [共役の子]
Depth=12 Norm=0.4888 e0=-0.3647 e1=-0.3165 e2=-0.0455 e3=-0.0177 e4=0.0411 e5=0.0189 e6=-0.0357 e7=0.0037 N=2.0 Q=0.667 imagStrength=0.3254 [通常の子]
Depth=12 Norm=0.5939 e0=0.5344 e1=0.2513 e2=-0.0170 e3=-0.0177 e4=0.0411 e5=0.0189 e6=-0.0357 e7=0.0037 N=3.0 Q=1.000 imagStrength=0.2591 [共役の子]
Depth=12 Norm=0.5788 e0=-0.2572 e1=0.5153 e2=-0.0026 e3=-0.0099 e4=0.0523 e5=0.0192 e6=0.0117 e7=0.0019 N=3.0 Q=1.000 imagStrength=0.5186 [共役の子]
Depth=10 Norm=0.5622 e0=0.1893 e1=-0.5260 e2=-0.0021 e3=0.0106 e4=-0.0495 e5=-0.0202 e6=-0.0004 e7=-0.0225 N=3.0 Q=1.000 imagStrength=0.5293 [共役の子]
Depth=13 Norm=1.2657 e0=-1.1367 e1=-0.5462 e2=-0.0149 e3=-0.0697 e4=-0.0408 e5=0.0463 e6=-0.0427 e7=0.0298 N=0.0 Q=0.000 imagStrength=0.5567 [通常の子]
Depth=13 Norm=1.2771 e0=1.2028 e1=0.3883 e2=0.0502 e3=-0.0799 e4=-0.0328 e5=0.0326 e6=0.1026 e7=0.1092 N=0.0 Q=0.000 imagStrength=0.4293 [共役の子]
Depth=13 Norm=1.2585 e0=-1.0693 e1=-0.6311 e2=-0.0030 e3=-0.0820 e4=-0.0225 e5=0.0733 e6=0.1703 e7=0.0217 N=0.0 Q=0.000 imagStrength=0.6636 [共役の子]
Depth=12 Norm=0.5054 e0=0.0113 e1=0.5028 e2=-0.0039 e3=-0.0052 e4=0.0383 e5=0.0170 e6=-0.0086 e7=0.0241 N=3.0 Q=1.000 imagStrength=0.5053 [通常の子]
Depth=7 Norm=0.8964 e0=-0.8464 e1=0.2850 e2=0.0438 e3=-0.0298 e4=0.0073 e5=-0.0081 e6=-0.0317 e7=0.0449 N=3.0 Q=1.000 imagStrength=0.2953 [通常の子]
Depth=13 Norm=1.1425 e0=0.4696 e1=0.9941 e2=-0.1119 e3=-0.0371 e4=-0.0914 e5=-0.0036 e6=-0.2425 e7=-0.1240 N=1.0 Q=0.333 imagStrength=1.0415 [共役の子]
Depth=12 Norm=0.6402 e0=-0.6313 e1=-0.0674 e2=-0.0386 e3=0.0410 e4=-0.0202 e5=0.0300 e6=0.0283 e7=-0.0386 N=2.0 Q=0.667 imagStrength=0.1063 [通常の子]
Depth=12 Norm=0.7517 e0=0.7474 e1=-0.0039 e2=-0.0354 e3=0.0410 e4=-0.0202 e5=0.0300 e6=0.0283 e7=-0.0386 N=2.0 Q=0.667 imagStrength=0.0809 [共役の子]
Depth=13 Norm=1.0988 e0=-0.4634 e1=0.9503 e2=-0.1113 e3=-0.0381 e4=-0.0914 e5=-0.0055 e6=-0.2321 e7=-0.1154 N=1.0 Q=0.333 imagStrength=0.9963 [通常の子]
Depth=11 Norm=0.5926 e0=0.3870 e1=-0.4358 e2=0.0274 e3=0.0380 e4=0.0554 e5=0.0106 e6=0.0747 e7=0.0230 N=3.0 Q=1.000 imagStrength=0.4488 [通常の子]
Depth=13 Norm=1.0739 e0=0.0913 e1=1.0573 e2=-0.0614 e3=-0.0548 e4=-0.0835 e5=0.0051 e6=-0.0742 e7=-0.0873 N=1.0 Q=0.333 imagStrength=1.0700 [共役の子]
Depth=13 Norm=1.1018 e0=-0.7000 e1=0.8112 e2=-0.0819 e3=-0.0532 e4=-0.0804 e5=0.0335 e6=0.0877 e7=-0.2028 N=1.0 Q=0.333 imagStrength=0.8509 [共役の子]
Depth=13 Norm=1.1741 e0=0.8868 e1=-0.7356 e2=-0.1608 e3=-0.0508 e4=-0.0905 e5=-0.0051 e6=0.0223 e7=-0.1182 N=1.0 Q=0.333 imagStrength=0.7695 [共役の子]
Depth=12 Norm=0.7943 e0=0.7220 e1=-0.3101 e2=-0.0494 e3=0.0562 e4=-0.0154 e5=0.0292 e6=0.0771 e7=-0.0281 N=3.0 Q=1.000 imagStrength=0.3311 [通常の子]
Depth=13 Norm=1.0884 e0=-0.7505 e1=0.7649 e2=-0.0759 e3=-0.0567 e4=-0.0836 e5=-0.0073 e6=0.1106 e7=-0.0902 N=1.0 Q=0.333 imagStrength=0.7883 [通常の子]
Depth=13 Norm=1.0758 e0=0.6556 e1=-0.8097 e2=-0.1571 e3=-0.0580 e4=-0.0786 e5=0.0113 e6=0.1424 e7=-0.1313 N=1.0 Q=0.333 imagStrength=0.8529 [通常の子]
Depth=11 Norm=0.6591 e0=-0.5441 e1=0.3544 e2=0.0654 e3=0.0385 e4=0.0541 e5=0.0086 e6=-0.0088 e7=0.0628 N=3.0 Q=1.000 imagStrength=0.3720 [共役の子]
Depth=10 Norm=0.4830 e0=0.1536 e1=0.4398 e2=0.0596 e3=-0.0501 e4=0.0967 e5=0.0111 e6=-0.0256 e7=0.0011 N=3.0 Q=1.000 imagStrength=0.4579 [通常の子]
Depth=13 Norm=1.2052 e0=0.7892 e1=0.8887 e2=-0.0824 e3=-0.0463 e4=-0.0151 e5=-0.1259 e6=0.1077 e7=-0.0574 N=1.0 Q=0.333 imagStrength=0.9109 [通常の子]
Depth=12 Norm=0.4745 e0=0.0173 e1=-0.4524 e2=-0.0532 e3=0.0493 e4=-0.1204 e5=-0.0093 e6=0.0168 e7=0.0054 N=3.0 Q=1.000 imagStrength=0.4741 [共役の子]
Depth=9 Norm=0.8148 e0=0.8044 e1=0.1005 e2=-0.0535 e3=-0.0259 e4=0.0027 e5=-0.0515 e6=-0.0074 e7=-0.0239 N=3.0 Q=1.000 imagStrength=0.1301 [共役の子]
Depth=12 Norm=0.6858 e0=0.4869 e1=-0.4632 e2=-0.0529 e3=0.0477 e4=-0.1076 e5=-0.0071 e6=0.0372 e7=-0.0243 N=3.0 Q=1.000 imagStrength=0.4830 [通常の子]
Depth=13 Norm=1.1829 e0=-1.1183 e1=0.3132 e2=-0.1253 e3=-0.0382 e4=-0.0193 e5=-0.0988 e6=0.0049 e7=-0.1523 N=0.0 Q=0.000 imagStrength=0.3855 [共役の子]
Depth=13 Norm=1.2389 e0=1.2038 e1=-0.1734 e2=-0.1500 e3=-0.0354 e4=-0.0323 e5=-0.1501 e6=-0.0815 e7=-0.0406 N=0.0 Q=0.000 imagStrength=0.2927 [共役の子]
Depth=13 Norm=1.1651 e0=0.6690 e1=-0.9195 e2=-0.1684 e3=-0.0470 e4=-0.0240 e5=-0.1588 e6=0.0897 e7=0.0096 N=1.0 Q=0.333 imagStrength=0.9539 [共役の子]
Depth=12 Norm=0.7969 e0=0.7179 e1=-0.3161 e2=-0.0464 e3=0.0511 e4=-0.1191 e5=-0.0091 e6=0.0264 e7=0.0064 N=3.0 Q=1.000 imagStrength=0.3459 [通常の子]
Depth=12 Norm=0.7246 e0=-0.6121 e1=0.3642 e2=-0.0123 e3=0.0511 e4=-0.1191 e5=-0.0091 e6=0.0264 e7=0.0064 N=3.0 Q=1.000 imagStrength=0.3878 [共役の子]
Depth=13 Norm=1.1860 e0=1.1570 e1=-0.1104 e2=-0.1388 e3=-0.0416 e4=-0.0190 e5=-0.1037 e6=0.0602 e7=-0.1415 N=0.0 Q=0.000 imagStrength=0.2606 [通常の子]
Depth=11 Norm=0.7811 e0=-0.7516 e1=0.1892 e2=0.0567 e3=0.0334 e4=-0.0183 e5=0.0537 e6=0.0104 e7=0.0414 N=3.0 Q=1.000 imagStrength=0.2126 [通常の子]
Depth=13 Norm=1.1473 e0=0.8273 e1=-0.7525 e2=-0.1853 e3=-0.0341 e4=-0.0315 e5=-0.1469 e6=-0.0567 e7=-0.0649 N=1.0 Q=0.333 imagStrength=0.7949 [共役の子]
Depth=12 Norm=0.8241 e0=0.8031 e1=-0.1108 e2=-0.0409 e3=0.0630 e4=-0.0381 e5=0.0310 e6=0.0301 e7=-0.1133 N=3.0 Q=1.000 imagStrength=0.1846 [通常の子]
Depth=12 Norm=0.7990 e0=-0.7636 e1=0.1859 e2=-0.0260 e3=0.0630 e4=-0.0381 e5=0.0310 e6=0.0301 e7=-0.1133 N=3.0 Q=1.000 imagStrength=0.2353 [共役の子]
Depth=13 Norm=1.2337 e0=0.1040 e1=-1.2065 e2=-0.1775 e3=-0.0585 e4=-0.0885 e5=-0.0065 e6=-0.0954 e7=-0.0610 N=1.0 Q=0.333 imagStrength=1.2293 [共役の子]
Depth=11 Norm=0.5099 e0=0.0243 e1=0.4917 e2=0.0747 e3=0.0399 e4=0.0566 e5=0.0118 e6=0.0817 e7=0.0203 N=3.0 Q=1.000 imagStrength=0.5093 [通常の子]
Depth=13 Norm=1.2739 e0=-0.6610 e1=-1.0221 e2=-0.2214 e3=-0.0400 e4=-0.0919 e5=0.0056 e6=-0.2454 e7=-0.1484 N=1.0 Q=0.333 imagStrength=1.0890 [共役の子]
Depth=13 Norm=1.2242 e0=0.0935 e1=-1.1984 e2=-0.1752 e3=-0.0594 e4=-0.0874 e5=-0.0034 e6=-0.0869 e7=-0.0667 N=1.0 Q=0.333 imagStrength=1.2206 [通常の子]
Depth=9 Norm=0.5831 e0=0.4394 e1=0.3730 e2=-0.0408 e3=-0.0250 e4=-0.0463 e5=0.0062 e6=-0.0150 e7=-0.0565 N=3.0 Q=1.000 imagStrength=0.3834 [通常の子]
Depth=12 Norm=0.4553 e0=0.0209 e1=-0.4407 e2=-0.0587 e3=0.0459 e4=-0.0095 e5=0.0298 e6=0.0778 e7=0.0112 N=3.0 Q=1.000 imagStrength=0.4548 [通常の子]
Depth=13 Norm=1.2358 e0=-1.1215 e1=-0.4109 e2=-0.1735 e3=-0.0475 e4=-0.0860 e5=0.0344 e6=0.0183 e7=-0.2437 N=0.0 Q=0.000 imagStrength=0.5191 [共役の子]
Depth=13 Norm=1.2543 e0=1.1080 e1=0.5409 e2=-0.1241 e3=-0.0453 e4=-0.0963 e5=-0.0071 e6=-0.0510 e7=-0.1541 N=0.0 Q=0.000 imagStrength=0.5880 [共役の子]
Depth=11 Norm=0.4973 e0=-0.1280 e1=-0.4702 e2=0.0246 e3=0.0405 e4=0.0549 e5=0.0101 e6=-0.0154 e7=0.0647 N=3.0 Q=1.000 imagStrength=0.4805 [共役の子]
Depth=13 Norm=1.2479 e0=-0.3572 e1=-1.1634 e2=-0.2199 e3=-0.0456 e4=-0.0916 e5=-0.0152 e6=-0.0123 e7=-0.1296 N=1.0 Q=0.333 imagStrength=1.1957 [通常の子]
Depth=13 Norm=1.3183 e0=0.5757 e1=1.1615 e2=-0.1010 e3=-0.0471 e4=-0.0847 e5=0.0134 e6=0.0351 e7=-0.1909 N=1.0 Q=0.333 imagStrength=1.1860 [通常の子]
Depth=12 Norm=0.7852 e0=0.6352 e1=-0.4383 e2=-0.0549 e3=0.0418 e4=-0.1210 e5=-0.0103 e6=0.0145 e7=0.0340 N=3.0 Q=1.000 imagStrength=0.4615 [共役の子]
Depth=10 Norm=0.7024 e0=-0.5454 e1=0.4225 e2=0.0607 e3=-0.0509 e4=0.1020 e5=0.0120 e6=-0.0250 e7=-0.0016 N=3.0 Q=1.000 imagStrength=0.4427 [共役の子]
Depth=13 Norm=1.1436 e0=1.1194 e1=-0.0476 e2=-0.1532 e3=-0.0429 e4=-0.0166 e5=-0.1316 e6=0.0546 e7=-0.0809 N=0.0 Q=0.000 imagStrength=0.2339 [通常の子]
Depth=13 Norm=1.1644 e0=-1.0956 e1=0.3217 e2=-0.1278 e3=-0.0418 e4=-0.0190 e5=-0.1076 e6=0.0112 e7=-0.1474 N=0.0 Q=0.000 imagStrength=0.3942 [共役の子]
Depth=13 Norm=1.2209 e0=1.1826 e1=-0.1851 e2=-0.1535 e3=-0.0389 e4=-0.0318 e5=-0.1579 e6=-0.0735 e7=-0.0378 N=0.0 Q=0.000 imagStrength=0.3036 [共役の子]
Depth=12 Norm=0.6809 e0=0.4874 e1=-0.4539 e2=-0.0541 e3=0.0484 e4=-0.1136 e5=-0.0081 e6=0.0364 e7=-0.0215 N=3.0 Q=1.000 imagStrength=0.4754 [通常の子]
Depth=12 Norm=0.4531 e0=-0.2184 e1=-0.3691 e2=-0.0517 e3=0.0378 e4=-0.1176 e5=-0.0103 e6=0.0198 e7=0.0542 N=3.0 Q=1.000 imagStrength=0.3970 [通常の子]
Depth=12 Norm=0.5252 e0=0.3971 e1=0.3149 e2=-0.0174 e3=0.0378 e4=-0.1176 e5=-0.0103 e6=0.0198 e7=0.0542 N=3.0 Q=1.000 imagStrength=0.3437 [共役の子]
Depth=13 Norm=1.2690 e0=1.1154 e1=0.5636 e2=-0.1271 e3=-0.0386 e4=-0.0282 e5=-0.1727 e6=-0.0125 e7=-0.0091 N=0.0 Q=0.000 imagStrength=0.6051 [共役の子]
Depth=11 Norm=0.7434 e0=-0.7325 e1=-0.0871 e2=0.0436 e3=0.0349 e4=-0.0201 e5=0.0566 e6=0.0126 e7=0.0409 N=3.0 Q=1.000 imagStrength=0.1271 [通常の子]
Depth=13 Norm=1.2093 e0=1.1752 e1=-0.1713 e2=-0.1475 e3=-0.0407 e4=-0.0315 e5=-0.1577 e6=-0.0311 e7=-0.0412 N=0.0 Q=0.000 imagStrength=0.2851 [共役の子]
Depth=13 Norm=1.2735 e0=1.1166 e1=0.5661 e2=-0.1202 e3=-0.0397 e4=-0.0202 e5=-0.1081 e6=0.0199 e7=-0.1614 N=0.0 Q=0.000 imagStrength=0.6124 [通常の子]
Depth=6 Norm=1.0312 e0=1.0290 e1=-0.0560 e2=-0.0183 e3=-0.0012 e4=-0.0134 e5=0.0047 e6=-0.0054 e7=-0.0284 N=3.0 Q=1.000 imagStrength=0.0671 [通常の子]
Depth=13 Norm=1.2372 e0=1.0135 e1=0.6343 e2=0.0343 e3=0.0533 e4=-0.0416 e5=0.1897 e6=-0.0672 e7=-0.2344 N=1.0 Q=0.333 imagStrength=0.7096 [通常の子]
Depth=11 Norm=0.6881 e0=-0.6643 e1=-0.1292 e2=-0.0016 e3=-0.0204 e4=0.0715 e5=-0.0597 e6=0.0548 e7=0.0580 N=3.0 Q=1.000 imagStrength=0.1793 [通常の子]
Depth=13 Norm=1.1714 e0=1.1489 e1=-0.0557 e2=0.0140 e3=0.0504 e4=-0.0518 e5=0.1422 e6=-0.1000 e7=-0.1155 N=0.0 Q=0.000 imagStrength=0.2282 [共役の子]
Depth=12 Norm=0.6575 e0=0.4092 e1=-0.5021 e2=-0.0054 e3=0.0056 e4=0.0996 e5=0.0296 e6=0.0418 e7=-0.0102 N=3.0 Q=1.000 imagStrength=0.5146 [共役の子]
Depth=10 Norm=0.5686 e0=-0.2704 e1=0.4854 e2=-0.0028 e3=-0.0044 e4=-0.0980 e5=-0.0290 e6=-0.0532 e7=0.0345 N=3.0 Q=1.000 imagStrength=0.5001 [共役の子]
Depth=13 Norm=1.1855 e0=1.0909 e1=0.3967 e2=0.0318 e3=0.0461 e4=-0.0359 e5=0.1691 e6=0.0400 e7=-0.1529 N=0.0 Q=0.000 imagStrength=0.4641 [通常の子]
Depth=13 Norm=1.2490 e0=1.0109 e1=-0.6531 e2=-0.0478 e3=0.0601 e4=-0.0450 e5=0.1781 e6=-0.1654 e7=-0.2115 N=1.0 Q=0.333 imagStrength=0.7336 [通常の子]
Depth=13 Norm=1.2494 e0=-0.8523 e1=0.8587 e2=0.0294 e3=0.0618 e4=-0.0526 e5=0.1475 e6=-0.2161 e7=-0.1460 N=1.0 Q=0.333 imagStrength=0.9135 [通常の子]
Depth=11 Norm=0.8869 e0=0.8032 e1=-0.3543 e2=-0.0122 e3=-0.0207 e4=0.0701 e5=-0.0580 e6=0.0706 e7=0.0447 N=3.0 Q=1.000 imagStrength=0.3760 [共役の子]
Depth=12 Norm=0.7768 e0=0.6101 e1=-0.4670 e2=-0.0033 e3=0.0099 e4=0.0949 e5=0.0300 e6=0.0337 e7=-0.0438 N=3.0 Q=1.000 imagStrength=0.4808 [通常の子]
Depth=12 Norm=0.6752 e0=-0.4524 e1=0.4860 e2=0.0445 e3=0.0099 e4=0.0949 e5=0.0300 e6=0.0337 e7=-0.0438 N=3.0 Q=1.000 imagStrength=0.5012 [共役の子]
Depth=13 Norm=1.2941 e0=1.0869 e1=-0.6844 e2=-0.0170 e3=0.0470 e4=-0.0477 e5=0.1205 e6=-0.0699 e7=-0.0287 N=0.0 Q=0.000 imagStrength=0.7024 [共役の子]
Depth=9 Norm=0.5347 e0=-0.1396 e1=0.5136 e2=0.0320 e3=0.0255 e4=0.0084 e5=0.0034 e6=-0.0058 e7=-0.0278 N=3.0 Q=1.000 imagStrength=0.5161 [通常の子]
Depth=12 Norm=0.5401 e0=-0.4795 e1=-0.2305 e2=0.0131 e3=-0.0086 e4=0.0289 e5=-0.0066 e6=0.0496 e7=0.0714 N=3.0 Q=1.000 imagStrength=0.2487 [通常の子]
Depth=13 Norm=1.2471 e0=-0.6700 e1=-1.0359 e2=-0.0684 e3=0.0665 e4=0.0168 e5=0.0269 e6=0.0475 e7=-0.1447 N=1.0 Q=0.333 imagStrength=1.0518 [共役の子]
Depth=13 Norm=1.2200 e0=0.5604 e1=1.0738 e2=0.0401 e3=0.0674 e4=0.0137 e5=0.0145 e6=0.0270 e7=-0.1183 N=1.0 Q=0.333 imagStrength=1.0837 [共役の子]
Depth=11 Norm=0.6708 e0=0.4124 e1=-0.5237 e2=-0.0235 e3=-0.0250 e4=-0.0075 e5=-0.0104 e6=-0.0379 e7=0.0533 N=3.0 Q=1.000 imagStrength=0.5290 [共役の子]
Depth=13 Norm=1.2646 e0=0.4136 e1=-1.1830 e2=-0.0787 e3=0.0677 e4=0.0152 e5=0.0175 e6=0.0358 e7=-0.1269 N=1.0 Q=0.333 imagStrength=1.1951 [通常の子]
Depth=13 Norm=1.3101 e0=-0.1812 e1=1.2880 e2=0.0482 e3=0.0677 e4=0.0151 e5=0.0172 e6=0.0353 e7=-0.1263 N=1.0 Q=0.333 imagStrength=1.2975 [通常の子]
Depth=13 Norm=1.2150 e0=-1.0649 e1=0.5584 e2=0.0222 e3=0.0657 e4=0.0103 e5=-0.0108 e6=-0.1593 e7=0.0060 N=0.0 Q=0.000 imagStrength=0.5850 [通常の子]
Depth=11 Norm=0.8888 e0=0.8166 e1=-0.3475 e2=-0.0128 e3=-0.0246 e4=-0.0096 e5=-0.0046 e6=0.0374 e7=-0.0031 N=3.0 Q=1.000 imagStrength=0.3508 [通常の子]
Depth=13 Norm=1.2329 e0=-0.6312 e1=1.0537 e2=0.0763 e3=0.0532 e4=0.0225 e5=0.0260 e6=-0.0065 e7=-0.0396 N=1.0 Q=0.333 imagStrength=1.0591 [共役の子]
Depth=12 Norm=0.8820 e0=-0.8488 e1=0.2147 e2=0.0375 e3=0.0148 e4=0.0033 e5=-0.0038 e6=0.0154 e7=-0.0977 N=3.0 Q=1.000 imagStrength=0.2398 [共役の子]
Depth=10 Norm=0.9745 e0=0.9459 e1=-0.2250 e2=-0.0368 e3=-0.0025 e4=-0.0035 e5=0.0057 e6=-0.0076 e7=0.0530 N=3.0 Q=1.000 imagStrength=0.2343 [共役の子]
Depth=13 Norm=1.3117 e0=-0.9374 e1=0.9092 e2=0.0772 e3=0.0546 e4=0.0133 e5=0.0080 e6=-0.0773 e7=-0.0087 N=0.0 Q=0.000 imagStrength=0.9175 [通常の子]
Depth=11 Norm=0.8514 e0=0.8422 e1=-0.0910 e2=0.0255 e3=0.0417 e4=-0.0244 e5=0.0630 e6=-0.0179 e7=-0.0069 N=3.0 Q=1.000 imagStrength=0.1249 [通常の子]
Depth=13 Norm=1.1668 e0=-1.0220 e1=0.5311 e2=-0.0743 e3=-0.0730 e4=-0.0155 e5=-0.1268 e6=0.0854 e7=-0.0171 N=0.0 Q=0.000 imagStrength=0.5629 [共役の子]
Depth=13 Norm=1.1164 e0=-1.0888 e1=-0.0791 e2=-0.1103 e3=-0.0686 e4=-0.0280 e5=-0.1743 e6=-0.0091 e7=0.0814 N=0.0 Q=0.000 imagStrength=0.2470 [通常の子]
Depth=10 Norm=0.4763 e0=0.0137 e1=-0.4640 e2=0.0217 e3=-0.0335 e4=0.0989 e5=0.0078 e6=-0.0019 e7=-0.0009 N=3.0 Q=1.000 imagStrength=0.4761 [通常の子]
Depth=13 Norm=1.1589 e0=-0.9164 e1=-0.6652 e2=-0.1453 e3=-0.0636 e4=-0.0329 e5=-0.1544 e6=-0.1038 e7=0.0040 N=1.0 Q=0.333 imagStrength=0.7095 [通常の子]
Depth=12 Norm=0.4727 e0=-0.0828 e1=0.4513 e2=-0.0162 e3=0.0280 e4=-0.1072 e5=-0.0059 e6=0.0119 e7=-0.0121 N=3.0 Q=1.000 imagStrength=0.4653 [共役の子]
Depth=8 Norm=0.4799 e0=-0.1662 e1=-0.4436 e2=-0.0419 e3=0.0532 e4=-0.0064 e5=0.0211 e6=0.0289 e7=0.0073 N=3.0 Q=1.000 imagStrength=0.4502 [共役の子]
Depth=11 Norm=0.4915 e0=-0.1421 e1=-0.4617 e2=0.0058 e3=0.0418 e4=-0.0217 e5=0.0600 e6=-0.0454 e7=0.0174 N=3.0 Q=1.000 imagStrength=0.4705 [共役の子]
Depth=13 Norm=1.2367 e0=-0.3656 e1=-1.1541 e2=-0.1801 e3=-0.0646 e4=-0.0284 e5=-0.1607 e6=0.0206 e7=-0.0004 N=1.0 Q=0.333 imagStrength=1.1814 [通常の子]
Depth=13 Norm=1.3076 e0=0.5957 e1=1.1491 e2=-0.0626 e3=-0.0662 e4=-0.0215 e5=-0.1322 e6=0.0679 e7=-0.0616 N=1.0 Q=0.333 imagStrength=1.1641 [通常の子]
Depth=13 Norm=1.1752 e0=-1.0721 e1=-0.4208 e2=-0.1118 e3=-0.0740 e4=-0.0197 e5=-0.1117 e6=0.1281 e7=-0.0857 N=0.0 Q=0.000 imagStrength=0.4813 [共役の子]
Depth=12 Norm=0.4711 e0=0.1126 e1=0.4416 e2=-0.0159 e3=0.0339 e4=-0.1091 e5=-0.0062 e6=0.0298 e7=0.0026 N=3.0 Q=1.000 imagStrength=0.4574 [通常の子]
Depth=12 Norm=0.4538 e0=-0.1882 e1=-0.3914 e2=-0.0577 e3=0.0339 e4=-0.1091 e5=-0.0062 e6=0.0298 e7=0.0026 N=3.0 Q=1.000 imagStrength=0.4129 [共役の子]
Depth=13 Norm=1.2495 e0=0.3939 e1=-1.1462 e2=-0.1813 e3=-0.0658 e4=-0.0794 e5=-0.0557 e6=-0.2131 e7=-0.0177 N=1.0 Q=0.333 imagStrength=1.1858 [共役の子]
Depth=13 Norm=1.1798 e0=-0.5313 e1=1.0297 e2=-0.0700 e3=-0.0672 e4=-0.0727 e5=-0.0280 e6=-0.1673 e7=-0.0770 N=1.0 Q=0.333 imagStrength=1.0534 [共役の子]
Depth=12 Norm=0.8662 e0=-0.8340 e1=0.2238 e2=-0.0316 e3=0.0228 e4=-0.0472 e5=0.0221 e6=-0.0035 e7=-0.0197 N=3.0 Q=1.000 imagStrength=0.2339 [通常の子]
Depth=13 Norm=1.2685 e0=0.4260 e1=-1.1472 e2=-0.1899 e3=-0.0637 e4=-0.0770 e5=-0.0357 e6=-0.2405 e7=-0.0788 N=1.0 Q=0.333 imagStrength=1.1948 [通常の子]
Depth=13 Norm=1.3125 e0=-0.1777 e1=1.2692 e2=-0.0657 e3=-0.0637 e4=-0.0771 e5=-0.0365 e6=-0.2417 e7=-0.0773 N=1.0 Q=0.333 imagStrength=1.3004 [通常の子]
Depth=11 Norm=0.6778 e0=0.4219 e1=-0.5226 e2=0.0052 e3=0.0441 e4=0.0390 e5=0.0232 e6=0.0654 e7=-0.0002 N=3.0 Q=1.000 imagStrength=0.5305 [共役の子]
Depth=11 Norm=0.5355 e0=-0.3753 e1=-0.3718 e2=0.0106 e3=0.0439 e4=0.0403 e5=0.0188 e6=-0.0225 e7=0.0562 N=3.0 Q=1.000 imagStrength=0.3820 [通常の子]
Depth=13 Norm=1.2230 e0=1.0665 e1=0.5694 e2=-0.0499 e3=-0.0818 e4=-0.0744 e5=-0.0439 e6=0.1210 e7=-0.0520 N=0.0 Q=0.000 imagStrength=0.5985 [共役の子]
Depth=13 Norm=1.2908 e0=0.5935 e1=1.1271 e2=-0.0615 e3=-0.0697 e4=-0.0707 e5=-0.0134 e6=0.0479 e7=-0.1657 N=1.0 Q=0.333 imagStrength=1.1463 [通常の子]
Depth=10 Norm=0.8454 e0=0.8325 e1=0.1152 e2=0.0485 e3=-0.0338 e4=0.0229 e5=-0.0192 e6=-0.0487 e7=-0.0396 N=3.0 Q=1.000 imagStrength=0.1470 [通常の子]
Depth=13 Norm=1.3100 e0=-0.2085 e1=1.2686 e2=-0.0040 e3=-0.0887 e4=-0.0651 e5=-0.0327 e6=0.2176 e7=-0.0535 N=1.0 Q=0.333 imagStrength=1.2933 [通常の子]
Depth=12 Norm=0.6887 e0=-0.6709 e1=-0.1231 e2=-0.0476 e3=0.0428 e4=-0.0454 e5=0.0203 e6=0.0492 e7=0.0044 N=2.0 Q=0.667 imagStrength=0.1555 [共役の子]
Depth=4 Norm=1.0578 e0=1.0491 e1=-0.1348 e2=-0.0070 e3=-0.0108 e4=0.0030 e5=0.0001 e6=-0.0032 e7=-0.0038 N=3.0 Q=1.000 imagStrength=0.1356 [共役の子]
Depth=13 Norm=1.1487 e0=-0.5512 e1=0.9692 e2=0.1661 e3=0.0571 e4=0.0551 e5=0.0825 e6=0.1834 e7=-0.0440 N=1.0 Q=0.333 imagStrength=1.0078 [共役の子]
Depth=13 Norm=1.2220 e0=0.7632 e1=-0.9389 e2=0.0687 e3=0.0591 e4=0.0465 e5=0.0478 e6=0.1255 e7=0.0309 N=1.0 Q=0.333 imagStrength=0.9544 [共役の子]
Depth=12 Norm=0.8545 e0=0.8119 e1=-0.2556 e2=0.0251 e3=-0.0240 e4=0.0609 e5=-0.0110 e6=0.0213 e7=0.0120 N=3.0 Q=1.000 imagStrength=0.2664 [通常の子]
Depth=13 Norm=1.1328 e0=-0.5846 e1=0.9280 e2=0.1708 e3=0.0556 e4=0.0511 e5=0.0513 e6=0.2020 e7=0.0438 N=1.0 Q=0.333 imagStrength=0.9703 [通常の子]
Depth=13 Norm=1.1048 e0=0.4678 e1=-0.9684 e2=0.0731 e3=0.0552 e4=0.0536 e5=0.0622 e6=0.2197 e7=0.0208 N=1.0 Q=0.333 imagStrength=1.0009 [通常の子]
Depth=11 Norm=0.6216 e0=-0.4472 e1=0.4246 e2=-0.0102 e3=-0.0393 e4=-0.0171 e5=-0.0289 e6=-0.0557 e7=0.0145 N=3.0 Q=1.000 imagStrength=0.4317 [共役の子]
Depth=11 Norm=0.4793 e0=0.1722 e1=0.4422 e2=-0.0075 e3=-0.0393 e4=-0.0172 e5=-0.0260 e6=0.0301 e7=-0.0315 N=3.0 Q=1.000 imagStrength=0.4473 [通常の子]
Depth=13 Norm=1.1996 e0=-0.8050 e1=-0.8707 e2=0.0289 e3=0.0740 e4=0.0470 e5=0.0630 e6=-0.1436 e7=0.0003 N=1.0 Q=0.333 imagStrength=0.8895 [共役の子]
Depth=13 Norm=1.1419 e0=-0.1209 e1=-1.1265 e2=0.0623 e3=0.0589 e4=0.0477 e5=0.0488 e6=-0.0226 e7=0.0883 N=1.0 Q=0.333 imagStrength=1.1355 [通常の子]
Depth=10 Norm=0.7969 e0=-0.7924 e1=0.0310 e2=-0.0374 e3=0.0332 e4=-0.0371 e5=0.0086 e6=0.0264 e7=0.0396 N=3.0 Q=1.000 imagStrength=0.0847 [通常の子]
Depth=13 Norm=1.1041 e0=0.4727 e1=-0.9771 e2=0.0221 e3=0.0760 e4=0.0434 e5=0.0571 e6=-0.1714 e7=0.0073 N=1.0 Q=0.333 imagStrength=0.9978 [通常の子]
Depth=12 Norm=0.7642 e0=0.7580 e1=-0.0484 e2=0.0343 e3=-0.0409 e4=0.0560 e5=-0.0099 e6=-0.0293 e7=-0.0043 N=2.0 Q=0.667 imagStrength=0.0965 [共役の子]
Depth=7 Norm=0.4681 e0=-0.0839 e1=-0.4588 e2=-0.0324 e3=0.0137 e4=0.0032 e5=0.0027 e6=0.0039 e7=-0.0187 N=3.0 Q=1.000 imagStrength=0.4605 [共役の子]
Depth=13 Norm=1.1756 e0=-1.1459 e1=0.1020 e2=0.1087 e3=0.0588 e4=0.0249 e5=0.1580 e6=0.0572 e7=-0.1203 N=0.0 Q=0.000 imagStrength=0.2627 [共役の子]
Depth=12 Norm=0.5930 e0=-0.2599 e1=0.5170 e2=0.0614 e3=-0.0284 e4=0.1066 e5=0.0070 e6=0.0280 e7=-0.0094 N=3.0 Q=1.000 imagStrength=0.5330 [通常の子]
Depth=12 Norm=0.5521 e0=0.1875 e1=-0.5065 e2=0.0100 e3=-0.0284 e4=0.1066 e5=0.0070 e6=0.0280 e7=-0.0094 N=3.0 Q=1.000 imagStrength=0.5193 [共役の子]
Depth=13 Norm=1.1905 e0=-0.8048 e1=-0.8587 e2=0.0723 e3=0.0541 e4=0.0191 e5=0.0941 e6=0.1041 e7=0.0633 N=1.0 Q=0.333 imagStrength=0.8772 [通常の子]
Depth=11 Norm=0.6976 e0=0.6440 e1=0.2576 e2=-0.0179 e3=-0.0369 e4=0.0164 e5=-0.0484 e6=-0.0354 e7=0.0089 N=3.0 Q=1.000 imagStrength=0.2683 [通常の子]
Depth=13 Norm=1.2603 e0=-1.2095 e1=-0.2909 e2=0.0745 e3=0.0611 e4=0.0271 e5=0.1367 e6=0.0912 e7=-0.0611 N=0.0 Q=0.000 imagStrength=0.3541 [共役の子]
Depth=13 Norm=1.1893 e0=-0.5228 e1=-1.0413 e2=0.0173 e3=0.0739 e4=0.0157 e5=0.1264 e6=-0.1813 e7=-0.0429 N=1.0 Q=0.333 imagStrength=1.0682 [共役の子]
Depth=13 Norm=1.1552 e0=0.3988 e1=1.0497 e2=0.1242 e3=0.0745 e4=0.0136 e5=0.1192 e6=-0.1935 e7=-0.0270 N=1.0 Q=0.333 imagStrength=1.0841 [共役の子]
Depth=12 Norm=0.5714 e0=-0.5345 e1=-0.1676 e2=0.0269 e3=-0.0383 e4=0.1009 e5=0.0070 e6=-0.0112 e7=-0.0137 N=3.0 Q=1.000 imagStrength=0.2020 [通常の子]
Depth=13 Norm=1.2054 e0=-0.4929 e1=-1.0799 e2=0.0229 e3=0.0699 e4=0.0139 e5=0.0995 e6=-0.1643 e7=0.0338 N=1.0 Q=0.333 imagStrength=1.1000 [通常の子]
Depth=13 Norm=1.2782 e0=0.7121 e1=1.0361 e2=0.1317 e3=0.0678 e4=0.0224 e5=0.1322 e6=-0.1092 e7=-0.0375 N=1.0 Q=0.333 imagStrength=1.0614 [通常の子]
Depth=11 Norm=0.4883 e0=-0.2350 e1=-0.4189 e2=-0.0503 e3=-0.0372 e4=0.0167 e5=-0.0477 e6=0.0297 e7=-0.0195 N=3.0 Q=1.000 imagStrength=0.4280 [共役の子]
Depth=9 Norm=0.7887 e0=-0.6496 e1=0.4410 e2=0.0410 e3=-0.0038 e4=0.0348 e5=-0.0367 e6=0.0159 e7=0.0333 N=3.0 Q=1.000 imagStrength=0.4473 [通常の子]
Depth=12 Norm=0.7732 e0=-0.7581 e1=0.0823 e2=0.0062 e3=-0.0321 e4=-0.0417 e5=-0.0280 e6=-0.0156 e7=0.1116 N=2.0 Q=0.667 imagStrength=0.1519 [通常の子]
Depth=13 Norm=1.2206 e0=0.0530 e1=-1.2101 e2=-0.0429 e3=0.0026 e4=0.0487 e5=-0.0971 e6=0.0794 e7=0.0530 N=1.0 Q=0.333 imagStrength=1.2195 [共役の子]
Depth=13 Norm=1.1583 e0=-0.1932 e1=1.1304 e2=0.0766 e3=0.0017 e4=0.0521 e5=-0.0840 e6=0.1017 e7=0.0242 N=1.0 Q=0.333 imagStrength=1.1421 [共役の子]
Depth=11 Norm=0.8757 e0=0.7915 e1=-0.3640 e2=-0.0363 e3=-0.0053 e4=-0.0530 e5=0.0253 e6=-0.0569 e7=0.0027 N=3.0 Q=1.000 imagStrength=0.3748 [共役の子]
Depth=13 Norm=1.2359 e0=1.0079 e1=-0.7041 e2=-0.0152 e3=0.0030 e4=0.0526 e5=-0.0681 e6=0.0886 e7=-0.0189 N=0.0 Q=0.000 imagStrength=0.7153 [通常の子]
Depth=13 Norm=1.2392 e0=-0.8339 e1=0.9061 e2=0.0682 e3=0.0047 e4=0.0459 e5=-0.0944 e6=0.0443 e7=0.0384 N=1.0 Q=0.333 imagStrength=0.9166 [通常の子]
Depth=13 Norm=1.2096 e0=-1.1750 e1=-0.1731 e2=0.0276 e3=-0.0011 e4=0.0462 e5=-0.1288 e6=0.0028 e7=0.1822 N=0.0 Q=0.000 imagStrength=0.2874 [通常の子]
Depth=11 Norm=0.9117 e0=0.9050 e1=-0.0625 e2=-0.0198 e3=-0.0050 e4=-0.0589 e5=0.0338 e6=-0.0349 e7=-0.0438 N=3.0 Q=1.000 imagStrength=0.1099 [通常の子]
Depth=13 Norm=1.2631 e0=-1.1503 e1=0.4943 e2=0.0634 e3=-0.0048 e4=0.0600 e5=-0.0746 e6=0.1004 e7=0.0672 N=0.0 Q=0.000 imagStrength=0.5217 [共役の子]
Depth=12 Norm=0.8286 e0=-0.6922 e1=0.4489 e2=0.0276 e3=-0.0130 e4=-0.0541 e5=-0.0252 e6=-0.0239 e7=-0.0271 N=3.0 Q=1.000 imagStrength=0.4554 [共役の子]
Depth=10 Norm=0.8357 e0=0.6953 e1=-0.4569 e2=-0.0230 e3=0.0181 e4=0.0575 e5=0.0248 e6=0.0357 e7=-0.0114 N=3.0 Q=1.000 imagStrength=0.4636 [共役の子]
Depth=13 Norm=1.2918 e0=-1.2608 e1=0.2167 e2=0.0593 e3=-0.0016 e4=0.0431 e5=-0.1062 e6=-0.0428 e7=0.1173 N=0.0 Q=0.000 imagStrength=0.2814 [通常の子]
Depth=12 Norm=0.5428 e0=0.4551 e1=0.2780 e2=0.0133 e3=-0.0028 e4=0.0643 e5=0.0236 e6=0.0037 e7=-0.0729 N=3.0 Q=1.000 imagStrength=0.2958 [通常の子]
Depth=12 Norm=0.5569 e0=-0.5061 e1=-0.2095 e2=-0.0111 e3=-0.0028 e4=0.0643 e5=0.0236 e6=0.0037 e7=-0.0729 N=3.0 Q=1.000 imagStrength=0.2324 [共役の子]
Depth=13 Norm=1.1786 e0=-0.7757 e1=-0.8786 e2=0.0121 e3=-0.0179 e4=-0.0286 e5=0.1159 e6=-0.0112 e7=-0.0259 N=0.0 Q=0.000 imagStrength=0.8874 [共役の子]
Depth=11 Norm=0.6884 e0=0.6349 e1=0.2596 e2=-0.0023 e3=0.0014 e4=0.0440 e5=-0.0319 e6=0.0139 e7=-0.0151 N=3.0 Q=1.000 imagStrength=0.2660 [通常の子]
Depth=13 Norm=1.2426 e0=-1.2017 e1=-0.2886 e2=0.0130 e3=-0.0114 e4=-0.0261 e5=0.1124 e6=-0.0392 e7=-0.0389 N=0.0 Q=0.000 imagStrength=0.3161 [共役の子]
Depth=13 Norm=1.1725 e0=-0.7825 e1=-0.8652 e2=0.0096 e3=-0.0182 e4=-0.0336 e5=0.0714 e6=-0.0261 e7=0.0810 N=0.0 Q=0.000 imagStrength=0.8732 [通常の子]
Depth=9 Norm=0.9325 e0=0.9307 e1=0.0206 e2=0.0172 e3=-0.0006 e4=-0.0287 e5=0.0407 e6=0.0060 e7=-0.0094 N=3.0 Q=1.000 imagStrength=0.0576 [通常の子]
Depth=12 Norm=0.8059 e0=0.6390 e1=-0.4824 e2=-0.0259 e3=-0.0109 e4=0.0763 e5=0.0233 e6=0.0241 e7=-0.0259 N=3.0 Q=1.000 imagStrength=0.4911 [通常の子]
Depth=13 Norm=1.2666 e0=-1.1396 e1=0.5159 e2=0.0721 e3=-0.0157 e4=-0.0263 e5=0.1366 e6=0.0315 e7=-0.1171 N=0.0 Q=0.000 imagStrength=0.5529 [共役の子]
Depth=13 Norm=1.3303 e0=1.2666 e1=-0.3906 e2=0.0264 e3=-0.0128 e4=-0.0400 e5=0.0817 e6=-0.0603 e7=0.0017 N=0.0 Q=0.000 imagStrength=0.4066 [共役の子]
Depth=11 Norm=0.7259 e0=-0.6996 e1=-0.1824 e2=-0.0254 e3=0.0017 e4=0.0433 e5=-0.0322 e6=-0.0256 e7=0.0014 N=3.0 Q=1.000 imagStrength=0.1936 [共役の子]
Depth=13 Norm=1.2670 e0=-1.1038 e1=-0.6142 e2=0.0065 e3=-0.0139 e4=-0.0357 e5=0.0617 e6=0.0021 e7=0.0663 N=0.0 Q=0.000 imagStrength=0.6221 [通常の子]
Depth=13 Norm=1.3335 e0=1.2315 e1=0.4826 e2=0.0622 e3=-0.0168 e4=-0.0224 e5=0.1150 e6=0.0913 e7=-0.0490 N=0.0 Q=0.000 imagStrength=0.5114 [通常の子]
Depth=13 Norm=1.1701 e0=-1.0303 e1=-0.4773 e2=-0.1472 e3=-0.0917 e4=-0.0320 e5=-0.1815 e6=-0.0456 e7=0.1172 N=0.0 Q=0.000 imagStrength=0.5546 [通常の子]
Depth=13 Norm=1.2333 e0=1.1573 e1=0.3780 e2=-0.1036 e3=-0.0945 e4=-0.0193 e5=-0.1315 e6=0.0382 e7=0.0087 N=0.0 Q=0.000 imagStrength=0.4264 [通常の子]
Depth=11 Norm=0.6825 e0=-0.6613 e1=-0.1389 e2=0.0259 e3=0.0532 e4=-0.0247 e5=0.0659 e6=-0.0115 e7=-0.0243 N=3.0 Q=1.000 imagStrength=0.1687 [共役の子]
Depth=12 Norm=0.4498 e0=0.1447 e1=0.4036 e2=-0.0296 e3=0.0388 e4=-0.1193 e5=-0.0053 e6=-0.0049 e7=-0.0424 N=3.0 Q=1.000 imagStrength=0.4258 [通常の子]
Depth=12 Norm=0.4385 e0=-0.2152 e1=-0.3519 e2=-0.0675 e3=0.0388 e4=-0.1193 e5=-0.0053 e6=-0.0049 e7=-0.0424 N=3.0 Q=1.000 imagStrength=0.3821 [共役の子]
Depth=13 Norm=1.1151 e0=-0.9938 e1=-0.4624 e2=-0.1302 e3=-0.0978 e4=-0.0226 e5=-0.1206 e6=0.0026 e7=-0.0231 N=0.0 Q=0.000 imagStrength=0.5059 [共役の子]
Depth=10 Norm=0.8143 e0=0.7960 e1=0.1100 e2=0.0621 e3=-0.0355 e4=0.0936 e5=0.0079 e6=-0.0130 e7=-0.0579 N=3.0 Q=1.000 imagStrength=0.1720 [通常の子]
Depth=13 Norm=1.2618 e0=-0.1963 e1=1.2107 e2=-0.0215 e3=-0.1094 e4=-0.0202 e5=-0.1447 e6=0.2301 e7=0.0338 N=1.0 Q=0.333 imagStrength=1.2464 [通常の子]
Depth=12 Norm=0.6689 e0=-0.6432 e1=-0.1167 e2=-0.0566 e3=0.0415 e4=-0.1199 e5=-0.0073 e6=0.0137 e7=0.0237 N=3.0 Q=1.000 imagStrength=0.1836 [共役の子]
Depth=9 Norm=0.4848 e0=0.1703 e1=0.4474 e2=-0.0261 e3=-0.0484 e4=0.0009 e5=-0.0522 e6=0.0063 e7=0.0093 N=3.0 Q=1.000 imagStrength=0.4539 [共役の子]
Depth=12 Norm=0.4342 e0=-0.2146 e1=-0.3480 e2=-0.0686 e3=0.0233 e4=-0.1039 e5=-0.0066 e6=0.0174 e7=0.0709 N=3.0 Q=1.000 imagStrength=0.3775 [通常の子]
Depth=13 Norm=1.2059 e0=-0.9383 e1=-0.7142 e2=-0.1702 e3=-0.0898 e4=-0.0256 e5=-0.1263 e6=0.0678 e7=-0.0742 N=1.0 Q=0.333 imagStrength=0.7575 [共役の子]
Depth=13 Norm=1.2031 e0=0.8640 e1=0.8120 e2=-0.0912 e3=-0.0883 e4=-0.0322 e5=-0.1538 e6=0.0220 e7=-0.0150 N=1.0 Q=0.333 imagStrength=0.8372 [共役の子]
Depth=13 Norm=1.2131 e0=-1.0299 e1=0.5884 e2=-0.1013 e3=-0.0903 e4=-0.0574 e5=-0.1242 e6=-0.1513 e7=0.0683 N=1.0 Q=0.333 imagStrength=0.6410 [通常の子]
Depth=11 Norm=0.8743 e0=0.7950 e1=-0.3544 e2=0.0156 e3=0.0546 e4=0.0054 e5=0.0482 e6=0.0234 e7=-0.0248 N=3.0 Q=1.000 imagStrength=0.3637 [通常の子]
Depth=13 Norm=1.2287 e0=-0.5981 e1=1.0625 e2=-0.0450 e3=-0.1040 e4=-0.0442 e5=-0.0872 e6=0.0105 e7=0.0236 N=1.0 Q=0.333 imagStrength=1.0733 [共役の子]
Depth=12 Norm=0.8773 e0=-0.8412 e1=0.2051 e2=-0.0409 e3=0.0459 e4=-0.0940 e5=0.0090 e6=-0.0067 e7=-0.0852 N=3.0 Q=1.000 imagStrength=0.2491 [共役の子]
Depth=10 Norm=0.9693 e0=0.9397 e1=-0.2145 e2=0.0449 e3=-0.0385 e4=0.0724 e5=-0.0081 e6=0.0143 e7=0.0384 N=3.0 Q=1.000 imagStrength=0.2377 [共役の子]
Depth=13 Norm=1.3084 e0=-0.9035 e1=0.9288 e2=-0.0438 e3=-0.1040 e4=-0.0528 e5=-0.1032 e6=-0.0621 e7=0.0534 N=1.0 Q=0.333 imagStrength=0.9463 [通常の子]
Depth=13 Norm=1.2430 e0=0.1573 e1=1.2035 e2=-0.0264 e3=-0.1093 e4=-0.0437 e5=-0.0807 e6=0.2228 e7=-0.0348 N=1.0 Q=0.333 imagStrength=1.2330 [通常の子]
Depth=13 Norm=1.1786 e0=-0.3050 e1=-1.1020 e2=-0.1450 e3=-0.1080 e4=-0.0486 e5=-0.0989 e6=0.1919 e7=0.0051 N=1.0 Q=0.333 imagStrength=1.1384 [通常の子]
Depth=11 Norm=0.4922 e0=0.0584 e1=0.4770 e2=0.0555 e3=0.0546 e4=0.0092 e5=0.0402 e6=-0.0482 e7=0.0352 N=3.0 Q=1.000 imagStrength=0.4888 [共役の子]
Depth=12 Norm=0.8053 e0=-0.7925 e1=0.0522 e2=-0.0511 e3=0.0202 e4=-0.0672 e5=0.0062 e6=0.0254 e7=0.0980 N=2.0 Q=0.667 imagStrength=0.1433 [通常の子]
Depth=12 Norm=0.9068 e0=0.8871 e1=-0.1286 e2=-0.0602 e3=0.0202 e4=-0.0672 e5=0.0062 e6=0.0254 e7=0.0980 N=3.0 Q=1.000 imagStrength=0.1880 [共役の子]
Depth=13 Norm=1.2582 e0=0.2342 e1=1.2229 e2=-0.0774 e3=-0.0918 e4=-0.0501 e5=-0.0938 e6=0.0509 e7=-0.0663 N=1.0 Q=0.333 imagStrength=1.2362 [共役の子]
Depth=8 Norm=0.5334 e0=-0.1609 e1=0.5067 e2=0.0404 e3=0.0015 e4=-0.0006 e5=-0.0053 e6=0.0142 e7=0.0042 N=3.0 Q=1.000 imagStrength=0.5086 [通常の子]
Depth=11 Norm=0.5835 e0=0.4698 e1=0.3308 e2=0.0268 e3=-0.0038 e4=0.0593 e5=-0.0451 e6=0.0540 e7=0.0334 N=3.0 Q=1.000 imagStrength=0.3461 [共役の子]
Depth=13 Norm=1.2021 e0=0.7052 e1=0.9500 e2=0.0457 e3=0.0121 e4=-0.0380 e5=0.1466 e6=-0.0248 e7=-0.1399 N=1.0 Q=0.333 imagStrength=0.9736 [通常の子]
Depth=13 Norm=1.1291 e0=-0.8053 e1=-0.7740 e2=-0.0420 e3=0.0142 e4=-0.0474 e5=0.1089 e6=-0.0878 e7=-0.0583 N=0.0 Q=0.000 imagStrength=0.7913 [通常の子]
Depth=13 Norm=1.2682 e0=1.2613 e1=0.0251 e2=-0.0172 e3=0.0164 e4=-0.0468 e5=0.0850 e6=-0.0820 e7=-0.0013 N=0.0 Q=0.000 imagStrength=0.1317 [共役の子]
Depth=12 Norm=0.5092 e0=0.1598 e1=-0.4761 e2=-0.0207 e3=0.0094 e4=0.0740 e5=0.0253 e6=0.0187 e7=-0.0080 N=3.0 Q=1.000 imagStrength=0.4834 [通常の子]
Depth=12 Norm=0.4577 e0=0.0276 e1=0.4488 e2=0.0257 e3=0.0094 e4=0.0740 e5=0.0253 e6=0.0187 e7=-0.0080 N=3.0 Q=1.000 imagStrength=0.4568 [共役の子]
Depth=12 Norm=0.8132 e0=-0.6682 e1=0.4468 e2=0.0274 e3=0.0193 e4=0.0802 e5=0.0276 e6=0.0460 e7=-0.0683 N=3.0 Q=1.000 imagStrength=0.4634 [共役の子]
Depth=10 Norm=0.8243 e0=0.6778 e1=-0.4584 e2=-0.0332 e3=-0.0105 e4=-0.0772 e5=-0.0251 e6=-0.0341 e7=0.0302 N=3.0 Q=1.000 imagStrength=0.4690 [共役の子]
Depth=13 Norm=1.2869 e0=-1.2605 e1=0.2039 e2=0.0071 e3=0.0146 e4=-0.0494 e5=0.1052 e6=-0.0919 e7=-0.0586 N=0.0 Q=0.000 imagStrength=0.2592 [通常の子]
Depth=13 Norm=1.2629 e0=1.2077 e1=-0.3525 e2=-0.0309 e3=0.0137 e4=-0.0458 e5=0.0840 e6=-0.0421 e7=0.0047 N=0.0 Q=0.000 imagStrength=0.3693 [共役の子]
Depth=13 Norm=1.2072 e0=-1.1889 e1=0.1037 e2=-0.0081 e3=0.0109 e4=-0.0330 e5=0.1354 e6=0.0440 e7=-0.1067 N=0.0 Q=0.000 imagStrength=0.2090 [共役の子]
Depth=12 Norm=0.7229 e0=-0.4850 e1=0.5290 e2=0.0297 e3=0.0110 e4=0.0733 e5=0.0251 e6=0.0218 e7=-0.0049 N=3.0 Q=1.000 imagStrength=0.5360 [通常の子]
Depth=11 Norm=0.5350 e0=0.1649 e1=-0.5035 e2=-0.0179 e3=-0.0083 e4=-0.0356 e5=0.0142 e6=-0.0525 e7=0.0306 N=3.0 Q=1.000 imagStrength=0.5089 [通常の子]
Depth=13 Norm=1.2034 e0=0.4865 e1=1.0741 e2=0.0688 e3=0.0135 e4=0.0370 e5=-0.0498 e6=0.2211 e7=0.0023 N=1.0 Q=0.333 imagStrength=1.1007 [共役の子]
Depth=13 Norm=1.2482 e0=-0.1710 e1=1.2316 e2=0.0242 e3=0.0317 e4=0.0317 e5=-0.0500 e6=0.0563 e7=-0.0617 N=1.0 Q=0.333 imagStrength=1.2365 [通常の子]
Depth=10 Norm=0.9660 e0=0.9414 e1=-0.2047 e2=-0.0175 e3=-0.0058 e4=0.0247 e5=0.0204 e6=-0.0255 e7=-0.0557 N=3.0 Q=1.000 imagStrength=0.2168 [通常の子]
Depth=13 Norm=1.2986 e0=-0.9009 e1=0.9125 e2=0.0578 e3=0.0158 e4=0.0336 e5=-0.0562 e6=0.1850 e7=0.0096 N=1.0 Q=0.333 imagStrength=0.9353 [通常の子]
Depth=12 Norm=0.8754 e0=-0.8508 e1=0.1984 e2=0.0202 e3=0.0168 e4=-0.0314 e5=-0.0186 e6=0.0322 e7=0.0114 N=2.0 Q=0.667 imagStrength=0.2062 [共役の子]
Depth=8 Norm=1.0018 e0=0.9603 e1=-0.2847 e2=-0.0052 e3=0.0015 e4=-0.0006 e5=-0.0053 e6=0.0142 e7=0.0042 N=3.0 Q=1.000 imagStrength=0.2852 [共役の子]
Depth=11 Norm=0.8795 e0=-0.8647 e1=0.1519 e2=0.0169 e3=-0.0085 e4=-0.0384 e5=0.0204 e6=0.0052 e7=-0.0200 N=3.0 Q=1.000 imagStrength=0.1604 [共役の子]
Depth=13 Norm=1.2754 e0=-1.2540 e1=0.1811 e2=0.0004 e3=0.0239 e4=0.0284 e5=-0.0846 e6=-0.0382 e7=0.1058 N=0.0 Q=0.000 imagStrength=0.2324 [通常の子]
Depth=13 Norm=1.3090 e0=1.2670 e1=-0.3199 e2=-0.0259 e3=0.0212 e4=0.0403 e5=-0.0366 e6=0.0421 e7=0.0019 N=0.0 Q=0.000 imagStrength=0.3289 [通常の子]
Depth=13 Norm=1.2460 e0=-0.5795 e1=1.0907 e2=0.0169 e3=0.0351 e4=0.0312 e5=-0.0287 e6=-0.1345 e7=-0.0750 N=1.0 Q=0.333 imagStrength=1.1031 [共役の子]
Depth=12 Norm=0.9270 e0=-0.8494 e1=0.3683 e2=0.0279 e3=-0.0001 e4=-0.0278 e5=-0.0166 e6=-0.0041 e7=-0.0133 N=3.0 Q=1.000 imagStrength=0.3711 [通常の子]
Depth=12 Norm=0.9540 e0=0.8510 e1=-0.4295 e2=-0.0121 e3=-0.0001 e4=-0.0278 e5=-0.0166 e6=-0.0041 e7=-0.0133 N=3.0 Q=1.000 imagStrength=0.4311 [共役の子]