-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstockpile.config.js
2329 lines (2324 loc) · 78.1 KB
/
stockpile.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// 上階の係数
export const upStairsRate = 7
// 階下の係数
export const downStairsRate = 3
export const categoryA1 = [7]
export const categoryA2 = [10, 13, 14]
export const categoryB1 = [19, 20, 23, 24, 25, 26, 31, 38, 40, 42, 61, 62]
export const categoryB2 = [21, 29]
export const categoryB3 = [35]
export const categoryC = [41, 60]
export const categoryD1 = [53, 54]
export const categoryD2 = [9, 22, 30, 33, 34, 37, 55, 56]
export const lineShareIds = [
1, 2, 3, 21, 22, 23, 24, 30, 34, 37, 38, 39, 55, 57, 58, 59, 60, 61
]
// child1: 子供 3歳~小6
// child2: 子供 中学生以上
// `quantity`プロパティも存在する
// これはスクリプトで動的に挿入する
// `quantity`が0の品目を結果から除外する
// 調味料セットの様な具体的な数値が必要ではないものは、
// `quantity = ''` として処理し、`quantity = 0`にしないことで結果に含める
// 具体的な数値が必要ではない品目(適宜・適量のような品目)
// X人でX個
// 特定の世代だけでX個
// のような品目は`required`を記述しない
export const stockpileList = [
{
id: 1,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: '水',
en: 'Water (for drinking, cooking, etc.)'
},
unit: {
ja: 'L',
en: 'liters'
},
description: {
ja: '人が生命を維持するのに必要な水分量は、年齢や体重によって変わってきますが1日1人3リットルが目安量です。',
en: 'The human body needs approximately 3 liters per day to maintain life. Also, the amount differs depending on the age and weight.'
},
required: {
infantsMale: 2.4,
infantsFemale: 2.4,
child1Male: 2.4,
child1Female: 2.4,
child2Male: 3,
child2Female: 3,
adultMale: 3,
adultFemale: 3,
agedMale: 3,
agedFemale: 3
},
url: {
yahoo: 'https://bit.ly/2Nt1CVQ',
rakuten: 'https://bit.ly/37DfsM3',
amazon: 'https://amzn.to/37CbHGI'
}
},
{
id: 2,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: 'レトルトご飯',
en: 'Retort cooked rice'
},
unit: {
ja: '食',
en: 'packs'
},
description: {
ja: '災害時には、洗わなくてもよいレトルトのおかゆやご飯があると少しでも水の節約になります。おかゆは乳幼児や高齢者の食事としても使えます。',
en: 'Pre-packed rice and rice porridge are helpful to save water. Rice porridge is also useful as a meal for babies and older people.'
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 2.4,
child1Female: 2.4,
child2Male: 3,
child2Female: 3,
adultMale: 3,
adultFemale: 3,
agedMale: 3,
agedFemale: 3
},
url: {
yahoo: 'https://bit.ly/2MjXtmC',
rakuten: 'https://bit.ly/3aIFCPz',
amazon: 'https://amzn.to/37zEImE'
}
},
{
id: 3,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: 'レトルト食品',
en: 'Retort-packed food'
},
unit: {
ja: '個',
en: 'packs'
},
description: {
ja: '調理不要のバラエティーに富んだレトルト食品。災害時は栄養バランスが偏りがちなので、たんぱく質が取れるお肉やお魚を使ったものを選びましょう。',
en: 'Retort-packed food requiring no cooking is available in a variety of types. As meals in times of disaster are prone to nutritional imbalance, please select retort food containing meat or fish from which proteins can be taken in.'
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 0.8,
child1Female: 0.8,
child2Male: 1,
child2Female: 1,
adultMale: 1,
adultFemale: 1,
agedMale: 1,
agedFemale: 1
},
url: {
yahoo: 'https://bit.ly/3uz15T4',
rakuten: 'https://bit.ly/2NlpPNX',
amazon: 'https://amzn.to/3umnuTy'
}
},
{
id: 4,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: '缶詰(さばの味噌煮、野菜など)',
en: 'Canned food'
},
unit: {
ja: '缶',
en: 'cans'
},
description: {
ja: '缶詰は保存食の王様。種類も豊富で味も良く、日常に欠かせない食材でもあります。家族の好みや栄養バランスを考え、たんぱく質が取れるお肉やお魚、豆類の缶詰を選びましょう。缶切りも忘れずに。',
en: "Canned food is the king of preserved food. Rich in variety and tasty, it is an indispensable food item for daily use as well. You are advised to select canned meat, fish, or beans that help you take in proteins while considering each family member's favorite food and nutritional balance. Don't forget to have a can opener in place."
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 0.8,
child1Female: 0.8,
child2Male: 1,
child2Female: 1,
adultMale: 1,
adultFemale: 1,
agedMale: 1,
agedFemale: 1
},
url: {
yahoo: 'https://bit.ly/2P4hFda',
rakuten: 'https://bit.ly/3bpsGOZ',
amazon: 'https://amzn.to/3dzJFPU'
}
},
{
id: 5,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: '栄養補助食品',
en: 'Dietary supplements'
},
unit: {
ja: '箱',
en: 'packs'
},
description: {
ja: '食料不足になる災害時は、必要な栄養を食材で取れるとは限りません。サプリメントのほか、必要な栄養が詰まったバランス栄養食は、災害時、十分な調理ができないときでも手軽に栄養補給できます。',
en: 'When natural disasters strike, people would not be able to have enough nutrition from food. Therefore, make sure to have some nutrition bars or supplements to take enough nourishment even though people are under emergency.'
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 0.8,
child1Female: 0.8,
child2Male: 1,
child2Female: 1,
adultMale: 1,
adultFemale: 1,
agedMale: 1,
agedFemale: 1
},
url: {
yahoo: 'https://bit.ly/2ZG5JQL',
rakuten: 'https://bit.ly/2NPiohw',
amazon: 'https://amzn.to/3kbsKoc'
}
},
{
id: 6,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: '野菜ジュース',
en: 'Vegetable juice'
},
unit: {
ja: '本',
en: 'packs'
},
description: {
ja: 'ジュースで野菜不足を解消。ミネラルやビタミンが摂取できます。冷凍保存することで、保冷剤としても使えます。',
en: 'Vegetable juice helps to take minerals and vitamins. It is also useful as an ice pack by keeping it in the freezer.'
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 0.8,
child1Female: 0.8,
child2Male: 1,
child2Female: 1,
adultMale: 1,
adultFemale: 1,
agedMale: 1,
agedFemale: 1
},
url: {
yahoo: 'https://bit.ly/3c7WrmB',
rakuten: 'https://bit.ly/3dvmgPM',
amazon: 'https://amzn.to/2Nll72J'
}
},
{
id: 7,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: 'チーズ・プロテインバー等',
en: 'Cheese & protein bars'
},
unit: {
ja: 'パック',
en: 'packs'
},
description: {
ja: '被災地で支援物資として配られる食料は炭水化物が中心で、たんぱく質やビタミンといった栄養素が不足しがちです。健康を維持するためにも、チーズやプロテインバーといった高タンパクで保存可能な食料をストックしておくと安心です。',
en: 'Food handed out as relief supplies in disaster-affected areas is primarily carbohydrates, tending to lack in such nutrients as proteins and vitamins. If only to maintain sound health, you will have peace of mind by keeping in stock high-protein preservative food such as cheese and protein bars.'
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 1,
child1Female: 1,
child2Male: 1,
child2Female: 1,
adultMale: 1,
adultFemale: 1,
agedMale: 1,
agedFemale: 1
},
url: {
yahoo: 'https://bit.ly/3pRfEhi',
rakuten: 'https://bit.ly/30nYCwW',
amazon: 'https://amzn.to/3kcpB7N'
}
},
{
id: 8,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: '健康飲料粉末',
en: 'Powdered healthy drinks'
},
unit: {
ja: '袋',
en: 'packs'
},
description: {
ja: '食料不足になる災害時は、必要な栄養を食材で取れるとは限りません。サプリメントのほか健康飲料の粉末などは、調理ができないときや疲れて食べ物がのどを通らないときでも、手軽に栄養補給できます。',
en: 'In times of disaster when food is in short supply, you cannot always take in necessary nutrients from foodstuffs. Beside nutritional supplements, powdered healthy drinks, etc. enable you to receive nutritional support readily even when cooking is impossible or you are too tired to get food down your throat.'
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 0.8,
child1Female: 0.8,
child2Male: 1,
child2Female: 1,
adultMale: 1,
adultFemale: 1,
agedMale: 1,
agedFemale: 1
},
url: {
yahoo: 'https://bit.ly/2NSeF2M',
rakuten: 'https://bit.ly/3kbt1Y6',
amazon: 'https://amzn.to/2NrnJvG'
}
},
{
id: 9,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: '調味料セット',
en: 'Set of seasonings'
},
unit: {
ja: '適宜',
en: 'As needed'
},
description: {
ja: '料理に欠かせない調味料。野菜がたくさん入ったソースは、いろいろな食材に合う万能調味料です。',
en: 'Seasoning is necessary in cooking. Sauce with a lot of vegetables is versatile seasoning for it could match with many kinds of ingridients.'
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 1,
child1Female: 1,
child2Male: 1,
child2Female: 1,
adultMale: 1,
adultFemale: 1,
agedMale: 1,
agedFemale: 1
},
url: {
yahoo: 'https://bit.ly/3bydBcv',
rakuten: 'https://bit.ly/37AhMDA',
amazon: 'https://amzn.to/3k9rvGd'
}
},
{
id: 10,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: '乾麺 即席麺',
en: 'Dried or instant noodles'
},
unit: {
ja: 'パック',
en: 'packs'
},
description: {
ja: '災害時はご飯やパンが中心になるので、乾麺があるとメニューに変化をつけられます。賞味期限が長いので長期保存でき、冷めてもおいしく食べられます。普段食べているものを少し多めにストックしておきましょう。',
en: 'In times of disaster, you depend mainly on rice or bread for meals. Dried noodles can accent your menu for variety. As they last long, you can preserve them for a long time and can taste them good eaten cold. You are advised to keep in stock a bit more of what you eat regularly.'
},
url: {
yahoo: 'http://bit.ly/37Enbtf',
rakuten: 'http://bit.ly/3qKhkKI',
amazon: 'http://amzn.to/2P4TZFB'
}
},
{
id: 11,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: '無洗米',
en: 'Pre-washed rice'
},
unit: {
ja: 'kg',
en: 'kg'
},
description: {
ja: '災害時に無洗米があると水の節約になります。おかゆは乳幼児や高齢者の食事としても使えます。',
en: 'If pre-washed rice is available in times of disaster, it helps to save water. Porridge is useful as meals for babies/infants and elderly people.'
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 0.3,
child1Female: 0.3,
child2Male: 0.375,
child2Female: 0.375,
adultMale: 0.375,
adultFemale: 0.375,
agedMale: 0.375,
agedFemale: 0.375
},
url: {
yahoo: 'https://bit.ly/3unFi0u',
rakuten: 'https://bit.ly/3bs8KK1',
amazon: 'https://amzn.to/3aEBTm7'
}
},
{
id: 12,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: '飲み物',
en: 'Drinks'
},
unit: {
ja: '本',
en: 'bottles'
},
description: {
ja: '水以外に、自分が普段好んで飲んでいる飲料があれば用意しておきましょう。災害時であっても、普段通りに自分の好きなものを飲んだり食べたりできる環境をつくっておくことが大切です。',
en: 'If there are favorite drinks other than water you routinely consume, it is recommended to keep them in stock. It is important to have in place an environment where you can drink and eat what you like as usual even at the time of disaster.'
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 0.8,
child1Female: 0.8,
child2Male: 1,
child2Female: 1,
adultMale: 1,
adultFemale: 1,
agedMale: 1,
agedFemale: 1
},
url: {
yahoo: 'http://bit.ly/3bw0ubZ',
rakuten: 'https://bit.ly/2ZGHUbE',
amazon: 'http://amzn.to/3dCp2Tc'
}
},
{
id: 13,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: 'お菓子',
en: 'Confectionery'
},
unit: {
ja: 'パック',
en: 'packs'
},
description: {
ja: 'お菓子は栄養価を考えて選ぶのがベター。米菓子は栄養素が豊富。ようかんは高齢者も食べやすく、気軽に口に入れられる一口サイズのものがおすすめ。乾燥野菜や果物のスナックチップスでビタミン補給。いずれも、保存の効く個別包装のものがおすすめです。避難生活が長引くときには気分転換にもつながります。',
en: 'It is better to choose confectionery in consideration of nutritional value. Rice biscuits are rich in nutritional elements. Yokan (jellied azuki bean paste) is easy for elderly people to eat, and bite-size pieces readily put into the mouth are recommended. Vitamins can be supplemented with snack food chips of dried vegetables and fruit. Recommendable are individually packed items that can be preserved long. They also help for a change when refugee life is prolonged.'
},
url: {
yahoo: 'http://bit.ly/2NQAyj4',
rakuten: 'https://bit.ly/3se4nc8',
amazon: 'http://amzn.to/2P4BTU8'
}
},
{
id: 14,
group: {
ja: '食品等',
en: 'Food'
},
category: {
ja: '食品',
en: 'Food'
},
item: {
ja: '果物の缶詰',
en: 'Canned food (fruit)'
},
unit: {
ja: '缶',
en: 'cans'
},
description: {
ja: '果物でビタミンや水分を摂取。缶詰でない場合は、包丁を使わずに済むミカンやバナナ、日持ちのするリンゴや梨、ブドウやスイカもおすすめです。',
en: 'You can take in vitamins and water from fruit. If not canned, it is recommendable to eat "mikan" mandarin oranges and bananas, which do not require kitchen knives, and apples, pears, grapes and watermelons, which stay good for a long time.'
},
url: {
yahoo: 'http://bit.ly/3siDfc7',
rakuten: 'https://bit.ly/3ulh3Qu',
amazon: 'http://amzn.to/3bx8E3H'
}
},
{
id: 15,
group: {
ja: '衛生用品',
en: 'Hygiene products'
},
category: {
ja: '感染対策/断水(衛生対策)',
en: 'Infection control, water outage (sanitary measures)'
},
item: {
ja: '除菌ウェットティッシュ',
en: 'Antibacterial wet tissue'
},
unit: {
ja: '枚',
en: 'sheets'
},
description: {
ja: '災害時には水が不足し、手を洗ったり拭き掃除をしたりすることが気軽にできなくなります。除菌タイプのウェットティッシュがあれば手指やテーブル、キッチンやトイレ回りなどの汚れを拭きとるのに使えます。',
en: 'You run short of water supply in times of disaster, making it impossible to casually wash your hands or wipe something clean. If you have antibacterial wet tissue in place, you can use it to clean fingers, tables, kitchens, and washrooms.'
},
required: {
infantsMale: 10,
infantsFemale: 10,
child1Male: 10,
child1Female: 10,
child2Male: 10,
child2Female: 10,
adultMale: 10,
adultFemale: 10,
agedMale: 10,
agedFemale: 10
},
url: {
yahoo: 'https://bit.ly/3aJAiLE',
rakuten: 'https://bit.ly/3kbxSIY',
amazon: 'https://amzn.to/2ZGKTRg'
}
},
{
id: 16,
group: {
ja: '衛生用品',
en: 'Hygiene products'
},
category: {
ja: '感染対策/断水(衛生対策)',
en: 'Infection control, water outage (sanitary measures)'
},
item: {
ja: 'アルコールスプレー',
en: 'Alcohol sanitizer spray'
},
unit: {
ja: '本',
en: 'bottle'
},
description: {
ja: '水道が止まっている時の手洗いや食器を拭くのに活用します。アルコールには消臭効果もあるため、ニオイが気になるところに吹きかけるといった使い方もできます。さらに、現在のコロナ禍での感染症対策としても効果を発揮します。',
en: 'Used for cleaning hands or tableware during water outage. As alcohol has deodorizing effects, you can use it for spray on bad-smelling places, for example. Moreover, the product is effective as well for use as disinfectant spray amid the current COVID-19 epidemic.'
},
required: {
infantsMale: 0.1,
infantsFemale: 0.1,
child1Male: 0.1,
child1Female: 0.1,
child2Male: 0.1,
child2Female: 0.1,
adultMale: 0.1,
adultFemale: 0.1,
agedMale: 0.1,
agedFemale: 0.1
},
url: {
yahoo: 'https://bit.ly/3ke9ZAw',
rakuten: 'https://bit.ly/3pKeaVT',
amazon: 'https://amzn.to/3ulqoYz'
}
},
{
id: 17,
group: {
ja: '衛生用品',
en: 'Hygiene products'
},
category: {
ja: '感染対策',
en: 'Infection control'
},
item: {
ja: 'マスク',
en: 'Face mask'
},
unit: {
ja: '枚',
en: 'masks'
},
description: {
ja: '感染症対策として飛沫感染を防ぐほかに、周囲への飛沫の拡散を防ぐためにも、コロナ禍の今、エチケットとして必要です。また、鼻づまりで口呼吸になっている場合にも、口の乾燥を防いでくれるため、冬場の乾燥対策としても有効です。',
en: "Besides preventing droplet infection as a means of combating infectious diseases, masks are necessary as etiquette to fend off the spread of droplets to people nearby in today's age of the COVID-19 epidemic. Masks are also effective as a means of protection from dryness in winter as they help to prevent dry mouth when forced into oral breathing by nasal congestion."
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 1,
child1Female: 1,
child2Male: 1,
child2Female: 1,
adultMale: 1,
adultFemale: 1,
agedMale: 1,
agedFemale: 1
},
url: {
yahoo: 'https://bit.ly/3kfA5TM',
rakuten: 'https://bit.ly/3pH5H5T',
amazon: 'https://amzn.to/3sbuEb2'
}
},
{
id: 18,
group: {
ja: '衛生用品',
en: 'Hygiene products'
},
category: {
ja: '断水(衛生対策)',
en: 'Water outage (sanitary measures)'
},
item: {
ja: '口内洗浄液',
en: 'Mouthwash'
},
unit: {
ja: 'ml',
en: 'ml'
},
description: {
ja: '水道が使えず歯磨きができない場合に備えて、口内洗浄液を準備しておきましょう。お口の健康は体の健康にも影響します。水不足で口の中を清潔に保つことができないと、口の中の菌が体に悪影響を及ぼす可能性があります。特に肺炎になりやすい高齢者の方は注意が必要です。',
en: 'Keep mouthwashes in stock in preparation for the inability to brush teeth due to the unavailability of tap water. Health of the mouth affects that of the body. If you fail to keep the mouth clean inside, intraoral bacteria may adversely affect the body. In particular, elderly people prone to pneumonia require special attention.'
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 90,
child1Female: 90,
child2Male: 90,
child2Female: 90,
adultMale: 90,
adultFemale: 90,
agedMale: 90,
agedFemale: 90
},
url: {
yahoo: 'https://bit.ly/3dETPyS',
rakuten: 'https://bit.ly/3ugkEPT',
amazon: 'https://amzn.to/3aIB1Ng'
}
},
{
id: 19,
group: {
ja: '衛生用品',
en: 'Hygiene products'
},
category: {
ja: '医薬品',
en: 'Medication'
},
item: {
ja: '救急箱',
en: 'First-aid kit'
},
unit: {
ja: '箱',
en: 'kit'
},
description: {
ja: '災害時に備えて応急手当用品があると安心です。ばんそうこうやガーゼ、包帯、ピンセット、綿棒、爪切り、体温計、マスクなどを救急箱に備えておきましょう。',
en: 'There is a possibility to get many kinds of injury. Make box for first-aid-kid and puck band-aid, gauze, bandage,tweezers, cotton swab, nail clippers, thermometer, and mask.'
},
url: {
yahoo: 'https://bit.ly/2NuBw4N',
rakuten: 'https://bit.ly/2Nm0iEk',
amazon: 'https://amzn.to/3qKpmTE'
}
},
{
id: 20,
group: {
ja: '衛生用品',
en: 'Hygiene products'
},
category: {
ja: '医薬品',
en: 'Medication'
},
item: {
ja: '常備薬',
en: 'Household medicine'
},
unit: {
ja: '箱',
en: 'box'
},
description: {
ja: '軽い症状のときや、医師にかかるまでの応急的な処置を行うときに使えます。薬は災害時に手に入りにくくなるので、鎮痛薬、胃腸薬、風邪薬など、必要なものを揃えておきましょう。',
en: 'Household medicine can be readily used when symptoms are mild or when applying first aid before consulting a doctor. As it becomes hard to get medicine at the time of disaster, it is recommended to keep in stock such drugs as painkillers, gastrointestinal medicine, and cold tablets.'
}
},
{
id: 21,
group: {
ja: '生活用品',
en: 'Livingware'
},
category: {
ja: 'ガス停止(調理)',
en: 'Gas outage (cooking)'
},
item: {
ja: 'カセットコンロ',
en: 'Portable gas stove'
},
unit: {
ja: '台',
en: 'stove'
},
description: {
ja: '電気やガスが止まってしまったときでも、カセットコンロがあれば安心です。停電の可能性も高いので、IHヒーターよりも役立ちます。お湯を沸かして温かい汁物などを作るためには、保温効果の高い鍋を用意することも重要です。',
en: 'Even when electricity and gas supply is suspended, you will feel safe if you have a portable gas stove in place. It is more useful than an induction cooker due to the high possibility of a power failure. It is also important to have a pan ready for use, which is highly effective in keeping food warm, in order to boil water and cook something hot such as soup.'
},
url: {
yahoo: 'https://bit.ly/3dzDI5H',
rakuten: 'https://bit.ly/3kbNKLu',
amazon: 'https://amzn.to/3pFlUIF'
}
},
{
id: 22,
group: {
ja: '生活用品',
en: 'Livingware'
},
category: {
ja: 'ガス停止(調理)',
en: 'Gas outage (cooking)'
},
item: {
ja: 'カセットボンベ',
en: 'Gas canister'
},
unit: {
ja: 'ガスコンロ1台につき1日4/3本',
en: '4/3 per day per gas stove'
},
description: {
ja: 'ボンベは多めに用意しましょう。使用期限は6~7年なので、少し多めに買いそろえ、使いながら買い足す、日常備蓄(ローリングストック)の一環として備えておきましょう。',
en: "Let's keep more canisters in stock than usual. As a canister is good for six to seven years, it is recommended to buy more canisters than you need and purchase an additional one each time you use up an existing one as part of everyday stockpiling (known as a rolling stock method)."
},
required: {
infantsMale: 0,
infantsFemale: 0,
child1Male: 1,
child1Female: 1,
child2Male: 1,
child2Female: 1,
adultMale: 1,
adultFemale: 1,
agedMale: 1,
agedFemale: 1
},
url: {
yahoo: 'https://bit.ly/3kdzthr',
rakuten: 'https://bit.ly/3dBMy2Y',
amazon: 'https://amzn.to/37zFgsI'
}
},
{
id: 23,
group: {
ja: '生活用品',
en: 'Livingware'
},
category: {
ja: '断水(節水・衛生対策)',
en: 'Water outage (saving water, sanitary measures)'
},
item: {
ja: 'ラップ',
en: 'Plastic wrap'
},
unit: {
ja: '本',
en: 'piece'
},
description: {
ja: '断水時、食器に被せれば汚れを防ぎ、洗わずに済みます。また、三角巾や包帯代わりにも使え、体に巻けば保温効果も期待できます。',
en: "If you cover tableware with plastic wrap during a meal at the time of water outage, it prevents the tableware from getting dirty and you don't have to wash used plates, etc. Plastic wrap can also be used as an alternative to a sling or bandage and, if wrapped around the body, you can expect the effect of heat retention."
},
url: {
yahoo: 'https://bit.ly/3bw8MR5',
rakuten: 'https://bit.ly/3aHM1KJ',
amazon: 'https://amzn.to/3k8i49W'
}
},
{
id: 24,
group: {
ja: '生活用品',
en: 'Livingware'
},
category: {
ja: '断水(節水・衛生対策)',
en: 'Water outage (saving water, sanitary measures)'
},
item: {
ja: 'ポリ袋',
en: 'Plastic bag'
},
unit: {
ja: '箱',
en: 'box'
},
description: {
ja: '手に被せると応急手当時の感染防止に役立ちます。断水時には食材を入れて調理すれば衛生的です。ジッパー付きの袋はニオイの防止になるので、トイレごみなどは黒いごみ袋に入れジッパー付きの袋に入れましょう。防水なので、財布・貴金属の保管にも便利です。',
en: 'If you put a plastic bag over your hand, it is helpful to prevent infections. It is hygienic to cook ingredients inside a plastic bag during water outage. Please put toilet filth, etc. into a black garbage bag and cover it in a resealable bag, which fends off bad odor. Being waterproof, such bags are also convenient to keep a wallet or precious metals.'
},
url: {
yahoo: 'https://bit.ly/3aHObu0',
rakuten: 'https://bit.ly/3uwJ6g2',
amazon: 'https://amzn.to/3si2jjq'
}
},
{
id: 25,
group: {
ja: '生活用品',
en: 'Livingware'
},
category: {
ja: '断水(節水・衛生対策)',
en: 'Water outage (saving water, sanitary measures)'
},
item: {
ja: 'ビニール手袋',
en: 'Plastic gloves'
},
unit: {
ja: '箱',
en: 'box'
},
description: {
ja: '手がしっかり洗えない状態で調理をしなければならない時に、ラテックス製などの使い捨てができる手袋があると便利です。トイレ掃除など、不衛生な物を扱う時にも役立ちます。',
en: 'When you have to cook while you cannot wash your hands sufficiently, it is convenient to have disposable gloves such as latex ones ready for use. They are useful to handle unsanitary goods such as when cleaning the toilet.'
},
url: {
yahoo: 'https://bit.ly/2NRCHv3',
rakuten: 'https://bit.ly/2ZARiO2',
amazon: 'https://amzn.to/3kauUUY'
}
},
{
id: 26,
group: {
ja: '生活用品',
en: 'Livingware'
},
category: {
ja: '断水(節水)',
en: 'Water outage (saving water)'
},
item: {
ja: 'アルミホイル',
en: 'Aluminum foil'
},
unit: {
ja: '本',
en: 'piece'
},
description: {
ja: '断水時、調理器具にアルミホイルを敷くと汚さずに調理できます。また、お皿の形にすれば、使い捨ての食器としても使えます。ニオイを通さないので、防臭にも役立ちます。',
en: 'During water outage, spread aluminum foil on kitchen utensils and you can cook without making them dirty. Also, aluminum foil shaped into a plate can be used as disposable tableware. Foil is useful for deodorization as well because it does not allow any smell to permeate.'
},
url: {
yahoo: 'https://bit.ly/2NVaQd9',
rakuten: 'https://bit.ly/3pFrlr3',
amazon: 'https://amzn.to/3skyiiS'
}
},
{
id: 27,
group: {
ja: '生活用品',
en: 'Livingware'
},
category: {
ja: 'トイレ',
en: 'Restroom'
},
item: {
ja: 'トイレットペーパー',
en: 'Toilet paper'
},
unit: {
ja: 'ロール',
en: 'rolls'
},
description: {
ja: '断水が起きなくても、トイレットペーパーがなければトイレが使えません。切らすと不便で、トイレへの不安がますます強くなってしまいます。ティッシュペーパーの代わりとしても使えます。',
en: 'Even if water outage does not occur, you cannot use the restroom without toilet paper. It is inconvenient if it runs out, further enhancing your worries over toileting problems. You can substitute toilet rolls for tissue paper as well.'
},
required: {
infantsMale: 0.3,
infantsFemale: 0.3,
child1Male: 0.3,
child1Female: 0.3,
child2Male: 0.3,
child2Female: 0.3,
adultMale: 0.3,
adultFemale: 0.3,
agedMale: 0.3,
agedFemale: 0.3
},
url: {
yahoo: 'https://bit.ly/2P4iGlu',
rakuten: 'https://bit.ly/3shOdP0',
amazon: 'https://amzn.to/3ughvj3'
}
},
{
id: 28,
group: {
ja: '生活用品',
en: 'Livingware'
},
category: {
ja: '断水(衛生対策)',
en: 'Water outage (sanitary measures)'
},
item: {
ja: 'ティッシュペーパー',
en: 'Tissue paper'
},