diff --git a/AIMS/AIMS.csproj b/AIMS/AIMS.csproj
index 8bb71ff..7d6a1a3 100644
--- a/AIMS/AIMS.csproj
+++ b/AIMS/AIMS.csproj
@@ -389,6 +389,7 @@
FrmScheduling3.cs
+
UserControl
@@ -1133,6 +1134,9 @@
Settings.settings
True
+
+ PreserveNewest
+
PreserveNewest
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.Designer.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.Designer.cs
index acb5b9c..91b0012 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.Designer.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.Designer.cs
@@ -372,7 +372,6 @@
this.btnOperationInfo.TabIndex = 4;
this.btnOperationInfo.Text = " 手术信息";
this.btnOperationInfo.UseVisualStyleBackColor = false;
- this.btnOperationInfo.Visible = false;
this.btnOperationInfo.Click += new System.EventHandler(this.btnOperationInfo_Click);
//
// btnOutputLiquids
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs
index 96c43b9..dc9590e 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs
@@ -1042,7 +1042,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
if (PatientId != 0)
{
- AIMS.OperationDoing.AnasRecordBill.UI.frmOperationInfoNew frmOperationInfo = new frmOperationInfoNew();
+ AIMS.OperationDoing.AnasRecordBill.UI.frmOperationInfoNew2 frmOperationInfo = new frmOperationInfoNew2();
frmOperationInfo._record = _record;
frmOperationInfo.FormClosed += new FormClosedEventHandler(plRefresh_Click);
frmOperationInfo.ShowDialog();
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew2.cs b/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew2.cs
index 91a170a..9602fcf 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew2.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew2.cs
@@ -74,9 +74,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
#region 初始化所有控件内容
private void InitData()
- {
- BindBasicDictionaryToComboBox(cbomzpm, "麻醉平面");
- BindBasicDictionaryToComboBox(cbomzxg, "麻醉效果");
+ {
listOnit = BPerson.GetruleAnesthesiaDoctor("");
this.txtruleAnesthesiaDoctor.Items.AddRange(listOnit.ToArray());
@@ -126,9 +124,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
cboOperationLevel.Text = OPInfo.OperationLevel;
cboOperationLevel.Tag = OPInfo.OperationLevelId;
txtOperationCut.Tag = OPInfo.OperationCutId;
- txtOperationCut.Text = OPInfo.OperationCut;
- txtOperationSiteId.Text = OPInfo.OperationSite;
- txtOperationSiteId.Tag = OPInfo.OperationSiteId;
+ txtOperationCut.Text = OPInfo.OperationCut;
//麻醉医生 || 麻醉接台 || 巡回护士|| 护士接台||器械护士||器械接台||体外循环
txtAnesthesiaByDoctor.Text = OPInfo.AnesthesiaSucceed;
txtTourNurseSucceed.Text = OPInfo.TourNurseSucceed;
@@ -156,45 +152,8 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
if (OPInfo.RuleNurse != null) txtruleNurse.Text = OPInfo.RuleNurse;
txtOperationCut.Text = OPInfo.OperationCut;
- cboOperationLevel.Text = OPInfo.OperationLevel;
- txtOperationSiteId.Text = OPInfo.OperationSite;
+ cboOperationLevel.Text = OPInfo.OperationLevel;
- cbomzpm.Text = OPInfo.AnesthesiaPlane;
- cbomzxg.Text = OPInfo.AnesthesiaEffect;
- cmbBRQK.Text = OPInfo.SpecialSituation;
-
- if (OPInfo.Whereabouts != null && OPInfo.Whereabouts.ToString() != "")
- {
- if (OPInfo.Whereabouts == "恢复室")
- {
- radioButton2.Checked = true;
- }
- else if (OPInfo.Whereabouts == "病房")
- {
- radioButton1.Checked = true;
- }
- else if (OPInfo.Whereabouts == "计划入ICU")
- {
- radioButton3.Checked = true;
- }
- else if (OPInfo.Whereabouts == "非计划入ICU")
- {
- radioButton6.Checked = true;
- }
- else if (OPInfo.Whereabouts == "急诊")
- {
- radioButton4.Checked = true;
- }
- else if (OPInfo.Whereabouts == "离院")
- {
- radioButton5.Checked = true;
- }
- else if (OPInfo.Whereabouts == "死亡")
- {
- radioButton7.Checked = true;
- }
- }
-
if (OPInfo.AnesthesiaMethodFirstName != null)
{
rdoYes.Checked = true;
@@ -202,13 +161,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
txtAnaesthesiaMethod.Tag = OPInfo.AnesthesiaMethodLastName;
txtCause.Text = OPInfo.AnesthesiaMethodChangeReason;
if (OPInfo.AnesthesiaMethodChangeTime != null) dtpTime.Value = OPInfo.AnesthesiaMethodChangeTime.Value;
- }
-
- cboQXCD.Text = OPInfo.StewardSober;
- cboHXDTCCD.Text = OPInfo.StewardBreathing;
- cboZTHDD.Text = OPInfo.StewardLimbActivity;
- cboSteward.Text = OPInfo.StewardNumber;
-
+ }
}
}
catch (Exception ex)
@@ -223,44 +176,18 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
try
{
- OPInfo.AnesthesiaPlane = cbomzpm.Text;
- OPInfo.AnesthesiaEffect = cbomzxg.Text;
- OPInfo.SpecialSituation = cmbBRQK.Text;
+ if (OPInfo == null) OPInfo = new OperationRecordInfo();
+ OPInfo.OperationRecordId = _record.Id;
+ OPInfo.PatientId = _record.PatientId;
+ OPInfo.ApplyId = _record.OperationApplyId;
+ OPInfo.OperatorTime = DateTime.Now;
+ OPInfo.Experts = txtexperts.Text.Trim();
+ OPInfo.RuleAnesthesiaDoctor = txtruleAnesthesiaDoctor.Text.Trim();
+ OPInfo.RuleNurse = txtruleNurse.Text.Trim();
+
OPInfo.OperationCut = txtOperationCut.Text;
- OPInfo.OperationLevel = cboOperationLevel.Text;
- OPInfo.OperationSite = txtOperationSiteId.Text;
-
- SetOPInfo();
-
- if (radioButton2.Checked == true)
- {
- OPInfo.Whereabouts = "恢复室";
- }
- else if (radioButton1.Checked == true)
- {
- OPInfo.Whereabouts = "病房";
- }
- else if (radioButton3.Checked == true)
- {
- OPInfo.Whereabouts = "计划入ICU";
- }
- else if (radioButton6.Checked == true)
- {
- OPInfo.Whereabouts = "非计划入ICU";
- }
- else if (radioButton4.Checked == true)
- {
- OPInfo.Whereabouts = "急诊";
- }
- else if (radioButton5.Checked == true)
- {
- OPInfo.Whereabouts = "离院";
- }
- else if (radioButton7.Checked == true)
- {
- OPInfo.Whereabouts = "死亡";
- }
+ OPInfo.OperationLevel = cboOperationLevel.Text;
if (rdoYes.Checked == true && txtAnaesthesiaMethod.Text != "")
{
@@ -399,34 +326,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
}
#endregion
-
- #region 手术信息赋值
- private void SetOPInfo()
- {
- if (OPInfo == null) OPInfo = new OperationRecordInfo();
- string intubateOther = string.Empty;
- string M;
- string T;
- string S;
-
-
- OPInfo.Experts = txtexperts.Text.Trim();
- OPInfo.RuleAnesthesiaDoctor = txtruleAnesthesiaDoctor.Text.Trim();
- OPInfo.RuleNurse = txtruleNurse.Text.Trim();
-
-
- if (cboQXCD.Text.Trim() == "") OPInfo.StewardSober = null; else OPInfo.StewardSober = cboQXCD.Text;
- if (cboHXDTCCD.Text.Trim() == "") OPInfo.StewardBreathing = null; else OPInfo.StewardBreathing = cboHXDTCCD.Text;
- if (cboZTHDD.Text.Trim() == "") OPInfo.StewardLimbActivity = null; else OPInfo.StewardLimbActivity = cboZTHDD.Text;
- if (cboSteward.Text.Trim() == "") OPInfo.StewardNumber = null; else OPInfo.StewardNumber = cboSteward.Text;
-
- OPInfo.OperationRecordId = _record.Id;
- OPInfo.PatientId = _record.PatientId;
- OPInfo.ApplyId = _record.OperationApplyId;
- OPInfo.OperatorTime = DateTime.Now;
- }
- #endregion
-
+
#region 手术特殊事件时间点处理事件
public void txtDateTime_MouseDown(object sender, MouseEventArgs e)
{
@@ -775,14 +675,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
// label20.ForeColor = Color.Red;
// txtOperationCut.Focus();
// b = false;
- //}
- if (cbomzxg.Text == "")
- {
- MessageBox.Show("请填写麻醉效果");
- label14.ForeColor = Color.Red;
- cbomzxg.Focus();
- b = false;
- }
+ //}
return b;
}
#endregion
@@ -888,32 +781,6 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
int idxStart = txtAnaesthesiaMethod.Text.LastIndexOf(" ,");
txtAnaesthesiaMethod.Text = txtAnaesthesiaMethod.Text.Substring(0, idxStart);
}
- }
-
-
- ///
- /// 清醒程度
- ///
- int StewardSober = 0;
- ///
- /// 呼吸道通畅程度
- ///
- int StewardBreathing = 0;
- ///
- /// 肢体活动度
- ///
- int StewardLimbActivity = 0;
- ///
- /// 总评分
- ///
- ///
- ///
- private void cboQXCD_SelectedIndexChanged(object sender, EventArgs e)
- {
- if (cboQXCD.Text != null && cboQXCD.Text.Trim() != "") StewardSober = int.Parse(cboQXCD.Text);
- if (cboHXDTCCD.Text != null && cboHXDTCCD.Text.Trim() != "") StewardBreathing = int.Parse(cboHXDTCCD.Text);
- if (cboZTHDD.Text != null && cboZTHDD.Text.Trim() != "") StewardLimbActivity = int.Parse(cboZTHDD.Text);
- cboSteward.Text = (StewardSober + StewardBreathing + StewardLimbActivity).ToString();
- }
+ }
}
}
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew2.designer.cs b/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew2.designer.cs
index 5fcd252..224ce56 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew2.designer.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew2.designer.cs
@@ -54,43 +54,18 @@
this.txtOperationCut = new System.Windows.Forms.ComboBox();
this.cboOperationLevel = new System.Windows.Forms.ComboBox();
this.label20 = new System.Windows.Forms.Label();
- this.label35 = new System.Windows.Forms.Label();
- this.txtOperationSiteId = new DevComponents.DotNetBar.Controls.TextBoxX();
this.panel1 = new System.Windows.Forms.Panel();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.lblIsCompound = new System.Windows.Forms.Label();
this.txtCause = new DevComponents.DotNetBar.Controls.TextBoxX();
this.rdoNo = new System.Windows.Forms.RadioButton();
- this.dtpTime = new System.Windows.Forms.DateTimePicker();
- this.rdoYes = new System.Windows.Forms.RadioButton();
- this.label16 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
this.txtAnaesthesiaMethod = new DevComponents.DotNetBar.Controls.TextBoxX();
- this.groupBox5 = new System.Windows.Forms.GroupBox();
- this.label17 = new System.Windows.Forms.Label();
- this.cboSteward = new System.Windows.Forms.ComboBox();
- this.cboZTHDD = new System.Windows.Forms.ComboBox();
- this.label22 = new System.Windows.Forms.Label();
- this.cboHXDTCCD = new System.Windows.Forms.ComboBox();
- this.label23 = new System.Windows.Forms.Label();
- this.cboQXCD = new System.Windows.Forms.ComboBox();
- this.label24 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
+ this.dtpTime = new System.Windows.Forms.DateTimePicker();
+ this.label15 = new System.Windows.Forms.Label();
+ this.rdoYes = new System.Windows.Forms.RadioButton();
this.label1 = new System.Windows.Forms.Label();
- this.cbomzxg = new System.Windows.Forms.ComboBox();
- this.cbomzpm = new System.Windows.Forms.ComboBox();
- this.label21 = new System.Windows.Forms.Label();
- this.cmbBRQK = new System.Windows.Forms.ComboBox();
- this.groupBox4 = new System.Windows.Forms.GroupBox();
- this.panel3 = new System.Windows.Forms.Panel();
- this.radioButton7 = new System.Windows.Forms.RadioButton();
- this.radioButton5 = new System.Windows.Forms.RadioButton();
- this.radioButton4 = new System.Windows.Forms.RadioButton();
- this.radioButton6 = new System.Windows.Forms.RadioButton();
- this.radioButton3 = new System.Windows.Forms.RadioButton();
- this.radioButton1 = new System.Windows.Forms.RadioButton();
- this.radioButton2 = new System.Windows.Forms.RadioButton();
+ this.label10 = new System.Windows.Forms.Label();
+ this.label16 = new System.Windows.Forms.Label();
this.groupBox2.SuspendLayout();
this.panelOpeDate.SuspendLayout();
this.panel5.SuspendLayout();
@@ -99,9 +74,6 @@
((System.ComponentModel.ISupportInitialize)(this.dtpAnesthesiaByDoctor)).BeginInit();
this.panel1.SuspendLayout();
this.groupBox8.SuspendLayout();
- this.groupBox5.SuspendLayout();
- this.groupBox4.SuspendLayout();
- this.panel3.SuspendLayout();
this.SuspendLayout();
//
// groupBox2
@@ -111,7 +83,7 @@
this.groupBox2.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold);
this.groupBox2.Location = new System.Drawing.Point(0, 0);
this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(1115, 130);
+ this.groupBox2.Size = new System.Drawing.Size(555, 275);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "手术信息";
@@ -124,12 +96,10 @@
this.panelOpeDate.Controls.Add(this.txtOperationCut);
this.panelOpeDate.Controls.Add(this.cboOperationLevel);
this.panelOpeDate.Controls.Add(this.label20);
- this.panelOpeDate.Controls.Add(this.label35);
- this.panelOpeDate.Controls.Add(this.txtOperationSiteId);
this.panelOpeDate.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelOpeDate.Location = new System.Drawing.Point(3, 21);
this.panelOpeDate.Name = "panelOpeDate";
- this.panelOpeDate.Size = new System.Drawing.Size(1109, 106);
+ this.panelOpeDate.Size = new System.Drawing.Size(549, 251);
this.panelOpeDate.TabIndex = 728;
//
// panel5
@@ -155,13 +125,13 @@
this.panel5.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.panel5.Location = new System.Drawing.Point(10, 38);
this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(1027, 65);
+ this.panel5.Size = new System.Drawing.Size(533, 200);
this.panel5.TabIndex = 874;
//
// txtruleNurse
//
this.txtruleNurse.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.txtruleNurse.Location = new System.Drawing.Point(597, 33);
+ this.txtruleNurse.Location = new System.Drawing.Point(84, 165);
this.txtruleNurse.Name = "txtruleNurse";
this.txtruleNurse.Size = new System.Drawing.Size(140, 28);
this.txtruleNurse.TabIndex = 856;
@@ -170,7 +140,7 @@
// txtexperts
//
this.txtexperts.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.txtexperts.Location = new System.Drawing.Point(77, 32);
+ this.txtexperts.Location = new System.Drawing.Point(84, 93);
this.txtexperts.Name = "txtexperts";
this.txtexperts.Size = new System.Drawing.Size(140, 28);
this.txtexperts.TabIndex = 856;
@@ -179,7 +149,7 @@
// txtruleAnesthesiaDoctor
//
this.txtruleAnesthesiaDoctor.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.txtruleAnesthesiaDoctor.Location = new System.Drawing.Point(356, 33);
+ this.txtruleAnesthesiaDoctor.Location = new System.Drawing.Point(107, 129);
this.txtruleAnesthesiaDoctor.Name = "txtruleAnesthesiaDoctor";
this.txtruleAnesthesiaDoctor.Size = new System.Drawing.Size(140, 28);
this.txtruleAnesthesiaDoctor.TabIndex = 856;
@@ -189,7 +159,7 @@
//
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label9.Location = new System.Drawing.Point(526, 37);
+ this.label9.Location = new System.Drawing.Point(9, 166);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(65, 20);
this.label9.TabIndex = 855;
@@ -199,7 +169,7 @@
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label8.Location = new System.Drawing.Point(257, 37);
+ this.label8.Location = new System.Drawing.Point(9, 134);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(93, 20);
this.label8.TabIndex = 855;
@@ -209,7 +179,7 @@
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label7.Location = new System.Drawing.Point(12, 37);
+ this.label7.Location = new System.Drawing.Point(9, 102);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(65, 20);
this.label7.TabIndex = 855;
@@ -230,7 +200,7 @@
this.dtpInstrumentNurseSucceed.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
this.dtpInstrumentNurseSucceed.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
this.dtpInstrumentNurseSucceed.IsPopupCalendarOpen = false;
- this.dtpInstrumentNurseSucceed.Location = new System.Drawing.Point(908, 5);
+ this.dtpInstrumentNurseSucceed.Location = new System.Drawing.Point(320, 63);
this.dtpInstrumentNurseSucceed.Margin = new System.Windows.Forms.Padding(6, 0, 6, 6);
//
//
@@ -265,7 +235,7 @@
this.dtpInstrumentNurseSucceed.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
this.dtpInstrumentNurseSucceed.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpInstrumentNurseSucceed.Name = "dtpInstrumentNurseSucceed";
- this.dtpInstrumentNurseSucceed.Size = new System.Drawing.Size(104, 23);
+ this.dtpInstrumentNurseSucceed.Size = new System.Drawing.Size(120, 23);
this.dtpInstrumentNurseSucceed.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
this.dtpInstrumentNurseSucceed.TabIndex = 851;
//
@@ -284,7 +254,7 @@
this.dtpTourNurseSucceed.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
this.dtpTourNurseSucceed.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
this.dtpTourNurseSucceed.IsPopupCalendarOpen = false;
- this.dtpTourNurseSucceed.Location = new System.Drawing.Point(574, 5);
+ this.dtpTourNurseSucceed.Location = new System.Drawing.Point(320, 34);
this.dtpTourNurseSucceed.Margin = new System.Windows.Forms.Padding(6, 0, 6, 6);
//
//
@@ -319,7 +289,7 @@
this.dtpTourNurseSucceed.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
this.dtpTourNurseSucceed.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpTourNurseSucceed.Name = "dtpTourNurseSucceed";
- this.dtpTourNurseSucceed.Size = new System.Drawing.Size(113, 23);
+ this.dtpTourNurseSucceed.Size = new System.Drawing.Size(120, 23);
this.dtpTourNurseSucceed.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
this.dtpTourNurseSucceed.TabIndex = 852;
//
@@ -338,7 +308,7 @@
this.dtpAnesthesiaByDoctor.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
this.dtpAnesthesiaByDoctor.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
this.dtpAnesthesiaByDoctor.IsPopupCalendarOpen = false;
- this.dtpAnesthesiaByDoctor.Location = new System.Drawing.Point(227, 5);
+ this.dtpAnesthesiaByDoctor.Location = new System.Drawing.Point(320, 5);
this.dtpAnesthesiaByDoctor.Margin = new System.Windows.Forms.Padding(6, 0, 6, 6);
//
//
@@ -381,7 +351,7 @@
//
this.label26.AutoSize = true;
this.label26.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label26.Location = new System.Drawing.Point(358, 6);
+ this.label26.Location = new System.Drawing.Point(9, 38);
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(65, 20);
this.label26.TabIndex = 846;
@@ -391,7 +361,7 @@
//
this.label28.AutoSize = true;
this.label28.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label28.Location = new System.Drawing.Point(12, 6);
+ this.label28.Location = new System.Drawing.Point(9, 6);
this.label28.Name = "label28";
this.label28.Size = new System.Drawing.Size(65, 20);
this.label28.TabIndex = 844;
@@ -401,7 +371,7 @@
//
this.label27.AutoSize = true;
this.label27.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label27.Location = new System.Drawing.Point(698, 6);
+ this.label27.Location = new System.Drawing.Point(9, 70);
this.label27.Name = "label27";
this.label27.Size = new System.Drawing.Size(65, 20);
this.label27.TabIndex = 845;
@@ -411,7 +381,7 @@
//
this.label49.AutoSize = true;
this.label49.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label49.Location = new System.Drawing.Point(158, 6);
+ this.label49.Location = new System.Drawing.Point(251, 6);
this.label49.Name = "label49";
this.label49.Size = new System.Drawing.Size(65, 20);
this.label49.TabIndex = 846;
@@ -421,7 +391,7 @@
//
this.label50.AutoSize = true;
this.label50.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label50.Location = new System.Drawing.Point(504, 6);
+ this.label50.Location = new System.Drawing.Point(251, 35);
this.label50.Name = "label50";
this.label50.Size = new System.Drawing.Size(65, 20);
this.label50.TabIndex = 846;
@@ -431,7 +401,7 @@
//
this.label51.AutoSize = true;
this.label51.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label51.Location = new System.Drawing.Point(844, 6);
+ this.label51.Location = new System.Drawing.Point(251, 64);
this.label51.Name = "label51";
this.label51.Size = new System.Drawing.Size(65, 20);
this.label51.TabIndex = 846;
@@ -457,9 +427,9 @@
this.txtAnesthesiaByDoctor.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.txtAnesthesiaByDoctor.DisabledBackColor = System.Drawing.Color.White;
this.txtAnesthesiaByDoctor.ForeColor = System.Drawing.Color.Black;
- this.txtAnesthesiaByDoctor.Location = new System.Drawing.Point(77, 6);
+ this.txtAnesthesiaByDoctor.Location = new System.Drawing.Point(84, 6);
this.txtAnesthesiaByDoctor.Name = "txtAnesthesiaByDoctor";
- this.txtAnesthesiaByDoctor.Size = new System.Drawing.Size(73, 21);
+ this.txtAnesthesiaByDoctor.Size = new System.Drawing.Size(140, 21);
this.txtAnesthesiaByDoctor.TabIndex = 21;
this.txtAnesthesiaByDoctor.Click += new System.EventHandler(this.txtAnesthesiaByDoctor_TextChanged);
//
@@ -483,9 +453,9 @@
this.txtTourNurseSucceed.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.txtTourNurseSucceed.DisabledBackColor = System.Drawing.Color.White;
this.txtTourNurseSucceed.ForeColor = System.Drawing.Color.Black;
- this.txtTourNurseSucceed.Location = new System.Drawing.Point(423, 6);
+ this.txtTourNurseSucceed.Location = new System.Drawing.Point(84, 35);
this.txtTourNurseSucceed.Name = "txtTourNurseSucceed";
- this.txtTourNurseSucceed.Size = new System.Drawing.Size(73, 21);
+ this.txtTourNurseSucceed.Size = new System.Drawing.Size(140, 21);
this.txtTourNurseSucceed.TabIndex = 23;
this.txtTourNurseSucceed.Click += new System.EventHandler(this.txtTourNurseSucceed_TextChanged);
//
@@ -509,9 +479,9 @@
this.txtInstrumentNurseSucceed.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.txtInstrumentNurseSucceed.DisabledBackColor = System.Drawing.Color.White;
this.txtInstrumentNurseSucceed.ForeColor = System.Drawing.Color.Black;
- this.txtInstrumentNurseSucceed.Location = new System.Drawing.Point(763, 6);
+ this.txtInstrumentNurseSucceed.Location = new System.Drawing.Point(84, 64);
this.txtInstrumentNurseSucceed.Name = "txtInstrumentNurseSucceed";
- this.txtInstrumentNurseSucceed.Size = new System.Drawing.Size(73, 21);
+ this.txtInstrumentNurseSucceed.Size = new System.Drawing.Size(140, 21);
this.txtInstrumentNurseSucceed.TabIndex = 25;
this.txtInstrumentNurseSucceed.Click += new System.EventHandler(this.txtInstrumentNurseSucceed_TextChanged);
//
@@ -532,7 +502,7 @@
this.txtOperationCut.FormattingEnabled = true;
this.txtOperationCut.Location = new System.Drawing.Point(281, 6);
this.txtOperationCut.Name = "txtOperationCut";
- this.txtOperationCut.Size = new System.Drawing.Size(179, 28);
+ this.txtOperationCut.Size = new System.Drawing.Size(169, 28);
this.txtOperationCut.TabIndex = 13;
//
// cboOperationLevel
@@ -540,9 +510,9 @@
this.cboOperationLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboOperationLevel.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.cboOperationLevel.FormattingEnabled = true;
- this.cboOperationLevel.Location = new System.Drawing.Point(87, 6);
+ this.cboOperationLevel.Location = new System.Drawing.Point(95, 6);
this.cboOperationLevel.Name = "cboOperationLevel";
- this.cboOperationLevel.Size = new System.Drawing.Size(84, 28);
+ this.cboOperationLevel.Size = new System.Drawing.Size(110, 28);
this.cboOperationLevel.TabIndex = 13;
//
// label20
@@ -555,53 +525,13 @@
this.label20.TabIndex = 866;
this.label20.Text = "切口类型";
//
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label35.Location = new System.Drawing.Point(518, 10);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(65, 20);
- this.label35.TabIndex = 855;
- this.label35.Text = "手术体位";
- this.label35.Visible = false;
- //
- // txtOperationSiteId
- //
- this.txtOperationSiteId.BackColor = System.Drawing.Color.White;
- //
- //
- //
- this.txtOperationSiteId.Border.BackColor = System.Drawing.SystemColors.Desktop;
- this.txtOperationSiteId.Border.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
- this.txtOperationSiteId.Border.BorderBottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(227)))), ((int)(((byte)(231)))));
- this.txtOperationSiteId.Border.BorderBottomWidth = 1;
- this.txtOperationSiteId.Border.BorderColor = System.Drawing.SystemColors.Desktop;
- this.txtOperationSiteId.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
- this.txtOperationSiteId.Border.BorderLeftWidth = 1;
- this.txtOperationSiteId.Border.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
- this.txtOperationSiteId.Border.BorderRightWidth = 1;
- this.txtOperationSiteId.Border.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
- this.txtOperationSiteId.Border.BorderTopWidth = 1;
- this.txtOperationSiteId.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.txtOperationSiteId.DisabledBackColor = System.Drawing.Color.White;
- this.txtOperationSiteId.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.txtOperationSiteId.ForeColor = System.Drawing.Color.Black;
- this.txtOperationSiteId.Location = new System.Drawing.Point(583, 10);
- this.txtOperationSiteId.Name = "txtOperationSiteId";
- this.txtOperationSiteId.Size = new System.Drawing.Size(251, 22);
- this.txtOperationSiteId.TabIndex = 12;
- this.txtOperationSiteId.Visible = false;
- this.txtOperationSiteId.Click += new System.EventHandler(this.txtOperationPosition_TextChanged);
- this.txtOperationSiteId.DoubleClick += new System.EventHandler(this.txtOperationPosition_TextChanged);
- //
// panel1
//
this.panel1.Controls.Add(this.groupBox2);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1048, 130);
+ this.panel1.Size = new System.Drawing.Size(555, 275);
this.panel1.TabIndex = 10;
//
// groupBox8
@@ -614,13 +544,14 @@
this.groupBox8.Controls.Add(this.dtpTime);
this.groupBox8.Controls.Add(this.label15);
this.groupBox8.Controls.Add(this.rdoYes);
+ this.groupBox8.Controls.Add(this.label1);
this.groupBox8.Controls.Add(this.label10);
this.groupBox8.Controls.Add(this.label16);
this.groupBox8.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox8.Location = new System.Drawing.Point(0, 130);
+ this.groupBox8.Location = new System.Drawing.Point(0, 275);
this.groupBox8.Name = "groupBox8";
- this.groupBox8.Size = new System.Drawing.Size(1048, 77);
+ this.groupBox8.Size = new System.Drawing.Size(555, 96);
this.groupBox8.TabIndex = 874;
this.groupBox8.TabStop = false;
this.groupBox8.Text = "麻醉方式变更";
@@ -628,7 +559,7 @@
// lblIsCompound
//
this.lblIsCompound.AutoSize = true;
- this.lblIsCompound.Location = new System.Drawing.Point(463, 31);
+ this.lblIsCompound.Location = new System.Drawing.Point(530, 31);
this.lblIsCompound.Name = "lblIsCompound";
this.lblIsCompound.Size = new System.Drawing.Size(0, 19);
this.lblIsCompound.TabIndex = 42;
@@ -655,9 +586,9 @@
this.txtCause.DisabledBackColor = System.Drawing.Color.White;
this.txtCause.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.txtCause.ForeColor = System.Drawing.Color.Black;
- this.txtCause.Location = new System.Drawing.Point(761, 29);
+ this.txtCause.Location = new System.Drawing.Point(295, 59);
this.txtCause.Name = "txtCause";
- this.txtCause.Size = new System.Drawing.Size(264, 22);
+ this.txtCause.Size = new System.Drawing.Size(238, 22);
this.txtCause.TabIndex = 41;
this.txtCause.Visible = false;
//
@@ -665,7 +596,7 @@
//
this.rdoNo.AutoSize = true;
this.rdoNo.Checked = true;
- this.rdoNo.Location = new System.Drawing.Point(26, 31);
+ this.rdoNo.Location = new System.Drawing.Point(89, 31);
this.rdoNo.Name = "rdoNo";
this.rdoNo.Size = new System.Drawing.Size(40, 23);
this.rdoNo.TabIndex = 0;
@@ -673,60 +604,6 @@
this.rdoNo.Text = "否";
this.rdoNo.UseVisualStyleBackColor = true;
//
- // dtpTime
- //
- this.dtpTime.CustomFormat = "MM-dd HH:mm";
- this.dtpTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpTime.Location = new System.Drawing.Point(552, 29);
- this.dtpTime.Name = "dtpTime";
- this.dtpTime.Size = new System.Drawing.Size(137, 25);
- this.dtpTime.TabIndex = 40;
- this.dtpTime.Visible = false;
- //
- // rdoYes
- //
- this.rdoYes.AutoSize = true;
- this.rdoYes.Location = new System.Drawing.Point(72, 31);
- this.rdoYes.Name = "rdoYes";
- this.rdoYes.Size = new System.Drawing.Size(40, 23);
- this.rdoYes.TabIndex = 0;
- this.rdoYes.Text = "是";
- this.rdoYes.UseVisualStyleBackColor = true;
- this.rdoYes.CheckedChanged += new System.EventHandler(this.rdoYes_CheckedChanged);
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label16.Location = new System.Drawing.Point(692, 30);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(65, 20);
- this.label16.TabIndex = 39;
- this.label16.Text = "变更原因";
- this.label16.Visible = false;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label10.Location = new System.Drawing.Point(117, 31);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(107, 20);
- this.label10.TabIndex = 37;
- this.label10.Text = "变更后麻醉方式";
- this.label10.Visible = false;
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label15.Location = new System.Drawing.Point(483, 30);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(65, 20);
- this.label15.TabIndex = 39;
- this.label15.Text = "变更时间";
- this.label15.Visible = false;
- //
// txtAnaesthesiaMethod
//
this.txtAnaesthesiaMethod.BackColor = System.Drawing.Color.White;
@@ -748,342 +625,83 @@
this.txtAnaesthesiaMethod.DisabledBackColor = System.Drawing.Color.White;
this.txtAnaesthesiaMethod.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.txtAnaesthesiaMethod.ForeColor = System.Drawing.Color.Black;
- this.txtAnaesthesiaMethod.Location = new System.Drawing.Point(225, 30);
+ this.txtAnaesthesiaMethod.Location = new System.Drawing.Point(295, 30);
this.txtAnaesthesiaMethod.Name = "txtAnaesthesiaMethod";
this.txtAnaesthesiaMethod.Size = new System.Drawing.Size(238, 22);
this.txtAnaesthesiaMethod.TabIndex = 38;
this.txtAnaesthesiaMethod.Visible = false;
this.txtAnaesthesiaMethod.Click += new System.EventHandler(this.txtAnaesthesiaMethod_Click);
//
- // groupBox5
+ // dtpTime
//
- this.groupBox5.BackColor = System.Drawing.Color.White;
- this.groupBox5.Controls.Add(this.label17);
- this.groupBox5.Controls.Add(this.cboSteward);
- this.groupBox5.Controls.Add(this.cboZTHDD);
- this.groupBox5.Controls.Add(this.label22);
- this.groupBox5.Controls.Add(this.cboHXDTCCD);
- this.groupBox5.Controls.Add(this.label23);
- this.groupBox5.Controls.Add(this.cboQXCD);
- this.groupBox5.Controls.Add(this.label24);
- this.groupBox5.Controls.Add(this.label14);
- this.groupBox5.Controls.Add(this.label1);
- this.groupBox5.Controls.Add(this.cbomzxg);
- this.groupBox5.Controls.Add(this.cbomzpm);
- this.groupBox5.Controls.Add(this.label21);
- this.groupBox5.Controls.Add(this.cmbBRQK);
- this.groupBox5.Dock = System.Windows.Forms.DockStyle.Top;
- this.groupBox5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox5.Location = new System.Drawing.Point(0, 207);
- this.groupBox5.Name = "groupBox5";
- this.groupBox5.Size = new System.Drawing.Size(1048, 88);
- this.groupBox5.TabIndex = 875;
- this.groupBox5.TabStop = false;
- this.groupBox5.Text = "麻醉情况";
+ this.dtpTime.CustomFormat = "MM-dd HH:mm";
+ this.dtpTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
+ this.dtpTime.Location = new System.Drawing.Point(86, 59);
+ this.dtpTime.Name = "dtpTime";
+ this.dtpTime.Size = new System.Drawing.Size(115, 25);
+ this.dtpTime.TabIndex = 40;
+ this.dtpTime.Visible = false;
//
- // label17
+ // label15
//
- this.label17.AutoSize = true;
- this.label17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label17.Location = new System.Drawing.Point(350, 24);
- this.label17.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(74, 19);
- this.label17.TabIndex = 873;
- this.label17.Text = "肢体活动度";
+ this.label15.AutoSize = true;
+ this.label15.Font = new System.Drawing.Font("微软雅黑", 10.5F);
+ this.label15.Location = new System.Drawing.Point(17, 60);
+ this.label15.Name = "label15";
+ this.label15.Size = new System.Drawing.Size(65, 20);
+ this.label15.TabIndex = 39;
+ this.label15.Text = "变更时间";
+ this.label15.Visible = false;
//
- // cboSteward
+ // rdoYes
//
- this.cboSteward.FormattingEnabled = true;
- this.cboSteward.Items.AddRange(new object[] {
- "",
- "0",
- "1",
- "2",
- "3",
- "4",
- "5",
- "6"});
- this.cboSteward.Location = new System.Drawing.Point(605, 20);
- this.cboSteward.Margin = new System.Windows.Forms.Padding(5, 10, 5, 10);
- this.cboSteward.Name = "cboSteward";
- this.cboSteward.Size = new System.Drawing.Size(52, 27);
- this.cboSteward.TabIndex = 876;
- //
- // cboZTHDD
- //
- this.cboZTHDD.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cboZTHDD.FormattingEnabled = true;
- this.cboZTHDD.Items.AddRange(new object[] {
- "",
- "0",
- "1",
- "2"});
- this.cboZTHDD.Location = new System.Drawing.Point(438, 20);
- this.cboZTHDD.Margin = new System.Windows.Forms.Padding(5, 10, 5, 10);
- this.cboZTHDD.Name = "cboZTHDD";
- this.cboZTHDD.Size = new System.Drawing.Size(52, 27);
- this.cboZTHDD.TabIndex = 876;
- this.cboZTHDD.SelectedIndexChanged += new System.EventHandler(this.cboQXCD_SelectedIndexChanged);
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label22.Location = new System.Drawing.Point(170, 24);
- this.label22.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(100, 19);
- this.label22.TabIndex = 874;
- this.label22.Text = "呼吸道通畅程度";
- //
- // cboHXDTCCD
- //
- this.cboHXDTCCD.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cboHXDTCCD.FormattingEnabled = true;
- this.cboHXDTCCD.Items.AddRange(new object[] {
- "",
- "0",
- "1",
- "2"});
- this.cboHXDTCCD.Location = new System.Drawing.Point(284, 20);
- this.cboHXDTCCD.Margin = new System.Windows.Forms.Padding(5, 10, 5, 10);
- this.cboHXDTCCD.Name = "cboHXDTCCD";
- this.cboHXDTCCD.Size = new System.Drawing.Size(52, 27);
- this.cboHXDTCCD.TabIndex = 877;
- this.cboHXDTCCD.SelectedIndexChanged += new System.EventHandler(this.cboQXCD_SelectedIndexChanged);
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label23.Location = new System.Drawing.Point(29, 24);
- this.label23.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(61, 19);
- this.label23.TabIndex = 875;
- this.label23.Text = "清醒程度";
- //
- // cboQXCD
- //
- this.cboQXCD.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cboQXCD.FormattingEnabled = true;
- this.cboQXCD.Items.AddRange(new object[] {
- "",
- "0",
- "1",
- "2"});
- this.cboQXCD.Location = new System.Drawing.Point(104, 20);
- this.cboQXCD.Margin = new System.Windows.Forms.Padding(5, 10, 5, 10);
- this.cboQXCD.Name = "cboQXCD";
- this.cboQXCD.Size = new System.Drawing.Size(52, 27);
- this.cboQXCD.TabIndex = 878;
- this.cboQXCD.SelectedIndexChanged += new System.EventHandler(this.cboQXCD_SelectedIndexChanged);
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label24.Location = new System.Drawing.Point(504, 24);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(98, 19);
- this.label24.TabIndex = 879;
- this.label24.Text = "Steward总评分";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label14.Location = new System.Drawing.Point(209, 58);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(65, 20);
- this.label14.TabIndex = 35;
- this.label14.Text = "麻醉效果";
+ this.rdoYes.AutoSize = true;
+ this.rdoYes.Location = new System.Drawing.Point(134, 31);
+ this.rdoYes.Name = "rdoYes";
+ this.rdoYes.Size = new System.Drawing.Size(40, 23);
+ this.rdoYes.TabIndex = 0;
+ this.rdoYes.Text = "是";
+ this.rdoYes.UseVisualStyleBackColor = true;
+ this.rdoYes.CheckedChanged += new System.EventHandler(this.rdoYes_CheckedChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label1.Location = new System.Drawing.Point(30, 58);
+ this.label1.Location = new System.Drawing.Point(17, 30);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 20);
- this.label1.TabIndex = 36;
- this.label1.Text = "麻醉平面";
+ this.label1.TabIndex = 37;
+ this.label1.Text = "是否变更";
//
- // cbomzxg
+ // label10
//
- this.cbomzxg.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbomzxg.Font = new System.Drawing.Font("微软雅黑", 9.75F);
- this.cbomzxg.FormattingEnabled = true;
- this.cbomzxg.Items.AddRange(new object[] {
- "",
- "2.0",
- "3.0",
- "4.0"});
- this.cbomzxg.Location = new System.Drawing.Point(285, 55);
- this.cbomzxg.Name = "cbomzxg";
- this.cbomzxg.Size = new System.Drawing.Size(70, 27);
- this.cbomzxg.TabIndex = 30;
+ this.label10.AutoSize = true;
+ this.label10.Font = new System.Drawing.Font("微软雅黑", 10.5F);
+ this.label10.Location = new System.Drawing.Point(184, 31);
+ this.label10.Name = "label10";
+ this.label10.Size = new System.Drawing.Size(107, 20);
+ this.label10.TabIndex = 37;
+ this.label10.Text = "变更后麻醉方式";
+ this.label10.Visible = false;
//
- // cbomzpm
+ // label16
//
- this.cbomzpm.Font = new System.Drawing.Font("微软雅黑", 9.75F);
- this.cbomzpm.FormattingEnabled = true;
- this.cbomzpm.Items.AddRange(new object[] {
- "",
- "2.0",
- "3.0",
- "4.0"});
- this.cbomzpm.Location = new System.Drawing.Point(106, 55);
- this.cbomzpm.Name = "cbomzpm";
- this.cbomzpm.Size = new System.Drawing.Size(70, 27);
- this.cbomzpm.TabIndex = 30;
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label21.Location = new System.Drawing.Point(388, 58);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(121, 20);
- this.label21.TabIndex = 872;
- this.label21.Text = "手术结束患者情况";
- //
- // cmbBRQK
- //
- this.cmbBRQK.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbBRQK.Font = new System.Drawing.Font("微软雅黑", 9.75F);
- this.cmbBRQK.FormattingEnabled = true;
- this.cmbBRQK.Items.AddRange(new object[] {
- "良好",
- "尚可",
- "休克",
- "病危"});
- this.cmbBRQK.Location = new System.Drawing.Point(520, 55);
- this.cmbBRQK.Name = "cmbBRQK";
- this.cmbBRQK.Size = new System.Drawing.Size(70, 27);
- this.cmbBRQK.TabIndex = 15;
- //
- // groupBox4
- //
- this.groupBox4.BackColor = System.Drawing.Color.White;
- this.groupBox4.Controls.Add(this.panel3);
- this.groupBox4.Dock = System.Windows.Forms.DockStyle.Top;
- this.groupBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox4.Location = new System.Drawing.Point(0, 295);
- this.groupBox4.Name = "groupBox4";
- this.groupBox4.Size = new System.Drawing.Size(1048, 79);
- this.groupBox4.TabIndex = 876;
- this.groupBox4.TabStop = false;
- this.groupBox4.Text = "患者去向";
- //
- // panel3
- //
- this.panel3.BackColor = System.Drawing.Color.White;
- this.panel3.Controls.Add(this.radioButton7);
- this.panel3.Controls.Add(this.radioButton5);
- this.panel3.Controls.Add(this.radioButton4);
- this.panel3.Controls.Add(this.radioButton6);
- this.panel3.Controls.Add(this.radioButton3);
- this.panel3.Controls.Add(this.radioButton1);
- this.panel3.Controls.Add(this.radioButton2);
- this.panel3.Location = new System.Drawing.Point(6, 21);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(1034, 46);
- this.panel3.TabIndex = 24;
- //
- // radioButton7
- //
- this.radioButton7.AutoSize = true;
- this.radioButton7.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.radioButton7.Location = new System.Drawing.Point(521, 13);
- this.radioButton7.Name = "radioButton7";
- this.radioButton7.Size = new System.Drawing.Size(55, 24);
- this.radioButton7.TabIndex = 1618;
- this.radioButton7.TabStop = true;
- this.radioButton7.Text = "死亡";
- this.radioButton7.UseVisualStyleBackColor = true;
- //
- // radioButton5
- //
- this.radioButton5.AutoSize = true;
- this.radioButton5.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.radioButton5.Location = new System.Drawing.Point(446, 13);
- this.radioButton5.Name = "radioButton5";
- this.radioButton5.Size = new System.Drawing.Size(55, 24);
- this.radioButton5.TabIndex = 1618;
- this.radioButton5.TabStop = true;
- this.radioButton5.Text = "离院";
- this.radioButton5.UseVisualStyleBackColor = true;
- //
- // radioButton4
- //
- this.radioButton4.AutoSize = true;
- this.radioButton4.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.radioButton4.Location = new System.Drawing.Point(371, 13);
- this.radioButton4.Name = "radioButton4";
- this.radioButton4.Size = new System.Drawing.Size(55, 24);
- this.radioButton4.TabIndex = 1620;
- this.radioButton4.TabStop = true;
- this.radioButton4.Text = "急诊";
- this.radioButton4.UseVisualStyleBackColor = true;
- //
- // radioButton6
- //
- this.radioButton6.AutoSize = true;
- this.radioButton6.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.radioButton6.Location = new System.Drawing.Point(245, 13);
- this.radioButton6.Name = "radioButton6";
- this.radioButton6.Size = new System.Drawing.Size(106, 24);
- this.radioButton6.TabIndex = 1619;
- this.radioButton6.TabStop = true;
- this.radioButton6.Text = "非计划入ICU";
- this.radioButton6.UseVisualStyleBackColor = true;
- //
- // radioButton3
- //
- this.radioButton3.AutoSize = true;
- this.radioButton3.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.radioButton3.Location = new System.Drawing.Point(175, 13);
- this.radioButton3.Name = "radioButton3";
- this.radioButton3.Size = new System.Drawing.Size(50, 24);
- this.radioButton3.TabIndex = 1619;
- this.radioButton3.TabStop = true;
- this.radioButton3.Text = "ICU";
- this.radioButton3.UseVisualStyleBackColor = true;
- //
- // radioButton1
- //
- this.radioButton1.AutoSize = true;
- this.radioButton1.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.radioButton1.Location = new System.Drawing.Point(100, 13);
- this.radioButton1.Name = "radioButton1";
- this.radioButton1.Size = new System.Drawing.Size(55, 24);
- this.radioButton1.TabIndex = 1617;
- this.radioButton1.TabStop = true;
- this.radioButton1.Text = "病房";
- this.radioButton1.UseVisualStyleBackColor = true;
- //
- // radioButton2
- //
- this.radioButton2.AutoSize = true;
- this.radioButton2.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.radioButton2.Location = new System.Drawing.Point(11, 13);
- this.radioButton2.Name = "radioButton2";
- this.radioButton2.Size = new System.Drawing.Size(69, 24);
- this.radioButton2.TabIndex = 1616;
- this.radioButton2.TabStop = true;
- this.radioButton2.Text = "恢复室";
- this.radioButton2.UseVisualStyleBackColor = true;
+ this.label16.AutoSize = true;
+ this.label16.Font = new System.Drawing.Font("微软雅黑", 10.5F);
+ this.label16.Location = new System.Drawing.Point(226, 60);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(65, 20);
+ this.label16.TabIndex = 39;
+ this.label16.Text = "变更原因";
+ this.label16.Visible = false;
//
// frmOperationInfoNew2
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.AutoScroll = true;
this.BackColor = System.Drawing.Color.AliceBlue;
- this.ClientSize = new System.Drawing.Size(1048, 374);
- this.Controls.Add(this.groupBox4);
- this.Controls.Add(this.groupBox5);
+ this.ClientSize = new System.Drawing.Size(555, 374);
this.Controls.Add(this.groupBox8);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
@@ -1093,7 +711,6 @@
this.Name = "frmOperationInfoNew2";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "手术信息";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmOperationInfoNew2_FormClosing);
this.Load += new System.EventHandler(this.frmOperationInfoNew2_Load);
this.groupBox2.ResumeLayout(false);
@@ -1107,11 +724,6 @@
this.panel1.ResumeLayout(false);
this.groupBox8.ResumeLayout(false);
this.groupBox8.PerformLayout();
- this.groupBox5.ResumeLayout(false);
- this.groupBox5.PerformLayout();
- this.groupBox4.ResumeLayout(false);
- this.panel3.ResumeLayout(false);
- this.panel3.PerformLayout();
this.ResumeLayout(false);
}
@@ -1123,17 +735,8 @@
public System.Windows.Forms.Label label19;
public System.Windows.Forms.ComboBox cboOperationLevel;
private System.Windows.Forms.Label label20;
- public System.Windows.Forms.Label label35;
- private DevComponents.DotNetBar.Controls.TextBoxX txtOperationSiteId;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.GroupBox groupBox8;
- private System.Windows.Forms.GroupBox groupBox5;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.ComboBox cbomzxg;
- private System.Windows.Forms.ComboBox cbomzpm;
- public System.Windows.Forms.Label label21;
- public System.Windows.Forms.ComboBox cmbBRQK;
private System.Windows.Forms.Panel panel5;
public System.Windows.Forms.Label label26;
public System.Windows.Forms.Label label28;
@@ -1163,22 +766,6 @@
private System.Windows.Forms.RadioButton rdoNo;
private System.Windows.Forms.Label lblIsCompound;
public System.Windows.Forms.ComboBox txtOperationCut;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.ComboBox cboSteward;
- private System.Windows.Forms.ComboBox cboZTHDD;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.ComboBox cboHXDTCCD;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.ComboBox cboQXCD;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.GroupBox groupBox4;
- private System.Windows.Forms.Panel panel3;
- private System.Windows.Forms.RadioButton radioButton7;
- private System.Windows.Forms.RadioButton radioButton5;
- private System.Windows.Forms.RadioButton radioButton4;
- private System.Windows.Forms.RadioButton radioButton6;
- private System.Windows.Forms.RadioButton radioButton3;
- private System.Windows.Forms.RadioButton radioButton1;
- private System.Windows.Forms.RadioButton radioButton2;
+ private System.Windows.Forms.Label label1;
}
}
\ No newline at end of file
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmSeleteRoom.designer.cs b/AIMS/OperationDoing/AnasRecordBill/frmSeleteRoom.designer.cs
index d8e0c39..12e321c 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmSeleteRoom.designer.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmSeleteRoom.designer.cs
@@ -39,13 +39,13 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
//
this.panel1.Location = new System.Drawing.Point(15, 12);
this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(177, 160);
+ this.panel1.Size = new System.Drawing.Size(177, 232);
this.panel1.TabIndex = 0;
//
// btnDelete
//
this.btnDelete.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
- this.btnDelete.Location = new System.Drawing.Point(12, 178);
+ this.btnDelete.Location = new System.Drawing.Point(14, 250);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(86, 30);
this.btnDelete.TabIndex = 4;
@@ -55,7 +55,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
// btnSave
//
this.btnSave.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
- this.btnSave.Location = new System.Drawing.Point(104, 178);
+ this.btnSave.Location = new System.Drawing.Point(106, 250);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(86, 30);
this.btnSave.TabIndex = 3;
@@ -66,7 +66,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(210, 225);
+ this.ClientSize = new System.Drawing.Size(210, 286);
this.Controls.Add(this.btnDelete);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.panel1);
diff --git a/AIMS/OperationFront/frmSelectiveOperationsPrint.cs b/AIMS/OperationFront/frmSelectiveOperationsPrint.cs
index 9b8d333..c4ae96e 100644
--- a/AIMS/OperationFront/frmSelectiveOperationsPrint.cs
+++ b/AIMS/OperationFront/frmSelectiveOperationsPrint.cs
@@ -1,4 +1,5 @@
using AIMSBLL;
+using AxNsoOfficeLib;
using System;
using System.Collections.Generic;
using System.Data;
@@ -30,7 +31,7 @@ namespace AIMS.OperationFront.UI
{
if (beginTime == null || dt == null) beginTime = DateTime.Now;
dtpTime.Value = beginTime;
- cboOperationRoom.SelectedIndexChanged += new EventHandler(cboOperationRoom_SelectedIndexChanged);
+ cboOperationRoom.SelectedIndexChanged += new EventHandler(cboOperationRoom_SelectedIndexChanged);
}
private void FullDgv(DataTable operationApplys)
@@ -46,52 +47,40 @@ namespace AIMS.OperationFront.UI
int index = this.dgvApplyOrDoctor.Rows.Add();
this.dgvApplyOrDoctor.Rows[index].Cells["Id"].Value = dr["ApplyId"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["Index"].Value = num;
- num++;
- this.dgvApplyOrDoctor.Rows[index].Cells["InHospitalNo"].Value = dr["MdrecNo"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["PlanOperationRoomName"].Value = dr["OperationRoom"].ToString();
- this.dgvApplyOrDoctor.Rows[index].Cells["PatientName"].Value = dr["PatientName"].ToString() + "(" + dr["Sex"].ToString() + "," + dr["BirthDay"].ToString() + ")";
+ this.dgvApplyOrDoctor.Rows[index].Cells["PlanOrder"].Value = dr["PlanOrder"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["OrderOperationTime"].Value = DateTime.Parse(dr["OrderOperationTime"].ToString() ).ToString("HH:mm");
this.dgvApplyOrDoctor.Rows[index].Cells["DepartmentId"].Value = dr["ApplyDepName"].ToString();
- this.dgvApplyOrDoctor.Rows[index].Cells["Operation"].Value = dr["ApplyOperationInfoName"].ToString();
- //this.dgvApplyOrDoctor.Rows[index].Cells["OperationDoctor"].Value = dr["OperationDoctor"].ToString();
- this.dgvApplyOrDoctor.Rows[index].Cells["AnaesthesiaMethodId"].Value = dr["AnaesthesiaMethodName"].ToString();
- string OrderOperationTime = dr["OrderOperationTime"].ToString();
- this.dgvApplyOrDoctor.Rows[index].Cells["OrderOperationTime"].Value = DateTime.Parse(OrderOperationTime).ToString("HH:mm");
+ this.dgvApplyOrDoctor.Rows[index].Cells["SickBed"].Value = dr["SickBed"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["InHospitalNo"].Value = dr["MdrecNo"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["PatientName"].Value = dr["PatientName"].ToString() + "(" + dr["Sex"].ToString() + "," + dr["Age"].ToString() + ")";
+ this.dgvApplyOrDoctor.Rows[index].Cells["ApplyDiagnoseInfoName"].Value = dr["ApplyDiagnoseInfoName"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["Operation"].Value = dr["ApplyOperationInfoName"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["OperationDoctor"].Value = dr["OperationDoctor"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["Assistant"].Value = dr["Assistant"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["AnaesthesiaMethodId"].Value = dr["AnaesthesiaMethodName"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["AnesthesiaDoctor"].Value = dr["AnesthesiaDoctor"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["InstrumentNurse"].Value = dr["InstrumentNurse"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["TourNurse"].Value = dr["TourNurse"].ToString();
+ this.dgvApplyOrDoctor.Rows[index].Cells["Remark"].Value = dr["Remark"].ToString();
if (dr["OperationType"].ToString().Equals("急诊"))
{
this.dgvApplyOrDoctor.Rows[index].DefaultCellStyle.BackColor = Color.Red;
}
- this.dgvApplyOrDoctor.Rows[index].Cells["Remark"].Value = dr["Remark"].ToString();
- //this.dgvApplyOrDoctor.Rows[index].Cells["OperationSite"].Value = dr["OperationSite"].ToString();
+ num++;
}
}
}
- ///
- /// 择期通知单数据
- ///
- private void ReportData(DataTable dtt)
- {
-
- //ReportParameter PrintDate = new ReportParameter("PlanCount", beginTime.ToString("yyyy-MM-dd") + " 共(" + dtt.Rows.Count + ")台手术");
- //rptQuietRecordSheet.Reset();
- //rptQuietRecordSheet.LocalReport.DataSources.Clear();
- //rptQuietRecordSheet.LocalReport.ReportEmbeddedResource = "AIMS.ReportManager.ReportTemplate.OperationPlanReport.rdlc";
- //rptQuietRecordSheet.LocalReport.SetParameters(new ReportParameter[] { PrintDate });
- //Microsoft.Reporting.WinForms.ReportDataSource rds = new Microsoft.Reporting.WinForms.ReportDataSource("OperationPlanDataTable", dtt);
- //rptQuietRecordSheet.LocalReport.DataSources.Add(rds);
- //rptQuietRecordSheet.RefreshReport();
-
- }
-
private void btnBeforeDay_Click(object sender, EventArgs e)
{
- dtpTime.Value = dtpTime.Value.AddDays(-1);
+ dtpTime.Value = dtpTime.Value.AddDays(-1);
}
private void btnAfterDay_Click(object sender, EventArgs e)
{
- dtpTime.Value = dtpTime.Value.AddDays(1);
+ dtpTime.Value = dtpTime.Value.AddDays(1);
}
private void dtpTime_ValueChanged(object sender, EventArgs e)
@@ -105,17 +94,15 @@ namespace AIMS.OperationFront.UI
{
if (cboOperationRoom.SelectedIndex > 0)
{
- dt = BOperationApply.SelectPlanedOpeByRoom("OrderOperationTime>='" + dtpTime.Value.ToString("yyyy-MM-dd 00:00:00") + "' and OrderOperationTime<='" + dtpTime.Value.ToString("yyyy-MM-dd 23:59:59") + "' and OperationRoom = '" + cboOperationRoom.Text + "' Order By OperationRoomID ,PlanOrder");
+ dt = BOperationReview.GetOperationPlanDataTable("OrderOperationTime>='" + dtpTime.Value.ToString("yyyy-MM-dd 00:00:00") + "' and OrderOperationTime<='" + dtpTime.Value.ToString("yyyy-MM-dd 23:59:59") + "' and OperationRoom = '" + cboOperationRoom.Text + "' Order By OperationRoomID ,PlanOrder");
}
else if (cboOperationRoom.SelectedIndex <= 0)
{
- dt = BOperationApply.SelectPlanedOpeByRoom("OrderOperationTime>='" + dtpTime.Value.ToString("yyyy-MM-dd 00:00:00") + "' and OrderOperationTime<='" + dtpTime.Value.ToString("yyyy-MM-dd 23:59:59") + "' Order By OperationRoomID ,PlanOrder");
+ dt = BOperationReview.GetOperationPlanDataTable("OrderOperationTime>='" + dtpTime.Value.ToString("yyyy-MM-dd 00:00:00") + "' and OrderOperationTime<='" + dtpTime.Value.ToString("yyyy-MM-dd 23:59:59") + "' Order By OperationRoomID ,PlanOrder");
}
if (dt == null) return;
FullDgv(dt);
dgvApplyOrDoctor.ClearSelection();
- DataTable dtt = BOperationReview.GetOperationPlanDataTable(beginTime, endTime, "");
- ReportData(dtt);
}
private void dgvApplyOrDoctor_MouseUp(object sender, MouseEventArgs e)
@@ -128,17 +115,6 @@ namespace AIMS.OperationFront.UI
DataGridViewCell senderdgvr = item.Cells[0];
senderdgvr.Value = (senderdgvr.EditedFormattedValue.ToString() == "True") ? false : true;
}
- List SelectIds = GetSelectIds();
- if (SelectIds.Count > 0)
- {
- string Ids = string.Join(",", SelectIds);
- DataTable dtt = BOperationReview.GetOperationPlanDataTable(" of1.[ApplyId] in (" + Ids + ") ");
- ReportData(dtt);
- }
- else
- {
- cboOperationRoom_SelectedIndexChanged(null, null);
- }
}
private List GetSelectIds()
@@ -161,5 +137,78 @@ namespace AIMS.OperationFront.UI
{
cboOperationRoom_SelectedIndexChanged(null, null);
}
+
+ private void btnPrint_Click(object sender, EventArgs e)
+ {
+ GoldPrinter.ExcelAccess excel = new GoldPrinter.ExcelAccess();
+ string strFileName = "手术排程模板.xlt"; //模板文件名
+ string strExcelTemplateFile = AppDomain.CurrentDomain.BaseDirectory;
+ strExcelTemplateFile += @"\Template\" + strFileName;
+ excel.Open(strExcelTemplateFile); //用模板文件
+ int rowNum = 4;
+ DateTime dtBegin = reBeginTime(dtpTime.Value, "begin");
+ DateTime dtEnd = reBeginTime(dtpTime.Value, "end");
+ DataTable dtt = new DataTable();
+ List SelectIds = GetSelectIds();
+ if (SelectIds.Count > 0)
+ {
+ string Ids = string.Join(",", SelectIds);
+ dtt = BOperationReview.GetOperationPlanDataTable(" of1.[ApplyId] in (" + Ids + ") ");
+ }
+ else
+ {
+ dtt = BOperationReview.GetOperationPlanDataTable(beginTime, endTime, "");
+ }
+ excel.SetCellText(3, "L", dtpTime.Value.ToShortDateString());
+ for (int j = 0; j < dtt.Rows.Count; j++)
+ {
+ rowNum++;
+ DataRow temp = dtt.Rows[j];
+ excel.GetRange(rowNum, "A", rowNum, "R").RowHeight = 24.75;
+ excel.GetRange(rowNum, "A", rowNum, "R").Borders.LineStyle = Microsoft.Office.Interop.Excel.XlLineStyle.xlContinuous;
+ excel.GetRange(rowNum, "A", rowNum, "R").Value = new string[]{
+ temp[1].ToString(),
+ temp[2].ToString(),
+ temp[3].ToString(),
+ temp[4].ToString(),
+ temp[5].ToString(),
+ temp[6].ToString(),
+ temp[7].ToString(),
+ temp[8].ToString(),
+ temp[9].ToString(),
+ temp[10].ToString(),
+ temp[11].ToString(),
+ temp[12].ToString(),
+ temp[13].ToString(),
+ temp[14].ToString(),
+ temp[15].ToString(),
+ temp[16].ToString(),
+ temp[17].ToString(),
+ temp[18].ToString()
+ };
+
+ }
+ excel.PrintPreview();
+ this.Focus();
+ excel.Close();
+ }
+
+ private void btnReview_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ ///
+ /// 返回指定格式的日期
+ ///
+ /// 传入的日期
+ /// 标记,begin,end,其它任务标记全返回输入的日期
+ ///
+ public DateTime reBeginTime(DateTime dt, string flag)
+ {
+ if (flag == "begin") return dt.Date.AddSeconds(1);
+ if (flag == "end") return dt.Date.AddHours(23).AddMinutes(59).AddSeconds(59);
+ return dt;
+ }
}
}
diff --git a/AIMS/OperationFront/frmSelectiveOperationsPrint.designer.cs b/AIMS/OperationFront/frmSelectiveOperationsPrint.designer.cs
index 4b038d6..98a7f48 100644
--- a/AIMS/OperationFront/frmSelectiveOperationsPrint.designer.cs
+++ b/AIMS/OperationFront/frmSelectiveOperationsPrint.designer.cs
@@ -32,12 +32,6 @@ namespace AIMS.OperationFront.UI
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
@@ -45,6 +39,15 @@ namespace AIMS.OperationFront.UI
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
+ System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSelectiveOperationsPrint));
this.panel1 = new System.Windows.Forms.Panel();
this.rbosh = new System.Windows.Forms.RadioButton();
@@ -54,22 +57,13 @@ namespace AIMS.OperationFront.UI
this.label1 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.btnBeforeDay = new DevComponents.DotNetBar.ButtonX();
+ this.btnReview = new DevComponents.DotNetBar.ButtonX();
+ this.btnPrint = new DevComponents.DotNetBar.ButtonX();
this.btnAfterDay = new DevComponents.DotNetBar.ButtonX();
this.dtpTime = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
this.panel2 = new System.Windows.Forms.Panel();
this.dgvApplyOrDoctor = new DevComponents.DotNetBar.Controls.DataGridViewX();
this.Column1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Index = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.PlanOperationRoomName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DepartmentId = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.OperationDoctor = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.OrderOperationTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.PatientName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Operation = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Remark = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.InHospitalNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.AnaesthesiaMethodId = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
@@ -81,6 +75,31 @@ namespace AIMS.OperationFront.UI
this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Index = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.PlanOperationRoomName = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.PlanOrder = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.OrderOperationTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.DepartmentId = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.SickBed = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.InHospitalNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.PatientName = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.ApplyDiagnoseInfoName = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Operation = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.OperationDoctor = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Assistant = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.AnaesthesiaMethodId = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.AnesthesiaDoctor = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.InstrumentNurse = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.TourNurse = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Remark = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dtpTime)).BeginInit();
this.panel2.SuspendLayout();
@@ -96,12 +115,14 @@ namespace AIMS.OperationFront.UI
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.btnBeforeDay);
+ this.panel1.Controls.Add(this.btnReview);
+ this.panel1.Controls.Add(this.btnPrint);
this.panel1.Controls.Add(this.btnAfterDay);
this.panel1.Controls.Add(this.dtpTime);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(12, 0);
this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1151, 59);
+ this.panel1.Size = new System.Drawing.Size(1286, 59);
this.panel1.TabIndex = 0;
//
// rbosh
@@ -188,6 +209,32 @@ namespace AIMS.OperationFront.UI
this.btnBeforeDay.Text = "前一天";
this.btnBeforeDay.Click += new System.EventHandler(this.btnBeforeDay_Click);
//
+ // btnReview
+ //
+ this.btnReview.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
+ this.btnReview.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
+ this.btnReview.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnReview.Location = new System.Drawing.Point(1054, 13);
+ this.btnReview.Name = "btnReview";
+ this.btnReview.Size = new System.Drawing.Size(86, 34);
+ this.btnReview.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.btnReview.TabIndex = 498;
+ this.btnReview.Text = "预览";
+ this.btnReview.Click += new System.EventHandler(this.btnReview_Click);
+ //
+ // btnPrint
+ //
+ this.btnPrint.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
+ this.btnPrint.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
+ this.btnPrint.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnPrint.Location = new System.Drawing.Point(1165, 13);
+ this.btnPrint.Name = "btnPrint";
+ this.btnPrint.Size = new System.Drawing.Size(86, 34);
+ this.btnPrint.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.btnPrint.TabIndex = 498;
+ this.btnPrint.Text = "打印";
+ this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
+ //
// btnAfterDay
//
this.btnAfterDay.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
@@ -238,10 +285,10 @@ namespace AIMS.OperationFront.UI
// panel2
//
this.panel2.Controls.Add(this.dgvApplyOrDoctor);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel2.Location = new System.Drawing.Point(12, 59);
this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(280, 491);
+ this.panel2.Size = new System.Drawing.Size(1286, 491);
this.panel2.TabIndex = 2;
//
// dgvApplyOrDoctor
@@ -265,14 +312,21 @@ namespace AIMS.OperationFront.UI
this.Id,
this.Index,
this.PlanOperationRoomName,
- this.DepartmentId,
- this.OperationDoctor,
+ this.PlanOrder,
this.OrderOperationTime,
- this.PatientName,
- this.Operation,
- this.Remark,
+ this.DepartmentId,
+ this.SickBed,
this.InHospitalNo,
- this.AnaesthesiaMethodId});
+ this.PatientName,
+ this.ApplyDiagnoseInfoName,
+ this.Operation,
+ this.OperationDoctor,
+ this.Assistant,
+ this.AnaesthesiaMethodId,
+ this.AnesthesiaDoctor,
+ this.InstrumentNurse,
+ this.TourNurse,
+ this.Remark});
dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle8.Font = new System.Drawing.Font("宋体", 10.5F);
@@ -298,7 +352,7 @@ namespace AIMS.OperationFront.UI
this.dgvApplyOrDoctor.RowHeadersVisible = false;
this.dgvApplyOrDoctor.RowTemplate.Height = 23;
this.dgvApplyOrDoctor.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvApplyOrDoctor.Size = new System.Drawing.Size(280, 491);
+ this.dgvApplyOrDoctor.Size = new System.Drawing.Size(1286, 491);
this.dgvApplyOrDoctor.TabIndex = 62;
this.dgvApplyOrDoctor.MouseUp += new System.Windows.Forms.MouseEventHandler(this.dgvApplyOrDoctor_MouseUp);
//
@@ -310,95 +364,6 @@ namespace AIMS.OperationFront.UI
this.Column1.TrueValue = "1";
this.Column1.Width = 30;
//
- // Id
- //
- this.Id.HeaderText = "编号";
- this.Id.Name = "Id";
- this.Id.ReadOnly = true;
- this.Id.Visible = false;
- //
- // Index
- //
- this.Index.HeaderText = "序号";
- this.Index.Name = "Index";
- this.Index.ReadOnly = true;
- this.Index.Visible = false;
- this.Index.Width = 40;
- //
- // PlanOperationRoomName
- //
- this.PlanOperationRoomName.HeaderText = "术间";
- this.PlanOperationRoomName.Name = "PlanOperationRoomName";
- this.PlanOperationRoomName.ReadOnly = true;
- this.PlanOperationRoomName.Width = 60;
- //
- // DepartmentId
- //
- dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.DepartmentId.DefaultCellStyle = dataGridViewCellStyle2;
- this.DepartmentId.HeaderText = "科室";
- this.DepartmentId.Name = "DepartmentId";
- this.DepartmentId.ReadOnly = true;
- this.DepartmentId.Width = 120;
- //
- // OperationDoctor
- //
- dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.OperationDoctor.DefaultCellStyle = dataGridViewCellStyle3;
- this.OperationDoctor.HeaderText = "医师";
- this.OperationDoctor.Name = "OperationDoctor";
- this.OperationDoctor.ReadOnly = true;
- this.OperationDoctor.Visible = false;
- this.OperationDoctor.Width = 65;
- //
- // OrderOperationTime
- //
- dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.OrderOperationTime.DefaultCellStyle = dataGridViewCellStyle4;
- this.OrderOperationTime.HeaderText = "时间";
- this.OrderOperationTime.Name = "OrderOperationTime";
- this.OrderOperationTime.ReadOnly = true;
- this.OrderOperationTime.Width = 65;
- //
- // PatientName
- //
- dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 11F);
- this.PatientName.DefaultCellStyle = dataGridViewCellStyle5;
- this.PatientName.HeaderText = "姓名";
- this.PatientName.Name = "PatientName";
- this.PatientName.ReadOnly = true;
- this.PatientName.Width = 160;
- //
- // Operation
- //
- dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 11F);
- this.Operation.DefaultCellStyle = dataGridViewCellStyle6;
- this.Operation.HeaderText = "手术";
- this.Operation.Name = "Operation";
- this.Operation.ReadOnly = true;
- //
- // Remark
- //
- dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.Remark.DefaultCellStyle = dataGridViewCellStyle7;
- this.Remark.HeaderText = "备注";
- this.Remark.Name = "Remark";
- this.Remark.ReadOnly = true;
- //
- // InHospitalNo
- //
- this.InHospitalNo.HeaderText = "住院号";
- this.InHospitalNo.Name = "InHospitalNo";
- this.InHospitalNo.ReadOnly = true;
- this.InHospitalNo.Width = 80;
- //
- // AnaesthesiaMethodId
- //
- this.AnaesthesiaMethodId.HeaderText = "拟施麻醉";
- this.AnaesthesiaMethodId.Name = "AnaesthesiaMethodId";
- this.AnaesthesiaMethodId.ReadOnly = true;
- this.AnaesthesiaMethodId.Visible = false;
- //
// dataGridViewTextBoxColumn1
//
this.dataGridViewTextBoxColumn1.HeaderText = "编号";
@@ -469,6 +434,7 @@ namespace AIMS.OperationFront.UI
this.dataGridViewTextBoxColumn8.HeaderText = "备注";
this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
this.dataGridViewTextBoxColumn8.ReadOnly = true;
+ this.dataGridViewTextBoxColumn8.Width = 80;
//
// dataGridViewTextBoxColumn9
//
@@ -489,24 +455,205 @@ namespace AIMS.OperationFront.UI
//
// dataGridViewTextBoxColumn11
//
+ dataGridViewCellStyle17.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.dataGridViewTextBoxColumn11.DefaultCellStyle = dataGridViewCellStyle17;
this.dataGridViewTextBoxColumn11.HeaderText = "拟施麻醉";
this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
this.dataGridViewTextBoxColumn11.ReadOnly = true;
this.dataGridViewTextBoxColumn11.Visible = false;
//
+ // dataGridViewTextBoxColumn12
+ //
+ dataGridViewCellStyle18.Font = new System.Drawing.Font("微软雅黑", 12F);
+ this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle18;
+ this.dataGridViewTextBoxColumn12.HeaderText = "医师";
+ this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
+ this.dataGridViewTextBoxColumn12.Width = 65;
+ //
+ // dataGridViewTextBoxColumn13
+ //
+ this.dataGridViewTextBoxColumn13.HeaderText = "助手";
+ this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
+ this.dataGridViewTextBoxColumn13.Width = 65;
+ //
+ // dataGridViewTextBoxColumn14
+ //
+ this.dataGridViewTextBoxColumn14.HeaderText = "拟施麻醉";
+ this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
+ this.dataGridViewTextBoxColumn14.Visible = false;
+ //
+ // dataGridViewTextBoxColumn15
+ //
+ this.dataGridViewTextBoxColumn15.HeaderText = "麻醉医生";
+ this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
+ //
+ // dataGridViewTextBoxColumn16
+ //
+ this.dataGridViewTextBoxColumn16.HeaderText = "洗手护士";
+ this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
+ this.dataGridViewTextBoxColumn16.Width = 65;
+ //
+ // dataGridViewTextBoxColumn17
+ //
+ this.dataGridViewTextBoxColumn17.HeaderText = "巡回护士";
+ this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
+ this.dataGridViewTextBoxColumn17.Width = 65;
+ //
+ // dataGridViewTextBoxColumn18
+ //
+ dataGridViewCellStyle19.Font = new System.Drawing.Font("微软雅黑", 12F);
+ this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle19;
+ this.dataGridViewTextBoxColumn18.HeaderText = "备注";
+ this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
+ //
+ // Id
+ //
+ this.Id.HeaderText = "编号";
+ this.Id.Name = "Id";
+ this.Id.ReadOnly = true;
+ this.Id.Visible = false;
+ //
+ // Index
+ //
+ this.Index.HeaderText = "序号";
+ this.Index.Name = "Index";
+ this.Index.ReadOnly = true;
+ this.Index.Visible = false;
+ this.Index.Width = 40;
+ //
+ // PlanOperationRoomName
+ //
+ this.PlanOperationRoomName.HeaderText = "术间";
+ this.PlanOperationRoomName.Name = "PlanOperationRoomName";
+ this.PlanOperationRoomName.ReadOnly = true;
+ this.PlanOperationRoomName.Width = 60;
+ //
+ // PlanOrder
+ //
+ this.PlanOrder.HeaderText = "台次";
+ this.PlanOrder.Name = "PlanOrder";
+ this.PlanOrder.ReadOnly = true;
+ this.PlanOrder.Width = 30;
+ //
+ // OrderOperationTime
+ //
+ dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F);
+ this.OrderOperationTime.DefaultCellStyle = dataGridViewCellStyle2;
+ this.OrderOperationTime.HeaderText = "时间";
+ this.OrderOperationTime.Name = "OrderOperationTime";
+ this.OrderOperationTime.ReadOnly = true;
+ this.OrderOperationTime.Width = 65;
+ //
+ // DepartmentId
+ //
+ dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F);
+ this.DepartmentId.DefaultCellStyle = dataGridViewCellStyle3;
+ this.DepartmentId.HeaderText = "科室";
+ this.DepartmentId.Name = "DepartmentId";
+ this.DepartmentId.ReadOnly = true;
+ this.DepartmentId.Width = 120;
+ //
+ // SickBed
+ //
+ this.SickBed.HeaderText = "床号";
+ this.SickBed.Name = "SickBed";
+ this.SickBed.ReadOnly = true;
+ this.SickBed.Width = 50;
+ //
+ // InHospitalNo
+ //
+ this.InHospitalNo.HeaderText = "住院号";
+ this.InHospitalNo.Name = "InHospitalNo";
+ this.InHospitalNo.ReadOnly = true;
+ this.InHospitalNo.Width = 80;
+ //
+ // PatientName
+ //
+ dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.PatientName.DefaultCellStyle = dataGridViewCellStyle4;
+ this.PatientName.HeaderText = "姓名";
+ this.PatientName.Name = "PatientName";
+ this.PatientName.ReadOnly = true;
+ this.PatientName.Width = 160;
+ //
+ // ApplyDiagnoseInfoName
+ //
+ this.ApplyDiagnoseInfoName.HeaderText = "诊断";
+ this.ApplyDiagnoseInfoName.Name = "ApplyDiagnoseInfoName";
+ this.ApplyDiagnoseInfoName.ReadOnly = true;
+ //
+ // Operation
+ //
+ dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.Operation.DefaultCellStyle = dataGridViewCellStyle5;
+ this.Operation.HeaderText = "手术";
+ this.Operation.Name = "Operation";
+ this.Operation.ReadOnly = true;
+ //
+ // OperationDoctor
+ //
+ dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 12F);
+ this.OperationDoctor.DefaultCellStyle = dataGridViewCellStyle6;
+ this.OperationDoctor.HeaderText = "医师";
+ this.OperationDoctor.Name = "OperationDoctor";
+ this.OperationDoctor.ReadOnly = true;
+ this.OperationDoctor.Width = 65;
+ //
+ // Assistant
+ //
+ this.Assistant.HeaderText = "助手";
+ this.Assistant.Name = "Assistant";
+ this.Assistant.ReadOnly = true;
+ this.Assistant.Width = 65;
+ //
+ // AnaesthesiaMethodId
+ //
+ this.AnaesthesiaMethodId.HeaderText = "拟施麻醉";
+ this.AnaesthesiaMethodId.Name = "AnaesthesiaMethodId";
+ this.AnaesthesiaMethodId.ReadOnly = true;
+ this.AnaesthesiaMethodId.Visible = false;
+ //
+ // AnesthesiaDoctor
+ //
+ this.AnesthesiaDoctor.HeaderText = "麻醉医生";
+ this.AnesthesiaDoctor.Name = "AnesthesiaDoctor";
+ this.AnesthesiaDoctor.ReadOnly = true;
+ //
+ // InstrumentNurse
+ //
+ this.InstrumentNurse.HeaderText = "洗手护士";
+ this.InstrumentNurse.Name = "InstrumentNurse";
+ this.InstrumentNurse.ReadOnly = true;
+ this.InstrumentNurse.Width = 65;
+ //
+ // TourNurse
+ //
+ this.TourNurse.HeaderText = "巡回护士";
+ this.TourNurse.Name = "TourNurse";
+ this.TourNurse.ReadOnly = true;
+ this.TourNurse.Width = 65;
+ //
+ // Remark
+ //
+ dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F);
+ this.Remark.DefaultCellStyle = dataGridViewCellStyle7;
+ this.Remark.HeaderText = "备注";
+ this.Remark.Name = "Remark";
+ this.Remark.ReadOnly = true;
+ //
// frmSelectiveOperationsPrint
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1163, 550);
+ this.ClientSize = new System.Drawing.Size(1298, 550);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Font = new System.Drawing.Font("宋体", 10.5F);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmSelectiveOperationsPrint";
this.Padding = new System.Windows.Forms.Padding(12, 0, 0, 0);
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "打印手术排程表";
- this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.QuietOperationRecordSheet_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
@@ -537,22 +684,38 @@ namespace AIMS.OperationFront.UI
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
- private System.Windows.Forms.DataGridViewCheckBoxColumn Column1;
- private System.Windows.Forms.DataGridViewTextBoxColumn Id;
- private System.Windows.Forms.DataGridViewTextBoxColumn Index;
- private System.Windows.Forms.DataGridViewTextBoxColumn PlanOperationRoomName;
- private System.Windows.Forms.DataGridViewTextBoxColumn DepartmentId;
- private System.Windows.Forms.DataGridViewTextBoxColumn OperationDoctor;
- private System.Windows.Forms.DataGridViewTextBoxColumn OrderOperationTime;
- private System.Windows.Forms.DataGridViewTextBoxColumn PatientName;
- private System.Windows.Forms.DataGridViewTextBoxColumn Operation;
- private System.Windows.Forms.DataGridViewTextBoxColumn Remark;
- private System.Windows.Forms.DataGridViewTextBoxColumn InHospitalNo;
- private System.Windows.Forms.DataGridViewTextBoxColumn AnaesthesiaMethodId;
private System.Windows.Forms.RadioButton rbosh;
private System.Windows.Forms.RadioButton rbosq;
private System.Windows.Forms.RadioButton rboall;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
private System.Windows.Forms.Label label1;
+ private DevComponents.DotNetBar.ButtonX btnReview;
+ private DevComponents.DotNetBar.ButtonX btnPrint;
+ private System.Windows.Forms.DataGridViewCheckBoxColumn Column1;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Id;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Index;
+ private System.Windows.Forms.DataGridViewTextBoxColumn PlanOperationRoomName;
+ private System.Windows.Forms.DataGridViewTextBoxColumn PlanOrder;
+ private System.Windows.Forms.DataGridViewTextBoxColumn OrderOperationTime;
+ private System.Windows.Forms.DataGridViewTextBoxColumn DepartmentId;
+ private System.Windows.Forms.DataGridViewTextBoxColumn SickBed;
+ private System.Windows.Forms.DataGridViewTextBoxColumn InHospitalNo;
+ private System.Windows.Forms.DataGridViewTextBoxColumn PatientName;
+ private System.Windows.Forms.DataGridViewTextBoxColumn ApplyDiagnoseInfoName;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Operation;
+ private System.Windows.Forms.DataGridViewTextBoxColumn OperationDoctor;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Assistant;
+ private System.Windows.Forms.DataGridViewTextBoxColumn AnaesthesiaMethodId;
+ private System.Windows.Forms.DataGridViewTextBoxColumn AnesthesiaDoctor;
+ private System.Windows.Forms.DataGridViewTextBoxColumn InstrumentNurse;
+ private System.Windows.Forms.DataGridViewTextBoxColumn TourNurse;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Remark;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
}
}
\ No newline at end of file
diff --git a/AIMS/OperationFront/frmSelectiveOperationsPrint.resx b/AIMS/OperationFront/frmSelectiveOperationsPrint.resx
index b84c715..134305d 100644
--- a/AIMS/OperationFront/frmSelectiveOperationsPrint.resx
+++ b/AIMS/OperationFront/frmSelectiveOperationsPrint.resx
@@ -120,171 +120,1158 @@
True
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
- AAABAAEAMDAAAAEAIACoJQAAFgAAACgAAAAwAAAAYAAAAAEAIAAAAAAAACQAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAPSkQgL1pUIO9aVCMPWlQj71pUJA9aVCPvSkQj70pEI+9aRCPvSkQj71pUI+9KVCPvSk
- Qj71pUI+9KVCPvWkQj71pEI+9KRCPvWkQj71pUI+9KRBPvKgPT7umDI+7ZUvPu2WMD7tlTA+7ZUwPu2W
- MD7tlS8+7ZUwPu2WLz7tli8+7ZUwPu2VLz7tli8+7ZYwPu2VLz7tlS8+7ZUwPuyWMEDslS8+7JYwMO2W
- Lw7tljACAAAAAAAAAAAAAAAA9aVCBPWlQij1pUJy9aVCr/WlQr31pUK/9aVCv/WlQr/1pUK/9KVBv/Sl
- Qr/1pUK/9KRBv/SkQr/1pUK/9KRBv/WlQr/1pUK/9KVCv/SlQr/1pUK/9KRBv/KgPb/umDK/7ZYvv+yV
- L7/sljC/7JUvv+yWML/slTC/7JYvv+yWL7/sljC/7ZYwv+yVL7/tljC/7JUvv+yVL7/sljC/7ZYwv+2W
- ML/tljC97ZYvr+2WL3LtlTAo7JYwBAAAAAD1pUIC9aVCKPWlQo30pUHN9KVB2/WlQtv0pEHb9aVB2/Sk
- Qdv0pEHb9aVC2/WlQtv1pUHb9KRC2/WlQtv1pELb9aRC2/WlQtv1pULb9aRC2/WlQtv1pULb9aVC2/Oi
- PtvumDLb7ZUv2+2VMNvtlTDb7ZYw2+2WMNvtlTDb7ZYw2+2VMNvtljDb7JYv2+2VMNvtljDb7ZYw2+2V
- MNvtljDb7ZYw2+2WMNvtljDb7JYv2+2WL83slTCN7ZUvKO2WMAL0pEEQ9KRCdPSkQc30pEHb9aVC2/Sl
- Qtv1pULb9aVC2/WlQtv1pULb9KRB2/WlQtv1pUHb9aVC2/WlQtv1pUHb9aVC2/SlQtv1pUHb9aVC2/Sl
- Qdv1pUHb9aVC2/SiP9vumDPb7ZUv2+2WMNvtljDb7ZYw2+2WMNvtljDb7JYw2+2WMNvtljDb7ZYw2+2W
- MNvtljDb7ZYw2+2WMNvtljDb7ZYw2+2WMNvtljDb7ZYw2+2WMNvtljDN7ZYwcuyVLw71pUIw9aVCr/Wk
- Qtv1pULb9aVC2/WlQtv1pULb9KRB2/WlQtv1pULb9aVC2/SlQtv1pULb9KRB2/SkQtv1pULb9aVB2/Sl
- Qdv1pULb9aVB2/SlQdv0pULb9aVC2/SiQNvumDPb7ZUv2+yVL9vtljDb7ZYw2+yVL9vslS/b7ZYw2+yV
- L9vsljDb7ZYw2+2WMNvtli/b7ZYw2+2VMNvtljDb7ZUw2+2WMNvslS/b7ZYw2+yVMNvsli/b7JUwreyW
- LzD1pUI+9aVCvfWlQtv0pEHb9aVC2/WlQtv1pULb9aVC2/WlQtv1pULb9aVC2/WlQtv1pEHb9aVC2/Wl
- Qtv1pULb9aVC2/WkQdv1pULb9aVB2/WlQtv1pULb9aVC2/SjP9vumDLb7JUv2+2WMNvtljDb7ZYw2+2V
- MNvtljDb7JYv2+2WMNvslS/b7ZYw2+2WMNvslS/b7JUv2+2WMNvtljDb7JYv2+2WMNvtljDb7JUv2+2W
- MNvtljDb7ZUvve2WMD71pUI+9KRBv/WlQtv1pELb9aVC2/SlQtv1pULb9aVB2/WlQtv1pULb9aVC2/Wk
- Qdv1pULb9KRC2/WlQtv1pULb9KRC2/WlQtv1pULb9aVC2/WlQtv1pULb9aVC2/SjP9vtlzLb7JUv2+2W
- MNvtljDb7JUv2+2WMNvtljDb7JUv2+2WMNvtljDb7ZYw2+2WMNvtljDb7ZYw2+2WMNvtljDb7ZYv2+2W
- MNvtljDb7JUv2+2WMNvtljDb7ZYwv+2WMED0pUE+9KRCv/WlQtv0pULb9aVB2/WlQtv1pUHb9aVC2/Wl
- Qtv1pULb9KVC2/WlQtv0pULb9aVC2/WlQtv1pULb9aVC2/WlQtv1pULb9aZF2/atU9/616rt/vXr+/zu
- 3Pnzunnn7Zs73eyWMNvsljDb7ZYw2+2WMNvtljDb7JUw2+yVL9vsljDb7JYw2+2WMNvtljDb7ZYw2+yW
- MNvsljDb7ZYw2+yWL9vslTDb7ZUw2+2WMNvsljDb7JUvv+yVLz71pUI+9KVBv/WlQtv1pUHb9aVC2/Sk
- Qtv1pULb9aRC2/SlQdv0pUHb9aVC2/WlQdv1pEHb9KVC2/WlQtv1pULb9aVB2/WlQtv2r1ff+cWH5/vi
- w/P++vb9///////////88eP799Op7++nUeHtljDb7ZYw2+2VMNvtljDb7ZUw2+2WMNvtljDb7ZYw2+2W
- MNvslS/b7JYv2+2WMNvtljDb7JYv2+2WMNvtljDb7ZYw2+2WMNvtljDb7JUvv+2VLz71pUI+9KRCv/Sl
- Qdv1pELb9aRB2/SlQtv1pULb9aVC2/WlQtv1pULb9aRC2/SlQdv1pULb9aVB2/WlQtv1pULb9KRB2/ax
- XN/73rvx/vbs+/7+/v///////v7+//7+/v///////v79//nev/Pwq1nh7Zgz2+2WMNvtljDb7JYw2+2W
- MNvtljDb7JYw2+2WMNvtljDb7ZYw2+2VMNvtljDb7JYv2+2WMNvtljDb7JUw2+2WMNvtljDb7ZYvv+2W
- MD71pUI+9KRBv/WlQtv1pULb9aVC2/WlQtv1pULb9KVC2/WlQtv1pULb9aVC2/SlQtv1pULb9aVC2/Sk
- Qdv1pULb9rFb3/vfu/H+/Pj9/////////////////////////////////v7+//78+v376NP39MKH6e2Z
- N93tljDb7ZYw2+2WMNvtlTDb7ZUw2+2WMNvtlTDb7ZUw2+2WMNvtljDb7ZYw2+2WMNvsljDb7ZYw2+2W
- MNvtljDb7JUvv+2VMD71pUI+9aVCv/WlQtv0pEHb9aVC2/SlQtv1pULb9KVC2/WlQtv1pULb9aRB2/Wl
- Qtv1pEHb9KVC2/WlQtv2tmbh/OTI8/79+//+/v7////////+/v/++vb9+9y28fznzfX9+PH9/v79//7+
- /v/+/v7//vr2/fXJlevumzvd8rRr5fXHkuvun0Hd7ZYw2+yVL9vsljDb7ZYw2+2WMNvsli/b7ZYw2+yW
- MNvsljDb7JYw2+yWL9vtljDb7ZYwv+2WLz71pUI+9aRBv/WlQtv1pELb9aVC2/SlQtv1pULb9aVC2/Wl
- Qtv1pULb9aVC2/WlQtv1pULb9KRB2/ayX9/85cnz/v37//7+/v///////vz5/f3v3vn606Pt9apM3fWx
- Xd/1xo3p/PDi+f////////////////337/33zp/t++nU9/779/331Knv8a9j4+6cPd3tljDb7ZYw2+2W
- MNvtljDb7ZYw2+2WMNvtljDb7ZYw2+2WMNvtljDb7JYwv+2WLz71pUI+9KRBv/SkQtv1pULb9aVC2/Sk
- Qdv1pULb9KVC2/WlQtv0pEHb9KVB2/WlQtv1pUPb9rJe4frhwPP+/fv////////////+/fz//OnR9fe+
- eOX1qUvd9aVC2/SjP9vunDrd875/6f327v3+/v7///////7+/f/++vb9/v38///////++/f9++3b+ffS
- p+/vp1Hh7ZUw2+yWMNvtlTDb7ZYw2+2WMNvslS/b7ZYw2+2WMNvsli/b7ZYwv+2VMD71pEI+9aVCv/Wl
- Qdv1pELb9aVC2/WlQtv1pULb9KRB2/SkQdv0pEHb9aVC2/SkQdv1qkzd+tmv7/77+P3//////v7+//76
- 9P374cDx97pu4/SmRdvxokTb76FG2+6fRNvqlTXb7Jg23fO+f+n76NP3/vr2/f/////+/v7//v7+////
- /////////v7+//77+P354cPz7qFF3+2XMtvtljDb7JYw2+2WMNvtljDb7ZYw2+yVL9vtljDb7JYvv+2W
- Lz71pUI+9KVCv/WlQtv0pULb9aVC2/SlQtv1pULb9aVC2/WlQtv1pULb9aRC2/SkQdv1q07d+9+88/79
- /P/+/v7//vr2/fnOmev1p0bb9aVB2++gRt2baYXnYEC18V9As/GRY33p4pE33e2WMNvxrmHj++vZ9/7+
- /v///////v7+///+/v///v7////////////+/v7/++fR9/TBhuntnD3d7JYw2+2WMNvtljDb7JUv2+2W
- MNvtljDb7JYvv+2WLz71pUI+9KRBv/SkQtv0pELb9aVC2/SkQtv1pULb9KRC2/WlQtv1pULb9aVB2/Wl
- Qtv1rFHd++C+8/79/P/+/v7//OrV9/a0Y+H1pULb9aVB2+ueSd1dQLXxAQH9/wAB/v9VQrDz244+3eyV
- L9vunDzd9s+g7f77+P3//////v38//rix/X76NL3/v7+/////////////v7+//316/v1xpDr7Zo53e2V
- MNvsli/b7ZYw2+2VMNvtljDb7JYvv+2VMD71pEI+9aVCv/WkQtv0pULb9KVC2/WlQtv0pEHb9KVC2/Sk
- Qdv0pEHb9aVC2/WnR9v4xYbn/fHk+f7+/v/+/fz/+tiu7/WnR93yo0Pb76FG3eicS91fQbPxAQH9/wAA
- /v9XQq7x3I8+3e6oV+Hwq1nh9L5/5/zz6fv//////vv4/fK3cuXxrV7j+uLG9f758/3+/v7//v7+///+
- /v/99ez79MOJ6e2XMtvtljDb7ZYw2+2WMNvtljDb7JYwv+2WLz71pUI+9KRCv/WlQtv0pULb9aVB2/Sl
- Qtv0pEHb9KVC2/SkQdv1pUPb9apN3fjGiOf98+b7/v79//7+/v/+/fz/+dmy7/SoSt2iboDnVzu68Vg8
- uvElGuL5AAH+/wEA/f9hR6bx35VE3/zw4vn99/D9/vfx/f78+v/+/v7//vv4/fK3cOXtlzLb7p0/3fTA
- g+n98uf7///+//7+/v/+/v7//fXr+++mUOHtljDb7JUv2+2VMNvtljDb7JYvv+2WMD71pUI+9KRBv/Wk
- Qtv1pULb9aVC2/SkQtv1pULb9aVC2/WlQ9v2tGLh+tu07/737/v+/v7//v7+//7+/v/+/v7/+Ovh+fO1
- bONuSqntAAD+/wAA//8AAP//AAD+/wIB/f9xUKbv5JhE3/338Pv//////v7+///////+/v7//vv4/fK3
- ceXtljDb7JUv2+2XMtvzvX7n/fXr+/7+/f/+/v7//v37//fSp+/tljDb7ZYw2+2WMNvsli/b7JUvv+2V
- MD71pUE+9KVBv/WkQdv1pELb9aVC2/WlQtv1pULb9KVC2/azX+H74L/z/vz4/f/////+/v7/////////
- ///+/v7/9/Hx/fK6eOVwTabtAgX7/wEE/P8AAf3/AAD+/wIB/f98WKnv6JtH3/359f3+/v7///////7+
- /v/+/v7//v38//K4dOXtljDb7ZYw2+2WMNvtmDXb9ceS6/337/3//////v7+//nhxPPtljDb7JUv2+2W
- MNvtljDb7ZYwv+2VMD71pUI+9KRBv/SkQdv0pUHb9aVC2/WlQtv1pULb9rFb3/vhwfP++/j9////////
- ///+/v7////////////+/v7/9/Du+/K5duWodXjlX0qx8V5GsvEnHt75AAD+/wIB/f98Warv6JlC3fjY
- svH53Lrz+dy68fncuvH53Lrx+Nq38/CsW+PtljDb7JYv2+2VMNvtljDb8a5g4/zw4vn//////v7+//ng
- wvPtljDb7JYv2+2WMNvtlTDb7JUvv+2WLz70pUI+9KRCv/WkQdv1pULb9aVC2/SlQdv1pUHb+MaH5/7+
- /f///////v7+//78+v/85831/OnS9f79+////////Pbv/fa9duXzo0Pb8KJF2+ufSN1gQbTvAQH9/wIB
- /f9kQavx34483e2XM9vtmDTb7Zg02+2YNdvtmDXb7Zg12+2XMtvtljDb7ZUw2+2VMNvtljDb8a9i4/zx
- 4/n//////v7+//ngwvPtljDb7ZUw2+2WMNvtlS/b7JYwv+2VMD71pUI+9aVCv/WlQdv0pEHb9aVC2/Wk
- Qdv1pULb/fHh+f/////+/v7///79//zmzPX3unDj+9668f79+//+/v7//vfv/fe+d+X1pUHb9aVC2+yf
- SN1tTKjvFhTs/RER7/1lQqTv3o083e2WMNvtljDb7p5A3fO7eef1xIrr9cOK6/O9funtlzPb7ZYw2+2W
- MNvtljDb8a9j4/zx4/n+/v7//v7+//ngwvPtli/b7ZUw2+yVMNvtlS/b7ZYvv+2WMD71pUI+9aVCv/Wl
- Qdv1pULb9aVC2/SkQtv1pULb/vbs+////////////fPm+/e4auP1q07d+9+78f79/P/+/v7//vfv/fe+
- duX1pULb9aVB2/KjQ9vIiWPhoHOC6ZBqiumxd2Pl5pI02+2WL9vtmDTb9MCE6f316/v+/fz//v38//zx
- 4/ntmjnd7ZYw2+2VMNvtljDb8a9j4/zx4/n+/v7//v7+//ngwvPtli/b7ZUw2+2WMNvtlS/b7ZYvv+2W
- MD70pEE+9aVCv/WlQtv0pULb9aVC2/WlQtv1pEHb/vXr+/7+/v///////e3b9/WrT931q07d+9+78f79
- /P///////vjw/ffBfef1pkXb9aVC2/WlQtv1pULb86RD2++hQ9vqljTb7JUv2+2WMNvtmTfd9s6f7f77
- +f3//////v7+//zx5fvtmjnd7ZYw2+2WMNvtljDb8a9j4/zx4/n+/v7//v7+//ngwvPtljDb7ZYw2+2V
- MNvtlTDb7JUvv+yVMD71pUI+9aVCv/WlQdv1pULb9aVC2/WkQdv1pULb/vXr+////////////e7c9/Wr
- UN31q07d+9+78f79/P///////v37//3v3/n62K3v97535fayXt/1q0/d9aVC2/SjP9vumjbb7p5B3fK1
- beX1xpDr/O3d+f7+/f////////////zx5fvtmjnd7ZUw2+2WL9vtljDb8a9j4/zx4/n//////v7+//ng
- wvPtljDb7ZYw2+yVMNvtli/b7JYvv+2WMD71pUI+9aVCv/SlQdv1pUHb9aVC2/SkQdv1pULb/vXr+/7+
- /v///////e7c9/WrUN31q07d+9+78f79/P/+/v7////////////+/Pn9/fTo+/zlyvX62a/v97x04/a1
- ZuH0unfn99Wt7/zz5/v9+fP9/v79///////+/v7///////zy5vvtmjnd7ZYw2+2WMNvtljDb8a9j4/zx
- 4/n+/v7//v7+//ngwvPtli/b7ZUw2+2WL9vtljDb7JUvv+2WMD70pEE+9aVCv/WlQtv1pUHb9aVB2/Sl
- Qtv1pULb/vXr+/7+/v///////e7c9/WrUN31q0/d++C/8/79+////////v7+///////+/v7///////79
- /P/+/Pn9/fHi+f3t2ff98eT7/vv4/f///////////////////////v7//v37//ndvfPtmTbb7JUv2+2W
- MNvtljDb8a9j4/zx4/n+/v7//v7+//ngwvPtljDb7ZYw2+yWL9vtljDb7ZYvv+2WLz70pEI+9KRBv/Wl
- Qtv1pULb9aVC2/SkQdv1pULb/vXr+////////////e7c9/WrUN31p0bb97lt4/jDguf86M/1/vjx/f79
- +//+/fz//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v3//vz5/fzy5fv30KPt87p45++j
- St/tljDb7ZYv2+2WMNvtljDb8a5g4/zw4vn//////v7+//ngwvPtljDb7ZYw2+2WMNvtljDb7JUwv+yV
- Lz71pUI+9aVCv/WkQtv1pULb9aVC2/WlQdv1pULb/vXr+/7+/v/+/v7//e7c9/WrUN31pULb9aVC2/Wl
- Qtv1rFHf+MSE5/rZse/737zx/fPm+/758v3+/v3////////////+/v7///////7+/v/99ez7+Nm08fGw
- Y+PsljDb7ZUw2+2WMNvslS/b7Zk22+6hRt/vo0nf9caP6/327vv+/v7//v7+//ngwvPtli/b7ZUw2+2W
- MNvtlS/b7ZYwv+yWMD71pUI+9KVCv/WlQtv1pELb9KRB2/SlQtv0pUHb/vXr+////////////e7c9/Wr
- UN31pELb9KRB2/WlQtv1pUHb9aVC2/WlQtv1qkzd97545fnOmOv75cnz/vv3/f///////////v7+///+
- /v/99+/7+uTJ9ffSpu/ytW/l8rRs5fK1bOXytGvl9MKH6fndvPP64cTz/fXr+/7+/v/+/v7//v7+//ng
- wvPtljDb7ZYw2+2VL9vtljDb7JUwv+2VMD71pUI+9KRBv/WlQtv1pULb9aVC2/WkQdv1pULb/vXr+///
- /////////e7c9/WrUN31pELb9aVC2/WlQtv1pELb9aVC2/WlQtv0pEHb9aVC2/WnSN32sFrf/fDg+f7+
- /v/+/v7///////7+/v/+/v7///////77+P388+j7/PLn+/3z5/v88ub7/fbu+/7+/f////////////7+
- /v///////v7+//rhxfXtljDb7ZYw2+2WMNvtljDb7ZYwv+2WMD71pUI+9aVCv/SlQtv0pEHb9aVB2/Sk
- Qtv1pULb/vXr+////////////O3b9/asUt31pULb9KRB2/WlQtv1pULb9KRB2/WlQtv1pULb9KRB2/Wl
- Qtv1qEnd/e/e9////////////v7+/////////////v7+/////////////v7+/////////////v7+////
- /////////v7+//79+//++/j9/O/g+fbOn+3tli/b7JUw2+2VL9vtli/b7JUvv+2WLz71pUI+9KVBv/Wk
- Qtv1pELb9aRC2/SlQtv1pULb/vXr+/7+/v/+/v7//vfv/fnJjuf2tGPh9atP3fWmRNv1pULb9KVC2/Wl
- Qtv1pkTb9atP3fa0YeH5yIzn/vfv+////////////v7+//748/398+n7/vv4///+/v//////////////
- /////////v7+//7+/P/++vX9/O/f+fnevvP2zZ3t8K1d4+2ZON3tljDb7JUv2+2VMNvtljDb7JUvv+yV
- Lz71pUI+9aVCv/WlQdv1pULb9aVC2/WkQdv1pULb/vXr+////////////v7+//327Pv869X3+tes7/nJ
- j+n2sl3f9apM3fawWd/4x4vp+tit7/zq0/f+9uz7/v7+/////////////v79//ngwvPzu3rn99Ws8fvo
- 0ff++fT9/vr1/f769f399/H9+uXM9fjbufP2zZ7t8bFl4++jSt/tlzLb7JYw2+2WMNvslS/b7ZYw2+2V
- MNvsli/b7ZYwv+2VMD71pUI+9KVCv/SkQdv1pULb9KRB2/SlQtv1pULb/vfv+////////////v7+////
- /////v7//vv3/f748f385871+9+98fznzfX+9+/7/vv3/f/+/v///////v7+/////////////v7+//nc
- u/PtmTbd7p0/3fCnUuHzv4Hp9MGF6fTBhenzvoDp8KdR4e6fQt3tmzvd7ZYw2+2WMNvtljDb7ZYw2+2W
- MNvtljDb7ZYw2+2WMNvtljDb7JYwv+2WMD71pUI+9aVCv/WkQdv1pULb9aVC2/WkQdv1pULb+9y37/32
- 7Pv++vX9/v7+//7+/v/+/v7///////////////////////7+/v///////////////////////v7+//76
- 9f399Or7/fPn+/TBhensljHb7ZUv2+2WMNvtljDb7ZUv2+2WL9vtlTDb7ZYw2+2WMNvtli/b7ZUv2+2W
- L9vtljDb7ZUw2+2VMNvtli/b7ZUw2+2WL9vtli/b7ZYvv+2WLz71pUI+9aVCv/WlQtv1pEHb9aVC2/Wl
- Qtv1pULb9a5V3/jBf+X606Lt/OXJ8/zq0/X++vT9/v7+//////////////////7+/v/+/v7//v7+//75
- 9P3869X3/ObL9fnTpe3zuHLl8rVu5e2aON3tljDb7ZYw2+yVL9vtljDb7ZYw2+2WMNvslS/b7JUv2+2W
- MNvtljDb7ZYw2+2WMNvslS/b7JUv2+2WMNvtljDb7JUv2+2WMNvtlS/b7ZYwv+2WMD71pUI+9KVCv/Sk
- Qtv1pULb9aVB2/WlQtv0pEHb9aVC2/WlQtv1qUvd9rBZ3/a0Y+H5yY7p+tiu7/737/v//fv//v36/f/9
- +//+9+/9+tqx7/nIjOn2tWXh9rBa3/SoS93tlzLb7JUv2+2WMNvslS/b7ZYw2+2WMNvtlS/b7ZYw2+2W
- MNvslS/b7ZYw2+2WMNvtljDb7ZYw2+2WMNvslS/b7ZUw2+2WMNvtljDb7ZYw2+yVL9vslS/b7ZYwv+2V
- MD71pUI+9aVCv/WlQdv0pULb9aVC2/WlQtv1pULb9KVC2/WlQtv1pULb9KVC2/WlQtv1pkXb9ahK3faw
- Wt/2sl3f9rFd3/ayXd/2sFrf9alL3fWmRdv1pULb9aVC2/SjP9vtlzLb7JUv2+2WL9vtli/b7ZYw2+2W
- L9vtli/b7ZUw2+2WL9vtljDb7ZYw2+2WL9vtlS/b7ZUw2+2WL9vtli/b7ZYw2+2WL9vtlS/b7ZUw2+2W
- MNvslS/b7ZYvv+2VMD70pUJA9aVCv/WlQtv1pULb9aVC2/WlQtv1pULb9KRB2/SkQdv1pULb9aVC2/Wl
- Qtv1pULb9aVC2/WlQtv1pULb9KVB2/WlQtv1pULb9aVB2/WlQtv1pULb9aVC2/SjP9vtlzLb7JUv2+2W
- MNvtljDb7ZYw2+yVL9vslS/b7JUv2+2WMNvtljDb7ZYw2+yVL9vslS/b7ZYw2+2WMNvtljDb7ZYw2+2W
- MNvtljDb7ZYw2+2WMNvslS/b7ZYwv+2WMD71pUI+9KVCu/WlQdv1pULb9aVC2/WlQtv1pULb9KRB2/Wl
- Qtv1pULb9aRB2/WlQtv1pEHb9KVC2/WkQtv1pUHb9KVC2/WkQdv0pUHb9KVC2/WkQdv1pEHb9aVC2/Sj
- P9vtlzLb7JUv2+yVL9vtlS/b7ZYw2+2VL9vtljDb7JUw2+yVL9vtljDb7JUw2+2VL9vtljDb7ZUw2+2V
- L9vtlS/b7ZYw2+2VL9vtlS/b7ZYw2+yVL9vtljDb7ZYwve2WMD70pEEs9aVCq/WlQtv1pUHb9aVB2/Wl
- Qtv1pULb9aVB2/WlQtv1pULb9aVC2/WlQdv1pULb9aVC2/WlQtv1pULb9aVB2/WlQtv0pEHb9aVB2/Wl
- Qtv1pULb9aVC2/OiPtvumDLb7JUv2+yVMNvslS/b7ZYw2+2WMNvtljDb7ZYw2+2WMNvtljDb7ZYw2+2W
- MNvsljDb7ZYw2+2WMNvtljDb7ZYw2+2WMNvtljDb7ZYw2+2WMNvtljDb7JYwr+2VLzD1pUIO9aVCbvSk
- Qcv0pEHb9aVB2/WlQtv1pULb9aVC2/WkQdv1pUHb9aVC2/WlQtv1pULb9KVC2/WlQtv1pULb9aRC2/Wl
- Qtv1pUHb9aVC2/SlQdv1pULb9KRB2/KgPdvumDLb7ZUv2+yVL9vslS/b7JUw2+2VL9vtli/b7ZYw2+yV
- L9vtli/b7ZUw2+2VL9vsli/b7ZYw2+2WMNvtlS/b7ZYw2+yVL9vslS/b7ZUw2+yVL9vslS/N7ZUwdO2W
- MBD1pEIC9aVCJvSlQYv0pULN9KRB2/WlQtv1pULb9aVB2/WlQtv1pULb9aRB2/WlQtv1pULb9aRC2/Wl
- Qdv1pUHb9aRC2/SlQdv1pUHb9aVC2/SkQdv1pULb9KRB2/KgPdvumDLb7JUv2+2VMNvtlTDb7ZYw2+yV
- L9vtlTDb7ZYw2+2VMNvtljDb7ZYw2+2WMNvtljDb7JYw2+2WMNvtljDb7JYw2+2WMNvtljDb7ZYw2+yW
- L83sli+N7ZYwKOyWLwIAAAAA9aVCBPWlQij0pEFy9aVCr/SlQb31pUK/9aVCv/SlQr/0pUK/9aVCv/Sl
- Qr/1pEK/9KRBv/WlQr/1pUK/9KVCv/WlQr/0pEK/9KRBv/SlQb/1pUK/9KRBv/KgPb/umDK/7JUvv+2W
- ML/tljC/7JUvv+yWL7/sljC/7JUvv+yWL7/sli+/7JUvv+yVML/sli+/7JUvv+yVML/slTC/7ZYwv+yW
- L7/tljC97ZYvr+2WMHTtljAo7ZYwBAAAAAAAAAAAAAAAAPSkQgL1pUEO9aVCMPWlQj70pUJA9aVCPvWl
- Qj71pUI+9aVCPvWlQj71pUI+9aVCPvWlQj71pUI+9aVCPvWlQj70pUI+9aRCPvWlQj71pUI+9KRBPvKg
- PT7umDI+7ZYvPu2WMD7slTA+7ZYwPu2WLz7tli8+7ZYwPu2WMD7tli8+7ZYwPu2WLz7tljA+7ZYwPu2W
- MD7tli8+7ZYwPu2WMD7slS8+7ZYwMu2WLxDsljACAAAAAAAAAAD///////8AAPAAAAAADwAAwAAAAAAD
- AADAAAAAAAMAAIAAAAAAAQAAgAAAAAABAACAAAAAAAEAAIAAAAAAAQAAgAAAAAABAACAAAAAAAEAAIAA
- AAAAAQAAgAAAAAABAACAAAAAAAEAAIAAAAAAAQAAgAAAAAABAACAAAAAAAEAAIAAAAAAAQAAgAAAAAAB
- AACAAAAAAAEAAIAAAAAAAQAAgAAAAAABAACAAAAAAAEAAIAAAAAAAQAAgAAAAAABAACAAAAAAAEAAIAA
- AAAAAQAAgAAAAAABAACAAAAAAAEAAIAAAAAAAQAAgAAAAAABAACAAAAAAAEAAIAAAAAAAQAAgAAAAAAB
- AACAAAAAAAEAAIAAAAAAAQAAgAAAAAABAACAAAAAAAEAAIAAAAAAAQAAgAAAAAABAACAAAAAAAEAAIAA
- AAAAAQAAgAAAAAABAACAAAAAAAEAAIAAAAAAAQAAwAAAAAADAADAAAAAAAMAAPAAAAAADwAA////////
- AAA=
+ AAABAAEAgIAAAAEAIAAoCAEAFgAAACgAAACAAAAAAAEAAAEAIAAAAAAAAAABACUWAAAlFgAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAD///8A////AP///wD///8B////D////0v///+J////vf///9/////1/////v//
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////+////9f///9////+9////if//
+ /0v///8P////Af///wD///8A////AAAAAAAAAAAAAAAAAAAAAAD///8A////AP///wD///8A////Ff//
+ /0n///+J////tP///9H////l////8v////v////+////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////7////7////8v///+X////R////tP///4n///9J////Ff///wD///8A////AP//
+ /wAAAAAAAAAAAP///wD///8A////A////yf///9n////sf///+7/////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////7v///7L///9o////KP///wP///8A////AAAAAAD///8A////AP///wP///8i////hv//
+ /9n//////////v//////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////+/////////9r///+H////Iv//
+ /wP///8A////AP///wD///8A////Jf///4D////b/////f//////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////f///9v///+A////Jf///wD///8A////AP///xX///9n////1v//
+ //z/////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////////////////////////P//
+ /9b///9n////Ff///wD///8B////S////7T/////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////7T///9M////Af///w////+N////8///
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////9P///47///8Q////S////7X/////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////tv///0z///+J////0f//
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////R////iv///7r////k////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////////////+X///+9////2f//
+ //D/////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////8////+D////t////+P//////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////////7////9P//
+ //r////9////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////7////9////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////+/v3//fz7//v5+P/79/X/+vf1//v49//8+/n//v38/////v//////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////+//37+v/59PH/9e3o//Ln
+ 4P/y59//8+rk//fx7P/7+Pb//v39////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////v///v3/+/f0//Tq4//u3NH/6tPE/+nSwv/s2cz/8eTa//jy7f/9+/r///7+////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////v7+//79/P/58uz/8d3P/+jI
+ sv/lu5//5bqd/+fDqv/r0b//9Ojf//v49v/+/f3/////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////+/f3/+/r5//bq4v/u0Lv/5baV/+Opgf/jqH//5bCN/+jApf/w283/+PHt//z6
+ +f/+/v7/////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////7+//38+//59fP/8uLW/+vE
+ qf/kqH//451t/+Odbf/jo3j/5rGO/+zNuv/z5t//+fTy//79/f//////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////+/f3//Pn4//bv6//v2Mr/6LqZ/+Sebv/jlWD/45Zh/+Oaaf/kpXv/58Cn/+3c
+ 0f/17+v//fz7////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////39/f/7+Pb/8unk/+vR
+ wP/ms5D/45lm/+OTXP/jlF3/45di/+Ofcf/jt5j/6NLD//Lp4//9+/r/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////f39//r29P/w5N3/6Mu3/+Wviv/jl2P/45Jb/+OTXP/jlmD/45xr/+Gv
+ jf/lybb/8eTc//z6+f//////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////9/Pz/+vTy/+7f
+ 1v/lxa//46uF/+OWYv/jklv/45Nc/+OVXv/immj/4KqE/+XDq//w4NT//Pn3////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////38+//58/D/7NvQ/+PAqP/iqID/45Zh/+OSW//jk1z/45Re/+OY
+ Zv/hpXz/5b2h//Dczf/79vT///7////+/v//////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////////////////v///fv7//ny
+ 7v/q18r/4ruh/+GlfP/jlmH/45Jb/+OTXP/jlF7/45hk/+Ojdv/nuJj/79bE//fw7P/8+/v//v7+////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////9+/v/+PHt/+rUxf/huJv/4aN5/+OVYP/jk1v/45Nc/+OT
+ Xf/jl2L/5KBw/+eyjf/szbf/8+ff//n29P/+/fz/////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////////37
+ +v/48Or/6tG//+G0lP/hoXX/45Vg/+OTW//jk1z/45Nd/+OVYP/km2n/5qqB/+nDqP/t3dH/9vHs//38
+ +///////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////7//fv5//jv6P/qzrn/4rGO/+Gfcv/jlV//45Nb/+OT
+ XP/jk1z/45Re/+SXYv/ko3X/5bma/+jSwv/z6+T//Pv5////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////////////////+
+ /v/9+vj/+e7m/+3Ls//lrof/455u/+OVX//jk1v/45Nc/+OTXP/jk13/45Rf/+Odbv/isY7/5cm1//Hl
+ 3f/8+ff/////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////v79//z49f/46uD/7sar/+eqgP/knGr/45Re/+OT
+ XP/jk1z/45Nc/+KSXP/jk13/4ppp/+Krhf/lwan/8eHV//z49f///v7/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///9/Pv/+fPw//Tj1//sv6D/5qR2/+SZZf/jlF3/45Nc/+OTXP/iklv/4ZFb/+KSXP/imGb/46Z9/+a7
+ nv/x3M7/+/by//79/f//////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////7///7+///+/v///v7///7+///+
+ /v///v7///7+///+/v//////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////z6+f/27ur/8NvO/+m4lf/lnm3/45Vg/+OT
+ XP/jk1z/4pJb/+CRWv/gkFn/4ZFa/+OXY//konX/57WS//DWxP/58uz//Pv6///+/v//////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///+/v7//v39//38+v/8+ff//Pj2//z39f/89/T//Pf1//z49v/8+ff//Pv5//39/P/+/v7/////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////v7/+vf2//Pp4//s1MT/57GM/+SaZ//jlF3/4pNc/+KSW//hkVv/35Ba/96PWf/gkFn/4pVf/+Sd
+ bP/mrIP/7My0//Po4P/59vT//v39////////////////////////////////////////////////////
+ //////////////////////////////////////////////38/P/7+Pb/9/Ds//Pn4P/y49n/8uHW//Hg
+ 1f/x4db/8ePZ//Ln3//17un/+ff1//z7+//+/v7/////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////+/v/59fP/8OTc/+jNuv/krIb/45hl/+OT
+ XP/iklv/4ZFb/+CQWv/ej1n/3Y5Y/96PWf/hklz/45hl/+Wkd//owKT/7dzQ//Xv6//9/Pv/////////
+ //////////////////////////////////////////////////////////////////////////////7+
+ /v/9/Pr/+vXy//br5f/v3tL/6dC+/+jJtP/oxq//58Wt/+fGr//nybT/6M+8/+3azP/06eD/+fPu//z6
+ +P/+/v3///7+////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////7+//n08f/u39b/5May/+Opgv/jmGT/45Nc/+KSW//hklv/35Fa/96PWv/cj1n/3o9a/+GR
+ XP/ilWH/5J5v/+S2lv/p0cH/8+ni//37+f//////////////////////////////////////////////
+ ///////////////////////////////////+/v3//Pv5//n07//z597/7tfI/+nHsP/luZv/5LKQ/+Sw
+ jP/kr4v/47CM/+OykP/kt5f/6cGm/+/Svf/z4dT/9+/p//v49//+/f3/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////+/v///v7/+PLu/+3b0P/iwar/4aZ9/+OX
+ Y//jk1z/4pNc/+CTXv/flF//3pNf/92TX//fk17/4ZNd/+KVX//im2r/4q6J/+bIs//x49n//Pn4////
+ ///////////////////////////////////////////////////////////////////////////+//79
+ +//59fL/8+jh/+3Wxv/owqj/5LGN/+Olev/ioHL/4p5v/+Kebv/in2//4qBx/+Ojdv/lq4L/6rqX/+7N
+ tv/y4dX/9/Ht//z6+v///v7/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////7+//79/v/38Oz/69fK/+C8ov/hpHn/45Zi/+OTXf/ilWD/4Jpq/96fcv/fonf/4KJ3/+Ke
+ b//jmWb/45dj/+OaaP/hqID/5cCm//He0v/8+fb/////////////////////////////////////////
+ /////////////////////////////////////////fz6//Xu6P/r2cv/58Oq/+Svi//ioXT/4plo/+KX
+ Y//ilmH/4pZh/+KWYf/il2P/45hm/+SdbP/mp3r/6bmX/+zOuf/y5Nn/+vf0//7+/f//////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////+/v/+/fz//fr5//z59v/99/T//ffz//338//99/P//ffz//338//99/P//ffz//33
+ 8//99/P//ffz//338//99/P//ffz//338//99/P//ffz//338//99/P//ff0//349f/9+vj//v38///+
+ /v///////////////////////////////////////////////////v7//v7+//bv6v/q1MT/4Lea/+Ch
+ df/jlmL/45Re/+KYZf/go3r/4K+N/+K2l//luJn/5q2G/+Whc//kmmj/45pn/+Kkef/mu5z/8drL//v2
+ 8////////////////////v7//fz6//z59//8+PX//ffz//338//99/P//ffz//338//99/P//ffz//33
+ 8v/68uv/8eHV/+bJs//js5L/4qF2/+KYZf/jlWD/45Re/+OUXf/jlF3/45Rd/+OUXv/jlV//45Zi/+Sb
+ af/lqH7/57qb/+3TwP/37uj//Pn4//7+/v//////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////+/v7//fz8//r28//16+T/9OTZ//Xf
+ 0P/23Mv/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//bc
+ y//23Mv/9tzM//bczP/13s7/9eHU//Xn3v/69PD//fv7//7+/v//////////////////////////////
+ ///////////////+/v/+/v3/9+7n/+rQvv/hspL/4Z9y/+KWYf/jlWD/45tr/+Kui//kwaj/6cu3/+zO
+ uP/pu5z/5ad+/+Odbf/jmWb/46Jz/+e3lP/v1cL/+PHs//z9/P/+/v3///79//37+v/48ev/9OXb//Tg
+ 0v/13c3/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//TZxf/tzbX/5rmb/+Opgf/im2r/4pRf/+OT
+ Xf/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXf/jlF3/45Zh/+Oebv/kq4T/6cKn//Hg1f/38e3//Pv6////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////7+/f/8+vj/9+7p/+3bzv/rzbn/7MSo/+6/n//uv5//7r+f/+6/n//uv5//7r+f/+6/
+ n//uv5//7r+f/+6/n//uv5//7r+f/+6/n//uv5//7r+f/+6/n//uv5//7r+f/+3CpP/sx67/7dLA//Xp
+ 4f/79vT//fz8//////////////////////////////////////////////7+//7+/v/37eX/7M25/+Ku
+ i//hnW7/4pZh/+OXY//koHL/5rqd/+rSwv/v39T/8uDU/+vIsP/kroj/4p9x/+OZZf/kn27/6LKM/+3O
+ uP/06uL/+vj3//78/P/9/Pv/+vbz//Lj2P/rz7v/68Ws/+3Aov/uv5//7r+f/+6/n//uv5//7r+f/+6/
+ n//uv57/7b6c/+q3k//mrIX/5KFz/+OXY//jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OT
+ XP/jlF3/4pdj/+OfcP/ls5D/6tLB//Ln4f/79/b/////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////v79//z59v/06uP/59DB/+W+
+ ov/msIr/6Kl8/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ip
+ ff/oqX3/6Kl9/+ipff/oqX3/56uB/+axjP/ovaH/7tnL//Xt5//7+Pb////+////////////////////
+ /////////////////////v7///7+//js4//uy7T/5KuE/+Kba//jl2L/5Jto/+eoff/rx67/8OHX//Xt
+ 5//36+T/7NC9/+Oykf/ioXX/45hk/+SaZ//mqn//6cSp/+7f0//28e7//Pr5//r39f/27Ob/7tXE/+e9
+ oP/msYz/56qA/+ipfP/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipfP/nqHv/5qZ4/+Whcv/km2j/45Vf/+OT
+ W//jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jlF7/4pln/+Oqg//lx7L/7uDW//n1
+ 8v//////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////+/v3/+/j2//Po4f/lzLv/4raY/+Ome//lnWr/5Z1r/+Wda//lnWv/5Z1r/+Wd
+ a//lnWv/5Z1r/+Wda//lnWv/5Z1r/+Wda//lnWv/5Z1r/+Wda//lnWv/5Z1q/+Wcaf/knWv/5KJ0/+Wu
+ iP/oyrX/7+HY//jz7////v7////////////////////////////////////////+/v/+/fz/+Org/+/J
+ r//mqX//45po/+SYZP/mn27/6a+H//DRvf/27Ob/+vXy//nw6//s1cX/4ria/+Gkev/jl2P/45Zg/+Si
+ dP/muZr/6dLD//Pq5P/69vT/9vDs//Dh1v/qyLD/5rCL/+Wlef/ln27/5Z1q/+Wda//lnWv/5Z1r/+Wd
+ a//lnWv/5Z1r/+Wdav/lnWr/5Jto/+OYY//jlF7/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OT
+ XP/jk1z/45Nc/+OTXP/imGT/4ad+/+LBqv/s3NH/+PPw////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////79/f/7+Pb/8+jh/+XL
+ uf/itpj/5KZ8/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+We
+ bP/lnmz/5Z5s/+WdbP/lnGn/5Jhj/+OXYv/jm2j/46Z7/+S/pf/r2Mv/9u7p//7+/f//////////////
+ //////////////////////7//f38//r59//15dn/7saq/+eofP/kmmf/5Jll/+ehcv/qs43/8tjE//ny
+ 7f/8+ff/+fPv/+3bzf/jvqT/4ah//+OYY//jlF3/451t/+Owjv/myLT/8eXc//jz7v/z6OD/6tTE/+a7
+ nf/lp3z/5aBx/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnWr/5Jlk/+OV
+ Xv/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OXY//hp37/4cGr/+vc
+ 0f/48/D/////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////v79//v49v/z6eP/59C//+W9ov/nsIr/6Kl8/+ipff/oqX3/6Kl9/+ip
+ ff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqHv/56V4/+agcf/kmGT/45Vf/+OX
+ Y//ioXP/4raY/+nRwP/16uP//v79//////////////////////////////////7+/v/8+/r/9/Pw//Hf
+ 0v/swaT/56Z5/+WaZf/kmWX/5qN0/+u2kf/028r/+/by//38+//69vL/7uDW/+XGr//irYf/45pm/+OT
+ XP/jmmj/4qqD/+TAp//w39T/9+/q/+/g1f/lyLL/4q+L/+Sgcf/ln23/56Jy/+ileP/oqHz/6Kl9/+ip
+ ff/oqX3/6Kl9/+ipff/oqHz/56Z5/+ajc//knGn/45Zg/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OT
+ XP/jk1z/45Nc/+OTXP/jlF3/45lm/+Kpgf/jxbD/7d7V//j08f//////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////+/v7//Pr5//fw
+ 6//u39P/7dO//+/KsP/wxaf/8Mao//DGqP/wxqj/8Mao//DGqP/wxqj/8Mao//DGqP/wxqj/8Mao//DF
+ qP/wxaj/8MWn/+2/oP/otpP/5KqC/+Obav/jlF//45Zg/+Kebv/hsI7/6Mu3//To3//+/v3/////////
+ /////////////////////////v39//v49//07ej/7dfH/+m7mv/moXL/5Jhi/+SZZf/lpXf/6rmV//Xe
+ zf/8+PT//v38//v49v/x6OH/6dC+/+W2lP/kn2//45Zg/+OZZv/jpnv/5rqb//Lczf/47eb/7trN/+O+
+ pP/gp3//45xq/+afbf/oqHr/7LWQ/+/Bov/wxaf/8Mao//DGqP/wxqj/8MWn/+7CpP/quZf/5auD/+Of
+ cf/jlmH/45Jb/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OWYf/knm3/5K+L/+bM
+ uv/v49v/+fb0////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////7+///+/fz/+/j2//fw6v/26+H/9+fa//jl1//45df/+OXX//jl
+ 1//45df/+OXX//jl1//45df/+OXX//jl1//45df/+OXX//jk1v/449X/8tnI/+rKs//kt5f/46Fz/+OX
+ Yv/jlmH/45xr/+Kshv/pxq7/9OXa//78+//////////////////////////////////9/f3/+/b1//Hn
+ 4P/pz7z/5rOQ/+Sbaf/jlV//45lm/+Smev/ou5n/9N/Q//z49f/+/v3//Pr5//Xv6//u283/6MCj/+Sm
+ e//jmWb/45ll/+Wjdv/ptpL/89fE//fo3v/u1ML/47eY/+Gidv/jmmf/5qBv/+mtg//wxqn/9t3M//jk
+ 1v/45df/+OXX//jl1//35Nb/9eDQ/+3Puf/kt5n/4qZ9/+KZZ//jlF3/45Nc/+OTXP/jk1z/45Nc/+OT
+ XP/jk1z/45Nc/+OTXP/jlV//5Jtq/+WmfP/mupz/6tbI//Lp5P/7+Pb/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////////7+
+ /v/9/Pv//Pj2//v28v/89e///PTu//z07v/89O7//PTu//z07v/89O7//PTu//z07v/89O7//PTu//z0
+ 7v/89O7//PPu//zz7P/26N7/7dfI/+fCqf/lqX//5Jtp/+SXY//jm2n/46h//+nCpf/y4NL/+/j1//79
+ /P////7///////////////////////38/P/69fL/7uHY/+bIsv/krYj/45hk/+OTXf/jmWj/46d+/+a9
+ n//z4NP//fj2///+/v/9/Pv/+fXz//Lk2v/qyK//5KyF/+Kca//jmWX/5aJy/+mxiv/vzbf/8tvN/+zJ
+ s//ksI3/4p9w/+OZZv/loXL/6LCL//HPuP/66+H/+/Ps//z07v/89O7//PTu//zz7v/57+f/8t/S/+jI
+ sv/ks5P/4qJ2/+KYZf/jlV//45Nd/+OTXP/jk1z/45Nc/+OTXP/jlF3/5JZg/+WbaP/kpXn/5bOQ/+nI
+ sf/w4tj/9/Ht//z7+v//////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////+/v/+/v3//v38//79/P/+/Pv//vz7//78
+ +//+/Pv//vz7//78+//+/Pv//vz7//78+//+/Pv//vz7//78+//+/Pv//vz6//jz7f/x49j/6s66/+ey
+ jP/loHH/5Jlm/+OaZv/lpXf/6ryc//DZyP/48u7//Pv6//7+/v///////////////////////fz7//nz
+ 8P/s3NH/5MGp/+Opgf/jlmL/45Nd/+Kaaf/iqYP/5L+m//Li1//9+ff///////7+/v/8+/r/9uzk/+zP
+ u//jso//4Z9x/+OZZv/ln2//6KuC/+vApP/syrX/6b2f/+Wqgf/jnGv/45lm/+Sidv/ntJP/8dXC//vz
+ 7v/++/r//v38//78+//+/fv//vz7//z59v/27eb/7dnM/+jErP/kr4z/4qB0/+KZZv/ilmH/45Vg/+OV
+ X//jlV//4pVg/+OXY//knGr/5qR4/+axjv/mwqj/69fI//Xt6P/7+Pb//v39////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////+/n2//Xt5v/u2cn/6LmY/+Slef/jmmj/45hj/+Wfbv/otJD/7dC8//Pq
+ 5P/69/b//v39///////////////////+///9+/r/+PLt/+rXyf/iu6D/4aV8/+OVYf/jklz/4ptr/+Gs
+ iP/kxK3/8uTb//359/////////7+//7+/f/48Ov/7dTE/+K3mf/gonb/45ll/+SbaP/monX/56+K/+e1
+ k//mrYb/5aJz/+SZZf/jmWb/46V8/+W5nP/w2sv/+/bz///+/v///////////////////////v39//r2
+ 8//06eL/7tfI/+nErP/kspH/4aV7/+Gfcv/inGz/4ptp/+Kbav/hnW//4aJ2/+Oqg//nt5b/6sau/+3W
+ xv/y59//+vb0//38/P///v7/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////9/Pv/+fTv//Li
+ 1v/nv6P/46iA/+Kbav/jlmD/5Jlm/+WshP/oxq//7uHY//jz8f/+/fz///////////////////7///37
+ +v/48Or/6dLB/+G2mP/honj/45Vg/+OTXP/inW7/4rGP/+TKt//y6N///fr4/////////v7///7///nz
+ 7//t2cz/4r2k/+Gmff/jmWb/45Zi/+OZZv/jnm//46F0/+Oebv/kmmf/5JZh/+ObaP/jq4X/5cKq//Df
+ 1P/8+PX///7+/////////////////////////v7//fv6//r18v/16uL/8NvP/+nKtv/juZ3/4rGP/+Os
+ hv/kqoL/5aqC/+Ouiv/itZb/5cCn/+rOvP/w3dD/9erj//r08f/9+/r///7+////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////79/f/79/T/9Ofd/+fErP/irIf/4p1t/+OVX//jl2H/5KZ8/+W+
+ pf/q2c7/9/Dt//78+/////////////////////7//fv5//jv6P/qzrv/4rKR/+Ggc//jlWD/45Nd/+Of
+ cf/jt5f/59HB//Pr5f/8+/n/////////////////+vXy/+/f1f/lxrL/462K/+Scbf/jlmL/4pVg/+GX
+ Y//hmGX/4pdj/+SXYv/kmGP/5aJy/+a3lv/pz77/8ujh//z69////v7////////////////////////+
+ /v///f3//fr6//r08f/27Ob/8eDV/+zTwv/rzLf/7Mmx/+3Hrf/tx63/68u0/+vQvf/t2Mr/8eLZ//Xs
+ 5v/59PL//Pv6//7+/f//////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////////////////////v7+//z5
+ 9//26+L/58q1/+Gwjv/hn3H/45Rf/+OVX//jonb/47ib/+jSw//27ej//fz7////////////////////
+ /v/9+/j/+O7m/+vLtf/jr4r/4p5w/+OVYP/jlF7/5KN2/+a9oP/r2c3/9u/r//38+///////////////
+ ///79/b/8ubf/+nRwf/mt5j/5KJ2/+KYZf/hk13/4JJc/+GTXf/ilF7/45Zg/+SbaP/nqX7/6sOo/+/e
+ 0v/28e7//fv7///////////////////////////////////////+/v7//fz6//v49v/58u7/9uvk//bn
+ 3v/25tv/9uXZ//bl2f/259z/9erh//bu6P/48/D/+/f2//37+//+/v7/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////v7//fr4//bt5//nz77/4bWW/+GhdP/jlF7/45Re/+Kf
+ cv/is5P/58u5//Xr5P/9+/r////////////////////+//37+P/57eX/7cmw/+WshP/jnW3/45Zh/+SY
+ ZP/nqn//68eu//Dk2//49fP//v38//////////////////z6+f/37ur/793S/+nApv/kp37/4ppp/+GT
+ Xf/hkVr/4pJb/+KTXP/jlmH/5J5t/+evif/tzbb/9Oni//r4+P/+/f3/////////////////////////
+ //////////////////////7//v79//37+//8+ff//Pf1//z39P/89/P//Pfz//z39P/8+Pb//Pr5//38
+ +//+/f3///7+////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////////////////+
+ /v/9+vn/9+/q/+nVyP/ju5//46R6/+OVYP/jlF7/4p1u/+Kui//mxrD/9eff//36+P//////////////
+ /////v7//fr3//ns4v/vx6v/56qA/+Sca//kmGP/5Z1r/+myi//w0bz/9u7o//v6+f/+/v7/////////
+ /////////v39//v28//16OH/68mz/+Osh//hnG7/4ZRf/+KSW//ik1z/45Nd/+OXYv/ioHP/5bST/+/T
+ wf/48ev//f39//7+/v///////////////////////////////////////////////////v////7+//79
+ /P/+/fz//vz8//78/P/+/Pz//vz8//79/P/+/v3//v7+///+/v//////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////+//38+v/48u7/7NzS/+fErP/lrIT/5Zpn/+OW
+ YP/jnGv/5KqE/+jBp//z49j/+/f0//79/f////////////79/P/79vP/9+fd/+7Ep//nqX7/5Z1q/+SZ
+ ZP/moHD/67eT//LXxP/59PD//f39//7+/v/////////////////+/v7//Pr4//ju6P/sz7z/47CP/+Gf
+ c//ilWD/4pNb/+OTXP/jk17/45hk/+Kkev/kup7/79jJ//r18P//////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////7//vz7//n18v/x5d3/6826/+e0kf/loHD/45hj/+Obaf/lp33/6Lyd//Hez//48+7//Pv6////
+ /////////Pv6//jy7f/z4dT/7MCh/+ene//lnGn/5Jll/+WidP/qupj/89vK//z49f/+////////////
+ ///////////////////9/Pv/+fLt/+3Vxf/itpj/4aN5/+KWYv/jklv/45Nc/+OVX//jmmj/4amD/+TA
+ qv/v3tL/+/f0////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////+/f3/+/j3//bt6f/v18j/6bye/+Sk
+ eP/jmWb/45lm/+WidP/otJD/7tXD//Ts5f/6+Pb///7+///////7+Pf/9ezm/+7Zyf/puZf/5qN0/+Sa
+ Zv/jmWb/46N3/+m8nP/z3c3//fr3//////////////////////////////////79+//69PD/7drN/+O9
+ o//hp3//45dj/+OSW//jlF7/5Jhj/+SfcP/jsZD/5sq4//Hj2//8+ff/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////+/v/++/v/+vbz//Pg1P/pw6j/4qiA/+Kaaf/jl2L/5Jxq/+aqgv/pyrT/8OPa//jz
+ 8P/+/v3///7+//r28//x5t3/6dC9/+axi//knWv/5Jdi/+OZZv/ipXv/576h//Le0P/9+vj/////////
+ /////////////////////////v38//r28v/v4Nf/5caw/+Osh//jmWX/45Nb/+OWYP/lnGr/5qh9/+e9
+ of/r1sn/8+rl//z6+f//////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////+//79/P/8+vj/9OXb/+nI
+ sf/hrIj/4pxs/+OWYf/jmWX/5KV5/+XCqP/s28//9vDr//7+/P////7/+PPw/+7g1f/lx7L/46qD/+OZ
+ Zv/jlmD/4ppo/+Cof//mwab/8uDT//37+f/////////////////////////////////+/f3/+/j1//Ho
+ 4f/p0L//5raU/+Wfbv/klV//45di/+SgcP/mr4j/68mx//Hi2f/38u///fz8////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////v79//38+v/06eD/6M25/+CxkP/hnm//45Zg/+OXYv/joXT/4rqd/+nU
+ xf/07OX//v38//7+/v/38e3/7NrN/+K/p//hpXz/45dj/+OVYP/im2n/4KqF/+XErP/x4tb//fv5////
+ //////////////////////////////7+/v/8+/n/9fDr/+7bzv/pwKP/5qd6/+SaZ//jm2j/5KV6/+a2
+ lv/u08H/9u7o//v49//+/v7/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////////////////v7//v37//Xs
+ 5f/p0sH/4LaY/+Kgcv/jlmH/45Zh/+KfcP/gs5T/5868//Tp4f/+/Pv//v7+//bv6f/q1MX/4Lic/+Gi
+ dv/jlmL/45Vg/+Kca//grYr/5cey//Hk2v/9+/r///////////////////////////////////////38
+ +//59vT/8+bc/+vLtP/lsYz/4qN3/+Kid//jrov/58Gp//De0f/69fL//vz8////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////+/v/+/fz/9u7p/+vYyf/ivqL/46R3/+OXYv/jlmH/4p1t/+Cv
+ i//nybP/8+bc//77+v/+/v7/9u3m/+rQvv/gspT/4Z9y/+OWYf/jlWD/4p1t/+Cxkf/mzLr/8ubf//37
+ +v///////////////////////////////////////v79//37+v/37+n/7dfI/+S/pf/hsZL/4rKS/+W/
+ pv/q0cL/8+jh//z59////v3/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////////////+//79
+ /P/48u7/7t/U/+bHsf/lq4L/5Jxp/+SXY//jnGv/4qqE/+fEq//y4db//Pn3//79/f/26+T/6824/+Gv
+ jP/hnW7/45Vg/+OVYf/jnnD/47eZ/+jTxP/z6uT//fz7////////////////////////////////////
+ //////7//v79//v28//z5t3/7NXG/+nMuP/qzbj/7dbG//Hj2v/48e3//fz7/////v//////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////7//v7+//n18//y5t7/69HA/+ezj//loXL/5Jlm/+Oa
+ aP/jpnz/6L6h//Dczv/59fL//fv6//fq4f/sy7P/46yF/+Kca//jlWD/45dj/+SidP/mv6T/7NvP//Xv
+ 6v/+/fz///////////////////////////////////////////////7//fv6//nz7//16+X/9Ofe//Xn
+ 3v/27OX/+PPu//v59//+/v3/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///+////+/n3//bu6P/w287/6buc/+Wlev/jm2n/45hk/+Ogcf/nt5X/7tTD//Xu6f/7+Pb/+One/+7J
+ r//lqoD/45tp/+OWYf/kmmj/5qh9/+vJsf/x5dz/+PXx//7+/f//////////////////////////////
+ ///////////////////+/v3//fz7//z6+P/8+Pb//Pj2//z6+P/9/Pr//v39////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////+/Pv/+vTx//Tj2f/owaf/46mC/+Kc
+ a//jlmH/45ln/+athv/qybP/8OTc//jy7f/35dn/78er/+eofP/kmmf/5Jhk/+agb//qsYn/8dTB//fv
+ 6f/8+vj///7+///////////////////////////////////////////////////////+/v7//v38//79
+ /P/+/fz//v39//7+/v/+//7/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////7+/f/7+PX/9eng/+fHsP/irYn/4p1v/+OVX//jlmH/5KV7/+a9of/q1MX/8eHV//LY
+ xf/tv5//56Z4/+SaZv/kmWb/5aJ1/+q1kv/z2sn/+/Tv//79/P//////////////////////////////
+ ///////////////////////////////////////////+////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////v7+//z5+P/27OX/58y4/+Gy
+ kf/hn3L/45Rf/+OUX//jn3H/47CO/+TBqv/qy7f/7Mar/+q1kP/mo3T/5Jll/+OZZ//kpHn/6bmY//Tf
+ z//89/T///7+////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////v///fr5//fu6P/o0cH/4beZ/+Gidv/jlF7/45Nd/+KZaf/go3v/4a2M/+W1
+ lP/nso3/5qh+/+Sdbf/jl2P/45pp/+Omff/nvJ7/9OHT//359v//////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////+/v/9+/r/9/Hs/+rY
+ y//jvqP/4qZ8/+OVX//iklz/4ZRh/+CYaP/fnG//4qBy/+OgcP/im2n/4ZZi/+KUX//immn/46mC/+a+
+ o//z4tb//fn3////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////+//38+//49PD/7uHX/+jIsv/lroj/5Jln/+KUX//hkl7/4JNf/9+V
+ Yv/gl2P/4ZZi/+CUYP/gk13/4ZNd/+Kba//iq4f/5cKq//Pk2v/9+ff/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////7//v38//r4
+ 9f/y6+T/7NPB/+i3lv/koHH/45Zi/+KTXP/gkVv/35Fc/9+SXP/fklz/35Fb/+CSW//hk13/4Zxt/+Gu
+ jP/lxrH/8+bd//36+P//////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////+/v3//Pv5//fz7//w3c7/6cCi/+Slev/jmWb/4pNd/+CR
+ Wv/fkFr/35Ba/9+QWv/fkFr/4JJb/+GTXf/inW//4rKR/+XLuf/z6eH//fv5////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /v/+/fz/+/n2//Pk2P/pxaz/4qmB/+Kbaf/hk17/4JBa/96PWf/fkFr/35Ba/+CQWv/gkVz/4ZNe/+Kg
+ c//jtpj/5tDB//Pr5f/9+/n/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////79/f/8+/r/9Off/+nKtP/grYn/4Zxt/+KU
+ X//gkFr/349Z/9+PWf/fkFn/4JBb/+GSXv/jl2T/5KZ7/+a9ov/p18v/9e7q//37+v//////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////v7+//38/P/16uP/6c68/+Cykv/hnnH/4pRg/+GRW//gkFr/349Z/96PWf/fkVv/4ZRg/+Sc
+ a//mrYX/6cat/+3f1f/38u///fz7////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////v7//v39//bt5//q08T/4bic/+Gh
+ dP/ilWH/4pJc/+GRW//fkFr/35Ba/+CRXP/ilmL/5aBw/+i0j//tz7n/8ujh//n29f/+/f3/////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////+/v/+/f3/9/Dr/+zazf/kwKf/46V6/+OWYv/jk1z/4pJc/+GRW//hkVv/4pNd/+OY
+ ZP/lonP/6rmW//HXxf/58+///fz7//7+/v//////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////79/v/48/H/8OLY/+jL
+ tv/mrYb/5Jtp/+OVX//jk1z/4pJc/+KSXP/jlF7/45ll/+Wjdv/qu5v/89zM//z49f/+////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////v7+//r39f/06uT/7tbG/+i2lP/lonP/5Jhj/+OTXf/jk1z/45Nc/+OU
+ Xv/jmWb/46V6/+m+oP/z39D//fr4////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////+/v///Pv5//jx
+ 7f/y4NT/6b+h/+WnfP/jm2j/45Rd/+OTXP/jk1z/45Vf/+OaaP/ip3//58Cm//Pg1P/9+/r/////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////+/fz/+/fz//Xn3v/oxav/4quF/+KcbP/jlF3/45Nc/+OT
+ XP/jlV//4ptp/+CqhP/mw6z/8uLX//37+v//////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////////////////+
+ /v/8+ff/9uvj/+jKtf/hsI3/4Z5w/+OUXv/jk1v/45Nc/+OVYP/inGv/4K2K/+bHsv/y5Nr//fz6////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////7+//36+f/27ef/6M++/+G0lf/hoXX/45Re/+OT
+ W//jk1z/45Vh/+Kdbv/hsZH/5su5//Lm3v/9/Pv/////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////v7//fv6//fw6//p1cf/4rqf/+Kkev/jlF//45Nb/+OTXP/jlmH/455w/+K1l//o0MD/8+nj//38
+ +///////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////v/9/Pr/+PPv/+zc0f/lwqn/46h//+OV
+ X//jk1v/45Nc/+OWYf/joHL/47ue/+nWyP/07ef//v38////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////79/P/69vP/8OXe/+rMuP/msIv/5Jpn/+OVXv/jlV//5Jpm/+Wme//mwqn/7NzR//Xw
+ 7P/+/f3/////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////39//z59//27ur/79jI/+m6
+ mv/loHL/45dj/+OXY//ln27/566G/+rLtf/v49v/9/Pw//7+/f//////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////v7//vz7//r39P/z4dX/68On/+SnfP/jmmj/45pn/+Skdf/otZH/7dTC//Tr
+ 5f/69/X//v7+////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////+/fz//Pr5//Xn
+ 3f/qyLH/4auG/+KcbP/im2r/46d9/+a7nP/w3M7/+fPv//38+///////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////+/f/9/Pv/9u3m/+zTw//jup7/4qqE/+Kogf/js5L/58au//Pl
+ 2v/7+PX//v7+////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////7+//7+
+ /f/58+//8OLY/+nPvv/kwKb/472i/+XFr//q1cX/9uzm//37+f//////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////v////v59//27+r/8OTb/+vYyv/p1cb/69rO/+/k
+ 3P/48/D//v38////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////v38//v59v/59PD/9u7o//Xt5v/27+r/+PTw//z6+f/+/v7/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////v7//v38//38+v/8+vj//Pn3//z6
+ +P/9+/r//v39////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////v7//v7+//7+/v///v3//v79//7+/v//////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////////8/////v//
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////+/////f////P////6////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////v////0////4P//
+ //P/////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////8////+D///+8////5P//////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////////l////vf//
+ /4n////R////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////9H///+K////S////7X/////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////tf//
+ /0z///8P////jf////P/////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////T///+O////D////wH///9L////tP//////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////tP//
+ /0v///8B////AP///xX///9m////1v////z/////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////P///9b///9m////Ff///wD///8A////AP///yT///9/////2v//
+ //z/////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////z////a////f///
+ /yT///8A////AP///wD///8A////A////yD///9/////1v/////////+////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////7/////////1v///3////8g////A////wD///8AAAAAAP///wD///8A////A///
+ /yT///9l////sP///+7/////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////7v///7H///9l////JP//
+ /wP///8A////AAAAAAAAAAAA////AP///wD///8A////AP///xT///9I////iP///7L////P////4///
+ //L////7/////v//////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////////////////9////+P//
+ /+/////i////z////7L///+I////SP///xT///8A////AP///wD///8AAAAAAAAAAAAAAAAAAAAAAP//
+ /wD///8A////AP///wH///8O////R////4P///+4////3/////T////9////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////r////t////1////7b///+D////Rv///w7///8B////AP//
+ /wD///8AAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAA
+ AAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAABgAAAAAAA
+ AAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAc=
\ No newline at end of file
diff --git a/AIMS/OremrUserControl/PanelScrollHelper.cs b/AIMS/OremrUserControl/PanelScrollHelper.cs
new file mode 100644
index 0000000..8e735ea
--- /dev/null
+++ b/AIMS/OremrUserControl/PanelScrollHelper.cs
@@ -0,0 +1,44 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+
+namespace AIMS.PublicUI
+{
+ class PanelScrollHelper
+ {
+ ///
+ /// 初始化Panel
+ ///
+ ///
+ public static void InitializePanelScroll(Panel panel)
+ {
+ panel.Click += (obj, arg) => { panel.Select(); };
+ InitializePanelScroll(panel, panel);
+ return;
+ }
+
+ ///
+ /// 递归初始化Panel内部各容器和控件
+ ///
+ ///
+ ///
+ private static void InitializePanelScroll(Control container, Control panelRoot)
+ {
+ foreach (Control control in container.Controls)
+ {
+ if (control is Panel || control is GroupBox || control is SplitContainer ||
+ control is TabControl || control is UserControl)
+ {
+ control.Click += (obj, arg) => { panelRoot.Select(); };
+ InitializePanelScroll(control, panelRoot);
+ }
+ else if (control is Label)
+ {
+ control.Click += (obj, arg) => { panelRoot.Select(); };
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/AIMS/Template/手术排程模板.xlt b/AIMS/Template/手术排程模板.xlt
new file mode 100644
index 0000000..399c7b4
Binary files /dev/null and b/AIMS/Template/手术排程模板.xlt differ
diff --git a/AIMSEntity/Extensions/BOperationReview.cs b/AIMSEntity/Extensions/BOperationReview.cs
index 8135b86..fff2864 100644
--- a/AIMSEntity/Extensions/BOperationReview.cs
+++ b/AIMSEntity/Extensions/BOperationReview.cs
@@ -26,19 +26,15 @@ namespace AIMSBLL
public static DataTable GetOperationPlanDataTable(DateTime BeginDate, DateTime EndDate, string DepName)
{
- string strSql = "SELECT CONVERT(VARCHAR(16),OperationRoom)+'-'+CONVERT(VARCHAR(16),PlanOrder ) as OperationRoom , of1.ApplyDepName,of1.SickBed, of1.Contagion, of1.MdrecNo, of1.PatientName, of1.Sex, of1.BirthDay, " +
- " of1.OrderOperationTime PlanOperationTime,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor," +
- " of1.AnaesthesiaMethodName , of1.AnesthesiaDoctor ," +
- " of1.InstrumentNurse AS InstrumentNurse, of1.TourNurse AS TourNurse, of1.Remark " +
- " FROM V_OperationFront of1 WHERE of1.PlanOperationTime>='" + BeginDate + "' AND of1.PlanOperationTime<'" + EndDate + "' AND of1.ApplyDepName LIKE '%%'";
+ string strSql = "SELECT of1.ApplyId,OperationRoom,PlanOrder ,OrderOperationTime , of1.ApplyDepName,of1.SickBed, of1.MdrecNo, of1.PatientName, of1.Sex, of1.Age,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor, of1.Assistant1 Assistant, " +
+ " of1.AnaesthesiaMethodName , of1.AnesthesiaDoctor , of1.InstrumentNurse , of1.TourNurse , of1.Remark,of1.OperationType" +
+ " FROM V_OperationFront of1 WHERE of1.PlanOperationTime>='" + BeginDate + "' AND of1.PlanOperationTime<'" + EndDate + "' Order By OperationRoomID,PlanOrder";
return HelperDB.DbHelperSQL.GetDataTable(strSql);
}
public static DataTable GetOperationPlanDataTable(string ApplyId)
{
- string strSql = "SELECT of1.OperationRoom, of1.ApplyDepName,of1.SickBed, of1.Contagion, of1.MdrecNo, of1.PatientName, of1.Sex, of1.BirthDay, " +
- " of1.OrderOperationTime PlanOperationTime,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor," +
- " of1.AnaesthesiaMethodName , (of1.AnesthesiaDoctor + ' ' +of1.AnesthesiaDoctorSucceed) AS AnesthesiaDoctor," +
- " (of1.InstrumentNurse +' '+ of1.InstrumentNurseSucceed) AS InstrumentNurse,(of1.TourNurse + ' '+of1.TourNurseSucceed) AS TourNurse, of1.Remark " +
+ string strSql = "SELECT of1.ApplyId,OperationRoom,PlanOrder ,OrderOperationTime , of1.ApplyDepName,of1.SickBed, of1.MdrecNo, of1.PatientName, of1.Sex, of1.Age,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor, of1.Assistant1 Assistant, " +
+ " of1.AnaesthesiaMethodName , of1.AnesthesiaDoctor , of1.InstrumentNurse , of1.TourNurse , of1.Remark ,of1.OperationType " +
" FROM V_OperationFront of1 WHERE " + ApplyId + " ";
return HelperDB.DbHelperSQL.GetDataTable(strSql);
}
diff --git a/DrawGraph/AreaManage/TempDataManage.cs b/DrawGraph/AreaManage/TempDataManage.cs
index 06b3c69..992e2b9 100644
--- a/DrawGraph/AreaManage/TempDataManage.cs
+++ b/DrawGraph/AreaManage/TempDataManage.cs
@@ -156,7 +156,8 @@ namespace DrawGraph
ableEdit.CControl.GotFocus -= new EventHandler(txt_Focus);
ableEdit.CControl.GotFocus += new EventHandler(txt_Focus);
((TextBox)ableEdit.CControl).BorderStyle = BorderStyle.Fixed3D;
-
+ //ableEdit.CControl.MouseWheel += new MouseEventHandler(numericUpDown1_MouseWheel);
+ //ableEdit.CControl.MouseEnter += CControl_MouseEnter;
}
ableEdit.CControl.Leave -= new EventHandler(txt_Leave);
ableEdit.CControl.Leave += new EventHandler(txt_Leave);
@@ -166,6 +167,24 @@ namespace DrawGraph
}
}
+ //private void CControl_MouseEnter(object sender, EventArgs e)
+ //{
+ // if (sender is TextBox)
+ // {
+ // ((TextBox)sender).Parent.Focus();
+ // //h.Handled = false;
+ // }
+ //}
+
+ ////取消滚轮事件
+ //void numericUpDown1_MouseWheel(object sender, MouseEventArgs e)
+ //{
+ // if (sender is TextBox)
+ // {
+ // ((TextBox)sender).Parent.Focus();
+ // //h.Handled = false;
+ // }
+ //}
private void txt_Focus(object sender, EventArgs e)
{