Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
DG_FAF
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
template admin
DG_FAF
Commits
cba2428d
Commit
cba2428d
authored
Jul 11, 2023
by
李维
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加纵横字谜游戏历史记录展示
parent
15844363
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1027 additions
and
418 deletions
+1027
-418
DG_FAF.ts
assets/DG_FAF/scene/DG_FAF.ts
+94
-2
defaultData_DG_FAF.ts
assets/DG_FAF/script/defaultData_DG_FAF.ts
+1
-1
historyData_DG_FAF.ts
assets/DG_FAF/script/historyData_DG_FAF.ts
+932
-415
No files found.
assets/DG_FAF/scene/DG_FAF.ts
View file @
cba2428d
...
@@ -761,7 +761,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -761,7 +761,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
validater
=
this
.
setTextInput
(
configItem
,
this
.
data
.
hotZoneItemArr
[
configItem
.
linkHotZoneIndex
],
isDebug
);
validater
=
this
.
setTextInput
(
configItem
,
this
.
data
.
hotZoneItemArr
[
configItem
.
linkHotZoneIndex
],
isDebug
);
this
.
scoreValidater
.
push
(
validater
);
this
.
scoreValidater
.
push
(
validater
);
break
;
break
;
// 纵横字谜游戏
// 纵横字谜游戏
[做题 - 显示]
case
CROSSWORD_PUZZLE
:
case
CROSSWORD_PUZZLE
:
validater
=
this
.
setCrosswordPuzzleInput
(
configItem
,
isDebug
);
validater
=
this
.
setCrosswordPuzzleInput
(
configItem
,
isDebug
);
this
.
scoreValidater
.
push
(
validater
);
this
.
scoreValidater
.
push
(
validater
);
...
@@ -859,6 +859,10 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -859,6 +859,10 @@ export default class SceneComponent extends MyCocosSceneComponent {
case
TEXTINPUT
:
case
TEXTINPUT
:
this
.
showTextInput
(
configItem
,
resultData
);
this
.
showTextInput
(
configItem
,
resultData
);
break
;
break
;
// 纵横字谜游戏
case
CROSSWORD_PUZZLE
:
this
.
showCrosswordPuzzleInput
(
configItem
,
resultData
);
break
;
}
}
})
})
...
@@ -1283,6 +1287,94 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -1283,6 +1287,94 @@ export default class SceneComponent extends MyCocosSceneComponent {
}
}
}
}
// 纵横字谜 - 历史记录
showCrosswordPuzzleInput
(
configItem
,
resultData
)
{
const
debugMode
=
false
;
const
lineLetters
=
[];
const
allCrosswordData
=
[];
// 该题型需要配置一个显示正确错误符号的热区
const
resultIconShowData
=
this
.
data
.
hotZoneItemArr
[
configItem
.
linkResultShowHotZoneIndex
];
const
resultIconRect
=
this
.
newRectNode
(
resultIconShowData
,
layer_2
,
debugMode
);
// 初始化回显区域 - 可不配置
let
endShowNode
=
null
;
let
endShowText
=
null
if
(
configItem
.
linkHotZoneShowIndex
!=
null
&&
!
isNaN
(
Number
(
configItem
.
linkHotZoneShowIndex
))
&&
Number
(
configItem
.
linkHotZoneShowIndex
)
>=
0
)
{
const
endShowHotZoneData
=
this
.
data
.
hotZoneItemArr
[
configItem
.
linkHotZoneShowIndex
];
endShowNode
=
this
.
newRectNode
(
endShowHotZoneData
,
layer_4
,
debugMode
);
endShowText
=
this
.
newTextNode
(
""
);
endShowText
.
x
=
endShowNode
.
width
/
2
;
endShowText
.
y
=
endShowNode
.
height
/
2
;
endShowNode
.
addChild
(
endShowText
);
}
configItem
.
contentList
.
forEach
((
option
,
index
)
=>
{
if
(
allCrosswordData
[
option
.
selectHotZoneIndex
+
""
]
==
undefined
)
{
allCrosswordData
[
option
.
selectHotZoneIndex
+
""
]
=
{
inited
:
false
,
rect
:
null
,
border
:
null
,
currentLetter
:
""
,
correctLetter
:
""
,
}
}
const
letterData
=
allCrosswordData
[
option
.
selectHotZoneIndex
+
""
];
lineLetters
.
push
(
letterData
);
// 如果数据没有被初始化过 则初始化各种实例
if
(
!
letterData
.
inited
)
{
letterData
.
inited
=
true
;
// 存储正确的字符 用于提交时比对
letterData
.
correctLetter
=
option
.
letter
;
const
hotZoneData
=
this
.
data
.
hotZoneItemArr
[
option
.
selectHotZoneIndex
];
letterData
.
rect
=
this
.
newRectNode
(
hotZoneData
,
layer_4
,
debugMode
);
letterData
.
decorativeFrame
=
this
.
newDecorativeFrame
(
hotZoneData
,
layer_1
,
"
#FFFFFF
"
,
"
#6dbef6
"
,
debugMode
);
letterData
.
textNode
=
this
.
newTextNode
(
""
);
letterData
.
textNode
.
x
=
letterData
.
rect
.
width
/
2
;
letterData
.
textNode
.
y
=
letterData
.
rect
.
height
/
2
;
letterData
.
rect
.
addChild
(
letterData
.
textNode
);
letterData
.
decorativeFrame
.
active
=
false
;
}
})
let
currentWord
=
""
;
const
inputText
=
resultData
[
0
].
inputWord
;
if
(
inputText
)
{
// 把用户输入的内容填入格子
lineLetters
.
forEach
((
letter
,
index
)
=>
{
letter
.
currentLetter
=
inputText
.
charAt
(
index
);
letter
.
decorativeFrame
.
active
=
true
;
letter
.
textNode
.
getComponent
(
cc
.
Label
).
string
=
letter
.
currentLetter
==
"
^
"
?
""
:
letter
.
currentLetter
;
})
}
else
{
// 把用户输入的内容填入格子
lineLetters
.
forEach
((
letter
,
index
)
=>
{
letter
.
currentLetter
=
""
;
letter
.
decorativeFrame
.
active
=
false
;
letter
.
textNode
.
getComponent
(
cc
.
Label
).
string
=
""
;
})
}
// 如果设置了回显区域,设置回显字符
if
(
endShowText
!=
null
)
{
endShowText
.
getComponent
(
cc
.
Label
).
string
=
inputText
.
replace
(
/
\^
/g
,
"
"
);
}
// 对错号
const
errIcon
=
getSprNode
(
"
icon_answer_wrong
"
);
const
rightIcon
=
getSprNode
(
"
icon_answer_right
"
);
// 图标太大 缩小一半
errIcon
.
scale
=
rightIcon
.
scale
=
0.5
;
// 显示在热区的中间
errIcon
.
x
=
rightIcon
.
x
=
resultIconRect
.
width
/
2
;
errIcon
.
y
=
rightIcon
.
y
=
resultIconRect
.
height
/
2
;
if
(
resultData
[
0
].
right
)
{
resultIconRect
.
addChild
(
rightIcon
);
}
else
{
resultIconRect
.
addChild
(
errIcon
);
}
}
// 初始化分数牌
// 初始化分数牌
subScorePanels
=
[];
subScorePanels
=
[];
totalScorePanel
=
null
;
totalScorePanel
=
null
;
...
@@ -3119,7 +3211,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -3119,7 +3211,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
result
.
detail
.
inputWord
=
""
;
result
.
detail
.
inputWord
=
""
;
lineLetters
.
forEach
((
letter
,
index
)
=>
{
lineLetters
.
forEach
((
letter
,
index
)
=>
{
result
.
detail
.
correctWord
+=
letter
.
correctLetter
;
result
.
detail
.
correctWord
+=
letter
.
correctLetter
;
result
.
detail
.
inputWord
+=
letter
.
currentLetter
;
result
.
detail
.
inputWord
+=
letter
.
currentLetter
?
letter
.
currentLetter
:
"
^
"
;
if
(
letter
.
currentLetter
!=
letter
.
correctLetter
)
{
if
(
letter
.
currentLetter
!=
letter
.
correctLetter
)
{
result
.
allRight
=
false
;
result
.
allRight
=
false
;
result
.
detail
.
right
=
false
;
result
.
detail
.
right
=
false
;
...
...
assets/DG_FAF/script/defaultData_DG_FAF.ts
View file @
cba2428d
export
const
defaultData
=
{
"
footer_image_url
"
:
"
http://teach.cdn.ireadabc.com/5b6405c5beff73d99bb647a510ab8fed.jpg
"
,
"
alignMode
"
:
"
left
"
,
"
header_image_url
"
:
"
http://teach.cdn.ireadabc.com/3e5a38c05e69318b60cade381821d106.jpg
"
,
"
bgItem
"
:{
"
url
"
:
"
http://teach.cdn.ireadabc.com/93797b71f7f6300e7c3fea252e17423a.jpg
"
,
"
rect
"
:{
"
x
"
:
0
,
"
y
"
:
1565.091111111111
,
"
width
"
:
1502
,
"
height
"
:
1865.8177777777778
}},
"
hotZoneItemArr
"
:[{
"
index
"
:
0
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
931.82
,
"
y
"
:
190.3
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
1
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-3
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1211.8
,
"
y
"
:
190.3
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
2
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-4
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
931.82
,
"
y
"
:
254.83
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
3
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-5
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1211.8
,
"
y
"
:
254.83
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
4
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-6
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
931.82
,
"
y
"
:
320.45
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
5
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-7
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
931.82
,
"
y
"
:
386.07
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
6
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-8
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1211.8
,
"
y
"
:
384.98
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
7
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-9
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
931.82
,
"
y
"
:
450.6
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
8
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-20
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
532.62
,
"
y
"
:
702.14
,
"
width
"
:
43.75
,
"
height
"
:
43.75
}},{
"
index
"
:
9
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-21
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
775.32
,
"
y
"
:
697.83
,
"
width
"
:
160
,
"
height
"
:
50
}},{
"
index
"
:
10
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-22
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
949
,
"
y
"
:
697.83
,
"
width
"
:
50
,
"
height
"
:
50
}},{
"
index
"
:
11
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-30
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
532.62
,
"
y
"
:
765.58
,
"
width
"
:
43.75
,
"
height
"
:
43.75
}},{
"
index
"
:
12
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-31
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
797.41
,
"
y
"
:
763.92
,
"
width
"
:
110
,
"
height
"
:
50
}},{
"
index
"
:
13
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-32
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
927.13
,
"
y
"
:
763.92
,
"
width
"
:
50
,
"
height
"
:
50
}},{
"
index
"
:
14
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-40
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
532.62
,
"
y
"
:
831.2
,
"
width
"
:
43.75
,
"
height
"
:
43.75
}},{
"
index
"
:
15
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-41
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
820.91
,
"
y
"
:
827.54
,
"
width
"
:
170
,
"
height
"
:
50
}},{
"
index
"
:
16
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-42
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1013.27
,
"
y
"
:
827.54
,
"
width
"
:
120
,
"
height
"
:
50
}},{
"
index
"
:
17
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
838.85
,
"
y
"
:
1141.8
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
18
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-3
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
838.85
,
"
y
"
:
1219.45
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
19
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-4
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
838.85
,
"
y
"
:
1298.2
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
20
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-5
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
838.85
,
"
y
"
:
1375.85
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}},{
"
index
"
:
21
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-0
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
27.34
,
"
y
"
:
1491.78
,
"
width
"
:
54.68
,
"
height
"
:
54.68
}},{
"
index
"
:
22
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-21
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
604.8
,
"
y
"
:
1637.24
,
"
width
"
:
54.68
,
"
height
"
:
54.68
}},{
"
index
"
:
23
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-22
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
694.49
,
"
y
"
:
1637.24
,
"
width
"
:
54.68
,
"
height
"
:
54.68
}},{
"
index
"
:
24
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-23
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
544.65
,
"
y
"
:
1637.24
,
"
width
"
:
54.68
,
"
height
"
:
54.68
}},{
"
index
"
:
25
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-31
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
604.8
,
"
y
"
:
1702.31
,
"
width
"
:
54.68
,
"
height
"
:
54.68
}},{
"
index
"
:
26
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-32
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
694.49
,
"
y
"
:
1765.2
,
"
width
"
:
54.68
,
"
height
"
:
54.68
}},{
"
index
"
:
27
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-33
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
544.65
,
"
y
"
:
1701.22
,
"
width
"
:
54.68
,
"
height
"
:
54.68
}},{
"
index
"
:
28
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-41
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
604.8
,
"
y
"
:
1765.2
,
"
width
"
:
54.68
,
"
height
"
:
54.68
}},{
"
index
"
:
29
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-42
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
694.49
,
"
y
"
:
1570.52
,
"
width
"
:
54.68
,
"
height
"
:
54.68
}},{
"
index
"
:
30
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-43
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
544.65
,
"
y
"
:
1765.2
,
"
width
"
:
54.68
,
"
height
"
:
54.68
}},{
"
index
"
:
31
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-10
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1211.8
,
"
y
"
:
450.6
,
"
width
"
:
174.99
,
"
height
"
:
45.93
}}],
"
hotZoneConfigArr
"
:[{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
0
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
lay
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
occer
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
2
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
ide
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
3
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
ike
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
4
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
kate
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
5
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
ide
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
6
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
orse
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
7
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
lay
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
31
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
ennis
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
2f54a92f-d499-4daf-ae73-ce2e15e94396
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
9
},{
"
uuid
"
:
"
2dabe85e-8f0d-4024-851d-e9020b9ea22b
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
10
}],
"
linkResultShowHotZoneIndex
"
:
8
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
2f54a92f-d499-4daf-ae73-ce2e15e94396
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
12
},{
"
uuid
"
:
"
2dabe85e-8f0d-4024-851d-e9020b9ea22b
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
13
}],
"
linkResultShowHotZoneIndex
"
:
11
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
2f54a92f-d499-4daf-ae73-ce2e15e94396
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
15
},{
"
uuid
"
:
"
2dabe85e-8f0d-4024-851d-e9020b9ea22b
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
16
}],
"
linkResultShowHotZoneIndex
"
:
14
},{
"
hotZoneType
"
:
"
0
"
,
"
linkHotZoneIndex
"
:
17
,
"
audio_url
"
:
""
,
"
score
"
:
"
5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
can
"
,
"
contentList
"
:[{
"
uuid
"
:
"
72289426-e75e-4847-b392-a886d8fc9362
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectOptionListIndex
"
:
0
,
"
selectHotZoneIndex
"
:
17
},{
"
uuid
"
:
"
4e657b61-d6b9-4f48-b68c-890d0da5b94c
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectOptionListIndex
"
:
1
,
"
selectHotZoneIndex
"
:
18
},{
"
uuid
"
:
"
5c18d7fd-6cd8-4341-b527-9877f0bc2407
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectOptionListIndex
"
:
1
,
"
selectHotZoneIndex
"
:
19
},{
"
uuid
"
:
"
f8faf9f5-b1b7-4c3e-8e64-f4dc9a57710b
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectOptionListIndex
"
:
0
,
"
selectHotZoneIndex
"
:
20
}],
"
useSelectOptionList
"
:
true
,
"
selectOptionList
"
:[{
"
text
"
:
"
can
"
,
"
optionShowText
"
:
"
can
"
},{
"
text
"
:
"
can't
"
,
"
optionShowText
"
:
"
can't
"
}]},{
"
hotZoneType
"
:
"
6
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
0
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
bcd860e3-460d-4890-8c42-dd28c2c84910
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
b
"
,
"
selectStartHotZoneIndex
"
:
22
,
"
selectEndHotZoneIndex
"
:
23
,
"
selectEndHotZoneShowIndex
"
:
24
},{
"
uuid
"
:
"
09160a26-c0e9-42cf-88c6-b5ff2fa9aab2
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
d
"
,
"
selectStartHotZoneIndex
"
:
25
,
"
selectEndHotZoneIndex
"
:
26
,
"
selectEndHotZoneShowIndex
"
:
27
},{
"
uuid
"
:
"
3ae28df1-d0b8-441d-b172-c166c8db54ab
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
a
"
,
"
selectStartHotZoneIndex
"
:
28
,
"
selectEndHotZoneIndex
"
:
29
,
"
selectEndHotZoneShowIndex
"
:
30
}],
"
linkResultShowHotZoneIndex
"
:
21
}],
"
scoreConfigArr
"
:[{
"
linkHotZoneIndex
"
:
-
1
,
"
linkHotZoneIndexArr
"
:[
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
]}],
"
ratingSystem
"
:
"
0
"
}
export
const
defaultData
=
{
"
footer_image_url
"
:
"
http://teach.cdn.ireadabc.com/5b6405c5beff73d99bb647a510ab8fed.jpg
"
,
"
alignMode
"
:
"
left
"
,
"
header_image_url
"
:
"
http://teach.cdn.ireadabc.com/083720132dfa2d2da2b7c3d9bb572224.jpg
"
,
"
bgItem
"
:{
"
url
"
:
"
http://teach.cdn.ireadabc.com/bd12a6c02d07c8a1b4500172651e75f5.jpg
"
,
"
rect
"
:{
"
x
"
:
0
,
"
y
"
:
1586.3694444444445
,
"
width
"
:
1502
,
"
height
"
:
1823.2611111111112
}},
"
hotZoneItemArr
"
:[{
"
index
"
:
0
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-21
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
348.76
,
"
y
"
:
284.09
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
1
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-22
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
348.76
,
"
y
"
:
325.86
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
2
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-23
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
348.76
,
"
y
"
:
366.52
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
3
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-24
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
348.76
,
"
y
"
:
408.28
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
4
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-25
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
348.76
,
"
y
"
:
450.05
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
5
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-31
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
390.52
,
"
y
"
:
284.09
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
6
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-32
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
432.48
,
"
y
"
:
284.09
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
7
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-41
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
183.9
,
"
y
"
:
366.52
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
8
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-42
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
183.9
,
"
y
"
:
408.28
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
9
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-51
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
225.67
,
"
y
"
:
408.28
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
10
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-52
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
267.43
,
"
y
"
:
408.28
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
11
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-53
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
308.1
,
"
y
"
:
408.28
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
12
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-54
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
390.52
,
"
y
"
:
408.28
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
13
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-55
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
431.19
,
"
y
"
:
408.28
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
14
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-0
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
45.43
,
"
y
"
:
554.45
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
15
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-21
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1313.7
,
"
y
"
:
618.19
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
16
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-22
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
899.37
,
"
y
"
:
763.26
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
17
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-23
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1363.16
,
"
y
"
:
617.1
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
18
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-31
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
482.83
,
"
y
"
:
780.85
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
19
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-32
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
657.58
,
"
y
"
:
580.82
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
20
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-33
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
433.39
,
"
y
"
:
780.85
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
21
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-41
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1312.59
,
"
y
"
:
780.85
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
22
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-42
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
899.37
,
"
y
"
:
580.82
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
23
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-43
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1363.16
,
"
y
"
:
780.85
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
24
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-2a
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1075.47
,
"
y
"
:
668.58
,
"
width
"
:
240
,
"
height
"
:
39.56
}},{
"
index
"
:
25
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-3a
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
164.48
,
"
y
"
:
833.64
,
"
width
"
:
179.99
,
"
height
"
:
39.56
}},{
"
index
"
:
26
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-4a
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1062.19
,
"
y
"
:
833.64
,
"
width
"
:
140.01
,
"
height
"
:
39.56
}},{
"
index
"
:
27
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
640
,
"
y
"
:
1211.66
,
"
width
"
:
109.9
,
"
height
"
:
43.96
}},{
"
index
"
:
28
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-3
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
965.31
,
"
y
"
:
1211.66
,
"
width
"
:
109.9
,
"
height
"
:
43.96
}},{
"
index
"
:
29
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-4
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
1290.61
,
"
y
"
:
1211.66
,
"
width
"
:
109.9
,
"
height
"
:
43.96
}},{
"
index
"
:
30
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-0
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
47.63
,
"
y
"
:
1360.03
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
31
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-21
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
564.17
,
"
y
"
:
1498.5
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
32
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-22
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
780.67
,
"
y
"
:
1436.96
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
33
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-23
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
514.71
,
"
y
"
:
1498.5
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
34
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-31
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
564.17
,
"
y
"
:
1560.05
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
35
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-32
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
780.67
,
"
y
"
:
1686.43
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
36
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-33
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
514.71
,
"
y
"
:
1560.05
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
37
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-41
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
564.17
,
"
y
"
:
1623.79
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
38
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-42
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
780.67
,
"
y
"
:
1560.05
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
39
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-43
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
514.71
,
"
y
"
:
1623.79
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
40
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-51
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
564.17
,
"
y
"
:
1686.43
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
41
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-52
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
780.67
,
"
y
"
:
1623.79
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
42
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-53
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
514.71
,
"
y
"
:
1686.43
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
43
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-61
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
564.17
,
"
y
"
:
1747.98
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
44
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-62
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
780.67
,
"
y
"
:
1747.98
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
45
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-63
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
514.71
,
"
y
"
:
1747.98
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}},{
"
index
"
:
46
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-20
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
348.76
,
"
y
"
:
203.87
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
47
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-30
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
267.43
,
"
y
"
:
284.09
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
48
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-40
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
183.9
,
"
y
"
:
284.09
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
49
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-50
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
103.68
,
"
y
"
:
408.28
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}},{
"
index
"
:
50
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-33
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:{
"
x
"
:
473.14
,
"
y
"
:
284.09
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}}],
"
hotZoneConfigArr
"
:[{
"
hotZoneType
"
:
"
9
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
69bac506-7417-4949-b45e-1bcd08474e90
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
0
,
"
letter
"
:
"
m
"
},{
"
uuid
"
:
"
f1c9b0a5-541a-4d6c-8ec4-699d57f9a224
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
1
,
"
letter
"
:
"
u
"
},{
"
uuid
"
:
"
1cc0fd16-3956-475c-aa37-7567be2f2b55
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
2
,
"
letter
"
:
"
s
"
},{
"
uuid
"
:
"
00f09d34-a9b5-4c4b-acba-5d7b9fe7a0fc
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
3
,
"
letter
"
:
"
i
"
},{
"
uuid
"
:
"
4425a440-1d7d-4c5e-9248-99ad8eabec91
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
4
,
"
letter
"
:
"
c
"
}],
"
linkResultShowHotZoneIndex
"
:
46
},{
"
hotZoneType
"
:
"
9
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
0be0a2fd-030a-4f38-9ebb-29f8f697188d
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
0
,
"
letter
"
:
"
m
"
},{
"
uuid
"
:
"
10b69a20-26f0-4313-b563-d471ba4853d0
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
5
,
"
letter
"
:
"
a
"
},{
"
uuid
"
:
"
8c97e025-cb70-4f4a-922d-75f819e10626
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
6
,
"
letter
"
:
"
t
"
},{
"
uuid
"
:
"
5e2ad2e4-ff0d-4929-99bb-2f89ea45b53c
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
50
,
"
letter
"
:
"
h
"
}],
"
linkResultShowHotZoneIndex
"
:
47
},{
"
hotZoneType
"
:
"
9
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
0be0a2fd-030a-4f38-9ebb-29f8f697188d
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
7
,
"
letter
"
:
"
P
"
},{
"
uuid
"
:
"
10b69a20-26f0-4313-b563-d471ba4853d0
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
8
,
"
letter
"
:
"
E
"
}],
"
linkResultShowHotZoneIndex
"
:
48
},{
"
hotZoneType
"
:
"
9
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
0be0a2fd-030a-4f38-9ebb-29f8f697188d
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
8
,
"
letter
"
:
"
E
"
},{
"
uuid
"
:
"
10b69a20-26f0-4313-b563-d471ba4853d0
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
9
,
"
letter
"
:
"
n
"
},{
"
uuid
"
:
"
42e2269b-dd9d-4988-8a2f-f65698175944
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
10
,
"
letter
"
:
"
g
"
},{
"
uuid
"
:
"
49731ad6-eeee-450a-b7e0-a1556c474f6e
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
11
,
"
letter
"
:
"
l
"
},{
"
uuid
"
:
"
4f54b246-d89f-465e-b353-2b19b87d5310
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
3
,
"
letter
"
:
"
i
"
},{
"
uuid
"
:
"
386f4dc2-35a5-41e0-a324-51a01d2b94f2
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
12
,
"
letter
"
:
"
s
"
},{
"
uuid
"
:
"
1462a6c8-cd47-404d-8707-d0246351e7ee
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
13
,
"
letter
"
:
"
h
"
}],
"
linkResultShowHotZoneIndex
"
:
49
},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
24
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
computer room
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
26
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
field
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
25
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
art room
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
6
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
0
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
cca81944-c90d-4166-8c1a-3d937b8d80ef
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
0.5
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
d
"
,
"
selectStartHotZoneIndex
"
:
15
,
"
selectEndHotZoneIndex
"
:
16
,
"
selectEndHotZoneShowIndex
"
:
17
},{
"
uuid
"
:
"
2cee0d75-7631-4b0f-82e5-fbfd7992a806
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
0.5
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
a
"
,
"
selectStartHotZoneIndex
"
:
18
,
"
selectEndHotZoneIndex
"
:
19
,
"
selectEndHotZoneShowIndex
"
:
20
},{
"
uuid
"
:
"
59388b0b-2fd5-407c-bc7a-c24d0a1933a7
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
0.5
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
b
"
,
"
selectStartHotZoneIndex
"
:
21
,
"
selectEndHotZoneIndex
"
:
22
,
"
selectEndHotZoneShowIndex
"
:
23
}],
"
linkResultShowHotZoneIndex
"
:
14
},{
"
hotZoneType
"
:
"
0
"
,
"
linkHotZoneIndex
"
:
27
,
"
audio_url
"
:
""
,
"
score
"
:
"
5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
their
"
,
"
contentList
"
:[{
"
uuid
"
:
"
a3410857-c7e7-40c8-9cb5-20cdb4175b1b
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectOptionListIndex
"
:
1
,
"
selectHotZoneIndex
"
:
27
},{
"
uuid
"
:
"
4652e686-7bb5-45d2-a80d-813e0c684b4b
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectOptionListIndex
"
:
1
,
"
selectHotZoneIndex
"
:
28
},{
"
uuid
"
:
"
fea9518c-8987-4b77-a369-1eeac1c8ab98
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectOptionListIndex
"
:
0
,
"
selectHotZoneIndex
"
:
29
}],
"
useSelectOptionList
"
:
true
,
"
selectOptionList
"
:[{
"
text
"
:
"
our
"
,
"
optionShowText
"
:
"
our
"
},{
"
text
"
:
"
their
"
,
"
optionShowText
"
:
"
their
"
}]},{
"
hotZoneType
"
:
"
6
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
0
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
9f296ed9-48ec-4b83-a4b1-70f3aea6ccaa
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
e
"
,
"
selectStartHotZoneIndex
"
:
34
,
"
selectEndHotZoneIndex
"
:
35
,
"
selectEndHotZoneShowIndex
"
:
36
},{
"
uuid
"
:
"
cf9556f9-d579-46fc-8743-9bee998be0d0
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
c
"
,
"
selectStartHotZoneIndex
"
:
37
,
"
selectEndHotZoneIndex
"
:
38
,
"
selectEndHotZoneShowIndex
"
:
39
},{
"
uuid
"
:
"
366dc955-8193-4301-8471-77da23e7eb26
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
d
"
,
"
selectStartHotZoneIndex
"
:
40
,
"
selectEndHotZoneIndex
"
:
41
,
"
selectEndHotZoneShowIndex
"
:
42
},{
"
uuid
"
:
"
867296d6-e980-4e0f-9d8f-f270172daac0
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
f
"
,
"
selectStartHotZoneIndex
"
:
43
,
"
selectEndHotZoneIndex
"
:
44
,
"
selectEndHotZoneShowIndex
"
:
45
},{
"
uuid
"
:
"
813397f8-edaf-4d46-b594-1b2be9fbcdd8
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
a
"
,
"
selectStartHotZoneIndex
"
:
31
,
"
selectEndHotZoneIndex
"
:
32
,
"
selectEndHotZoneShowIndex
"
:
33
}],
"
linkResultShowHotZoneIndex
"
:
30
}],
"
scoreConfigArr
"
:[{
"
linkHotZoneIndex
"
:
-
1
,
"
linkHotZoneIndexArr
"
:[
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
]}],
"
ratingSystem
"
:
"
0
"
}
\ No newline at end of file
\ No newline at end of file
assets/DG_FAF/script/historyData_DG_FAF.ts
View file @
cba2428d
...
@@ -2,21 +2,21 @@ export const historyData = {
...
@@ -2,21 +2,21 @@ export const historyData = {
"
dataSaved
"
:
{
"
dataSaved
"
:
{
"
footer_image_url
"
:
"
http://teach.cdn.ireadabc.com/5b6405c5beff73d99bb647a510ab8fed.jpg
"
,
"
footer_image_url
"
:
"
http://teach.cdn.ireadabc.com/5b6405c5beff73d99bb647a510ab8fed.jpg
"
,
"
alignMode
"
:
"
left
"
,
"
alignMode
"
:
"
left
"
,
"
header_image_url
"
:
"
http://teach.cdn.ireadabc.com/
3e5a38c05e69318b60cade381821d106
.jpg
"
,
"
header_image_url
"
:
"
http://teach.cdn.ireadabc.com/
083720132dfa2d2da2b7c3d9bb572224
.jpg
"
,
"
bgItem
"
:
{
"
bgItem
"
:
{
"
url
"
:
"
http://teach.cdn.ireadabc.com/
93797b71f7f6300e7c3fea252e17423a
.jpg
"
,
"
url
"
:
"
http://teach.cdn.ireadabc.com/
bd12a6c02d07c8a1b4500172651e75f5
.jpg
"
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
0
,
"
x
"
:
0
,
"
y
"
:
15
65.091111111111
,
"
y
"
:
15
86.3694444444445
,
"
width
"
:
1502
,
"
width
"
:
1502
,
"
height
"
:
18
65.8177777777778
"
height
"
:
18
23.2611111111112
}
}
},
},
"
hotZoneItemArr
"
:
[
"
hotZoneItemArr
"
:
[
{
{
"
index
"
:
0
,
"
index
"
:
0
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-2
"
,
"
itemName
"
:
"
1-2
1
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -24,16 +24,16 @@ export const historyData = {
...
@@ -24,16 +24,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
931.82
,
"
x
"
:
348.76
,
"
y
"
:
190.3
,
"
y
"
:
284.09
,
"
width
"
:
174.99
,
"
width
"
:
39.56
,
"
height
"
:
45.93
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
1
,
"
index
"
:
1
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-
3
"
,
"
itemName
"
:
"
1-
22
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -41,16 +41,16 @@ export const historyData = {
...
@@ -41,16 +41,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
1211.8
,
"
x
"
:
348.76
,
"
y
"
:
190.3
,
"
y
"
:
325.86
,
"
width
"
:
174.99
,
"
width
"
:
39.56
,
"
height
"
:
45.93
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
2
,
"
index
"
:
2
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-
4
"
,
"
itemName
"
:
"
1-
23
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -58,16 +58,16 @@ export const historyData = {
...
@@ -58,16 +58,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
931.82
,
"
x
"
:
348.76
,
"
y
"
:
254.83
,
"
y
"
:
366.52
,
"
width
"
:
174.99
,
"
width
"
:
39.56
,
"
height
"
:
45.93
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
3
,
"
index
"
:
3
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-
5
"
,
"
itemName
"
:
"
1-
24
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -75,16 +75,16 @@ export const historyData = {
...
@@ -75,16 +75,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
1211.8
,
"
x
"
:
348.76
,
"
y
"
:
254.83
,
"
y
"
:
408.28
,
"
width
"
:
174.99
,
"
width
"
:
39.56
,
"
height
"
:
45.93
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
4
,
"
index
"
:
4
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-
6
"
,
"
itemName
"
:
"
1-
25
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -92,16 +92,16 @@ export const historyData = {
...
@@ -92,16 +92,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
931.82
,
"
x
"
:
348.76
,
"
y
"
:
320.4
5
,
"
y
"
:
450.0
5
,
"
width
"
:
174.99
,
"
width
"
:
39.56
,
"
height
"
:
45.93
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
5
,
"
index
"
:
5
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-
7
"
,
"
itemName
"
:
"
1-
31
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -109,16 +109,16 @@ export const historyData = {
...
@@ -109,16 +109,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
931.8
2
,
"
x
"
:
390.5
2
,
"
y
"
:
386.07
,
"
y
"
:
284.09
,
"
width
"
:
174.99
,
"
width
"
:
39.56
,
"
height
"
:
45.93
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
6
,
"
index
"
:
6
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-
8
"
,
"
itemName
"
:
"
1-
32
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -126,16 +126,16 @@ export const historyData = {
...
@@ -126,16 +126,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
1211.
8
,
"
x
"
:
432.4
8
,
"
y
"
:
384.98
,
"
y
"
:
284.09
,
"
width
"
:
174.99
,
"
width
"
:
39.56
,
"
height
"
:
45.93
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
7
,
"
index
"
:
7
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-
9
"
,
"
itemName
"
:
"
1-
41
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -143,16 +143,16 @@ export const historyData = {
...
@@ -143,16 +143,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
931.82
,
"
x
"
:
183.9
,
"
y
"
:
450.6
,
"
y
"
:
366.52
,
"
width
"
:
174.99
,
"
width
"
:
39.56
,
"
height
"
:
45.93
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
8
,
"
index
"
:
8
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-20
"
,
"
itemName
"
:
"
1-42
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -160,16 +160,16 @@ export const historyData = {
...
@@ -160,16 +160,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
532.62
,
"
x
"
:
183.9
,
"
y
"
:
702.14
,
"
y
"
:
408.28
,
"
width
"
:
43.75
,
"
width
"
:
39.56
,
"
height
"
:
43.75
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
9
,
"
index
"
:
9
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-2
1
"
,
"
itemName
"
:
"
1-5
1
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -177,16 +177,16 @@ export const historyData = {
...
@@ -177,16 +177,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
775.32
,
"
x
"
:
225.67
,
"
y
"
:
697.83
,
"
y
"
:
408.28
,
"
width
"
:
160
,
"
width
"
:
39.56
,
"
height
"
:
50
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
10
,
"
index
"
:
10
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-2
2
"
,
"
itemName
"
:
"
1-5
2
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -194,16 +194,16 @@ export const historyData = {
...
@@ -194,16 +194,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
949
,
"
x
"
:
267.43
,
"
y
"
:
697.83
,
"
y
"
:
408.28
,
"
width
"
:
50
,
"
width
"
:
39.56
,
"
height
"
:
50
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
11
,
"
index
"
:
11
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-30
"
,
"
itemName
"
:
"
1-53
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -211,16 +211,16 @@ export const historyData = {
...
@@ -211,16 +211,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
532.62
,
"
x
"
:
308.1
,
"
y
"
:
765.5
8
,
"
y
"
:
408.2
8
,
"
width
"
:
43.75
,
"
width
"
:
39.56
,
"
height
"
:
43.75
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
12
,
"
index
"
:
12
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-31
"
,
"
itemName
"
:
"
1-54
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -228,16 +228,16 @@ export const historyData = {
...
@@ -228,16 +228,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
797.41
,
"
x
"
:
390.52
,
"
y
"
:
763.92
,
"
y
"
:
408.28
,
"
width
"
:
110
,
"
width
"
:
39.56
,
"
height
"
:
50
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
13
,
"
index
"
:
13
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-32
"
,
"
itemName
"
:
"
1-55
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -245,16 +245,16 @@ export const historyData = {
...
@@ -245,16 +245,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
927.13
,
"
x
"
:
431.19
,
"
y
"
:
763.92
,
"
y
"
:
408.28
,
"
width
"
:
50
,
"
width
"
:
39.56
,
"
height
"
:
50
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
14
,
"
index
"
:
14
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-4
0
"
,
"
itemName
"
:
"
2-
0
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -262,16 +262,16 @@ export const historyData = {
...
@@ -262,16 +262,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
532.62
,
"
x
"
:
45.43
,
"
y
"
:
831.2
,
"
y
"
:
554.45
,
"
width
"
:
43.
75
,
"
width
"
:
43.
96
,
"
height
"
:
43.
75
"
height
"
:
43.
96
}
}
},
},
{
{
"
index
"
:
15
,
"
index
"
:
15
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-
4
1
"
,
"
itemName
"
:
"
2-
2
1
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -279,16 +279,16 @@ export const historyData = {
...
@@ -279,16 +279,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
820.91
,
"
x
"
:
1313.7
,
"
y
"
:
827.54
,
"
y
"
:
618.19
,
"
width
"
:
170
,
"
width
"
:
43.96
,
"
height
"
:
50
"
height
"
:
43.96
}
}
},
},
{
{
"
index
"
:
16
,
"
index
"
:
16
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-
4
2
"
,
"
itemName
"
:
"
2-
2
2
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -296,16 +296,16 @@ export const historyData = {
...
@@ -296,16 +296,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
1013.2
7
,
"
x
"
:
899.3
7
,
"
y
"
:
827.54
,
"
y
"
:
763.26
,
"
width
"
:
120
,
"
width
"
:
43.96
,
"
height
"
:
50
"
height
"
:
43.96
}
}
},
},
{
{
"
index
"
:
17
,
"
index
"
:
17
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-2
"
,
"
itemName
"
:
"
2-23
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -313,16 +313,16 @@ export const historyData = {
...
@@ -313,16 +313,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
838.85
,
"
x
"
:
1363.16
,
"
y
"
:
1141.8
,
"
y
"
:
617.1
,
"
width
"
:
174.99
,
"
width
"
:
43.96
,
"
height
"
:
4
5.93
"
height
"
:
4
3.96
}
}
},
},
{
{
"
index
"
:
18
,
"
index
"
:
18
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-3
"
,
"
itemName
"
:
"
2-31
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -330,16 +330,16 @@ export const historyData = {
...
@@ -330,16 +330,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
838.85
,
"
x
"
:
482.83
,
"
y
"
:
1219.4
5
,
"
y
"
:
780.8
5
,
"
width
"
:
174.99
,
"
width
"
:
43.96
,
"
height
"
:
4
5.93
"
height
"
:
4
3.96
}
}
},
},
{
{
"
index
"
:
19
,
"
index
"
:
19
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-4
"
,
"
itemName
"
:
"
2-32
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -347,16 +347,16 @@ export const historyData = {
...
@@ -347,16 +347,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
838.85
,
"
x
"
:
657.58
,
"
y
"
:
1298.
2
,
"
y
"
:
580.8
2
,
"
width
"
:
174.99
,
"
width
"
:
43.96
,
"
height
"
:
4
5.93
"
height
"
:
4
3.96
}
}
},
},
{
{
"
index
"
:
20
,
"
index
"
:
20
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-5
"
,
"
itemName
"
:
"
2-33
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -364,16 +364,16 @@ export const historyData = {
...
@@ -364,16 +364,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
838.85
,
"
x
"
:
433.39
,
"
y
"
:
1375
.85
,
"
y
"
:
780
.85
,
"
width
"
:
174.99
,
"
width
"
:
43.96
,
"
height
"
:
4
5.93
"
height
"
:
4
3.96
}
}
},
},
{
{
"
index
"
:
21
,
"
index
"
:
21
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-0
"
,
"
itemName
"
:
"
2-41
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -381,16 +381,16 @@ export const historyData = {
...
@@ -381,16 +381,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
27.34
,
"
x
"
:
1312.59
,
"
y
"
:
1491.78
,
"
y
"
:
780.85
,
"
width
"
:
54.68
,
"
width
"
:
43.96
,
"
height
"
:
54.68
"
height
"
:
43.96
}
}
},
},
{
{
"
index
"
:
22
,
"
index
"
:
22
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-21
"
,
"
itemName
"
:
"
2-42
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -398,16 +398,16 @@ export const historyData = {
...
@@ -398,16 +398,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
604.8
,
"
x
"
:
899.37
,
"
y
"
:
1637.24
,
"
y
"
:
580.82
,
"
width
"
:
54.68
,
"
width
"
:
43.96
,
"
height
"
:
54.68
"
height
"
:
43.96
}
}
},
},
{
{
"
index
"
:
23
,
"
index
"
:
23
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-22
"
,
"
itemName
"
:
"
2-43
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -415,16 +415,16 @@ export const historyData = {
...
@@ -415,16 +415,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
694.49
,
"
x
"
:
1363.16
,
"
y
"
:
1637.24
,
"
y
"
:
780.85
,
"
width
"
:
54.68
,
"
width
"
:
43.96
,
"
height
"
:
54.68
"
height
"
:
43.96
}
}
},
},
{
{
"
index
"
:
24
,
"
index
"
:
24
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-23
"
,
"
itemName
"
:
"
2-2a
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -432,16 +432,16 @@ export const historyData = {
...
@@ -432,16 +432,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
544.65
,
"
x
"
:
1075.47
,
"
y
"
:
1637.24
,
"
y
"
:
668.58
,
"
width
"
:
54.68
,
"
width
"
:
240
,
"
height
"
:
54.68
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
25
,
"
index
"
:
25
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-31
"
,
"
itemName
"
:
"
2-3a
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -449,16 +449,16 @@ export const historyData = {
...
@@ -449,16 +449,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
604.
8
,
"
x
"
:
164.4
8
,
"
y
"
:
1702.31
,
"
y
"
:
833.64
,
"
width
"
:
54.68
,
"
width
"
:
179.99
,
"
height
"
:
54.68
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
26
,
"
index
"
:
26
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-32
"
,
"
itemName
"
:
"
2-4a
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -466,16 +466,16 @@ export const historyData = {
...
@@ -466,16 +466,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
694.4
9
,
"
x
"
:
1062.1
9
,
"
y
"
:
1765.2
,
"
y
"
:
833.64
,
"
width
"
:
54.68
,
"
width
"
:
140.01
,
"
height
"
:
54.68
"
height
"
:
39.56
}
}
},
},
{
{
"
index
"
:
27
,
"
index
"
:
27
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-33
"
,
"
itemName
"
:
"
3-2
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -483,16 +483,16 @@ export const historyData = {
...
@@ -483,16 +483,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
544.65
,
"
x
"
:
640
,
"
y
"
:
1
701.22
,
"
y
"
:
1
211.66
,
"
width
"
:
54.68
,
"
width
"
:
109.9
,
"
height
"
:
54.68
"
height
"
:
43.96
}
}
},
},
{
{
"
index
"
:
28
,
"
index
"
:
28
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-41
"
,
"
itemName
"
:
"
3-3
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -500,16 +500,16 @@ export const historyData = {
...
@@ -500,16 +500,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
604.8
,
"
x
"
:
965.31
,
"
y
"
:
1
765.2
,
"
y
"
:
1
211.66
,
"
width
"
:
54.68
,
"
width
"
:
109.9
,
"
height
"
:
54.68
"
height
"
:
43.96
}
}
},
},
{
{
"
index
"
:
29
,
"
index
"
:
29
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-42
"
,
"
itemName
"
:
"
3-4
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -517,16 +517,16 @@ export const historyData = {
...
@@ -517,16 +517,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
694.49
,
"
x
"
:
1290.61
,
"
y
"
:
1
570.52
,
"
y
"
:
1
211.66
,
"
width
"
:
54.68
,
"
width
"
:
109.9
,
"
height
"
:
54.68
"
height
"
:
43.96
}
}
},
},
{
{
"
index
"
:
30
,
"
index
"
:
30
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-43
"
,
"
itemName
"
:
"
4-0
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -534,16 +534,16 @@ export const historyData = {
...
@@ -534,16 +534,16 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
544.65
,
"
x
"
:
47.63
,
"
y
"
:
1
765.2
,
"
y
"
:
1
360.03
,
"
width
"
:
54.68
,
"
width
"
:
43.96
,
"
height
"
:
54.68
"
height
"
:
43.96
}
}
},
},
{
{
"
index
"
:
31
,
"
index
"
:
31
,
"
itemType
"
:
"
rect
"
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-10
"
,
"
itemName
"
:
"
4-21
"
,
"
fontSize
"
:
50
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontColor
"
:
"
#8f3758
"
,
...
@@ -551,149 +551,537 @@ export const historyData = {
...
@@ -551,149 +551,537 @@ export const historyData = {
"
imgScale
"
:
1
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
rect
"
:
{
"
x
"
:
1211.8
,
"
x
"
:
564.17
,
"
y
"
:
450.6
,
"
y
"
:
1498.5
,
"
width
"
:
174.99
,
"
width
"
:
43.96
,
"
height
"
:
4
5.93
"
height
"
:
4
3.96
}
}
}
},
],
"
hotZoneConfigArr
"
:
[
{
{
"
hotZoneType
"
:
"
5
"
,
"
index
"
:
32
,
"
linkHotZoneIndex
"
:
0
,
"
itemType
"
:
"
rect
"
,
"
audio_url
"
:
""
,
"
itemName
"
:
"
4-22
"
,
"
score
"
:
"
0.5
"
,
"
fontSize
"
:
50
,
"
unselectedStyle
"
:
"
none
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
selectedStyle
"
:
"
border
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
fontScale
"
:
1.1734375
,
"
inputText
"
:
"
lay
"
,
"
imgScale
"
:
1
,
"
contentList
"
:
[],
"
mapScale
"
:
1.1734375
,
"
index
"
:
0
"
rect
"
:
{
"
x
"
:
780.67
,
"
y
"
:
1436.96
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
},
{
{
"
hotZoneType
"
:
"
5
"
,
"
index
"
:
33
,
"
linkHotZoneIndex
"
:
1
,
"
itemType
"
:
"
rect
"
,
"
audio_url
"
:
""
,
"
itemName
"
:
"
4-23
"
,
"
score
"
:
"
0.5
"
,
"
fontSize
"
:
50
,
"
unselectedStyle
"
:
"
none
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
selectedStyle
"
:
"
border
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
fontScale
"
:
1.1734375
,
"
inputText
"
:
"
occer
"
,
"
imgScale
"
:
1
,
"
contentList
"
:
[],
"
mapScale
"
:
1.1734375
,
"
index
"
:
1
"
rect
"
:
{
"
x
"
:
514.71
,
"
y
"
:
1498.5
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
},
{
{
"
hotZoneType
"
:
"
5
"
,
"
index
"
:
34
,
"
linkHotZoneIndex
"
:
2
,
"
itemType
"
:
"
rect
"
,
"
audio_url
"
:
""
,
"
itemName
"
:
"
4-31
"
,
"
score
"
:
"
0.5
"
,
"
fontSize
"
:
50
,
"
unselectedStyle
"
:
"
none
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
selectedStyle
"
:
"
border
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
fontScale
"
:
1.1734375
,
"
inputText
"
:
"
ide
"
,
"
imgScale
"
:
1
,
"
contentList
"
:
[],
"
mapScale
"
:
1.1734375
,
"
index
"
:
2
"
rect
"
:
{
"
x
"
:
564.17
,
"
y
"
:
1560.05
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
},
{
{
"
hotZoneType
"
:
"
5
"
,
"
index
"
:
35
,
"
linkHotZoneIndex
"
:
3
,
"
itemType
"
:
"
rect
"
,
"
audio_url
"
:
""
,
"
itemName
"
:
"
4-32
"
,
"
score
"
:
"
0.5
"
,
"
fontSize
"
:
50
,
"
unselectedStyle
"
:
"
none
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
selectedStyle
"
:
"
border
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
fontScale
"
:
1.1734375
,
"
inputText
"
:
"
ike
"
,
"
imgScale
"
:
1
,
"
contentList
"
:
[],
"
mapScale
"
:
1.1734375
,
"
index
"
:
3
"
rect
"
:
{
"
x
"
:
780.67
,
"
y
"
:
1686.43
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
},
{
{
"
hotZoneType
"
:
"
5
"
,
"
index
"
:
36
,
"
linkHotZoneIndex
"
:
4
,
"
itemType
"
:
"
rect
"
,
"
audio_url
"
:
""
,
"
itemName
"
:
"
4-33
"
,
"
score
"
:
"
1
"
,
"
fontSize
"
:
50
,
"
unselectedStyle
"
:
"
none
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
selectedStyle
"
:
"
border
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
fontScale
"
:
1.1734375
,
"
inputText
"
:
"
kate
"
,
"
imgScale
"
:
1
,
"
contentList
"
:
[],
"
mapScale
"
:
1.1734375
,
"
index
"
:
4
"
rect
"
:
{
"
x
"
:
514.71
,
"
y
"
:
1560.05
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
},
{
{
"
hotZoneType
"
:
"
5
"
,
"
index
"
:
37
,
"
linkHotZoneIndex
"
:
5
,
"
itemType
"
:
"
rect
"
,
"
audio_url
"
:
""
,
"
itemName
"
:
"
4-41
"
,
"
score
"
:
"
0.5
"
,
"
fontSize
"
:
50
,
"
unselectedStyle
"
:
"
none
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
selectedStyle
"
:
"
border
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
fontScale
"
:
1.1734375
,
"
inputText
"
:
"
ide
"
,
"
imgScale
"
:
1
,
"
contentList
"
:
[],
"
mapScale
"
:
1.1734375
,
"
index
"
:
5
"
rect
"
:
{
"
x
"
:
564.17
,
"
y
"
:
1623.79
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
},
{
{
"
hotZoneType
"
:
"
5
"
,
"
index
"
:
38
,
"
linkHotZoneIndex
"
:
6
,
"
itemType
"
:
"
rect
"
,
"
audio_url
"
:
""
,
"
itemName
"
:
"
4-42
"
,
"
score
"
:
"
0.5
"
,
"
fontSize
"
:
50
,
"
unselectedStyle
"
:
"
none
"
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
selectedStyle
"
:
"
border
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
fontScale
"
:
1.1734375
,
"
inputText
"
:
"
orse
"
,
"
imgScale
"
:
1
,
"
contentList
"
:
[],
"
mapScale
"
:
1.1734375
,
"
index
"
:
6
"
rect
"
:
{
"
x
"
:
780.67
,
"
y
"
:
1560.05
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
},
{
{
"
hotZoneType
"
:
"
5
"
,
"
index
"
:
39
,
"
linkHotZoneIndex
"
:
7
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-43
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
514.71
,
"
y
"
:
1623.79
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
{
"
index
"
:
40
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-51
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
564.17
,
"
y
"
:
1686.43
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
{
"
index
"
:
41
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-52
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
780.67
,
"
y
"
:
1623.79
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
{
"
index
"
:
42
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-53
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
514.71
,
"
y
"
:
1686.43
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
{
"
index
"
:
43
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-61
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
564.17
,
"
y
"
:
1747.98
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
{
"
index
"
:
44
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-62
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
780.67
,
"
y
"
:
1747.98
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
{
"
index
"
:
45
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-63
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
514.71
,
"
y
"
:
1747.98
,
"
width
"
:
43.96
,
"
height
"
:
43.96
}
},
{
"
index
"
:
46
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-20
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
348.76
,
"
y
"
:
203.87
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}
},
{
"
index
"
:
47
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-30
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
267.43
,
"
y
"
:
284.09
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}
},
{
"
index
"
:
48
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-40
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
183.9
,
"
y
"
:
284.09
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}
},
{
"
index
"
:
49
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-50
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
103.68
,
"
y
"
:
408.28
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}
},
{
"
index
"
:
50
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-33
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.1734375
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.1734375
,
"
rect
"
:
{
"
x
"
:
473.14
,
"
y
"
:
284.09
,
"
width
"
:
39.56
,
"
height
"
:
39.56
}
}
],
"
hotZoneConfigArr
"
:
[
{
"
hotZoneType
"
:
"
9
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
none
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
lay
"
,
"
inputText
"
:
""
,
"
contentList
"
:
[],
"
contentList
"
:
[
"
index
"
:
7
{
"
uuid
"
:
"
69bac506-7417-4949-b45e-1bcd08474e90
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
0
,
"
letter
"
:
"
m
"
},
{
"
uuid
"
:
"
f1c9b0a5-541a-4d6c-8ec4-699d57f9a224
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
1
,
"
letter
"
:
"
u
"
},
{
"
uuid
"
:
"
1cc0fd16-3956-475c-aa37-7567be2f2b55
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
2
,
"
letter
"
:
"
s
"
},
{
"
uuid
"
:
"
00f09d34-a9b5-4c4b-acba-5d7b9fe7a0fc
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
3
,
"
letter
"
:
"
i
"
},
{
"
uuid
"
:
"
4425a440-1d7d-4c5e-9248-99ad8eabec91
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
4
,
"
letter
"
:
"
c
"
}
],
"
linkResultShowHotZoneIndex
"
:
46
,
"
index
"
:
0
},
},
{
{
"
hotZoneType
"
:
"
5
"
,
"
hotZoneType
"
:
"
9
"
,
"
linkHotZoneIndex
"
:
3
1
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
none
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
ennis
"
,
"
inputText
"
:
""
,
"
contentList
"
:
[],
"
contentList
"
:
[
"
index
"
:
8
{
"
uuid
"
:
"
0be0a2fd-030a-4f38-9ebb-29f8f697188d
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
0
,
"
letter
"
:
"
m
"
},
{
"
uuid
"
:
"
10b69a20-26f0-4313-b563-d471ba4853d0
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
5
,
"
letter
"
:
"
a
"
},
{
"
uuid
"
:
"
8c97e025-cb70-4f4a-922d-75f819e10626
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
6
,
"
letter
"
:
"
t
"
},
{
"
uuid
"
:
"
5e2ad2e4-ff0d-4929-99bb-2f89ea45b53c
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
50
,
"
letter
"
:
"
h
"
}
],
"
linkResultShowHotZoneIndex
"
:
47
,
"
index
"
:
1
},
},
{
{
"
hotZoneType
"
:
"
3
"
,
"
hotZoneType
"
:
"
9
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
inputText
"
:
""
,
"
contentList
"
:
[
"
contentList
"
:
[
{
{
"
uuid
"
:
"
2f54a92f-d499-4daf-ae73-ce2e15e94396
"
,
"
uuid
"
:
"
0be0a2fd-030a-4f38-9ebb-29f8f697188d
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
score
"
:
0
,
"
isCorrect
"
:
tru
e
,
"
isCorrect
"
:
fals
e
,
"
isCheck
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
9
"
selectHotZoneIndex
"
:
7
,
"
letter
"
:
"
P
"
},
},
{
{
"
uuid
"
:
"
2dabe85e-8f0d-4024-851d-e9020b9ea22b
"
,
"
uuid
"
:
"
10b69a20-26f0-4313-b563-d471ba4853d0
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
...
@@ -705,24 +1093,25 @@ export const historyData = {
...
@@ -705,24 +1093,25 @@ export const historyData = {
"
selectStartHotZoneIndex
"
:
null
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
10
"
selectHotZoneIndex
"
:
8
,
"
letter
"
:
"
E
"
}
}
],
],
"
linkResultShowHotZoneIndex
"
:
8
,
"
linkResultShowHotZoneIndex
"
:
4
8
,
"
index
"
:
9
"
index
"
:
2
},
},
{
{
"
hotZoneType
"
:
"
3
"
,
"
hotZoneType
"
:
"
9
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
inputText
"
:
""
,
"
contentList
"
:
[
"
contentList
"
:
[
{
{
"
uuid
"
:
"
2f54a92f-d499-4daf-ae73-ce2e15e94396
"
,
"
uuid
"
:
"
0be0a2fd-030a-4f38-9ebb-29f8f697188d
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
...
@@ -734,39 +1123,75 @@ export const historyData = {
...
@@ -734,39 +1123,75 @@ export const historyData = {
"
selectStartHotZoneIndex
"
:
null
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
12
"
selectHotZoneIndex
"
:
8
,
"
letter
"
:
"
E
"
},
},
{
{
"
uuid
"
:
"
2dabe85e-8f0d-4024-851d-e9020b9ea22b
"
,
"
uuid
"
:
"
10b69a20-26f0-4313-b563-d471ba4853d0
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
score
"
:
0
,
"
isCorrect
"
:
tru
e
,
"
isCorrect
"
:
fals
e
,
"
isCheck
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
13
"
selectHotZoneIndex
"
:
9
,
}
"
letter
"
:
"
n
"
],
},
"
linkResultShowHotZoneIndex
"
:
11
,
{
"
index
"
:
10
"
uuid
"
:
"
42e2269b-dd9d-4988-8a2f-f65698175944
"
,
},
"
text
"
:
""
,
{
"
optionShowText
"
:
""
,
"
hotZoneType
"
:
"
3
"
,
"
image_url
"
:
""
,
"
linkHotZoneIndex
"
:
-
1
,
"
hotZoneIndex
"
:
null
,
"
audio_url
"
:
""
,
"
score
"
:
0
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
unselectedStyle
"
:
"
mask
"
,
"
isCheck
"
:
false
,
"
selectedStyle
"
:
"
border
"
,
"
linkedShowText
"
:
""
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
selectStartHotZoneIndex
"
:
null
,
"
inputText
"
:
""
,
"
selectEndHotZoneIndex
"
:
null
,
"
contentList
"
:
[
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
10
,
"
letter
"
:
"
g
"
},
{
"
uuid
"
:
"
49731ad6-eeee-450a-b7e0-a1556c474f6e
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
11
,
"
letter
"
:
"
l
"
},
{
"
uuid
"
:
"
4f54b246-d89f-465e-b353-2b19b87d5310
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
3
,
"
letter
"
:
"
i
"
},
{
{
"
uuid
"
:
"
2f54a92f-d499-4daf-ae73-ce2e15e94396
"
,
"
uuid
"
:
"
386f4dc2-35a5-41e0-a324-51a01d2b94f2
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
...
@@ -778,55 +1203,133 @@ export const historyData = {
...
@@ -778,55 +1203,133 @@ export const historyData = {
"
selectStartHotZoneIndex
"
:
null
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
15
"
selectHotZoneIndex
"
:
12
,
"
letter
"
:
"
s
"
},
},
{
{
"
uuid
"
:
"
2dabe85e-8f0d-4024-851d-e9020b9ea22b
"
,
"
uuid
"
:
"
1462a6c8-cd47-404d-8707-d0246351e7ee
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
score
"
:
0
,
"
isCorrect
"
:
tru
e
,
"
isCorrect
"
:
fals
e
,
"
isCheck
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
16
"
selectHotZoneIndex
"
:
13
,
"
letter
"
:
"
h
"
}
}
],
],
"
linkResultShowHotZoneIndex
"
:
14
,
"
linkResultShowHotZoneIndex
"
:
49
,
"
index
"
:
11
"
index
"
:
3
},
},
{
{
"
hotZoneType
"
:
"
0
"
,
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
17
,
"
linkHotZoneIndex
"
:
24
,
"
audio_url
"
:
""
,
"
audio_url
"
:
""
,
"
score
"
:
"
5
"
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
computer room
"
,
"
contentList
"
:
[],
"
index
"
:
4
},
{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
26
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
field
"
,
"
contentList
"
:
[],
"
index
"
:
5
},
{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
25
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
art room
"
,
"
contentList
"
:
[],
"
index
"
:
6
},
{
"
hotZoneType
"
:
"
6
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
0
"
,
"
unselectedStyle
"
:
"
none
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
can
"
,
"
inputText
"
:
""
,
"
contentList
"
:
[
"
contentList
"
:
[
{
{
"
uuid
"
:
"
72289426-e75e-4847-b392-a886d8fc9362
"
,
"
uuid
"
:
"
cca81944-c90d-4166-8c1a-3d937b8d80ef
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
score
"
:
"
0.5
"
,
"
isCorrect
"
:
false
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
linkedShowText
"
:
"
d
"
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectStartHotZoneIndex
"
:
15
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
16
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
17
"
selectOptionListIndex
"
:
0
,
},
"
selectHotZoneIndex
"
:
17
{
"
uuid
"
:
"
2cee0d75-7631-4b0f-82e5-fbfd7992a806
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
0.5
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
a
"
,
"
selectStartHotZoneIndex
"
:
18
,
"
selectEndHotZoneIndex
"
:
19
,
"
selectEndHotZoneShowIndex
"
:
20
},
},
{
{
"
uuid
"
:
"
4e657b61-d6b9-4f48-b68c-890d0da5b94c
"
,
"
uuid
"
:
"
59388b0b-2fd5-407c-bc7a-c24d0a1933a7
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
0.5
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
b
"
,
"
selectStartHotZoneIndex
"
:
21
,
"
selectEndHotZoneIndex
"
:
22
,
"
selectEndHotZoneShowIndex
"
:
23
}
],
"
linkResultShowHotZoneIndex
"
:
14
,
"
index
"
:
7
},
{
"
hotZoneType
"
:
"
0
"
,
"
linkHotZoneIndex
"
:
27
,
"
audio_url
"
:
""
,
"
score
"
:
"
5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
their
"
,
"
contentList
"
:
[
{
"
uuid
"
:
"
a3410857-c7e7-40c8-9cb5-20cdb4175b1b
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
...
@@ -839,10 +1342,10 @@ export const historyData = {
...
@@ -839,10 +1342,10 @@ export const historyData = {
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectOptionListIndex
"
:
1
,
"
selectOptionListIndex
"
:
1
,
"
selectHotZoneIndex
"
:
18
"
selectHotZoneIndex
"
:
27
},
},
{
{
"
uuid
"
:
"
5c18d7fd-6cd8-4341-b527-9877f0bc2407
"
,
"
uuid
"
:
"
4652e686-7bb5-45d2-a80d-813e0c684b4b
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
...
@@ -855,10 +1358,10 @@ export const historyData = {
...
@@ -855,10 +1358,10 @@ export const historyData = {
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectOptionListIndex
"
:
1
,
"
selectOptionListIndex
"
:
1
,
"
selectHotZoneIndex
"
:
19
"
selectHotZoneIndex
"
:
28
},
},
{
{
"
uuid
"
:
"
f
8faf9f5-b1b7-4c3e-8e64-f4dc9a57710b
"
,
"
uuid
"
:
"
f
ea9518c-8987-4b77-a369-1eeac1c8ab98
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
...
@@ -871,21 +1374,21 @@ export const historyData = {
...
@@ -871,21 +1374,21 @@ export const historyData = {
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectOptionListIndex
"
:
0
,
"
selectOptionListIndex
"
:
0
,
"
selectHotZoneIndex
"
:
2
0
"
selectHotZoneIndex
"
:
2
9
}
}
],
],
"
useSelectOptionList
"
:
true
,
"
useSelectOptionList
"
:
true
,
"
selectOptionList
"
:
[
"
selectOptionList
"
:
[
{
{
"
text
"
:
"
can
"
,
"
text
"
:
"
our
"
,
"
optionShowText
"
:
"
can
"
"
optionShowText
"
:
"
our
"
},
},
{
{
"
text
"
:
"
can't
"
,
"
text
"
:
"
their
"
,
"
optionShowText
"
:
"
can't
"
"
optionShowText
"
:
"
their
"
}
}
],
],
"
index
"
:
12
"
index
"
:
8
},
},
{
{
"
hotZoneType
"
:
"
6
"
,
"
hotZoneType
"
:
"
6
"
,
...
@@ -898,7 +1401,7 @@ export const historyData = {
...
@@ -898,7 +1401,7 @@ export const historyData = {
"
inputText
"
:
""
,
"
inputText
"
:
""
,
"
contentList
"
:
[
"
contentList
"
:
[
{
{
"
uuid
"
:
"
bcd860e3-460d-4890-8c42-dd28c2c84910
"
,
"
uuid
"
:
"
9f296ed9-48ec-4b83-a4b1-70f3aea6ccaa
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
...
@@ -906,13 +1409,27 @@ export const historyData = {
...
@@ -906,13 +1409,27 @@ export const historyData = {
"
score
"
:
"
1
"
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
b
"
,
"
linkedShowText
"
:
"
e
"
,
"
selectStartHotZoneIndex
"
:
22
,
"
selectStartHotZoneIndex
"
:
34
,
"
selectEndHotZoneIndex
"
:
23
,
"
selectEndHotZoneIndex
"
:
35
,
"
selectEndHotZoneShowIndex
"
:
24
"
selectEndHotZoneShowIndex
"
:
36
},
{
"
uuid
"
:
"
cf9556f9-d579-46fc-8743-9bee998be0d0
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
c
"
,
"
selectStartHotZoneIndex
"
:
37
,
"
selectEndHotZoneIndex
"
:
38
,
"
selectEndHotZoneShowIndex
"
:
39
},
},
{
{
"
uuid
"
:
"
09160a26-c0e9-42cf-88c6-b5ff2fa9aab2
"
,
"
uuid
"
:
"
366dc955-8193-4301-8471-77da23e7eb26
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
...
@@ -921,12 +1438,26 @@ export const historyData = {
...
@@ -921,12 +1438,26 @@ export const historyData = {
"
isCorrect
"
:
false
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
d
"
,
"
linkedShowText
"
:
"
d
"
,
"
selectStartHotZoneIndex
"
:
25
,
"
selectStartHotZoneIndex
"
:
40
,
"
selectEndHotZoneIndex
"
:
26
,
"
selectEndHotZoneIndex
"
:
41
,
"
selectEndHotZoneShowIndex
"
:
27
"
selectEndHotZoneShowIndex
"
:
42
},
{
"
uuid
"
:
"
867296d6-e980-4e0f-9d8f-f270172daac0
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
f
"
,
"
selectStartHotZoneIndex
"
:
43
,
"
selectEndHotZoneIndex
"
:
44
,
"
selectEndHotZoneShowIndex
"
:
45
},
},
{
{
"
uuid
"
:
"
3ae28df1-d0b8-441d-b172-c166c8db54ab
"
,
"
uuid
"
:
"
813397f8-edaf-4d46-b594-1b2be9fbcdd8
"
,
"
text
"
:
""
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
image_url
"
:
""
,
...
@@ -935,13 +1466,13 @@ export const historyData = {
...
@@ -935,13 +1466,13 @@ export const historyData = {
"
isCorrect
"
:
false
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
a
"
,
"
linkedShowText
"
:
"
a
"
,
"
selectStartHotZoneIndex
"
:
28
,
"
selectStartHotZoneIndex
"
:
31
,
"
selectEndHotZoneIndex
"
:
29
,
"
selectEndHotZoneIndex
"
:
32
,
"
selectEndHotZoneShowIndex
"
:
3
0
"
selectEndHotZoneShowIndex
"
:
3
3
}
}
],
],
"
linkResultShowHotZoneIndex
"
:
21
,
"
linkResultShowHotZoneIndex
"
:
30
,
"
index
"
:
13
"
index
"
:
9
}
}
],
],
"
scoreConfigArr
"
:
[
"
scoreConfigArr
"
:
[
...
@@ -959,12 +1490,7 @@ export const historyData = {
...
@@ -959,12 +1490,7 @@ export const historyData = {
8
,
8
,
9
,
9
,
10
,
10
,
11
,
11
12
,
13
,
14
,
15
,
16
]
]
}
}
],
],
...
@@ -972,35 +1498,35 @@ export const historyData = {
...
@@ -972,35 +1498,35 @@ export const historyData = {
},
},
"
details
"
:
[
"
details
"
:
[
{
{
"
contentType
"
:
"
5
"
,
"
contentType
"
:
"
9
"
,
"
configIndex
"
:
0
,
"
configIndex
"
:
0
,
"
contentIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
c
urrentInputText
"
:
"
lay
"
,
"
c
orrectWord
"
:
"
music
"
,
"
correctText
"
:
"
lay
"
,
"
inputWord
"
:
"
music
"
,
"
right
"
:
true
"
right
"
:
true
},
},
{
{
"
contentType
"
:
"
5
"
,
"
contentType
"
:
"
9
"
,
"
configIndex
"
:
1
,
"
configIndex
"
:
1
,
"
contentIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
c
urrentInputText
"
:
"
ocker
"
,
"
c
orrectWord
"
:
"
math
"
,
"
correctText
"
:
"
occer
"
,
"
inputWord
"
:
"
math
"
,
"
right
"
:
fals
e
"
right
"
:
tru
e
},
},
{
{
"
contentType
"
:
"
5
"
,
"
contentType
"
:
"
9
"
,
"
configIndex
"
:
2
,
"
configIndex
"
:
2
,
"
contentIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
c
urrentInputText
"
:
"
"
,
"
c
orrectWord
"
:
"
PE
"
,
"
correctText
"
:
"
ide
"
,
"
inputWord
"
:
"
PE
"
,
"
right
"
:
fals
e
"
right
"
:
tru
e
},
},
{
{
"
contentType
"
:
"
5
"
,
"
contentType
"
:
"
9
"
,
"
configIndex
"
:
3
,
"
configIndex
"
:
3
,
"
contentIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
c
urrentInputText
"
:
"
"
,
"
c
orrectWord
"
:
"
English
"
,
"
correctText
"
:
"
ike
"
,
"
inputWord
"
:
"
E^^^i^^
"
,
"
right
"
:
false
"
right
"
:
false
},
},
{
{
...
@@ -1008,7 +1534,7 @@ export const historyData = {
...
@@ -1008,7 +1534,7 @@ export const historyData = {
"
configIndex
"
:
4
,
"
configIndex
"
:
4
,
"
contentIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
currentInputText
"
:
""
,
"
currentInputText
"
:
""
,
"
correctText
"
:
"
kate
"
,
"
correctText
"
:
"
computer room
"
,
"
right
"
:
false
"
right
"
:
false
},
},
{
{
...
@@ -1016,7 +1542,7 @@ export const historyData = {
...
@@ -1016,7 +1542,7 @@ export const historyData = {
"
configIndex
"
:
5
,
"
configIndex
"
:
5
,
"
contentIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
currentInputText
"
:
""
,
"
currentInputText
"
:
""
,
"
correctText
"
:
"
ide
"
,
"
correctText
"
:
"
field
"
,
"
right
"
:
false
"
right
"
:
false
},
},
{
{
...
@@ -1024,58 +1550,46 @@ export const historyData = {
...
@@ -1024,58 +1550,46 @@ export const historyData = {
"
configIndex
"
:
6
,
"
configIndex
"
:
6
,
"
contentIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
currentInputText
"
:
""
,
"
currentInputText
"
:
""
,
"
correctText
"
:
"
orse
"
,
"
correctText
"
:
"
art room
"
,
"
right
"
:
false
"
right
"
:
false
},
},
{
{
"
contentType
"
:
"
5
"
,
"
contentType
"
:
"
6
"
,
"
configIndex
"
:
7
,
"
configIndex
"
:
7
,
"
contentIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
currentInputText
"
:
""
,
"
results
"
:
[
"
correctText
"
:
"
lay
"
,
{
"
right
"
:
false
"
startIndex
"
:
0
,
},
"
startText
"
:
""
,
{
"
correctEndIndex
"
:
0
,
"
contentType
"
:
"
5
"
,
"
correctEndText
"
:
""
,
"
configIndex
"
:
8
,
"
currentEndIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
currentEndText
"
:
""
,
"
currentInputText
"
:
""
,
"
right
"
:
false
"
correctText
"
:
"
ennis
"
,
},
"
right
"
:
false
{
},
"
startIndex
"
:
1
,
{
"
startText
"
:
""
,
"
contentType
"
:
"
3
"
,
"
correctEndIndex
"
:
1
,
"
configIndex
"
:
9
,
"
correctEndText
"
:
""
,
"
contentIndex
"
:
-
1
,
"
currentEndIndex
"
:
-
1
,
"
currentSelectIndex
"
:
-
1
,
"
currentEndText
"
:
""
,
"
currentSelectText
"
:
""
,
"
right
"
:
false
"
correctSelectIndex
"
:
0
,
},
"
correctSelectText
"
:
""
,
{
"
right
"
:
false
"
startIndex
"
:
2
,
},
"
startText
"
:
""
,
{
"
correctEndIndex
"
:
2
,
"
contentType
"
:
"
3
"
,
"
correctEndText
"
:
""
,
"
configIndex
"
:
10
,
"
currentEndIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
currentEndText
"
:
""
,
"
currentSelectIndex
"
:
-
1
,
"
right
"
:
false
"
currentSelectText
"
:
""
,
}
"
correctSelectIndex
"
:
1
,
]
"
correctSelectText
"
:
""
,
"
right
"
:
false
},
{
"
contentType
"
:
"
3
"
,
"
configIndex
"
:
11
,
"
contentIndex
"
:
-
1
,
"
currentSelectIndex
"
:
-
1
,
"
currentSelectText
"
:
""
,
"
correctSelectIndex
"
:
1
,
"
correctSelectText
"
:
""
,
"
right
"
:
false
},
},
{
{
"
contentType
"
:
"
0
"
,
"
contentType
"
:
"
0
"
,
"
configIndex
"
:
12
,
"
configIndex
"
:
8
,
"
contentIndex
"
:
0
,
"
contentIndex
"
:
0
,
"
currentSelectIndex
"
:
null
,
"
currentSelectIndex
"
:
null
,
"
currentSelectText
"
:
""
,
"
currentSelectText
"
:
""
,
...
@@ -1085,7 +1599,7 @@ export const historyData = {
...
@@ -1085,7 +1599,7 @@ export const historyData = {
},
},
{
{
"
contentType
"
:
"
0
"
,
"
contentType
"
:
"
0
"
,
"
configIndex
"
:
12
,
"
configIndex
"
:
8
,
"
contentIndex
"
:
1
,
"
contentIndex
"
:
1
,
"
currentSelectIndex
"
:
null
,
"
currentSelectIndex
"
:
null
,
"
currentSelectText
"
:
""
,
"
currentSelectText
"
:
""
,
...
@@ -1095,7 +1609,7 @@ export const historyData = {
...
@@ -1095,7 +1609,7 @@ export const historyData = {
},
},
{
{
"
contentType
"
:
"
0
"
,
"
contentType
"
:
"
0
"
,
"
configIndex
"
:
12
,
"
configIndex
"
:
8
,
"
contentIndex
"
:
2
,
"
contentIndex
"
:
2
,
"
currentSelectIndex
"
:
null
,
"
currentSelectIndex
"
:
null
,
"
currentSelectText
"
:
""
,
"
currentSelectText
"
:
""
,
...
@@ -1103,19 +1617,9 @@ export const historyData = {
...
@@ -1103,19 +1617,9 @@ export const historyData = {
"
correctSelectText
"
:
""
,
"
correctSelectText
"
:
""
,
"
right
"
:
false
"
right
"
:
false
},
},
{
"
contentType
"
:
"
0
"
,
"
configIndex
"
:
12
,
"
contentIndex
"
:
3
,
"
currentSelectIndex
"
:
null
,
"
currentSelectText
"
:
""
,
"
correctSelectIndex
"
:
3
,
"
correctSelectText
"
:
""
,
"
right
"
:
false
},
{
{
"
contentType
"
:
"
6
"
,
"
contentType
"
:
"
6
"
,
"
configIndex
"
:
13
,
"
configIndex
"
:
9
,
"
contentIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
results
"
:
[
"
results
"
:
[
{
{
...
@@ -1144,6 +1648,24 @@ export const historyData = {
...
@@ -1144,6 +1648,24 @@ export const historyData = {
"
currentEndIndex
"
:
-
1
,
"
currentEndIndex
"
:
-
1
,
"
currentEndText
"
:
""
,
"
currentEndText
"
:
""
,
"
right
"
:
false
"
right
"
:
false
},
{
"
startIndex
"
:
3
,
"
startText
"
:
""
,
"
correctEndIndex
"
:
3
,
"
correctEndText
"
:
""
,
"
currentEndIndex
"
:
-
1
,
"
currentEndText
"
:
""
,
"
right
"
:
false
},
{
"
startIndex
"
:
4
,
"
startText
"
:
""
,
"
correctEndIndex
"
:
4
,
"
correctEndText
"
:
""
,
"
currentEndIndex
"
:
-
1
,
"
currentEndText
"
:
""
,
"
right
"
:
false
}
}
]
]
}
}
...
@@ -1163,21 +1685,16 @@ export const historyData = {
...
@@ -1163,21 +1685,16 @@ export const historyData = {
8
,
8
,
9
,
9
,
10
,
10
,
11
,
11
12
,
13
,
14
,
15
,
16
],
],
"
score
"
:
0.5
"
score
"
:
3
}
}
],
],
"
basicScore
"
:
0
,
"
basicScore
"
:
0
,
"
totalScore
"
:
0.5
,
"
totalScore
"
:
3
,
"
isAllRight
"
:
false
,
"
isAllRight
"
:
false
,
"
isAllWrong
"
:
false
,
"
isAllWrong
"
:
false
,
"
startTimestamp
"
:
168906
1179336
,
"
startTimestamp
"
:
168906
6643663
,
"
submitTimestamp
"
:
168906
1205879
,
"
submitTimestamp
"
:
168906
6652261
,
"
answeringTime
"
:
26543
"
answeringTime
"
:
8598
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment