{ Feeding Origin is software that supports calculation of nutrient requirement of livestock and feed design based on Japanese feeding standard. Copyright (C) 2017, Syuichiro Fukagawa. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Feeding Originは、日本飼養標準に基づいた家畜の養分要求量の計算および飼料設計を支援するソフ トウェアです. Copyright (C) 2017, 深川修一郎.  このプログラムはフリーソフトウェアです。あなたはこれを、フリーソフトウェア財団によって 発行されたGNU一般公衆利用許諾書(バージョン3か、それ以降のバージョンのうちどれか)が定める 条件の下で再頒布または改変することができます。 このプログラムは有用であることを願って頒布されますが、*全くの無保証* です。商業可能性の保証 や特定目的への適合性は、言外に示されたものも含め、全く存在しません。詳しくはGNU一般公衆利用 許諾書をご覧ください。  あなたはこのプログラムと共に、GNU一般公衆利用許諾書のコピーを一部 受け取っているはずです。 もし受け取っていなければ、 をご覧ください。 *本日本語訳は、FSFより2007年6月29日に発行されたGNU GPL v3の原文から、八田真行氏が翻訳した ものを基にしています。 < https://mag.osdn.jp/07/09/02/130237 > } program Inspection4JfsOrigin; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, tachartlazaruspkg, u_DataGenerator1, u_Marker, u_regWorkData, u_splash { you can add units after this }; {$R *.res} begin RequireDerivedFormResource := True; Application.Initialize; Application.CreateForm(TForm1, Form1); Application.CreateForm(TfMarker, fMarker); Application.CreateForm(TRegWorkForm, RegWorkForm); Application.CreateForm(TfSplash, fSplash); Application.Run; end.