PhysLean/HepLean/StandardModel/HiggsBoson/TargetSpace.lean

349 lines
14 KiB
Text
Raw Normal View History

/-
Copyright (c) 2024 Joseph Tooby-Smith. All rights reserved.
Released under Apache 2.0 license.
Authors: Joseph Tooby-Smith
-/
2024-05-03 06:12:59 -04:00
import HepLean.StandardModel.Basic
2024-05-09 15:09:14 -04:00
import HepLean.StandardModel.Representations
import Mathlib.Data.Complex.Exponential
2024-05-06 10:50:13 -04:00
import Mathlib.Tactic.Polyrith
import Mathlib.Geometry.Manifold.VectorBundle.Basic
import Mathlib.Geometry.Manifold.VectorBundle.SmoothSection
import Mathlib.Geometry.Manifold.Instances.Real
import Mathlib.RepresentationTheory.Basic
2024-05-06 10:50:13 -04:00
import Mathlib.Analysis.InnerProductSpace.Basic
2024-05-08 08:55:37 -04:00
import Mathlib.Analysis.InnerProductSpace.Adjoint
2024-05-06 10:50:13 -04:00
import Mathlib.Geometry.Manifold.ContMDiff.Product
import Mathlib.Algebra.QuadraticDiscriminant
/-!
2024-05-09 15:09:14 -04:00
# The Higgs vector space
2024-05-09 15:09:14 -04:00
This file defines the target vector space of the Higgs boson, the potential on it,
and the representation of the SM gauge group acting on it.
This file is a import of `SM.HiggsBoson.Basic`.
2024-05-08 07:49:28 -04:00
## References
- We use conventions given in: https://pdg.lbl.gov/2019/reviews/rpp2019-rev-higgs-boson.pdf
-/
universe v u
namespace StandardModel
2024-05-03 06:12:59 -04:00
noncomputable section
open Manifold
open Matrix
open Complex
open ComplexConjugate
2024-05-06 11:09:37 -04:00
/-- The complex vector space in which the Higgs field takes values. -/
2024-05-06 10:50:13 -04:00
abbrev higgsVec := EuclideanSpace (Fin 2)
section higgsVec
2024-05-20 23:36:47 +02:00
/-- The continuous linear map from the vector space `higgsVec` to `(Fin 2 → )` achieved by
2024-05-06 11:09:37 -04:00
casting vectors. -/
2024-05-06 10:50:13 -04:00
def higgsVecToFin2 : higgsVec →L[] (Fin 2 → ) where
toFun x := x
2024-06-08 03:47:17 +02:00
map_add' x y := by simp
map_smul' a x := by simp
2024-05-06 10:50:13 -04:00
lemma smooth_higgsVecToFin2 : Smooth 𝓘(, higgsVec) 𝓘(, Fin 2 → ) higgsVecToFin2 :=
ContinuousLinearMap.smooth higgsVecToFin2
2024-05-09 15:09:14 -04:00
namespace higgsVec
2024-05-09 15:16:38 -04:00
/-- The Higgs representation as a homomorphism from the gauge group to unitary `2×2`-matrices. -/
@[simps!]
2024-05-09 15:16:38 -04:00
noncomputable def higgsRepUnitary : gaugeGroup →* unitaryGroup (Fin 2) where
2024-05-09 15:09:14 -04:00
toFun g := repU1 g.2.2 * fundamentalSU2 g.2.1
map_mul' := by
intro ⟨_, a2, a3⟩ ⟨_, b2, b3⟩
change repU1 (a3 * b3) * fundamentalSU2 (a2 * b2) = _
2024-06-08 03:47:17 +02:00
rw [repU1.map_mul, fundamentalSU2.map_mul, mul_assoc, mul_assoc,
← mul_assoc (repU1 b3) _ _, repU1_fundamentalSU2_commute]
2024-05-09 15:09:14 -04:00
repeat rw [mul_assoc]
2024-06-08 03:47:17 +02:00
map_one' := by simp
2024-05-07 08:50:08 -04:00
2024-05-20 23:36:47 +02:00
/-- An orthonormal basis of higgsVec. -/
2024-05-09 08:16:23 -04:00
noncomputable def orthonormBasis : OrthonormalBasis (Fin 2) higgsVec :=
EuclideanSpace.basisFun (Fin 2)
/-- Takes in a `2×2`-matrix and returns a linear map of `higgsVec`. -/
noncomputable def matrixToLin : Matrix (Fin 2) (Fin 2) →* (higgsVec →L[] higgsVec) where
toFun g := LinearMap.toContinuousLinearMap
$ Matrix.toLin orthonormBasis.toBasis orthonormBasis.toBasis g
map_mul' g h := ContinuousLinearMap.coe_inj.mp $
Matrix.toLin_mul orthonormBasis.toBasis orthonormBasis.toBasis orthonormBasis.toBasis g h
map_one' := ContinuousLinearMap.coe_inj.mp $ Matrix.toLin_one orthonormBasis.toBasis
lemma matrixToLin_star (g : Matrix (Fin 2) (Fin 2) ) :
matrixToLin (star g) = star (matrixToLin g) :=
2024-05-09 15:09:14 -04:00
ContinuousLinearMap.coe_inj.mp $ Matrix.toLin_conjTranspose orthonormBasis orthonormBasis g
2024-05-09 08:16:23 -04:00
lemma matrixToLin_unitary (g : unitaryGroup (Fin 2) ) :
matrixToLin g ∈ unitary (higgsVec →L[] higgsVec) := by
2024-06-08 03:47:17 +02:00
rw [@unitary.mem_iff, ← matrixToLin_star, ← matrixToLin.map_mul, ← matrixToLin.map_mul,
mem_unitaryGroup_iff.mp g.prop, mem_unitaryGroup_iff'.mp g.prop, matrixToLin.map_one]
2024-05-09 08:16:23 -04:00
simp
2024-05-09 15:16:38 -04:00
/-- The natural homomorphism from unitary `2×2` complex matrices to unitary transformations
of `higgsVec`. -/
2024-05-09 08:16:23 -04:00
noncomputable def unitaryToLin : unitaryGroup (Fin 2) →* unitary (higgsVec →L[] higgsVec) where
toFun g := ⟨matrixToLin g, matrixToLin_unitary g⟩
2024-06-08 03:47:17 +02:00
map_mul' g h := by simp
map_one' := by simp
2024-05-09 08:16:23 -04:00
2024-05-09 15:16:38 -04:00
/-- The inclusion of unitary transformations on `higgsVec` into all linear transformations. -/
2024-05-09 08:16:23 -04:00
@[simps!]
def unitToLinear : unitary (higgsVec →L[] higgsVec) →* higgsVec →ₗ[] higgsVec :=
DistribMulAction.toModuleEnd higgsVec
2024-05-09 15:16:38 -04:00
/-- The representation of the gauge group acting on `higgsVec`. -/
2024-05-09 08:16:23 -04:00
@[simps!]
2024-05-09 15:16:38 -04:00
def rep : Representation gaugeGroup higgsVec :=
2024-05-09 08:16:23 -04:00
unitToLinear.comp (unitaryToLin.comp higgsRepUnitary)
2024-05-09 15:16:38 -04:00
lemma higgsRepUnitary_mul (g : gaugeGroup) (φ : higgsVec) :
2024-05-09 15:09:14 -04:00
(higgsRepUnitary g).1 *ᵥ φ = g.2.2 ^ 3 • (g.2.1.1 *ᵥ φ) := by
2024-06-08 03:47:17 +02:00
simp [higgsRepUnitary_apply_coe, smul_mulVec_assoc]
2024-05-09 15:09:14 -04:00
2024-05-09 15:16:38 -04:00
lemma rep_apply (g : gaugeGroup) (φ : higgsVec) : rep g φ = g.2.2 ^ 3 • (g.2.1.1 *ᵥ φ) :=
2024-05-09 15:09:14 -04:00
higgsRepUnitary_mul g φ
2024-05-09 15:16:38 -04:00
lemma norm_invariant (g : gaugeGroup) (φ : higgsVec) : ‖rep g φ‖ = ‖φ‖ :=
2024-05-09 08:16:23 -04:00
ContinuousLinearMap.norm_map_of_mem_unitary (unitaryToLin (higgsRepUnitary g)).2 φ
section potentialDefn
variable (μSq lambda : )
local notation "λ" => lambda
2024-05-07 08:50:08 -04:00
/-- The higgs potential for `higgsVec`, i.e. for constant higgs fields. -/
def potential (φ : higgsVec) : := - μSq * ‖φ‖ ^ 2 + λ * ‖φ‖ ^ 4
2024-05-07 08:50:08 -04:00
lemma potential_invariant (φ : higgsVec) (g : gaugeGroup) :
potential μSq (λ) (rep g φ) = potential μSq (λ) φ := by
2024-06-08 03:47:17 +02:00
simp only [potential, neg_mul, norm_invariant]
2024-05-09 08:16:23 -04:00
lemma potential_as_quad (φ : higgsVec) :
λ * ‖φ‖ ^ 2 * ‖φ‖ ^ 2 + (- μSq ) * ‖φ‖ ^ 2 + (- potential μSq (λ) φ) = 0 := by
2024-06-08 03:47:17 +02:00
simp [potential]; ring
end potentialDefn
section potentialProp
variable {lambda : }
variable (μSq : )
variable (hLam : 0 < lambda)
local notation "λ" => lambda
lemma potential_snd_term_nonneg (φ : higgsVec) :
0 ≤ λ * ‖φ‖ ^ 4 := by
2024-05-07 08:50:08 -04:00
rw [mul_nonneg_iff]
apply Or.inl
simp_all only [ge_iff_le, norm_nonneg, pow_nonneg, and_true]
exact le_of_lt hLam
lemma zero_le_potential_discrim (φ : higgsVec) :
0 ≤ discrim (λ) (- μSq ) (- potential μSq (λ) φ) := by
have h1 := potential_as_quad μSq (λ) φ
2024-05-07 08:50:08 -04:00
rw [quadratic_eq_zero_iff_discrim_eq_sq] at h1
2024-06-08 03:47:17 +02:00
· simp only [h1, ne_eq, div_eq_zero_iff, OfNat.ofNat_ne_zero, or_false]
exact sq_nonneg (2 * lambda * ‖φ‖ ^ 2 + -μSq)
· exact ne_of_gt hLam
2024-05-07 08:50:08 -04:00
lemma potential_eq_zero_sol (φ : higgsVec)
(hV : potential μSq (λ) φ = 0) : φ = 0 ‖φ‖ ^ 2 = μSq / λ := by
have h1 := potential_as_quad μSq (λ) φ
2024-05-07 08:50:08 -04:00
rw [hV] at h1
have h2 : ‖φ‖ ^ 2 * (lambda * ‖φ‖ ^ 2 + -μSq ) = 0 := by
linear_combination h1
simp at h2
cases' h2 with h2 h2
simp_all
apply Or.inr
field_simp at h2 ⊢
ring_nf
linear_combination h2
lemma potential_eq_zero_sol_of_μSq_nonpos (hμSq : μSq ≤ 0)
(φ : higgsVec) (hV : potential μSq (λ) φ = 0) : φ = 0 := by
cases' (potential_eq_zero_sol μSq hLam φ hV) with h1 h1
2024-05-07 08:50:08 -04:00
exact h1
by_cases hμSqZ : μSq = 0
simpa [hμSqZ] using h1
refine ((?_ : ¬ 0 ≤ μSq / λ) (?_)).elim
2024-05-07 08:50:08 -04:00
· simp_all [div_nonneg_iff]
intro h
exact lt_imp_lt_of_le_imp_le (fun _ => h) (lt_of_le_of_ne hμSq hμSqZ)
· rw [← h1]
exact sq_nonneg ‖φ‖
lemma potential_bounded_below (φ : higgsVec) :
- μSq ^ 2 / (4 * (λ)) ≤ potential μSq (λ) φ := by
have h1 := zero_le_potential_discrim μSq hLam φ
2024-05-07 08:50:08 -04:00
simp [discrim] at h1
ring_nf at h1
rw [← neg_le_iff_add_nonneg'] at h1
have h3 : (λ) * potential μSq (λ) φ * 4 = (4 * λ) * potential μSq (λ) φ := by
2024-05-07 08:50:08 -04:00
ring
rw [h3] at h1
have h2 := (div_le_iff' (by simp [hLam] : 0 < 4 * λ )).mpr h1
2024-05-07 08:50:08 -04:00
ring_nf at h2 ⊢
exact h2
lemma potential_bounded_below_of_μSq_nonpos {μSq : }
(hμSq : μSq ≤ 0) (φ : higgsVec) : 0 ≤ potential μSq (λ) φ := by
2024-05-07 08:50:08 -04:00
refine add_nonneg ?_ (potential_snd_term_nonneg hLam φ)
2024-06-08 03:47:17 +02:00
field_simp [mul_nonpos_iff]
simp_all [ge_iff_le, norm_nonneg, pow_nonneg, and_self, or_true]
2024-05-07 08:50:08 -04:00
lemma potential_eq_bound_discrim_zero (φ : higgsVec)
(hV : potential μSq (λ) φ = - μSq ^ 2 / (4 * λ)) :
discrim (λ) (- μSq) (- potential μSq (λ) φ) = 0 := by
2024-06-08 03:47:17 +02:00
field_simp [discrim, hV]
2024-05-07 08:50:08 -04:00
lemma potential_eq_bound_higgsVec_sq (φ : higgsVec)
(hV : potential μSq (λ) φ = - μSq ^ 2 / (4 * (λ))) :
‖φ‖ ^ 2 = μSq / (2 * λ) := by
have h1 := potential_as_quad μSq (λ) φ
2024-05-07 08:50:08 -04:00
rw [quadratic_eq_zero_iff_of_discrim_eq_zero _
(potential_eq_bound_discrim_zero μSq hLam φ hV)] at h1
2024-06-08 03:47:17 +02:00
simp_rw [h1, neg_neg]
2024-05-07 08:50:08 -04:00
exact ne_of_gt hLam
lemma potential_eq_bound_iff (φ : higgsVec) :
2024-06-08 03:47:17 +02:00
potential μSq (λ) φ = - μSq ^ 2 / (4 * (λ)) ↔ ‖φ‖ ^ 2 = μSq / (2 * (λ)) :=
Iff.intro (potential_eq_bound_higgsVec_sq μSq hLam φ)
(fun h ↦ by
have hv : ‖φ‖ ^ 4 = ‖φ‖ ^ 2 * ‖φ‖ ^ 2 := by ring_nf
field_simp [potential, hv, h]
ring_nf)
2024-05-07 08:50:08 -04:00
lemma potential_eq_bound_iff_of_μSq_nonpos {μSq : }
2024-06-08 03:47:17 +02:00
(hμSq : μSq ≤ 0) (φ : higgsVec) : potential μSq (λ) φ = 0 ↔ φ = 0 :=
2024-06-08 03:51:56 +02:00
Iff.intro (fun h ↦ potential_eq_zero_sol_of_μSq_nonpos μSq hLam hμSq φ h)
(fun h ↦ by simp [potential, h])
2024-05-07 08:50:08 -04:00
2024-06-08 03:47:17 +02:00
lemma potential_eq_bound_IsMinOn (φ : higgsVec)
2024-05-07 08:50:08 -04:00
(hv : potential μSq lambda φ = - μSq ^ 2 / (4 * lambda)) :
IsMinOn (potential μSq lambda) Set.univ φ := by
2024-06-08 03:47:17 +02:00
rw [isMinOn_univ_iff, hv]
exact fun x ↦ potential_bounded_below μSq hLam x
2024-05-07 08:50:08 -04:00
lemma potential_eq_bound_IsMinOn_of_μSq_nonpos {μSq : }
2024-05-07 08:50:08 -04:00
(hμSq : μSq ≤ 0) (φ : higgsVec) (hv : potential μSq lambda φ = 0) :
IsMinOn (potential μSq lambda) Set.univ φ := by
2024-06-08 03:47:17 +02:00
rw [isMinOn_univ_iff, hv]
exact fun x ↦ potential_bounded_below_of_μSq_nonpos hLam hμSq x
2024-05-07 08:50:08 -04:00
lemma potential_bound_reached_of_μSq_nonneg {μSq : } (hμSq : 0 ≤ μSq) :
2024-05-07 08:50:08 -04:00
∃ (φ : higgsVec), potential μSq lambda φ = - μSq ^ 2 / (4 * lambda) := by
use ![√(μSq/(2 * lambda)), 0]
refine (potential_eq_bound_iff μSq hLam _).mpr ?_
2024-06-08 03:47:17 +02:00
simp [PiLp.norm_sq_eq_of_L2]
2024-05-07 08:50:08 -04:00
field_simp [mul_pow]
lemma IsMinOn_potential_iff_of_μSq_nonneg {μSq : } (hμSq : 0 ≤ μSq) :
2024-05-07 08:50:08 -04:00
IsMinOn (potential μSq lambda) Set.univ φ ↔ ‖φ‖ ^ 2 = μSq /(2 * lambda) := by
2024-06-08 03:47:17 +02:00
apply Iff.intro <;> rw [← potential_eq_bound_iff μSq hLam φ]
2024-05-07 08:50:08 -04:00
· intro h
obtain ⟨φm, hφ⟩ := potential_bound_reached_of_μSq_nonneg hLam hμSq
have hm := isMinOn_univ_iff.mp h φm
rw [hφ] at hm
2024-06-08 03:47:17 +02:00
exact (Real.partialOrder.le_antisymm _ _ (potential_bounded_below μSq hLam φ) hm).symm
· exact potential_eq_bound_IsMinOn μSq hLam φ
2024-05-07 08:50:08 -04:00
lemma IsMinOn_potential_iff_of_μSq_nonpos {μSq : } (hμSq : μSq ≤ 0) :
2024-05-07 08:50:08 -04:00
IsMinOn (potential μSq lambda) Set.univ φ ↔ φ = 0 := by
2024-06-08 03:47:17 +02:00
apply Iff.intro <;> rw [← potential_eq_bound_iff_of_μSq_nonpos hLam hμSq φ]
2024-05-07 08:50:08 -04:00
· intro h
have h0 := isMinOn_univ_iff.mp h 0
have h1 := potential_bounded_below_of_μSq_nonpos hLam hμSq φ
2024-06-08 03:47:17 +02:00
rw [(potential_eq_bound_iff_of_μSq_nonpos hLam hμSq 0).mpr (by rfl)] at h0
2024-05-07 08:50:08 -04:00
exact (Real.partialOrder.le_antisymm _ _ h1 h0).symm
2024-06-08 03:47:17 +02:00
· exact potential_eq_bound_IsMinOn_of_μSq_nonpos hLam hμSq φ
2024-05-07 08:50:08 -04:00
end potentialProp
2024-05-20 23:36:47 +02:00
/-- Given a Higgs vector, a rotation matrix which puts the first component of the
vector to zero, and the second component to a real -/
2024-05-08 07:49:28 -04:00
def rotateMatrix (φ : higgsVec) : Matrix (Fin 2) (Fin 2) :=
![![φ 1 /‖φ‖ , - φ 0 /‖φ‖], ![conj (φ 0) / ‖φ‖ , conj (φ 1) / ‖φ‖] ]
lemma rotateMatrix_star (φ : higgsVec) :
star φ.rotateMatrix =
![![conj (φ 1) /‖φ‖ , φ 0 /‖φ‖], ![- conj (φ 0) / ‖φ‖ , φ 1 / ‖φ‖] ] := by
2024-06-08 03:47:17 +02:00
simp_rw [star, rotateMatrix, conjTranspose]
2024-05-08 07:49:28 -04:00
ext i j
fin_cases i <;> fin_cases j <;> simp [conj_ofReal]
lemma rotateMatrix_det {φ : higgsVec} (hφ : φ ≠ 0) : (rotateMatrix φ).det = 1 := by
have h1 : (‖φ‖ : ) ≠ 0 := ofReal_inj.mp.mt (norm_ne_zero_iff.mpr hφ)
2024-06-08 03:47:17 +02:00
field_simp [rotateMatrix, det_fin_two]
2024-05-08 07:49:28 -04:00
rw [← ofReal_mul, ← sq, ← @real_inner_self_eq_norm_sq]
2024-06-08 03:47:17 +02:00
simp [PiLp.inner_apply, Complex.inner, neg_mul, sub_neg_eq_add,
2024-05-08 07:49:28 -04:00
Fin.sum_univ_two, ofReal_add, ofReal_mul, mul_conj, mul_comm, add_comm]
lemma rotateMatrix_unitary {φ : higgsVec} (hφ : φ ≠ 0) :
(rotateMatrix φ) ∈ unitaryGroup (Fin 2) := by
rw [mem_unitaryGroup_iff', rotateMatrix_star, rotateMatrix]
erw [mul_fin_two, one_fin_two]
have : (‖φ‖ : ) ≠ 0 := ofReal_inj.mp.mt (norm_ne_zero_iff.mpr hφ)
ext i j
2024-06-08 03:51:56 +02:00
fin_cases i <;> fin_cases j <;> field_simp
<;> rw [← ofReal_mul, ← sq, ← @real_inner_self_eq_norm_sq]
2024-06-08 03:47:17 +02:00
· simp [PiLp.inner_apply, Complex.inner, neg_mul, sub_neg_eq_add,
2024-05-08 07:49:28 -04:00
Fin.sum_univ_two, ofReal_add, ofReal_mul, mul_conj, mul_comm, add_comm]
· ring_nf
· ring_nf
2024-06-08 03:47:17 +02:00
· simp [PiLp.inner_apply, Complex.inner, neg_mul, sub_neg_eq_add,
2024-05-08 07:49:28 -04:00
Fin.sum_univ_two, ofReal_add, ofReal_mul, mul_conj, mul_comm]
lemma rotateMatrix_specialUnitary {φ : higgsVec} (hφ : φ ≠ 0) :
(rotateMatrix φ) ∈ specialUnitaryGroup (Fin 2) :=
mem_specialUnitaryGroup_iff.mpr ⟨rotateMatrix_unitary hφ, rotateMatrix_det hφ⟩
2024-05-20 23:36:47 +02:00
/-- Given a Higgs vector, an element of the gauge group which puts the first component of the
vector to zero, and the second component to a real -/
2024-05-09 15:16:38 -04:00
def rotateGuageGroup {φ : higgsVec} (hφ : φ ≠ 0) : gaugeGroup :=
2024-05-08 07:49:28 -04:00
⟨1, ⟨(rotateMatrix φ), rotateMatrix_specialUnitary hφ⟩, 1⟩
lemma rotateGuageGroup_apply {φ : higgsVec} (hφ : φ ≠ 0) :
2024-05-09 15:09:14 -04:00
rep (rotateGuageGroup hφ) φ = ![0, ofReal ‖φ‖] := by
rw [rep_apply]
2024-06-08 03:47:17 +02:00
simp only [rotateGuageGroup, rotateMatrix, one_pow, one_smul,
Nat.succ_eq_add_one, Nat.reduceAdd, ofReal_eq_coe]
2024-05-08 07:49:28 -04:00
ext i
fin_cases i
2024-06-08 03:47:17 +02:00
· simp only [mulVec, Fin.zero_eta, Fin.isValue, cons_val', empty_val', cons_val_fin_one,
cons_val_zero, cons_dotProduct, vecHead, vecTail, Nat.succ_eq_add_one, Nat.reduceAdd,
Function.comp_apply, Fin.succ_zero_eq_one, dotProduct_empty, add_zero]
ring_nf
· simp only [Fin.mk_one, Fin.isValue, cons_val_one, head_cons, mulVec, Fin.isValue,
cons_val', empty_val', cons_val_fin_one, vecHead, cons_dotProduct, vecTail, Nat.succ_eq_add_one,
Nat.reduceAdd, Function.comp_apply, Fin.succ_zero_eq_one, dotProduct_empty, add_zero]
have : (‖φ‖ : ) ≠ 0 := ofReal_inj.mp.mt (norm_ne_zero_iff.mpr hφ)
field_simp
rw [← ofReal_mul, ← sq, ← @real_inner_self_eq_norm_sq]
simp [PiLp.inner_apply, Complex.inner, neg_mul, sub_neg_eq_add,
2024-05-08 07:49:28 -04:00
Fin.sum_univ_two, ofReal_add, ofReal_mul, mul_conj, mul_comm]
theorem rotate_fst_zero_snd_real (φ : higgsVec) :
2024-05-09 15:16:38 -04:00
∃ (g : gaugeGroup), rep g φ = ![0, ofReal ‖φ‖] := by
2024-05-08 07:49:28 -04:00
by_cases h : φ = 0
· use ⟨1, 1, 1⟩
2024-05-09 15:09:14 -04:00
simp [h]
2024-05-08 07:49:28 -04:00
ext i
fin_cases i <;> rfl
· use rotateGuageGroup h
exact rotateGuageGroup_apply h
2024-05-07 08:50:08 -04:00
end higgsVec
2024-05-06 10:50:13 -04:00
end higgsVec
2024-05-03 06:12:59 -04:00
end
end StandardModel